pax_global_header00006660000000000000000000000064147235515010014515gustar00rootroot0000000000000052 comment=bc3cbc11891d08d779b50b2ed0bbb0eb57d81c07 glyphspkg-0.2.1/000077500000000000000000000000001472355150100135255ustar00rootroot00000000000000glyphspkg-0.2.1/.github/000077500000000000000000000000001472355150100150655ustar00rootroot00000000000000glyphspkg-0.2.1/.github/workflows/000077500000000000000000000000001472355150100171225ustar00rootroot00000000000000glyphspkg-0.2.1/.github/workflows/publish-to-test-pypi.yml000066400000000000000000000016541472355150100236750ustar00rootroot00000000000000name: Publish Python distributions to PyPI and TestPyPI on: push jobs: build-n-publish: name: Build and publish Python distribution to PyPI runs-on: ubuntu-latest environment: name: pypi url: https://pypi.org/p/glyphspkg permissions: id-token: write steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python 3.12 uses: actions/setup-python@v5 with: python-version: 3.12 - name: Install pypa/build run: >- python -m pip install build --user - name: Build a binary wheel and a source tarball run: >- python -m build --sdist --wheel --outdir dist/ . - name: Publish distribution to PyPI if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 glyphspkg-0.2.1/.gitignore000066400000000000000000000034351472355150100155220ustar00rootroot00000000000000# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ Lib/glyphspkg/_version.py glyphspkg-0.2.1/LICENSE000066400000000000000000000020551472355150100145340ustar00rootroot00000000000000MIT License Copyright (c) 2022 Jens Kutilek Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. glyphspkg-0.2.1/Lib/000077500000000000000000000000001472355150100142335ustar00rootroot00000000000000glyphspkg-0.2.1/Lib/glyphspkg/000077500000000000000000000000001472355150100162435ustar00rootroot00000000000000glyphspkg-0.2.1/Lib/glyphspkg/__init__.py000066400000000000000000000001541472355150100203540ustar00rootroot00000000000000try: from ._version import version as __version__ except ImportError: __version__ = "0.0.0+unknown" glyphspkg-0.2.1/Lib/glyphspkg/cmdline.py000066400000000000000000000037041472355150100202340ustar00rootroot00000000000000""" Command line interface for compilation/decompilation """ import argparse from pathlib import Path from glyphspkg.package_to_single import package_to_single from glyphspkg.single_to_package import single_to_package def main() -> None: parser = argparse.ArgumentParser() # parser.add_argument( # "-i", # "--in-place", # action="store_true", # default=False, # help="Convert the file in place, i.e. remove the input file.", # ) parser.add_argument( "-o", "--output", dest="output_path", type=str, help=( "Output path for converted files. If omitted, the file is saved " "next to the input file." ), ) parser.add_argument( "glyphsfile", type=str, nargs="+", help="Path to the .glyphs file or .glyphspackage dir to be converted.", ) arguments = parser.parse_args() if not arguments: parser.print_help() return if arguments.output_path is None: output_path = None else: output_path = Path(arguments.output_path) if not output_path.is_dir() and len(arguments.glyphsfile) > 1: print( "ERROR: If you specify a full output file path, you must only " "supply one input file path, or else the output file will be " "overwritten with each input file." ) return for inp in arguments.glyphsfile: input_path = Path(inp) print("Reading:", input_path) if input_path.is_dir(): # The file is a package, convert to single output_file_path = package_to_single(input_path, output_path) print(f"Saved <{output_file_path}>.") else: # The file is a single file, convert to package output_file_path = single_to_package(input_path, output_path) print(f"Saved <{output_file_path}>.") glyphspkg-0.2.1/Lib/glyphspkg/filenames.py000066400000000000000000000204631472355150100205650ustar00rootroot00000000000000# From fontTools.misc.filenames # https://github.com/fonttools/fonttools # Licensed under the MIT licence """ This module implements the algorithm for converting between a "user name" - something that a user can choose arbitrarily inside a font editor - and a file name suitable for use in a wide range of operating systems and filesystems. The `UFO 3 specification `_ provides an example of an algorithm for such conversion, which avoids illegal characters, reserved file names, ambiguity between upper- and lower-case characters, and clashes with existing files. This code was originally copied from `ufoLib `_ by Tal Leming and is copyright (c) 2005-2016, The RoboFab Developers: - Erik van Blokland - Tal Leming - Just van Rossum """ from typing import Optional illegalCharacters = r"\" * + / : < > ? [ \ ] | \0".split(" ") illegalCharacters += [chr(i) for i in range(1, 32)] illegalCharacters += [chr(0x7F)] reservedFileNames = "CON PRN AUX CLOCK$ NUL A:-Z: COM1".lower().split(" ") reservedFileNames += "LPT1 LPT2 LPT3 COM2 COM3 COM4".lower().split(" ") maxFileNameLength = 255 class NameTranslationError(Exception): pass def userNameToFileName( userName: str, existing: list = [], prefix: str = "", suffix: str = "" ) -> str: """Converts from a user name to a file name. Takes care to avoid illegal characters, reserved file names, ambiguity between upper- and lower-case characters, and clashes with existing files. Args: userName (str): The input file name. existing: A case-insensitive list of all existing file names. prefix: Prefix to be prepended to the file name. suffix: Suffix to be appended to the file name. Returns: A suitable filename. Raises: NameTranslationError: If no suitable name could be generated. Examples:: >>> userNameToFileName("a") == "a" True >>> userNameToFileName("A") == "A_" True >>> userNameToFileName("AE") == "A_E_" True >>> userNameToFileName("Ae") == "A_e" True >>> userNameToFileName("ae") == "ae" True >>> userNameToFileName("aE") == "aE_" True >>> userNameToFileName("a.alt") == "a.alt" True >>> userNameToFileName("A.alt") == "A_.alt" True >>> userNameToFileName("A.Alt") == "A_.A_lt" True >>> userNameToFileName("A.aLt") == "A_.aL_t" True >>> userNameToFileName(u"A.alT") == "A_.alT_" True >>> userNameToFileName("T_H") == "T__H_" True >>> userNameToFileName("T_h") == "T__h" True >>> userNameToFileName("t_h") == "t_h" True >>> userNameToFileName("F_F_I") == "F__F__I_" True >>> userNameToFileName("f_f_i") == "f_f_i" True >>> userNameToFileName("Aacute_V.swash") == "A_acute_V_.swash" True >>> userNameToFileName(".notdef") == "_notdef" True >>> userNameToFileName("con") == "_con" True >>> userNameToFileName("CON") == "C_O_N_" True >>> userNameToFileName("con.alt") == "_con.alt" True >>> userNameToFileName("alt.con") == "alt._con" True """ # the incoming name must be a str if not isinstance(userName, str): raise ValueError("The value for userName must be a string.") # establish the prefix and suffix lengths prefixLength = len(prefix) suffixLength = len(suffix) # replace an initial period with an _ # if no prefix is to be added if not prefix and userName[0] == ".": userName = "_" + userName[1:] # filter the user name filteredUserName = [] for character in userName: # replace illegal characters with _ if character in illegalCharacters: character = "_" # add _ to all non-lower characters elif character != character.lower(): character += "_" filteredUserName.append(character) userName = "".join(filteredUserName) # clip to 255 sliceLength = maxFileNameLength - prefixLength - suffixLength userName = userName[:sliceLength] # test for illegal files names parts = [] for part in userName.split("."): if part.lower() in reservedFileNames: part = "_" + part parts.append(part) userName = ".".join(parts) # test for clash fullName = prefix + userName + suffix if fullName.lower() in existing: fullName = handleClash1(userName, existing, prefix, suffix) # finished return fullName def handleClash1( userName: str, existing: list = [], prefix: str = "", suffix: str = "" ) -> str: """ existing should be a case-insensitive list of all existing file names. >>> prefix = ("0" * 5) + "." >>> suffix = "." + ("0" * 10) >>> existing = ["a" * 5] >>> e = list(existing) >>> handleClash1(userName="A" * 5, existing=e, ... prefix=prefix, suffix=suffix) == ( ... '00000.AAAAA000000000000001.0000000000') True >>> e = list(existing) >>> e.append(prefix + "aaaaa" + "1".zfill(15) + suffix) >>> handleClash1(userName="A" * 5, existing=e, ... prefix=prefix, suffix=suffix) == ( ... '00000.AAAAA000000000000002.0000000000') True >>> e = list(existing) >>> e.append(prefix + "AAAAA" + "2".zfill(15) + suffix) >>> handleClash1(userName="A" * 5, existing=e, ... prefix=prefix, suffix=suffix) == ( ... '00000.AAAAA000000000000001.0000000000') True """ # if the prefix length + user name length + suffix length + 15 is at # or past the maximum length, silce 15 characters off of the user name prefixLength = len(prefix) suffixLength = len(suffix) if prefixLength + len(userName) + suffixLength + 15 > maxFileNameLength: l = prefixLength + len(userName) + suffixLength + 15 sliceLength = maxFileNameLength - l userName = userName[:sliceLength] finalName: Optional[str] = None # try to add numbers to create a unique name counter = 1 while finalName is None: name = userName + str(counter).zfill(15) fullName = prefix + name + suffix if fullName.lower() not in existing: finalName = fullName break else: counter += 1 if counter >= 999999999999999: break # if there is a clash, go to the next fallback if finalName is None: finalName = handleClash2(existing, prefix, suffix) # finished return finalName def handleClash2(existing: list = [], prefix: str = "", suffix: str = "") -> str: """ existing should be a case-insensitive list of all existing file names. >>> prefix = ("0" * 5) + "." >>> suffix = "." + ("0" * 10) >>> existing = [prefix + str(i) + suffix for i in range(100)] >>> e = list(existing) >>> handleClash2(existing=e, prefix=prefix, suffix=suffix) == ( ... '00000.100.0000000000') True >>> e = list(existing) >>> e.remove(prefix + "1" + suffix) >>> handleClash2(existing=e, prefix=prefix, suffix=suffix) == ( ... '00000.1.0000000000') True >>> e = list(existing) >>> e.remove(prefix + "2" + suffix) >>> handleClash2(existing=e, prefix=prefix, suffix=suffix) == ( ... '00000.2.0000000000') True """ # calculate the longest possible string maxLength = maxFileNameLength - len(prefix) - len(suffix) maxValue = int("9" * maxLength) # try to find a number finalName: Optional[str] = None counter = 1 while finalName is None: fullName = prefix + str(counter) + suffix if fullName.lower() not in existing: finalName = fullName break else: counter += 1 if counter >= maxValue: break # raise an error if nothing has been found if finalName is None: raise NameTranslationError("No unique name could be found.") # finished return finalName if __name__ == "__main__": import doctest import sys sys.exit(doctest.testmod().failed) glyphspkg-0.2.1/Lib/glyphspkg/package_to_single.py000066400000000000000000000050431472355150100222550ustar00rootroot00000000000000import logging from pathlib import Path from typing import Any, Dict, List, Optional, Union from glyphspkg.filenames import userNameToFileName from glyphspkg.paths import build_output_file_path from glyphspkg.plist import parse_plist_from_path, save_to_plist_path logger = logging.getLogger(__name__) def package_to_single(input_path: Path, output_path: Optional[Path] = None) -> Path: # The main dict glyphs_file = convert_fontinfo(input_path) if isinstance(glyphs_file, List): logger.error( "Parse error. The fontinfo file should parse as a dict, not list: " f"{input_path}" ) raise TypeError # Glyph order, is used to read individual glyphs files glyph_order = convert_order(input_path) # All glyphs files derived from the Glyph order list glyphs = [] for glyph_name in glyph_order: file_name = userNameToFileName(glyph_name) file_path = input_path / "glyphs" / f"{file_name}.glyph" if not file_path.is_file(): logger.warning( f"Glyph file not found for glyph '{glyph_name}': " f"{file_name}, glyph will be missing in converted file." ) continue glyph = parse_plist_from_path(file_path) glyphs.append(glyph) glyphs_file["glyphs"] = glyphs # UIState, current display strings uistate = convert_uistate(input_path) if isinstance(uistate, List): logger.error( "Parse error. The uistate file should parse as a dict, not list: " f"{input_path}" ) raise TypeError if uistate: # Why the different key casing? glyphs_file["DisplayStrings"] = uistate["displayStrings"] output_file_path = build_output_file_path(input_path, output_path) if input_path == output_file_path: logger.error(f"Saving would overwrite the input file {input_path}") raise FileExistsError logger.info(f"Saving: {output_file_path}") save_to_plist_path(glyphs_file, output_file_path) return output_file_path def convert_fontinfo(input_path: Path) -> Union[Dict[Any, Any], List[Any]]: return parse_plist_from_path(input_path / "fontinfo.plist") def convert_order(input_path: Path) -> Union[Dict[Any, Any], List[Any]]: return parse_plist_from_path(input_path / "order.plist") def convert_uistate(input_path: Path) -> Union[Dict[Any, Any], List[Any]]: uistate_path = input_path / "UIState.plist" if not uistate_path.is_file(): return {} return parse_plist_from_path(uistate_path) glyphspkg-0.2.1/Lib/glyphspkg/paths.py000066400000000000000000000020571472355150100177400ustar00rootroot00000000000000from pathlib import Path from typing import Optional def build_output_file_path( input_path: Path, output_path: Optional[Path] = None, target_suffix: str = ".glyphs" ) -> Path: file_name = input_path.with_suffix(target_suffix).name if output_path is None: # No path was specified, save next to original file output_file_path = input_path.parent / file_name elif output_path.is_dir(): # Output directory was specified, save to original file name with # changed suffix in new dir output_file_path = output_path / file_name else: # Full path with file name was specified, save there output_file_path = output_path return output_file_path def rmdir(directory: Path): """Recursively remove files and directories from a directory, then remove the directory itself. Args: directory (Path): The directory to remove. """ for item in directory.iterdir(): if item.is_dir(): rmdir(item) else: item.unlink() directory.rmdir() glyphspkg-0.2.1/Lib/glyphspkg/plist.py000066400000000000000000000025431472355150100177540ustar00rootroot00000000000000import codecs from pathlib import Path from typing import Any, Dict, List, Union import openstep_plist def parse_plist_from_path( plist_path: Path, ) -> Union[Dict[Any, Any], List[Any]]: with codecs.open(str(plist_path), "rb", "utf-8") as f: d = f.read() return parse(d) def save_to_plist_path(obj: Union[Dict[Any, Any], List[Any]], plist_path: Path) -> None: with codecs.open(str(plist_path), "wb", "utf-8") as f: openstep_plist.dump( obj, f, unicode_escape=False, indent=0, single_line_tuples=True, escape_newlines=False, ) # From glyphsLib.parser # https://github.com/googlefonts/glyphsLib # Licensed under Apache-2.0 def parse(d: str) -> Union[Dict[Any, Any], List[Any]]: try: d = _fl7_format_clean(d) result: Union[Dict[Any, Any], List[Any]] = openstep_plist.loads( d, use_numbers=True ) except openstep_plist.parser.ParseError as e: raise ValueError("Failed to parse file") from e return result def _fl7_format_clean(d: str) -> str: """ FontLab 7 glyphs source format exports include a final closing semicolon. This method removes the semicolon before passing the string to the parser. """ # see https://github.com/googlefonts/fontmake/issues/806 return d.rstrip(";\n") glyphspkg-0.2.1/Lib/glyphspkg/single_to_package.py000066400000000000000000000052001472355150100222500ustar00rootroot00000000000000import logging from pathlib import Path from typing import Any, Dict, List, Optional, Union from glyphspkg.filenames import userNameToFileName from glyphspkg.paths import build_output_file_path, rmdir from glyphspkg.plist import parse_plist_from_path, save_to_plist_path logger = logging.getLogger(__name__) def single_to_package(input_path: Path, output_path: Optional[Path] = None) -> Path: output_file_path = build_output_file_path(input_path, output_path, ".glyphspackage") if input_path == output_file_path: logger.error(f"Saving would overwrite the input file {input_path}") raise FileExistsError # The main dict glyphs_file = parse_plist_from_path(input_path) if isinstance(glyphs_file, List): logger.error( f"Parse error. The file should parse as a dict, not list: {input_path}" ) raise TypeError logger.info(f"Saving: {output_file_path}") # Remove the directory if it exists if output_file_path.exists(): logger.info(f"Output file exists, overwriting: <{output_file_path}>") if output_file_path.is_dir(): rmdir(output_file_path) else: output_file_path.unlink() # Make the directory structure (output_file_path / "glyphs").mkdir(parents=True) # Glyphs glyphs = glyphs_file.get("glyphs", []) convert_glyphs(glyphs, output_file_path) uistate = {"displayStrings": glyphs_file.get("DisplayStrings", [])} convert_uistate(uistate, output_file_path) # Fontinfo # The font info is the original glyphs file structure with the separately written # keys removed for key in ("DisplayStrings", "glyphs"): if key in glyphs_file: del glyphs_file[key] convert_fontinfo(glyphs_file, output_file_path) return output_file_path def convert_fontinfo( fontinfo: Union[Dict[Any, Any], List[Any]], output_path: Path, ) -> None: save_to_plist_path(fontinfo, output_path / "fontinfo.plist") def convert_glyphs( glyphs: Union[Dict[Any, Any], List[Any]], output_path: Path, ) -> None: order = [] for glyph in glyphs: name = glyph["glyphname"] order.append(name) save_to_plist_path( glyph, output_path / "glyphs" / f"{userNameToFileName(name)}.glyph" ) convert_order(order, output_path) def convert_order( order: Union[Dict[Any, Any], List[Any]], output_path: Path, ) -> None: save_to_plist_path(order, output_path / "order.plist") def convert_uistate( uistate: Union[Dict[Any, Any], List[Any]], output_path: Path, ) -> None: save_to_plist_path(uistate, output_path / "UIState.plist") glyphspkg-0.2.1/README.md000066400000000000000000000021061472355150100150030ustar00rootroot00000000000000# glyphspkg Converter for GlyphsApp package to monolithic files and vice versa. [Glyphs](https://glyphsapp.com) supports two different file formats, both of which are based on plist. One, using the suffix `.glyphs`, is a monolithic file, the other, using the suffix `.glyphspackage`, is a special folder that appears as one file on macOS. The _package_ variant has advantages when used in SCM systems, but some external tools only support the monolithic file format. That’s where this converter tool comes in. It can be integrated into font build workflows to convert package files before further processing. ## Installation `glyphspkg` is listed on PyPi, so you can install it via pip. ## Usage ``` usage: glyphspkg [-h] [-o OUTPUT_PATH] glyphsfile [glyphsfile ...] positional arguments: glyphsfile Path to the glyphs file or package to be converted. options: -h, --help show this help message and exit -o OUTPUT_PATH, --output OUTPUT_PATH Output path for converted files. If omitted, the file is saved next to the original. ```glyphspkg-0.2.1/pyproject.toml000066400000000000000000000004011472355150100164340ustar00rootroot00000000000000[tool.black] target-version = ["py38"] [tool.setuptools_scm] write_to = "Lib/glyphspkg/_version.py" version_scheme = "post-release" [build-system] requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.4"] build-backend = "setuptools.build_meta" glyphspkg-0.2.1/setup.cfg000066400000000000000000000024411472355150100153470ustar00rootroot00000000000000[metadata] name = glyphspkg description = Converter from .glyphspackage to .glyphs files and vice versa long_description = file: README.md long_description_content_type = text/markdown; charset=UTF-8 url = https://github.com/jenskutilek/glyphspkg author = Jens Kutilek license = MIT license_files = LICENSE classifiers = Programming Language :: Python :: 3 License :: OSI Approved :: MIT License Operating System :: OS Independent Environment :: Console Topic :: Multimedia :: Graphics Topic :: Multimedia :: Graphics :: Graphics Conversion Topic :: Multimedia :: Graphics :: Editors :: Vector-Based project_urls = Documentation = https://github.com/jenskutilek/glyphspkg Source = https://github.com/jenskutilek/glyphspkg Tracker = https://github.com/jenskutilek/glyphspkg/issues [options] package_dir= =Lib packages=find: platforms = any include_package_data = True install_requires = openstep-plist >= 0.4.0 python_requires = >=3.8 setup_requires = setuptools_scm [options.packages.find] where=Lib [options.entry_points] console_scripts = glyphspkg = glyphspkg.cmdline:main [flake8] select = B, C, E, F, W, T4, B9 ignore = E203, E266, E501, W503, E741 max-line-length = 88 max-complexity = 19 exclude = .git, __pycache__, build, dist, .eggs, .tox glyphspkg-0.2.1/setup.py000066400000000000000000000001051472355150100152330ustar00rootroot00000000000000from setuptools import setup if __name__ == "__main__": setup() glyphspkg-0.2.1/tests/000077500000000000000000000000001472355150100146675ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/000077500000000000000000000000001472355150100156005ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/000077500000000000000000000000001472355150100243365ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/UIState.plist000066400000000000000000000005041472355150100267300ustar00rootroot00000000000000{ displayStrings = ( "ΐΐΐΐΐΐΰΰΰΰΰΰώώώώώώάάάάάάέέέέέέήήήήήή/periodcentered.loclCAT.case/periodcentered.loclCAT.case/periodcentered.loclCAT.case/periodcentered.loclCAT/periodcentered.loclCAT/periodcentered.loclCAT ↊↊↊/commaaccentcomb.alt/commaaccentcomb.alt/commaaccentcomb.alt" ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/fontinfo.plist000066400000000000000000001536561472355150100272550ustar00rootroot00000000000000{ .appVersion = "3306"; .formatVersion = 3; axes = ( { name = Weight; tag = wght; } ); classes = ( { automatic = 1; code = "A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Amacron Aogonek Aring Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Etilde F G Gacute Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Oogonek Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Chedescender-cy Shha-cy Schwa-cy Obarred-cy Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol FdoubleStruck NdoubleStruck QdoubleStruck SdoubleStruck ZdoubleStruck"; name = Uppercase; }, { code = "zero zero.zero one two #twoTurned #threeTurned three four five six seven eight nine"; name = Digit; }, { code = "a b c d e f A B C D E F"; name = DigitHex; } ); customParameters = ( { name = fsType; value = ( ); }, { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "Family Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = 730; size = 10; }, { pos = 550; size = 10; }, { pos = 0; size = -10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); }, { name = isFixedPitch; value = 1; }, { name = "Use Typo Metrics"; value = 1; }, { name = "Enforce Compatibility Check"; value = 1; }, { name = "Write lastChange"; value = 0; }, { name = "Use Line Breaks"; value = 1; } ); date = "2021-06-24 10:39:02 +0000"; familyName = "JetBrains Mono"; featurePrefixes = ( { automatic = 1; code = "languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn AZE; languagesystem latn CRT; languagesystem latn KAZ; languagesystem latn TAT; languagesystem latn TRK; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn CAT; "; name = Languagesystems; } ); features = ( { automatic = 1; code = "feature calt; feature locl; feature subs; feature sinf; feature sups; feature frac; feature ordn; feature case; feature zero; "; tag = aalt; }, { code = "lookup uppercaseSharpS { sub @Uppercase @Uppercase germandbls' by germandbls.calt; sub germandbls' @Uppercase by germandbls.calt; } uppercaseSharpS; lookup equal_colon.liga { ignore sub equal equal' colon; ignore sub equal' colon colon; ignore sub equal' colon equal; sub SPC colon' by equal_colon.liga; sub equal' colon by SPC; } equal_colon.liga; lookup at_underscore.liga { ignore sub at at' underscore; ignore sub at' underscore underscore; sub SPC underscore' by at_underscore.liga; sub at' underscore by SPC; } at_underscore.liga; lookup numbersign_numbersign.liga { ignore sub numbersign numbersign' numbersign; ignore sub numbersign' numbersign numbersign; sub SPC numbersign' by numbersign_numbersign.liga; sub numbersign' numbersign by SPC; } numbersign_numbersign.liga; lookup numbersign_numbersign_numbersign.liga { ignore sub numbersign numbersign' numbersign numbersign; ignore sub numbersign' numbersign numbersign numbersign; sub SPC SPC numbersign' by numbersign_numbersign_numbersign.liga; sub SPC numbersign' numbersign by SPC; sub numbersign' numbersign numbersign by SPC; } numbersign_numbersign_numbersign.liga; lookup numbersign_numbersign_numbersign_numbersign.liga { ignore sub numbersign numbersign' numbersign numbersign numbersign; ignore sub numbersign' numbersign numbersign numbersign numbersign; sub SPC SPC SPC numbersign' by numbersign_numbersign_numbersign_numbersign.liga; sub SPC SPC numbersign' numbersign by SPC; sub SPC numbersign' numbersign numbersign by SPC; sub numbersign' numbersign numbersign numbersign by SPC; } numbersign_numbersign_numbersign_numbersign.liga; lookup bar_braceright.liga { ignore sub bar bar' braceright; ignore sub bar' bar braceright; sub SPC braceright' by bar_braceright.liga; sub bar' braceright by SPC; } bar_braceright.liga; lookup bracketleft_bar.liga { ignore sub bracketleft bracketleft' bar; sub SPC bar' by bracketleft_bar.liga; sub bracketleft' bar by SPC; } bracketleft_bar.liga; lookup bar_bracketright.liga { ignore sub bar' bracketright bracketright; sub SPC bracketright' by bar_bracketright.liga; sub bar' bracketright by SPC; } bar_bracketright.liga; lookup bracketleft_less.liga { ignore sub bracketleft bracketleft' less; ignore sub bracketleft' less less; ignore sub bracketleft' less plus; ignore sub bracketleft' less asterisk; ignore sub bracketleft' less dollar; ignore sub bracketleft' less slash; ignore sub bracketleft' less equal; sub SPC less' by bracketleft_less.liga; sub bracketleft' less by SPC; } bracketleft_less.liga; lookup braceleft_bar.liga { ignore sub braceleft braceleft' bar; ignore sub braceleft' bar bar; sub SPC bar' by braceleft_bar.liga; sub braceleft' bar by SPC; } braceleft_bar.liga; #lookup backslash_backslash.liga { #sub SPC backslash' by #} backslash_backslash.liga; lookup slash_slash.liga { ignore sub slash slash' slash; ignore sub slash' slash slash; ignore sub slash' slash equal; sub SPC slash' by slash_slash.liga; sub slash' slash by SPC; } slash_slash.liga; lookup slash_slash_slash.liga { ignore sub slash slash' slash slash; ignore sub slash' slash slash slash; sub SPC SPC slash' by slash_slash_slash.liga; sub SPC slash' slash by SPC; sub slash' slash slash by SPC; } slash_slash_slash.liga; lookup slash_equal.liga { ignore sub slash slash' equal; ignore sub equal slash' equal; ignore sub slash' equal equal; sub SPC equal' by slash_equal.liga; sub slash' equal by SPC; } slash_equal.liga; lookup slash_slash_equal.liga { ignore sub slash slash' slash equal; ignore sub equal slash' slash equal; ignore sub slash' slash equal equal; sub SPC SPC equal' by slash_slash_equal.liga; sub SPC slash' equal by SPC; sub slash' slash equal by SPC; } slash_slash_equal.liga; lookup slash_equal_equal.liga { ignore sub slash slash' equal equal; ignore sub slash' equal equal equal; sub SPC SPC equal' by slash_equal_equal.liga; sub SPC equal' equal by SPC; sub slash' equal equal by SPC; } slash_equal_equal.liga; lookup slash_asterisk.liga { ignore sub slash slash' asterisk; ignore sub asterisk slash' asterisk; ignore sub slash' asterisk asterisk; ignore sub slash' asterisk slash; ignore sub slash' asterisk period; sub SPC asterisk' by slash_asterisk.liga; sub slash' asterisk by SPC; } slash_asterisk.liga; lookup slash_asterisk_asterisk.liga { ignore sub slash slash' asterisk asterisk; ignore sub asterisk slash' asterisk asterisk; ignore sub slash' asterisk asterisk asterisk; ignore sub slash' asterisk asterisk slash; ignore sub slash' asterisk asterisk period; sub SPC SPC asterisk' by slash_asterisk_asterisk.liga; sub SPC asterisk' asterisk by SPC; sub slash' asterisk asterisk by SPC; } slash_asterisk_asterisk.liga; lookup asterisk_slash.liga { ignore sub asterisk asterisk' slash; ignore sub slash asterisk' slash; ignore sub period asterisk' slash; ignore sub asterisk' slash slash; ignore sub asterisk' slash asterisk; sub SPC slash' by asterisk_slash.liga; sub asterisk' slash by SPC; } asterisk_slash.liga; lookup asterisk_asterisk_asterisk.liga { ignore sub asterisk asterisk' asterisk asterisk; ignore sub asterisk' asterisk asterisk asterisk; sub SPC SPC asterisk' by asterisk_asterisk_asterisk.liga; sub SPC asterisk' asterisk by SPC; sub asterisk' asterisk asterisk by SPC; } asterisk_asterisk_asterisk.liga; lookup plus_plus.liga { ignore sub plus plus' plus; ignore sub plus' plus plus; sub SPC plus' by plus_plus.liga; sub plus' plus by SPC; } plus_plus.liga; lookup plus_plus_plus.liga { ignore sub plus plus' plus plus; ignore sub plus' plus plus plus; sub SPC SPC plus' by plus_plus_plus.liga; sub SPC plus' plus by SPC; sub plus' plus plus by SPC; } plus_plus_plus.liga; lookup period_question.liga { ignore sub period period' question; ignore sub period' question question; sub SPC question' by period_question.liga; sub period' question by SPC; } period_question.liga; lookup period_period.liga { ignore sub period period' period; ignore sub period' period period; ignore sub period' period less; sub SPC period' by period_period.liga; sub period' period by SPC; } period_period.liga; lookup period_period_period.liga { ignore sub period period' period period; ignore sub period' period period period; sub SPC SPC period' by period_period_period.liga; sub SPC period' period by SPC; sub period' period period by SPC; } period_period_period.liga; lookup period_period_less.liga { ignore sub period period' period less; ignore sub period' period less less; sub SPC SPC less' by period_period_less.liga; sub SPC period' less by SPC; sub period' period less by SPC; } period_period_less.liga; lookup less_exclam_hyphen_hyphen.liga { ignore sub less less' exclam hyphen hyphen; ignore sub parenleft question less' exclam hyphen hyphen; ignore sub less' exclam hyphen hyphen hyphen; sub SPC SPC SPC hyphen' by less_exclam_hyphen_hyphen.liga; sub SPC SPC hyphen' hyphen by SPC; sub SPC exclam' hyphen hyphen by SPC; sub less' exclam hyphen hyphen by SPC; } less_exclam_hyphen_hyphen.liga; lookup less_less_hyphen.liga { ignore sub less less' less hyphen; ignore sub less' less hyphen hyphen; sub SPC SPC hyphen' by less_less_hyphen.liga; sub SPC less' hyphen by SPC; sub less' less hyphen by SPC; } less_less_hyphen.liga; lookup less_hyphen.liga { ignore sub less less' hyphen; ignore sub less' hyphen hyphen; ignore sub less' hyphen @Digit greater; ignore sub less' hyphen @Digit @Digit greater; ignore sub less' hyphen @Digit @Digit @Digit greater; ignore sub less' hyphen less; ignore sub less' hyphen bar; ignore sub less' hyphen greater; sub SPC hyphen' by less_hyphen.liga; sub less' hyphen by SPC; } less_hyphen.liga; lookup less_numbersign_hyphen_hyphen.liga { ignore sub less less' numbersign hyphen hyphen; ignore sub less' numbersign hyphen hyphen hyphen; sub SPC SPC SPC hyphen' by less_numbersign_hyphen_hyphen.liga; sub SPC SPC hyphen' hyphen by SPC; sub SPC numbersign' hyphen hyphen by SPC; sub less' numbersign hyphen hyphen by SPC; } less_numbersign_hyphen_hyphen.liga; lookup less_greater.liga { ignore sub less less' greater; ignore sub less' greater greater; sub SPC greater' by less_greater.liga; sub less' greater by SPC; } less_greater.liga; lookup less_colon.liga { ignore sub less less' colon; ignore sub less' colon colon; sub SPC colon' by less_colon.liga; sub less' colon by SPC; } less_colon.liga; lookup less_less.liga { ignore sub less less' less; ignore sub hyphen less' less; ignore sub equal less' less; ignore sub less' less less; ignore sub less' less equal; ignore sub less' less asciitilde; sub SPC less' by less_less.liga; sub less' less by SPC; } less_less.liga; lookup less_less_less.liga { ignore sub less less' less less; ignore sub less' less less less; sub SPC SPC less' by less_less_less.liga; sub SPC less' less by SPC; sub less' less less by SPC; } less_less_less.liga; lookup less_less_asciitilde.liga { ignore sub less less' less asciitilde; ignore sub less' less asciitilde asciitilde; sub SPC SPC asciitilde' by less_less_asciitilde.liga; sub SPC less' asciitilde by SPC; sub less' less asciitilde by SPC; } less_less_asciitilde.liga; lookup less_equal_greater.liga { ignore sub less less' equal greater; ignore sub parenleft question less' equal greater; ignore sub less' equal greater greater; sub SPC SPC greater' by less_equal_greater.liga; sub SPC equal' greater by SPC; sub less' equal greater by SPC; } less_equal_greater.liga; lookup less_hyphen_greater.liga { ignore sub less less' hyphen greater; ignore sub less' hyphen greater greater; sub SPC SPC greater' by less_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub less' hyphen greater by SPC; } less_hyphen_greater.liga; lookup less_bar_bar_bar.liga { ignore sub less less' bar bar bar; ignore sub less' bar bar bar bar; sub SPC SPC SPC bar' by less_bar_bar_bar.liga; sub SPC SPC bar' bar by SPC; sub SPC bar' bar bar by SPC; sub less' bar bar bar by SPC; } less_bar_bar_bar.liga; lookup less_bar_bar.liga { ignore sub less less' bar bar; ignore sub less' bar bar bar; ignore sub less' bar bar greater; sub SPC SPC bar' by less_bar_bar.liga; sub SPC bar' bar by SPC; sub less' bar bar by SPC; } less_bar_bar.liga; lookup less_bar.liga { ignore sub less less' bar; ignore sub less' bar bar bar; ignore sub less' bar greater; sub SPC bar' by less_bar.liga; sub less' bar by SPC; } less_bar.liga; lookup hyphen_bar.liga { ignore sub hyphen hyphen' bar; ignore sub less hyphen' bar; ignore sub hyphen' bar bar; sub SPC bar' by hyphen_bar.liga; sub hyphen' bar by SPC; } hyphen_bar.liga; lookup hyphen_greater_greater.liga { ignore sub hyphen hyphen' greater greater; ignore sub hyphen' greater greater greater; sub SPC SPC greater' by hyphen_greater_greater.liga; sub SPC greater' greater by SPC; sub hyphen' greater greater by SPC; } hyphen_greater_greater.liga; lookup hyphen_hyphen_greater.liga { ignore sub bracketleft hyphen' hyphen greater; ignore sub hyphen hyphen' hyphen greater; ignore sub hyphen' hyphen greater greater; sub SPC SPC greater' by hyphen_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub hyphen' hyphen greater by SPC; } hyphen_hyphen_greater.liga; lookup hyphen_greater.liga { ignore sub bracketleft hyphen' greater; ignore sub hyphen hyphen' greater; ignore sub greater hyphen' greater; ignore sub bar hyphen' greater; ignore sub hyphen' greater greater; ignore sub plus hyphen' greater; sub SPC greater' by hyphen_greater.liga; sub hyphen' greater by SPC; } hyphen_greater.liga; lookup greater_greater.liga { ignore sub greater greater' greater; ignore sub greater' greater greater; ignore sub greater' greater equal; ignore sub greater' greater hyphen; ignore sub equal greater' greater; ignore sub slash greater' greater; sub SPC greater' by greater_greater.liga; sub greater' greater by SPC; } greater_greater.liga; lookup greater_greater_greater.liga { ignore sub greater greater' greater greater; ignore sub greater' greater greater greater; sub SPC SPC greater' by greater_greater_greater.liga; sub SPC greater' greater by SPC; sub greater' greater greater by SPC; } greater_greater_greater.liga; lookup greater_equal.liga { ignore sub greater greater' equal; ignore sub greater' equal equal; ignore sub greater' equal greater; ignore sub greater' equal less; sub SPC equal' by greater_equal.liga; sub greater' equal by SPC; } greater_equal.liga; lookup greater_colon.liga { ignore sub greater greater' colon; ignore sub greater' colon colon; sub SPC colon' by greater_colon.liga; sub greater' colon by SPC; } greater_colon.liga; lookup greater_bracketright.liga { ignore sub greater greater' bracketright; ignore sub plus greater' bracketright; ignore sub asterisk greater' bracketright; ignore sub dollar greater' bracketright; ignore sub slash greater' bracketright; ignore sub equal greater' bracketright; ignore sub greater' bracketright bracketright; sub SPC bracketright' by greater_bracketright.liga; sub greater' bracketright by SPC; } greater_bracketright.liga; lookup less_equal.liga { ignore sub less' equal bar; ignore sub less less' equal; ignore sub parenleft question less' equal; ignore sub less' equal equal; ignore sub less' equal less; sub SPC equal' by less_equal.liga; sub less' equal by SPC; } less_equal.liga; #Less_less lookup less_less_equal.liga { ignore sub less' less equal equal; ignore sub less less' less equal; sub SPC equal' by less_less_equal.liga; sub SPC less' equal by SPC; sub less' less equal by SPC; } less_less_equal.liga; lookup less_equal_equal.liga { ignore sub less less' equal equal; ignore sub parenleft question less' equal equal; ignore sub less' equal equal equal; ignore sub less' equal equal greater; sub SPC SPC equal' by less_equal_equal.liga; sub SPC equal' equal by SPC; sub less' equal equal by SPC; } less_equal_equal.liga; lookup less_bar_greater.liga { ignore sub less less' bar greater; ignore sub less' bar greater greater; sub SPC SPC greater' by less_bar_greater.liga; sub SPC bar' greater by SPC; sub less' bar greater by SPC; } less_bar_greater.liga; lookup underscore_bar_underscore.liga { ignore sub underscore underscore' bar underscore; ignore sub underscore' bar underscore underscore; sub SPC SPC underscore' by underscore_bar_underscore.liga; sub SPC bar' underscore by SPC; sub underscore' bar underscore by SPC; } underscore_bar_underscore.liga; lookup exclam_equal.liga { ignore sub exclam exclam' equal; ignore sub parenleft question exclam' equal; ignore sub parenleft question less exclam' equal; ignore sub equal exclam' equal; ignore sub exclam' equal equal; sub SPC equal' by exclam_equal.liga; sub exclam' equal by SPC; } exclam_equal.liga; lookup exclam_exclam.liga { ignore sub exclam exclam' exclam; ignore sub parenleft question exclam' exclam; ignore sub parenleft question less exclam' exclam; ignore sub exclam' exclam exclam; sub SPC exclam' by exclam_exclam.liga; sub exclam' exclam by SPC; } exclam_exclam.liga; lookup exclam_equal_equal.liga{ ignore sub exclam exclam' equal equal; ignore sub parenleft question exclam' equal equal; ignore sub parenleft question less exclam' equal equal; ignore sub exclam' equal equal equal; sub SPC SPC equal' by exclam_equal_equal.liga; sub SPC equal' equal by SPC; sub exclam' equal equal by SPC; } exclam_equal_equal.liga; lookup equal_exclam_equal.liga{ ignore sub equal equal' exclam equal; ignore sub parenleft question equal' exclam equal; ignore sub equal' exclam equal equal; sub SPC SPC equal' by equal_exclam_equal.liga; sub SPC exclam' equal by SPC; sub equal' exclam equal by SPC; } equal_exclam_equal.liga; lookup equal_greater.liga { ignore sub bracketleft equal' greater; ignore sub equal equal' greater; ignore sub greater equal' greater; ignore sub bar equal' greater; ignore sub parenleft question less equal' greater; ignore sub parenleft question equal' greater; ignore sub equal' greater equal; ignore sub equal' greater greater; sub SPC greater' by equal_greater.liga; sub equal' greater by SPC; } equal_greater.liga; lookup equal_equal.liga { ignore sub equal equal' equal; ignore sub parenleft question less equal' equal; ignore sub parenleft question equal' equal; ignore sub equal' equal equal; ignore sub equal' equal greater; sub SPC equal' by equal_equal.liga; sub equal' equal by SPC; } equal_equal.liga; lookup equal_equal_equal.liga { ignore sub equal equal' equal equal; ignore sub parenleft question equal' equal equal; ignore sub less equal' equal equal; ignore sub equal' equal equal equal; ignore sub equal' equal equal greater; sub SPC SPC equal' by equal_equal_equal.liga; sub SPC equal' equal by SPC; sub equal' equal equal by SPC; } equal_equal_equal.liga; lookup equal_colon_equal.liga { ignore sub equal equal' colon equal; ignore sub parenleft question equal' colon equal; ignore sub equal' colon equal equal; sub SPC SPC equal' by equal_colon_equal.liga; sub SPC colon' equal by SPC; sub equal' colon equal by SPC; } equal_colon_equal.liga; lookup colon_equal.liga { ignore sub equal colon' equal; ignore sub colon colon' equal; ignore sub colon' equal equal; sub SPC equal' by colon_equal.liga; sub colon' equal by SPC; } colon_equal.liga; lookup colon_greater.liga { ignore sub colon colon' greater; ignore sub colon' greater greater; sub SPC greater' by colon_greater.liga; sub colon' greater by SPC; } colon_greater.liga; lookup colon_less.liga { ignore sub colon colon' less; ignore sub colon' less less; sub SPC less' by colon_less.liga; sub colon' less by SPC; } colon_less.liga; lookup colon_colon.liga { ignore sub colon colon' colon; ignore sub colon' colon colon; ignore sub colon' colon equal; sub SPC colon' by colon_colon.liga; sub colon' colon by SPC; } colon_colon.liga; lookup semicolon_semicolon.liga { ignore sub semicolon semicolon' semicolon; ignore sub semicolon' semicolon semicolon; sub SPC semicolon' by semicolon_semicolon.liga; sub semicolon' semicolon by SPC; } semicolon_semicolon.liga; lookup semicolon_semicolon_semicolon.liga { ignore sub semicolon semicolon' semicolon semicolon; ignore sub semicolon' semicolon semicolon semicolon; sub SPC SPC semicolon' by semicolon_semicolon_semicolon.liga; sub SPC semicolon' semicolon by SPC; sub semicolon' semicolon semicolon by SPC; } semicolon_semicolon_semicolon.liga; lookup colon_colon_colon.liga { ignore sub colon colon' colon colon; ignore sub colon' colon colon colon; sub SPC SPC colon' by colon_colon_colon.liga; sub SPC colon' colon by SPC; sub colon' colon colon by SPC; } colon_colon_colon.liga; lookup colon_question.liga { ignore sub colon colon' question; ignore sub colon' question question; ignore sub colon' question greater; sub SPC question' by colon_question.liga; sub colon' question by SPC; } colon_question.liga; lookup colon_question_greater.liga { ignore sub colon colon' question greater; ignore sub colon' question greater greater; sub SPC SPC greater' by colon_question_greater.liga; sub SPC question' greater by SPC; sub colon' question greater by SPC; } colon_question_greater.liga; lookup colon_colon_equal.liga { ignore sub colon colon' colon equal; ignore sub colon' colon equal equal; sub SPC SPC equal' by colon_colon_equal.liga; sub SPC colon' equal by SPC; sub colon' colon equal by SPC; } colon_colon_equal.liga; lookup bar_bar_bar_greater.liga { ignore sub bar bar' bar bar greater; ignore sub bar' bar bar greater greater; sub SPC SPC SPC greater' by bar_bar_bar_greater.liga; sub SPC SPC bar' greater by SPC; sub SPC bar' bar greater by SPC; sub bar' bar bar greater by SPC; } bar_bar_bar_greater.liga; lookup bar_bar_greater.liga { ignore sub bar bar' bar greater; ignore sub less bar' bar greater; ignore sub bar' bar greater greater; sub SPC SPC greater' by bar_bar_greater.liga; sub SPC bar' greater by SPC; sub bar' bar greater by SPC; } bar_bar_greater.liga; lookup bar_greater.liga { ignore sub bar bar' greater; ignore sub bar' greater greater; sub SPC greater' by bar_greater.liga; sub bar' greater by SPC; } bar_greater.liga; lookup bar_bar_hyphen.liga { ignore sub bar bar' bar hyphen hyphen; ignore sub bar' bar bar hyphen; sub SPC SPC hyphen' by bar_bar_hyphen.liga; sub SPC bar' hyphen by SPC; sub bar' bar hyphen by SPC; } bar_bar_hyphen.liga; lookup bar_bar_equal.liga { ignore sub bar bar' bar equal equal; ignore sub bar' bar bar equal; sub SPC SPC equal' by bar_bar_equal.liga; sub SPC bar' equal by SPC; sub bar' bar equal by SPC; } bar_bar_equal.liga; lookup bar_hyphen.liga { ignore sub bar bar' hyphen; ignore sub bar' hyphen hyphen; ignore sub bar' hyphen greater; sub SPC hyphen' by bar_hyphen.liga; sub bar' hyphen by SPC; } bar_hyphen.liga; lookup bar_equal.liga { ignore sub bar bar' equal; ignore sub bar' equal greater; ignore sub bar' equal equal; sub SPC equal' by bar_equal.liga; sub bar' equal by SPC; } bar_equal.liga; lookup bar_bar.liga { ignore sub bar bar' bar; ignore sub bar' bar bar; ignore sub bracketleft bar' bar; ignore sub bar' bar bracketright; sub SPC bar' by bar_bar.liga; sub bar' bar by SPC; } bar_bar.liga; lookup hyphen_hyphen.liga { ignore sub bracketleft hyphen' hyphen greater; ignore sub parenleft question less exclam hyphen' hyphen; ignore sub hyphen hyphen' hyphen; ignore sub less hyphen' hyphen; ignore sub hyphen' hyphen hyphen; sub SPC hyphen' by hyphen_hyphen.liga; sub hyphen' hyphen by SPC; } hyphen_hyphen.liga; lookup less_hyphen_hyphen.liga { ignore sub less less' hyphen hyphen; ignore sub less' hyphen hyphen hyphen; sub SPC SPC hyphen' by less_hyphen_hyphen.liga; sub SPC hyphen' hyphen by SPC; sub less' hyphen hyphen by SPC; } less_hyphen_hyphen.liga; lookup hyphen_hyphen_hyphen.liga { ignore sub bracketleft hyphen' hyphen hyphen greater; ignore sub hyphen hyphen' hyphen hyphen; ignore sub hyphen' hyphen hyphen hyphen; sub SPC SPC hyphen' by hyphen_hyphen_hyphen.liga; sub SPC hyphen' hyphen by SPC; sub hyphen' hyphen hyphen by SPC; } hyphen_hyphen_hyphen.liga; lookup question_question.liga { ignore sub question question' question; ignore sub question' question question; sub SPC question' by question_question.liga; sub question' question by SPC; } question_question.liga; lookup question_colon.liga { ignore sub question question' colon; ignore sub question' colon colon; ignore sub question' colon equal; sub SPC colon' by question_colon.liga; sub question' colon by SPC; } question_colon.liga; lookup question_equal.liga { ignore sub question question' equal; ignore sub question' equal equal; ignore sub parenleft question' equal colon equal; ignore sub parenleft question' equal exclam equal; ignore sub parenleft question' equal less less; ignore sub parenleft question' equal slash equal; ignore sub parenleft question' equal greater; sub SPC equal' by question_equal.liga; sub question' equal by SPC; } question_equal.liga; lookup question_period.liga { ignore sub question question' period; ignore sub question' period period; sub SPC period' by question_period.liga; sub question' period by SPC; } question_period.liga; lookup ampersand_ampersand.liga { ignore sub ampersand ampersand' ampersand; ignore sub ampersand' ampersand ampersand; sub SPC ampersand' by ampersand_ampersand.liga; sub ampersand' ampersand by SPC; } ampersand_ampersand.liga; lookup ampersand_equal.liga { ignore sub ampersand ampersand' equal; ignore sub ampersand' equal equal; ignore sub ampersand' equal greater; sub SPC equal' by ampersand_equal.liga; sub ampersand' equal by SPC; } ampersand_equal.liga; lookup ampersand_ampersand_ampersand.liga { ignore sub ampersand ampersand' ampersand ampersand; ignore sub ampersand' ampersand ampersand ampersand; sub SPC SPC ampersand' by ampersand_ampersand_ampersand.liga; sub SPC ampersand' ampersand by SPC; sub ampersand' ampersand ampersand by SPC; } ampersand_ampersand_ampersand.liga; lookup period_equal.liga { ignore sub period period' equal; ignore sub period' equal equal; sub SPC equal' by period_equal.liga; sub period' equal by SPC; } period_equal.liga; lookup underscore_underscore.liga { ignore sub underscore underscore' underscore; ignore sub underscore' underscore underscore; sub SPC underscore' by underscore_underscore.liga; sub underscore' underscore by SPC; } underscore_underscore.liga; lookup equal_slash_equal.liga { ignore sub equal equal' slash equal; ignore sub parenleft question equal' slash equal; ignore sub equal' slash equal equal; sub SPC SPC equal' by equal_slash_equal.liga; sub SPC slash' equal by SPC; sub equal' slash equal by SPC; } equal_slash_equal.liga; lookup less_hyphen_less.liga { ignore sub less less' hyphen less; ignore sub less' hyphen less less; sub SPC SPC less' by less_hyphen_less.liga; sub SPC hyphen' less by SPC; sub less' hyphen less by SPC; } less_hyphen_less.liga; lookup less_equal_less.liga { ignore sub less less' equal less; ignore sub parenleft question less' equal less; ignore sub less' equal less less; sub SPC SPC less' by less_equal_less.liga; sub SPC equal' less by SPC; sub less' equal less by SPC; } less_equal_less.liga; lookup less_equal_equal_greater.liga { ignore sub less less' equal equal greater; ignore sub parenleft question less' equal equal greater; ignore sub less' equal equal greater greater; sub SPC SPC greater' by less_equal_equal_greater.liga; sub SPC SPC equal' greater by SPC; sub SPC equal' equal greater by SPC; sub less' equal equal greater by SPC; } less_equal_equal_greater.liga; lookup equal_equal_greater.liga { ignore sub bracketleft equal' equal greater; ignore sub equal equal' equal greater; ignore sub parenleft question less equal' equal greater; ignore sub parenleft question equal' equal greater; ignore sub equal' equal greater greater; sub SPC SPC greater' by equal_equal_greater.liga; sub SPC equal' greater by SPC; sub equal' equal greater by SPC; } equal_equal_greater.liga; lookup equal_greater_greater.liga { ignore sub equal equal' greater greater; ignore sub parenleft question equal' greater greater; ignore sub equal' greater greater greater; sub SPC SPC greater' by equal_greater_greater.liga; sub SPC greater' greater by SPC; sub equal' greater greater by SPC; } equal_greater_greater.liga; lookup greater_equal_greater.liga { ignore sub greater greater' equal greater; ignore sub greater' equal greater greater; sub SPC SPC greater' by greater_equal_greater.liga; sub SPC equal' greater by SPC; sub greater' equal greater by SPC; } greater_equal_greater.liga; lookup greater_greater_equal.liga { ignore sub greater greater' greater equal; ignore sub greater' greater equal equal; sub SPC SPC equal' by greater_greater_equal.liga; sub SPC greater' equal by SPC; sub greater' greater equal by SPC; } greater_greater_equal.liga; lookup greater_greater_hyphen.liga { ignore sub greater greater' greater hyphen; ignore sub greater' greater hyphen hyphen; sub SPC SPC hyphen' by greater_greater_hyphen.liga; sub SPC greater' hyphen by SPC; sub greater' greater hyphen by SPC; } greater_greater_hyphen.liga; lookup greater_hyphen.liga { ignore sub greater greater' hyphen; ignore sub greater' hyphen hyphen; ignore sub greater' hyphen greater; ignore sub greater' hyphen less; sub SPC hyphen' by greater_hyphen.liga; sub greater' hyphen by SPC; } greater_hyphen.liga; lookup greater_hyphen_greater.liga { ignore sub greater greater' hyphen greater; ignore sub greater' hyphen greater greater; sub SPC SPC greater' by greater_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub greater' hyphen greater by SPC; } greater_hyphen_greater.liga; lookup less_asciitilde.liga { ignore sub less less' asciitilde; ignore sub less' asciitilde asciitilde; ignore sub less' asciitilde greater; sub SPC asciitilde' by less_asciitilde.liga; sub less' asciitilde by SPC; } less_asciitilde.liga; lookup asciitilde_asciitilde.liga { ignore sub asciitilde asciitilde' asciitilde; ignore sub less asciitilde' asciitilde; ignore sub asciitilde' asciitilde asciitilde; ignore sub asciitilde' asciitilde greater; sub SPC asciitilde' by asciitilde_asciitilde.liga; sub asciitilde' asciitilde by SPC; } asciitilde_asciitilde.liga; lookup less_asciitilde_greater.liga { ignore sub less less' asciitilde greater; ignore sub less' asciitilde greater greater; sub SPC SPC greater' by less_asciitilde_greater.liga; sub SPC asciitilde' greater by SPC; sub less' asciitilde greater by SPC; } less_asciitilde_greater.liga; lookup hyphen_less.liga { ignore sub hyphen hyphen' less; ignore sub less hyphen' less; ignore sub greater hyphen' less; ignore sub hyphen' less less; sub SPC less' by hyphen_less.liga; sub hyphen' less by SPC; } hyphen_less.liga; lookup hyphen_less_less.liga { ignore sub hyphen hyphen' less less; ignore sub hyphen' less less less; sub SPC SPC less' by hyphen_less_less.liga; sub SPC less' less by SPC; sub hyphen' less less by SPC; } hyphen_less_less.liga; lookup equal_less_less.liga { ignore sub equal equal' less less; ignore sub parenleft question equal' less less; ignore sub equal' less less less; sub SPC SPC less' by equal_less_less.liga; sub SPC less' less by SPC; sub equal' less less by SPC; } equal_less_less.liga; lookup less_hyphen_bar.liga { ignore sub less less' hyphen bar; ignore sub less' hyphen bar bar; sub SPC SPC bar' by less_hyphen_bar.liga; sub SPC hyphen' bar by SPC; sub less' hyphen bar by SPC; } less_hyphen_bar.liga; lookup less_equal_bar.liga { ignore sub less less' equal bar; ignore sub parenleft question less' equal bar; ignore sub less' equal bar bar; sub SPC SPC bar' by less_equal_bar.liga; sub SPC equal' bar by SPC; sub less' equal bar by SPC; } less_equal_bar.liga; lookup bar_equal_greater.liga { ignore sub bar bar' equal greater; ignore sub bar' equal greater greater; sub SPC SPC greater' by bar_equal_greater.liga; sub SPC equal' greater by SPC; sub bar' equal greater by SPC; } bar_equal_greater.liga; lookup bar_hyphen_greater.liga { ignore sub bar bar' hyphen greater; ignore sub bar' hyphen greater greater; sub SPC SPC greater' by bar_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub bar' hyphen greater by SPC; } bar_hyphen_greater.liga; lookup less_asciitilde_asciitilde.liga { ignore sub less less' asciitilde asciitilde; ignore sub less' asciitilde asciitilde asciitilde; ignore sub less' asciitilde asciitilde greater; sub SPC SPC asciitilde' by less_asciitilde_asciitilde.liga; sub SPC asciitilde' asciitilde by SPC; sub less' asciitilde asciitilde by SPC; } less_asciitilde_asciitilde.liga; lookup hyphen_asciitilde.liga { ignore sub hyphen hyphen' asciitilde; ignore sub hyphen' asciitilde asciitilde; ignore sub hyphen' asciitilde greater; sub SPC asciitilde' by hyphen_asciitilde.liga; sub hyphen' asciitilde by SPC; } hyphen_asciitilde.liga; lookup asciitilde_asciitilde_greater.liga { ignore sub asciitilde asciitilde' asciitilde greater; ignore sub asciitilde' asciitilde greater greater; sub SPC SPC greater' by asciitilde_asciitilde_greater.liga; sub SPC asciitilde' greater by SPC; sub asciitilde' asciitilde greater by SPC; } asciitilde_asciitilde_greater.liga; lookup asciitilde_greater.liga { ignore sub asciitilde asciitilde' greater; ignore sub asciitilde' greater greater; sub SPC greater' by asciitilde_greater.liga; sub asciitilde' greater by SPC; } asciitilde_greater.liga; lookup asciitilde_hyphen.liga { ignore sub asciitilde asciitilde' hyphen; ignore sub asciitilde' hyphen hyphen; sub SPC hyphen' by asciitilde_hyphen.liga; sub asciitilde' hyphen by SPC; } asciitilde_hyphen.liga; lookup asciitilde_at.liga { ignore sub asciitilde asciitilde' at; ignore sub asciitilde' at at; sub SPC at' by asciitilde_at.liga; sub asciitilde' at by SPC; } asciitilde_at.liga; lookup asciicircum_equal.liga { ignore sub asciicircum asciicircum' equal; ignore sub asciicircum' equal equal; sub SPC equal' by asciicircum_equal.liga; sub asciicircum' equal by SPC; } asciicircum_equal.liga; lookup less_dollar_greater.liga { ignore sub less less' dollar greater; ignore sub less' dollar greater greater; sub SPC SPC greater' by less_dollar_greater.liga; sub SPC dollar' greater by SPC; sub less' dollar greater by SPC; } less_dollar_greater.liga; lookup less_dollar.liga { ignore sub less less' dollar; ignore sub less' dollar dollar; sub SPC dollar' by less_dollar.liga; sub less' dollar by SPC; } less_dollar.liga; lookup dollar_greater.liga { ignore sub dollar dollar' greater; ignore sub dollar' greater greater; sub SPC greater' by dollar_greater.liga; sub dollar' greater by SPC; } dollar_greater.liga; lookup less_plus_greater.liga { ignore sub less less' plus greater; ignore sub less' plus greater greater; sub SPC SPC greater' by less_plus_greater.liga; sub SPC plus' greater by SPC; sub less' plus greater by SPC; } less_plus_greater.liga; lookup less_plus.liga { ignore sub less less' plus; ignore sub less' plus plus; sub SPC plus' by less_plus.liga; sub less' plus by SPC; } less_plus.liga; lookup plus_greater.liga { ignore sub plus plus' greater; ignore sub plus' greater greater; sub SPC greater' by plus_greater.liga; sub plus' greater by SPC; } plus_greater.liga; lookup less_asterisk_greater.liga { ignore sub less less' asterisk greater; ignore sub less' asterisk greater greater; sub SPC SPC greater' by less_asterisk_greater.liga; sub SPC asterisk' greater by SPC; sub less' asterisk greater by SPC; } less_asterisk_greater.liga; lookup less_asterisk.liga { ignore sub less less' asterisk; ignore sub less' asterisk asterisk; sub SPC asterisk' by less_asterisk.liga; sub less' asterisk by SPC; } less_asterisk.liga; lookup asterisk_greater.liga { ignore sub asterisk asterisk' greater; ignore sub asterisk' greater greater; sub SPC greater' by asterisk_greater.liga; sub asterisk' greater by SPC; } asterisk_greater.liga; lookup less_slash_greater.liga { ignore sub less less' slash greater; ignore sub less' slash greater greater; sub SPC SPC greater' by less_slash_greater.liga; sub SPC slash' greater by SPC; sub less' slash greater by SPC; } less_slash_greater.liga; lookup less_slash.liga { ignore sub less less' slash; ignore sub less' slash slash; sub SPC slash' by less_slash.liga; sub less' slash by SPC; } less_slash.liga; lookup slash_greater.liga { ignore sub slash slash' greater; ignore sub slash' greater greater; sub SPC greater' by slash_greater.liga; sub slash' greater by SPC; } slash_greater.liga; lookup numbersign_braceleft.liga { ignore sub numbersign numbersign' braceleft; ignore sub numbersign' braceleft braceleft; sub SPC braceleft' by numbersign_braceleft.liga; sub numbersign' braceleft by SPC; } numbersign_braceleft.liga; lookup numbersign_bracketleft.liga { ignore sub numbersign numbersign' bracketleft; ignore sub numbersign' bracketleft bracketleft; sub SPC bracketleft' by numbersign_bracketleft.liga; sub numbersign' bracketleft by SPC; } numbersign_bracketleft.liga; lookup numbersign_parenleft.liga { ignore sub numbersign numbersign' parenleft; ignore sub numbersign' parenleft parenleft; sub SPC parenleft' by numbersign_parenleft.liga; sub numbersign' parenleft by SPC; } numbersign_parenleft.liga; lookup numbersign_question.liga { ignore sub numbersign numbersign' question; ignore sub numbersign' question question; sub SPC question' by numbersign_question.liga; sub numbersign' question by SPC; } numbersign_question.liga; lookup numbersign_underscore.liga { ignore sub numbersign numbersign' underscore; ignore sub numbersign' underscore underscore; ignore sub numbersign' underscore parenleft; sub SPC underscore' by numbersign_underscore.liga; sub numbersign' underscore by SPC; } numbersign_underscore.liga; lookup numbersign_exclam.liga { ignore sub numbersign numbersign' exclam; ignore sub numbersign' exclam exclam; sub SPC exclam' by numbersign_exclam.liga; sub numbersign' exclam by SPC; } numbersign_exclam.liga; lookup numbersign_colon.liga { ignore sub numbersign numbersign' colon; ignore sub numbersign' colon colon; sub SPC colon' by numbersign_colon.liga; sub numbersign' colon by SPC; } numbersign_colon.liga; lookup numbersign_equal.liga { ignore sub numbersign numbersign' equal; ignore sub numbersign' equal equal; sub SPC equal' by numbersign_equal.liga; sub numbersign' equal by SPC; } numbersign_equal.liga; lookup numbersign_underscore_parenleft.liga{ ignore sub numbersign numbersign' underscore parenleft ; ignore sub numbersign' underscore parenleft parenleft; sub SPC SPC parenleft' by numbersign_underscore_parenleft.liga; sub SPC underscore' parenleft by SPC; sub numbersign' underscore parenleft by SPC; } numbersign_underscore_parenleft.liga; lookup bracketright_numbersign.liga { ignore sub bracketright bracketright' numbersign; ignore sub bracketright' numbersign numbersign; sub SPC numbersign' by bracketright_numbersign.liga; sub bracketright' numbersign by SPC; } bracketright_numbersign.liga; "; tag = calt; }, { automatic = 1; code = "lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dblgravecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb ogonekcomb ringbelowcomb horncomb slashlongcomb slashshortcomb strokelongcomb]; sub [i j]' @CombiningTopAccents by [idotless jdotless]; sub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless]; @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb dblgravecomb commaturnedabovecomb horncomb dotbelowcomb commaaccentcomb cedillacomb ogonekcomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron tonos brevecomb_acutecomb brevecomb_gravecomb brevecomb_hookabovecomb brevecomb_tildecomb circumflexcomb_acutecomb circumflexcomb_gravecomb circumflexcomb_hookabovecomb circumflexcomb_tildecomb]; @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case dblgravecomb.case commaturnedabovecomb.case horncomb.case dotbelowcomb.case commaaccentcomb.case cedillacomb.case ogonekcomb.case dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case tonos.case brevecomb_acutecomb.case brevecomb_gravecomb.case brevecomb_hookabovecomb.case brevecomb_tildecomb.case circumflexcomb_acutecomb.case circumflexcomb_gravecomb.case circumflexcomb_hookabovecomb.case circumflexcomb_tildecomb.case]; sub @Markscomb @Markscomb' by @MarkscombCase; sub @Uppercase @Markscomb' by @MarkscombCase; } ccmp_Other_1; lookup ccmp_Other_2 { sub @Markscomb' @MarkscombCase by @MarkscombCase; sub @MarkscombCase @Markscomb' by @MarkscombCase; } ccmp_Other_2; lookup ccmp_latn_1 { lookupflag 0; sub brevecomb acutecomb by brevecomb_acutecomb; sub brevecomb.case acutecomb.case by brevecomb_acutecomb.case; sub brevecomb gravecomb by brevecomb_gravecomb; sub brevecomb.case gravecomb.case by brevecomb_gravecomb.case; sub brevecomb hookabovecomb by brevecomb_hookabovecomb; sub brevecomb.case hookabovecomb.case by brevecomb_hookabovecomb.case; sub brevecomb tildecomb by brevecomb_tildecomb; sub brevecomb.case tildecomb.case by brevecomb_tildecomb.case; sub circumflexcomb acutecomb by circumflexcomb_acutecomb; sub circumflexcomb.case acutecomb.case by circumflexcomb_acutecomb.case; sub circumflexcomb gravecomb by circumflexcomb_gravecomb; sub circumflexcomb.case gravecomb.case by circumflexcomb_gravecomb.case; sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; sub circumflexcomb.case hookabovecomb.case by circumflexcomb_hookabovecomb.case; sub circumflexcomb tildecomb by circumflexcomb_tildecomb; sub circumflexcomb.case tildecomb.case by circumflexcomb_tildecomb.case; } ccmp_latn_1; script latn; lookup ccmp_latn_1; "; tag = ccmp; }, { code = "lookup locl_latn_0 { script latn; language AZE; sub i by idotaccent; language CRT; sub i by idotaccent; language KAZ; sub i by idotaccent; language TAT; sub i by idotaccent; language TRK; sub i by idotaccent; } locl_latn_0; lookup locl_latn_1 { script latn; language ROM; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; language MOL; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_1; lookup locl_latn_2 { script latn; language CAT; sub l periodcentered' l by periodcentered.loclCAT; sub L periodcentered' L by periodcentered.loclCAT.case; #sub l.ss01 periodcentered' l.ss01 by periodcentered.loclCAT; } locl_latn_2; "; tag = locl; }, { automatic = 1; code = "sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; "; tag = subs; }, { automatic = 1; code = "sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; "; tag = sinf; }, { automatic = 1; code = "sub zero by zerosuperior; sub one by onesuperior; sub two by twosuperior; sub three by threesuperior; sub four by foursuperior; sub five by fivesuperior; sub six by sixsuperior; sub seven by sevensuperior; sub eight by eightsuperior; sub nine by ninesuperior; sub plus by plussuperior; "; tag = sups; }, { automatic = 1; code = "sub one slash four by onequarter; sub one slash two by onehalf; sub three slash four by threequarters; "; tag = frac; }, { automatic = 1; code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; "; tag = ordn; }, { automatic = 1; code = "sub colon by colon.case; sub periodcentered.loclCAT by periodcentered.loclCAT.case; sub dieresiscomb by dieresiscomb.case; sub dotaccentcomb by dotaccentcomb.case; sub gravecomb by gravecomb.case; sub acutecomb by acutecomb.case; sub hungarumlautcomb by hungarumlautcomb.case; sub circumflexcomb by circumflexcomb.case; sub caroncomb by caroncomb.case; sub brevecomb by brevecomb.case; sub ringcomb by ringcomb.case; sub tildecomb by tildecomb.case; sub macroncomb by macroncomb.case; sub hookabovecomb by hookabovecomb.case; sub dblgravecomb by dblgravecomb.case; sub commaturnedabovecomb by commaturnedabovecomb.case; sub horncomb by horncomb.case; sub dotbelowcomb by dotbelowcomb.case; sub commaaccentcomb by commaaccentcomb.case; sub cedillacomb by cedillacomb.case; sub ogonekcomb by ogonekcomb.case; sub dieresis by dieresis.case; sub dotaccent by dotaccent.case; sub grave by grave.case; sub acute by acute.case; sub hungarumlaut by hungarumlaut.case; sub circumflex by circumflex.case; sub caron by caron.case; sub breve by breve.case; sub ring by ring.case; sub tilde by tilde.case; sub macron by macron.case; sub tonos by tonos.case; sub brevecomb_acutecomb by brevecomb_acutecomb.case; sub brevecomb_gravecomb by brevecomb_gravecomb.case; sub brevecomb_hookabovecomb by brevecomb_hookabovecomb.case; sub brevecomb_tildecomb by brevecomb_tildecomb.case; sub circumflexcomb_acutecomb by circumflexcomb_acutecomb.case; sub circumflexcomb_gravecomb by circumflexcomb_gravecomb.case; sub circumflexcomb_hookabovecomb by circumflexcomb_hookabovecomb.case; sub circumflexcomb_tildecomb by circumflexcomb_tildecomb.case; "; tag = case; }, { automatic = 1; code = "sub zero by zero.zero; "; tag = zero; } ); fontMaster = ( { axesValues = ( 100 ); customParameters = ( { name = winAscent; value = 1020; }, { name = winDescent; value = 300; }, { name = hheaAscender; value = 1020; }, { name = hheaDescender; value = -300; }, { name = typoAscender; value = 1020; }, { name = typoDescender; value = -300; }, { name = hheaLineGap; value = 0; }, { name = typoLineGap; value = 0; }, { name = strikeoutPosition; value = 320; }, { name = "Master Icon Glyph Name"; value = T; }, { name = underlinePosition; value = -155; }, { name = underlineThickness; value = 50; }, { name = "Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); } ); iconName = Light; id = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; metricValues = ( { over = 10; pos = 730; }, { over = 10; pos = 730; }, { over = 10; pos = 550; }, { over = -10; }, { pos = -270; }, { pos = 9; } ); name = Thin; stemValues = ( 45, 50, 0, 0 ); userData = { GSCornerRadius = 15; de.kutilek.MasterGrid.type = units; de.kutilek.MasterGrid.value = ( 10, 10 ); }; }, { axesValues = ( 400 ); customParameters = ( { name = winAscent; value = 1020; }, { name = winDescent; value = 300; }, { name = hheaAscender; value = 1020; }, { name = hheaDescender; value = -300; }, { name = typoAscender; value = 1020; }, { name = typoDescender; value = -300; }, { name = hheaLineGap; value = 0; }, { name = typoLineGap; value = 0; }, { name = strikeoutPosition; value = 320; }, { name = "Master Icon Glyph Name"; value = R; }, { name = underlinePosition; value = -155; }, { name = underlineThickness; value = 50; }, { name = "Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); } ); id = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; metricValues = ( { over = 10; pos = 730; }, { over = 10; pos = 730; }, { over = 10; pos = 550; }, { over = -10; }, { pos = -270; }, { pos = 9; } ); name = Italic; stemValues = ( 82, 90, 60, 60 ); }, { axesValues = ( 800 ); customParameters = ( { name = winAscent; value = 1020; }, { name = winDescent; value = 300; }, { name = hheaAscender; value = 1020; }, { name = hheaDescender; value = -300; }, { name = typoAscender; value = 1020; }, { name = typoDescender; value = -300; }, { name = hheaLineGap; value = 0; }, { name = typoLineGap; value = 0; }, { name = strikeoutPosition; value = 320; }, { name = "Master Icon Glyph Name"; value = B; }, { name = underlinePosition; value = -155; }, { name = underlineThickness; value = 50; }, { name = "Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); } ); iconName = Bold; id = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; metricValues = ( { over = 10; pos = 730; }, { over = 10; pos = 730; }, { over = 10; pos = 550; }, { over = -10; }, { pos = -270; }, { pos = 9; } ); name = ExtraBold; stemValues = ( 140, 150, 0, 120 ); userData = { de.kutilek.MasterGrid.type = units; de.kutilek.MasterGrid.value = ( 10, 10 ); }; } ); instances = ( { axesValues = ( 100 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = 1; }; isItalic = 1; linkStyle = Thin; name = "Thin Italic"; weightClass = 100; }, { axesValues = ( 220 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.4; "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = 0.6; }; isItalic = 1; linkStyle = ExtraLight; name = "ExtraLight Italic"; weightClass = 200; }, { axesValues = ( 320 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.73333; "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = 0.26667; }; isItalic = 1; linkStyle = Light; name = "Light Italic"; weightClass = 300; }, { axesValues = ( 400 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 1; }; isItalic = 1; name = Italic; }, { axesValues = ( 460 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 0.15; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.85; }; isItalic = 1; linkStyle = Medium; name = "Medium Italic"; weightClass = 500; }, { axesValues = ( 520 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 0.3; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.7; }; isItalic = 1; linkStyle = SemiBold; name = "SemiBold Italic"; weightClass = 600; }, { axesValues = ( 634 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 0.585; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.415; }; isBold = 1; isItalic = 1; name = "Bold Italic"; weightClass = 700; }, { axesValues = ( 800 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 1; }; isItalic = 1; linkStyle = ExtraBold; name = "ExtraBold Italic"; weightClass = 800; }, { customParameters = ( { name = "Variable Font Origin"; value = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; } ); name = Regular; type = variable; } ); metrics = ( { type = ascender; }, { type = "cap height"; }, { type = "x-height"; }, { type = baseline; }, { type = descender; }, { type = "italic angle"; } ); properties = ( { key = copyrights; values = ( { language = dflt; value = "Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)"; } ); }, { key = designers; values = ( { language = dflt; value = "Philipp Nurullin, Konstantin Bulenkov"; } ); }, { key = designerURL; value = "https://www.jetbrains.com"; }, { key = licenses; values = ( { language = dflt; value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL"; } ); }, { key = licenseURL; value = "https://scripts.sil.org/OFL"; }, { key = manufacturers; values = ( { language = dflt; value = JetBrains; } ); }, { key = manufacturerURL; value = "https://www.jetbrains.com"; }, { key = trademarks; values = ( { language = dflt; value = "JetBrains Mono is a trademark of JetBrains s.r.o."; } ); }, { key = vendorID; value = JB; } ); stems = ( { horizontal = 1; name = hStem0; }, { name = vStem0; }, { horizontal = 1; name = hStem1; }, { name = vStem1; } ); unitsPerEm = 1000; userData = { GSDimensionPlugin.Dimensions = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = { HH = 140; HV = 150; OH = 130; OV = 150; nV = 150; oH = 130; oV = 150; tH = 135; }; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = { HH = 82; HV = 92; OH = 80; OV = 90; nV = 90; oH = 80; oV = 90; tH = 82; }; "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = { HH = 45; HV = 50; OH = 44; OV = 50; nV = 50; oH = 44; oV = 50; tH = 45; }; }; }; versionMajor = 2; versionMinor = 240; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/000077500000000000000000000000001472355150100256445ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_-cy.glyph000066400000000000000000000006021472355150100276370ustar00rootroot00000000000000{ glyphname = "A-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = A; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = A; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = A; } ); width = 600; } ); unicode = 1040; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_.glyph000066400000000000000000000026621472355150100272360ustar00rootroot00000000000000{ glyphname = A; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (450,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (76,0,l), (165,210,l), (415,210,l), (438,0,l), (488,0,l), (403,730,l), (341,730,l), (24,0,l) ); }, { closed = 1; nodes = ( (311,550,ls), (342,622,o), (362,673,o), (367,688,c), (368,673,o), (370,622,o), (378,550,cs), (410,255,l), (184,255,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (430,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (138,0,l), (199,165,l), (373,165,l), (382,0,l), (531,0,l), (466,730,l), (276,730,l), (-19,0,l) ); }, { closed = 1; nodes = ( (308,462,ls), (326,512,o), (343,567,o), (352,595,c), (353,567,o), (357,512,o), (359,461,cs), (366,285,l), (243,285,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (455,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (101,0,l), (180,194,l), (401,194,l), (418,0,l), (506,0,l), (433,730,l), (312,730,l), (6,0,l) ); }, { closed = 1; nodes = ( (302,496,ls), (336,580,o), (357,640,o), (363,658,c), (363,640,o), (365,580,o), (373,495,cs), (394,270,l), (210,270,l) ); } ); width = 600; } ); unicode = 65; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_E_.glyph000066400000000000000000000026671472355150100275070ustar00rootroot00000000000000{ glyphname = AE; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (99,0,l), (151,165,l), (273,165,l), (247,0,l), (536,0,l), (556,126,l), (392,126,l), (420,305,l), (559,305,l), (580,436,l), (441,436,l), (468,605,l), (632,605,l), (652,730,l), (209,730,l), (-44,0,l) ); }, { closed = 1; nodes = ( (294,605,l), (343,605,l), (290,270,l), (185,270,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (77,0,l), (149,203,l), (290,203,l), (258,0,l), (526,0,l), (539,82,l), (357,82,l), (398,338,l), (555,338,l), (568,420,l), (411,420,l), (447,648,l), (629,648,l), (642,730,l), (247,730,l), (-14,0,l) ); }, { closed = 1; nodes = ( (305,648,l), (361,648,l), (302,278,l), (175,278,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (40,0,l), (130,215,l), (300,215,l), (266,0,l), (525,0,l), (532,45,l), (323,45,l), (373,357,l), (546,357,l), (553,402,l), (380,402,l), (424,685,l), (633,685,l), (641,730,l), (294,730,l), (-10,0,l) ); }, { closed = 1; nodes = ( (323,685,l), (374,685,l), (307,260,l), (150,260,l) ); } ); width = 600; } ); unicode = 198; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_E_acute.glyph000066400000000000000000000010031472355150100305100ustar00rootroot00000000000000{ glyphname = AEacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = AE; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = AE; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = AE; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 508; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_P_L_iota.glyph000066400000000000000000000005341472355150100306410ustar00rootroot00000000000000{ glyphname = APLiota; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = iota; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = iota; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = iota; } ); width = 600; } ); unicode = 9075; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_P_L_rho.glyph000066400000000000000000000033541472355150100305000ustar00rootroot00000000000000{ glyphname = APLrho; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (143,-180,l), (167,-30,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs), (422,-10,o), (508,74,o), (528,205,cs), (551,345,ls), (571,475,o), (490,560,o), (348,560,cs), (206,560,o), (97,475,o), (77,345,cs), (-7,-180,l) ); }, { closed = 1; nodes = ( (223,120,o), (196,153,o), (205,210,cs), (226,340,ls), (235,398,o), (271,430,o), (327,430,cs), (383,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,-180,l), (137,-20,l), (155,105,l), (175,105,l), (160,126,l), (147,43,o), (196,-10,o), (286,-10,cs), (397,-10,o), (477,68,o), (497,195,cs), (522,356,ls), (542,483,o), (477,560,o), (348,560,cs), (219,560,o), (126,482,o), (106,356,cs), (21,-180,l) ); }, { closed = 1; nodes = ( (195,68,o), (159,117,o), (172,200,cs), (195,350,ls), (209,435,o), (258,482,o), (334,482,cs), (410,482,o), (445,435,o), (431,350,cs), (408,200,ls), (394,115,o), (345,68,o), (269,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (128,75,l), (146,75,l), (128,140,l), (114,50,o), (170,-10,o), (267,-10,cs), (376,-10,o), (462,70,o), (481,190,cs), (508,361,ls), (527,482,o), (465,560,o), (348,560,cs), (228,560,o), (142,484,o), (123,361,cs), (37,-180,l) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,190,cs), (173,361,ls), (188,458,o), (251,517,o), (341,517,cs), (430,517,o), (474,459,o), (458,361,cs), (431,190,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; } ); unicode = 9076; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_P_L_tildedieresis.glyph000066400000000000000000000010451472355150100325340ustar00rootroot00000000000000{ glyphname = APLtildedieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (586,-90); ref = dieresiscomb; }, { ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (586,-90); ref = dieresiscomb; }, { ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (585,-90); ref = dieresiscomb; }, { ref = asciitilde; } ); width = 600; } ); unicode = 9064; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_acute.glyph000066400000000000000000000007171472355150100302570ustar00rootroot00000000000000{ glyphname = Aacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 193; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_breve.glyph000066400000000000000000000007171472355150100302610ustar00rootroot00000000000000{ glyphname = Abreve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 258; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_breveacute.glyph000066400000000000000000000007631472355150100313040ustar00rootroot00000000000000{ glyphname = Abreveacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_acutecomb.case; } ); width = 600; } ); unicode = 7854; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_brevedotbelow.glyph000066400000000000000000000011371472355150100320160ustar00rootroot00000000000000{ glyphname = Abrevedotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (600,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 7862; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_brevegrave.glyph000066400000000000000000000007631472355150100313070ustar00rootroot00000000000000{ glyphname = Abrevegrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_gravecomb.case; } ); width = 600; } ); unicode = 7856; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_brevehookabove.glyph000066400000000000000000000010031472355150100321440ustar00rootroot00000000000000{ glyphname = Abrevehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7858; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_brevetilde.glyph000066400000000000000000000007631472355150100313040ustar00rootroot00000000000000{ glyphname = Abrevetilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_tildecomb.case; } ); width = 600; } ); unicode = 7860; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_caron.glyph000066400000000000000000000007171472355150100302600ustar00rootroot00000000000000{ glyphname = Acaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 461; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_circumflex.glyph000066400000000000000000000007431472355150100313160ustar00rootroot00000000000000{ glyphname = Acircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 194; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_circumflexacute.glyph000066400000000000000000000010071472355150100323320ustar00rootroot00000000000000{ glyphname = Acircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; } ); unicode = 7844; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_circumflexdotbelow.glyph000066400000000000000000000011631472355150100330530ustar00rootroot00000000000000{ glyphname = Acircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 7852; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_circumflexgrave.glyph000066400000000000000000000010071472355150100323350ustar00rootroot00000000000000{ glyphname = Acircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; } ); unicode = 7846; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_circumflexhookabove.glyph000066400000000000000000000010271472355150100332100ustar00rootroot00000000000000{ glyphname = Acircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7848; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_circumflextilde.glyph000066400000000000000000000010071472355150100323320ustar00rootroot00000000000000{ glyphname = Acircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; } ); unicode = 7850; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_dieresis.glyph000066400000000000000000000007331472355150100307630ustar00rootroot00000000000000{ glyphname = Adieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 196; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_dotbelow.glyph000066400000000000000000000007341472355150100307740ustar00rootroot00000000000000{ glyphname = Adotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7840; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_grave.glyph000066400000000000000000000007171472355150100302620ustar00rootroot00000000000000{ glyphname = Agrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 192; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_hookabove.glyph000066400000000000000000000007401472355150100311270ustar00rootroot00000000000000{ glyphname = Ahookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7842; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_lpha.glyph000066400000000000000000000005201472355150100300720ustar00rootroot00000000000000{ glyphname = Alpha; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; } ); width = 600; } ); unicode = 913; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_lphatonos.glyph000066400000000000000000000007721472355150100311660ustar00rootroot00000000000000{ glyphname = Alphatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { alignment = -1; pos = (-180,0); ref = tonos.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { alignment = -1; pos = (-215,0); ref = tonos.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { alignment = -1; pos = (-240,0); ref = tonos.case; } ); width = 600; } ); unicode = 902; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_macron.glyph000066400000000000000000000007231472355150100304320ustar00rootroot00000000000000{ glyphname = Amacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 256; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_ogonek.glyph000066400000000000000000000021371472355150100304360ustar00rootroot00000000000000{ glyphname = Aogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (497,-195,l), (504,-153,l), (440,-153,ls), (408,-153,o), (392,-134,o), (397,-103,cs), (401,-75,o), (430,-36,o), (474,0,cs), (487,10,l), (450,10,l), (393,-27,o), (354,-74,o), (348,-115,cs), (340,-165,o), (369,-195,o), (424,-195,c) ); }, { ref = A; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,-203,l), (518,-143,l), (458,-143,ls), (424,-143,o), (407,-122,o), (411,-93,cs), (416,-65,o), (439,-36,o), (490,1,c), (503,10,l), (428,10,l), (358,-34,o), (330,-72,o), (324,-110,cs), (315,-164,o), (357,-203,o), (431,-203,cs) ); }, { ref = A; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (492,-225,l), (509,-120,l), (440,-120,ls), (411,-120,o), (397,-103,o), (400,-83,cs), (403,-66,o), (421,-42,o), (451,-18,cs), (488,11,l), (402,11,l), (329,-19,o), (278,-68,o), (271,-115,cs), (260,-180,o), (303,-225,o), (384,-225,cs) ); }, { ref = A; } ); width = 600; } ); unicode = 260; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_ring.glyph000066400000000000000000000007131472355150100301110ustar00rootroot00000000000000{ glyphname = Aring; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; } ); unicode = 197; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/A_tilde.glyph000066400000000000000000000007171472355150100302570ustar00rootroot00000000000000{ glyphname = Atilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 195; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/B_.glyph000066400000000000000000000037441472355150100272410ustar00rootroot00000000000000{ glyphname = B; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (419,0,o), (529,83,o), (549,211,cs), (567,323,o), (493,381,o), (396,380,c), (397,383,l), (485,383,o), (571,446,o), (586,543,cs), (604,657,o), (521,730,o), (373,730,cs), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (217,318,l), (310,318,ls), (375,318,o), (409,280,o), (400,219,cs), (390,158,o), (344,121,o), (279,121,cs), (186,121,l) ); }, { closed = 1; nodes = ( (263,609,l), (351,609,ls), (409,609,o), (440,577,o), (432,523,cs), (423,469,o), (382,436,o), (324,436,cs), (236,436,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (271,0,ls), (404,0,o), (498,78,o), (518,203,cs), (537,320,o), (474,395,o), (358,393,c), (356,378,l), (463,376,o), (539,440,o), (555,541,cs), (573,659,o), (505,730,o), (372,730,cs), (165,730,l), (49,0,l) ); }, { closed = 1; nodes = ( (191,341,l), (315,341,ls), (399,341,o), (442,286,o), (430,206,cs), (417,129,o), (358,81,o), (274,81,cs), (150,81,l) ); }, { closed = 1; nodes = ( (240,649,l), (359,649,ls), (436,649,o), (476,605,o), (465,534,cs), (453,463,o), (398,419,o), (321,419,cs), (203,419,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (257,0,ls), (389,0,o), (484,78,o), (504,200,cs), (521,310,o), (464,380,o), (356,380,c), (355,370,l), (452,370,o), (524,439,o), (540,542,cs), (558,656,o), (491,730,o), (370,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (172,353,l), (313,353,ls), (415,353,o), (469,294,o), (454,199,cs), (438,104,o), (366,46,o), (264,46,cs), (123,46,l) ); }, { closed = 1; nodes = ( (224,684,l), (362,684,ls), (455,684,o), (504,630,o), (490,541,cs), (476,452,o), (411,398,o), (317,398,cs), (179,398,l) ); } ); width = 600; } ); unicode = 66; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/B_e-cy.glyph000066400000000000000000000024451472355150100300140ustar00rootroot00000000000000{ glyphname = "Be-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (416,0,o), (530,89,o), (551,223,cs), (572,356,o), (486,444,o), (335,444,cs), (237,444,l), (260,590,l), (577,590,l), (600,730,l), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (218,319,l), (317,319,ls), (378,319,o), (411,281,o), (401,221,cs), (392,162,o), (347,125,o), (286,125,cs), (187,125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (261,0,ls), (400,0,o), (499,84,o), (520,214,cs), (540,344,o), (468,428,o), (329,428,cs), (208,428,l), (243,648,l), (559,648,l), (572,730,l), (166,730,l), (50,0,l) ); }, { closed = 1; nodes = ( (195,346,l), (316,346,ls), (398,346,o), (440,296,o), (427,214,cs), (414,132,o), (356,82,o), (274,82,cs), (153,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (262,0,ls), (390,0,o), (485,80,o), (504,204,cs), (524,327,o), (454,405,o), (326,405,cs), (180,405,l), (224,685,l), (550,685,l), (558,730,l), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (173,360,l), (319,360,ls), (419,360,o), (470,301,o), (454,203,cs), (438,104,o), (369,45,o), (269,45,cs), (123,45,l) ); } ); width = 600; } ); unicode = 1041; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/B_eta.glyph000066400000000000000000000005171472355150100277260ustar00rootroot00000000000000{ glyphname = Beta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = B; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = B; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = B; } ); width = 600; } ); unicode = 914; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_.glyph000066400000000000000000000032701472355150100272340ustar00rootroot00000000000000{ glyphname = C; layers = ( { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (377,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (405,-10,o), (516,77,o), (537,210,c), (387,210,l), (378,152,o), (339,120,o), (279,120,cs), (219,120,o), (190,152,o), (199,210,cs), (248,520,ls), (258,578,o), (297,610,o), (357,610,cs), (417,610,o), (446,578,o), (436,520,c), (586,520,l), (607,653,o), (524,740,o), (377,740,cs), (230,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,78,o), (111,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (377,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,200,c), (448,200,l), (432,98,o), (364,35,o), (268,35,cs), (174,35,o), (126,94,o), (141,190,cs), (197,540,ls), (212,636,o), (279,695,o), (372,695,cs), (467,695,o), (516,632,o), (500,530,c), (550,530,l), (570,658,o), (503,740,o), (379,740,cs), (257,740,o), (166,662,o), (147,540,cs), (91,190,ls), (72,69,o), (138,-10,o), (260,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (377,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (485,71,o), (506,200,c), (416,200,l), (403,117,o), (349,71,o), (271,71,cs), (192,71,o), (153,117,o), (166,200,cs), (218,531,ls), (231,613,o), (285,659,o), (364,659,cs), (442,659,o), (481,613,o), (468,530,c), (558,530,l), (578,659,o), (508,740,o), (377,740,cs), (244,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; } ); unicode = 67; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_R_.glyph000066400000000000000000000003731472355150100275160ustar00rootroot00000000000000{ glyphname = CR; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; } ); unicode = 13; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_acute.glyph000066400000000000000000000007171472355150100302610ustar00rootroot00000000000000{ glyphname = Cacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = C; }, { pos = (616,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = C; }, { pos = (616,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = C; }, { pos = (617,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 262; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_caron.glyph000066400000000000000000000007171472355150100302620ustar00rootroot00000000000000{ glyphname = Ccaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = C; }, { pos = (604,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = C; }, { pos = (604,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = C; }, { pos = (604,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 268; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_cedilla.glyph000066400000000000000000000022141472355150100305470ustar00rootroot00000000000000{ glyphname = Ccedilla; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (245,-195,ls), (305,-195,o), (350,-161,o), (357,-118,cs), (366,-61,o), (307,-37,o), (260,-34,c), (293,26,l), (251,26,l), (202,-64,l), (273,-64,o), (316,-86,o), (311,-118,cs), (308,-140,o), (283,-160,o), (251,-160,cs), (171,-160,l), (165,-195,l) ); }, { ref = C; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (219,-203,ls), (291,-203,o), (345,-166,o), (352,-120,cs), (360,-68,o), (297,-41,o), (245,-35,c), (276,26,l), (219,26,l), (169,-69,l), (236,-69,o), (271,-89,o), (267,-112,cs), (264,-130,o), (242,-148,o), (213,-148,cs), (143,-148,l), (134,-203,l) ); }, { ref = C; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (230,-225,ls), (314,-225,o), (377,-182,o), (385,-133,cs), (395,-72,o), (318,-43,o), (258,-39,c), (286,16,l), (213,16,l), (164,-69,l), (237,-69,o), (277,-88,o), (272,-119,cs), (270,-135,o), (244,-155,o), (211,-155,cs), (131,-155,l), (120,-225,l) ); }, { ref = C; } ); width = 600; } ); unicode = 199; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_circumflex.glyph000066400000000000000000000010231472355150100313100ustar00rootroot00000000000000{ glyphname = Ccircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 264; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_dotaccent.glyph000066400000000000000000000010171472355150100311160ustar00rootroot00000000000000{ glyphname = Cdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 266; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_he-cy.glyph000066400000000000000000000022121472355150100301550ustar00rootroot00000000000000{ glyphname = "Che-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (602,730,l), (452,730,l), (401,410,l), (386,404,o), (354,400,o), (324,400,cs), (251,400,o), (222,422,o), (231,475,cs), (272,730,l), (122,730,l), (80,466,ls), (60,338,o), (127,265,o), (268,265,cs), (313,265,o), (359,270,o), (380,276,c), (336,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (461,0,l), (577,730,l), (487,730,l), (429,365,l), (410,357,o), (354,351,o), (304,351,cs), (219,351,o), (181,383,o), (192,451,cs), (237,730,l), (147,730,l), (102,451,ls), (83,336,o), (147,271,o), (276,271,cs), (328,271,o), (391,278,o), (416,286,c), (371,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (446,0,l), (562,730,l), (512,730,l), (452,356,l), (416,349,o), (363,345,o), (320,345,cs), (200,345,o), (157,387,o), (174,491,cs), (212,730,l), (162,730,l), (124,491,ls), (104,366,o), (166,300,o), (303,300,cs), (352,300,o), (409,305,o), (446,312,c), (396,0,l) ); } ); width = 600; } ); unicode = 1063; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_hedescender-cy.glyph000066400000000000000000000012241472355150100320340ustar00rootroot00000000000000{ glyphname = "Chedescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (461,-140,l), (490,45,l), (440,45,l), (411,-140,l) ); }, { pos = (-10,0); ref = "Che-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (476,-140,l), (511,80,l), (431,80,l), (396,-140,l) ); }, { pos = (-10,0); ref = "Che-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (509,-140,l), (553,140,l), (423,140,l), (379,-140,l) ); }, { pos = (-10,0); ref = "Che-cy"; } ); width = 600; } ); unicode = 1206; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/C_hi.glyph000066400000000000000000000005161472355150100275550ustar00rootroot00000000000000{ glyphname = Chi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = X; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = X; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = X; } ); width = 600; } ); unicode = 935; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_.glyph000066400000000000000000000025451472355150100272410ustar00rootroot00000000000000{ glyphname = D; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (256,0,ls), (407,0,o), (523,94,o), (545,235,cs), (587,496,ls), (609,637,o), (523,730,o), (372,730,cs), (135,730,l), (19,0,l) ); }, { closed = 1; nodes = ( (262,590,l), (349,590,ls), (410,590,o), (445,552,o), (437,496,cs), (395,235,ls), (386,178,o), (339,140,o), (278,140,cs), (191,140,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (237,0,ls), (378,0,o), (482,86,o), (503,220,cs), (549,511,ls), (570,644,o), (494,730,o), (353,730,cs), (164,730,l), (48,0,l) ); }, { closed = 1; nodes = ( (241,650,l), (340,650,ls), (428,650,o), (473,598,o), (459,511,cs), (413,220,ls), (399,132,o), (338,80,o), (250,80,cs), (151,80,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (226,0,ls), (361,0,o), (465,88,o), (486,220,cs), (532,510,ls), (553,642,o), (477,730,o), (342,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (224,684,l), (334,684,ls), (438,684,o), (498,614,o), (482,510,cs), (436,220,ls), (419,115,o), (338,46,o), (233,46,cs), (123,46,l) ); } ); width = 600; } ); unicode = 68; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_caron.glyph000066400000000000000000000007171472355150100302630ustar00rootroot00000000000000{ glyphname = Dcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = D; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = D; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = D; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 270; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_croat.glyph000066400000000000000000000010761472355150100302700ustar00rootroot00000000000000{ glyphname = Dcroat; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (290,351,l), (297,395,l), (17,395,l), (10,351,l) ); }, { ref = D; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (290,335,l), (302,410,l), (22,410,l), (10,335,l) ); }, { ref = D; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (290,325,l), (305,420,l), (25,420,l), (10,325,l) ); }, { ref = D; } ); width = 600; } ); unicode = 272; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_e-cy.glyph000066400000000000000000000024331472355150100300130ustar00rootroot00000000000000{ glyphname = "De-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (96,-140,l), (118,0,l), (394,0,l), (372,-140,l), (512,-140,l), (554,128,l), (494,128,l), (590,730,l), (185,730,l), (117,340,ls), (101,244,o), (57,163,o), (29,128,c), (-2,128,l), (-44,-140,l) ); }, { closed = 1; nodes = ( (201,165,o), (241,248,o), (257,341,cs), (302,602,l), (429,602,l), (354,128,l), (176,128,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (39,-140,l), (61,0,l), (451,0,l), (429,-140,l), (509,-140,l), (543,77,l), (473,77,l), (577,730,l), (203,730,l), (127,298,ls), (110,204,o), (67,117,o), (38,77,c), (-7,77,l), (-41,-140,l) ); }, { closed = 1; nodes = ( (158,111,o), (198,195,o), (215,298,cs), (276,650,l), (474,650,l), (383,77,l), (132,77,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (27,-140,l), (49,0,l), (461,0,l), (439,-140,l), (484,-140,l), (513,45,l), (441,45,l), (550,730,l), (233,730,l), (151,276,ls), (132,168,o), (79,81,o), (45,45,c), (11,45,l), (-18,-140,l) ); }, { closed = 1; nodes = ( (131,81,o), (181,168,o), (201,276,cs), (275,685,l), (492,685,l), (391,45,l), (98,45,ls) ); } ); width = 600; } ); unicode = 1044; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_elta.glyph000066400000000000000000000017011472355150100301000ustar00rootroot00000000000000{ glyphname = Delta; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (531,0,l), (466,730,l), (276,730,l), (-19,0,l) ); }, { closed = 1; nodes = ( (306,462,ls), (320,501,o), (339,558,o), (349,590,c), (350,558,o), (353,501,o), (355,461,cs), (373,130,l), (184,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (433,730,l), (312,730,l), (6,0,l) ); }, { closed = 1; nodes = ( (301,496,ls), (329,565,o), (351,630,o), (362,660,c), (363,630,o), (366,564,o), (372,495,cs), (410,80,l), (132,80,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (488,0,l), (403,730,l), (341,730,l), (24,0,l) ); }, { closed = 1; nodes = ( (311,550,ls), (335,608,o), (357,664,o), (367,690,c), (368,664,o), (372,608,o), (378,550,cs), (433,45,l), (95,45,l) ); } ); width = 600; } ); unicode = 916; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_je-cy.glyph000066400000000000000000000032771472355150100301740ustar00rootroot00000000000000{ glyphname = "Dje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (262,-180,ls), (403,-180,o), (516,-96,o), (535,25,cs), (576,290,ls), (596,414,o), (540,495,o), (436,495,cs), (384,495,o), (336,475,o), (289,434,cs), (273,420,l), (299,590,l), (409,590,l), (432,730,l), (72,730,l), (49,590,l), (149,590,l), (56,0,l), (206,0,l), (252,290,l), (290,323,ls), (324,352,o), (351,365,o), (377,365,cs), (417,365,o), (433,337,o), (425,285,cs), (387,41,ls), (380,-7,o), (346,-35,o), (295,-35,cs), (235,-35,l), (212,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,-180,ls), (381,-180,o), (475,-103,o), (493,15,cs), (541,316,ls), (558,425,o), (507,495,o), (413,495,cs), (355,495,o), (298,469,o), (237,413,cs), (219,396,l), (259,651,l), (379,651,l), (392,730,l), (72,730,l), (59,651,l), (169,651,l), (66,0,l), (156,0,l), (205,310,l), (257,357,ls), (302,399,o), (342,419,o), (380,419,cs), (436,419,o), (461,377,o), (448,296,cs), (403,15,ls), (392,-55,o), (341,-98,o), (270,-98,cs), (200,-98,l), (187,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (236,-180,ls), (361,-180,o), (455,-104,o), (473,15,cs), (526,346,ls), (540,437,o), (498,495,o), (418,495,cs), (363,495,o), (305,468,o), (249,417,cs), (194,367,l), (244,685,l), (369,685,l), (377,730,l), (72,730,l), (64,685,l), (194,685,l), (86,0,l), (136,0,l), (185,310,l), (272,388,ls), (319,429,o), (366,452,o), (405,452,cs), (460,452,o), (486,408,o), (474,336,cs), (423,15,ls), (408,-79,o), (342,-135,o), (244,-135,cs), (202,-135,l), (194,-180,l) ); } ); width = 600; } ); unicode = 1026; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_ze-cy.glyph000066400000000000000000000006041472355150100302030ustar00rootroot00000000000000{ glyphname = "Dze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; } ); width = 600; } ); unicode = 1029; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/D_zhe-cy.glyph000066400000000000000000000014751472355150100303620ustar00rootroot00000000000000{ glyphname = "Dzhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (311,-125,l), (331,0,l), (490,0,l), (606,730,l), (456,730,l), (362,140,l), (194,140,l), (288,730,l), (138,730,l), (22,0,l), (181,0,l), (161,-125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (281,-125,l), (301,0,l), (462,0,l), (578,730,l), (488,730,l), (385,82,l), (153,82,l), (256,730,l), (166,730,l), (50,0,l), (211,0,l), (191,-125,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-125,l), (284,0,l), (446,0,l), (562,730,l), (507,730,l), (399,50,l), (129,50,l), (237,730,l), (182,730,l), (66,0,l), (229,0,l), (209,-125,l) ); } ); width = 600; } ); unicode = 1039; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_-cy.glyph000066400000000000000000000031421472355150100276450ustar00rootroot00000000000000{ glyphname = "E-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (405,-10,o), (516,77,o), (537,210,c), (387,210,l), (378,152,o), (339,120,o), (279,120,cs), (219,120,o), (190,152,o), (199,210,cs), (214,300,l), (419,300,l), (440,435,l), (235,435,l), (248,520,ls), (258,578,o), (297,610,o), (357,610,cs), (417,610,o), (446,578,o), (436,520,c), (586,520,l), (607,653,o), (524,740,o), (377,740,cs), (230,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,78,o), (111,-10,o), (258,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (483,71,o), (504,200,c), (414,200,l), (401,117,o), (349,70,o), (271,70,cs), (192,70,o), (155,117,o), (168,200,cs), (188,327,l), (413,327,l), (426,409,l), (201,409,l), (220,531,ls), (233,613,o), (286,660,o), (365,660,cs), (443,660,o), (479,613,o), (466,530,c), (556,530,l), (576,659,o), (508,740,o), (377,740,cs), (244,740,o), (151,661,o), (130,530,cs), (78,200,ls), (57,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,200,c), (448,200,l), (432,98,o), (364,35,o), (268,35,cs), (174,35,o), (126,94,o), (141,190,cs), (166,346,l), (401,346,l), (408,391,l), (173,391,l), (197,540,ls), (212,636,o), (279,695,o), (372,695,cs), (467,695,o), (516,632,o), (500,530,c), (550,530,l), (570,658,o), (503,740,o), (379,740,cs), (257,740,o), (166,662,o), (147,540,cs), (91,190,ls), (72,69,o), (138,-10,o), (260,-10,cs) ); } ); width = 600; } ); unicode = 1028; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_.glyph000066400000000000000000000024121472355150100272330ustar00rootroot00000000000000{ glyphname = E; layers = ( { anchors = ( { name = bottom; pos = (320,0); }, { name = ogonek; pos = (380,0); }, { name = top; pos = (392,730); }, { name = topleft; pos = (92,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (506,128,l), (203,128,l), (232,310,l), (500,310,l), (520,438,l), (252,438,l), (278,602,l), (581,602,l), (602,730,l), (152,730,l), (36,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (320,0); }, { name = ogonek; pos = (390,0); }, { name = top; pos = (392,730); }, { name = topleft; pos = (92,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (476,0,l), (489,82,l), (158,82,l), (199,341,l), (495,341,l), (508,422,l), (212,422,l), (248,648,l), (579,648,l), (592,730,l), (172,730,l), (56,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (320,0); }, { name = ogonek; pos = (400,0); }, { name = top; pos = (392,730); }, { name = topleft; pos = (92,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (466,0,l), (473,46,l), (133,46,l), (183,358,l), (488,358,l), (495,403,l), (190,403,l), (234,684,l), (574,684,l), (582,730,l), (192,730,l), (76,0,l) ); } ); width = 600; } ); unicode = 69; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_M_quad.glyph000066400000000000000000000004011472355150100303560ustar00rootroot00000000000000{ glyphname = EMquad; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; } ); unicode = 8193; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_acute.glyph000066400000000000000000000007171472355150100302630ustar00rootroot00000000000000{ glyphname = Eacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (632,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 201; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_breve.glyph000066400000000000000000000010541472355150100302600ustar00rootroot00000000000000{ glyphname = Ebreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = E; }, { alignment = 1; pos = (620,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; }, { alignment = 1; pos = (619,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = E; }, { alignment = 1; pos = (619,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 276; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_caron.glyph000066400000000000000000000007171472355150100302640ustar00rootroot00000000000000{ glyphname = Ecaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 282; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_circumflex.glyph000066400000000000000000000007431472355150100313220ustar00rootroot00000000000000{ glyphname = Ecircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 202; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_circumflexacute.glyph000066400000000000000000000010071472355150100323360ustar00rootroot00000000000000{ glyphname = Ecircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; } ); unicode = 7870; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_circumflexdotbelow.glyph000066400000000000000000000011631472355150100330570ustar00rootroot00000000000000{ glyphname = Ecircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 7878; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_circumflexgrave.glyph000066400000000000000000000010071472355150100323410ustar00rootroot00000000000000{ glyphname = Ecircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; } ); unicode = 7872; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_circumflexhookabove.glyph000066400000000000000000000010271472355150100332140ustar00rootroot00000000000000{ glyphname = Ecircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7874; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_circumflextilde.glyph000066400000000000000000000010071472355150100323360ustar00rootroot00000000000000{ glyphname = Ecircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; } ); unicode = 7876; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_dieresis.glyph000066400000000000000000000007331472355150100307670ustar00rootroot00000000000000{ glyphname = Edieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (621,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 203; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_dotaccent.glyph000066400000000000000000000007371472355150100311300ustar00rootroot00000000000000{ glyphname = Edotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 278; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_dotbelow.glyph000066400000000000000000000007341472355150100310000ustar00rootroot00000000000000{ glyphname = Edotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7864; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_f-cy.glyph000066400000000000000000000036451472355150100300230ustar00rootroot00000000000000{ glyphname = "Ef-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (312,-25,l), (323,45,l), (448,45,o), (547,133,o), (568,264,cs), (602,481,ls), (623,612,o), (552,700,o), (427,700,c), (438,770,l), (318,770,l), (307,700,l), (182,700,o), (83,612,o), (62,481,cs), (28,264,ls), (7,133,o), (78,45,o), (203,45,c), (192,-25,l) ); }, { closed = 1; nodes = ( (174,161,o), (145,202,o), (155,264,cs), (189,481,ls), (199,543,o), (242,585,o), (295,585,c), (227,161,l) ); }, { closed = 1; nodes = ( (403,585,l), (456,585,o), (485,543,o), (475,481,cs), (441,264,ls), (431,202,o), (388,161,o), (335,161,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (294,-25,l), (305,45,l), (428,45,o), (522,127,o), (542,253,cs), (579,487,ls), (600,616,o), (533,700,o), (409,700,c), (420,770,l), (336,770,l), (325,700,l), (201,700,o), (108,616,o), (87,487,cs), (50,253,ls), (30,127,o), (98,45,o), (221,45,c), (210,-25,l) ); }, { closed = 1; nodes = ( (158,121,o), (121,171,o), (134,253,cs), (171,487,ls), (185,572,o), (238,624,o), (313,624,c), (233,121,l) ); }, { closed = 1; nodes = ( (397,624,l), (472,624,o), (509,572,o), (495,487,cs), (458,253,ls), (445,171,o), (392,121,o), (317,121,c) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (277,-25,l), (288,45,l), (417,45,o), (509,123,o), (529,247,cs), (569,500,ls), (589,622,o), (522,700,o), (392,700,c), (403,770,l), (353,770,l), (342,700,l), (212,700,o), (121,622,o), (101,500,cs), (61,247,ls), (41,123,o), (109,45,o), (238,45,c), (227,-25,l) ); }, { closed = 1; nodes = ( (152,90,o), (97,156,o), (111,247,cs), (151,500,ls), (165,589,o), (241,655,o), (335,655,c), (245,90,l) ); }, { closed = 1; nodes = ( (385,655,l), (479,655,o), (533,589,o), (519,500,cs), (479,247,ls), (465,156,o), (388,90,o), (295,90,c) ); } ); width = 600; } ); unicode = 1060; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_grave.glyph000066400000000000000000000007171472355150100302660ustar00rootroot00000000000000{ glyphname = Egrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (607,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (606,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (606,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 200; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_hookabove.glyph000066400000000000000000000007401472355150100311330ustar00rootroot00000000000000{ glyphname = Ehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7866; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_l-cy.glyph000066400000000000000000000017161472355150100300260ustar00rootroot00000000000000{ glyphname = "El-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (10,-5,ls), (130,-5,o), (223,86,o), (247,230,cs), (308,590,l), (433,590,l), (340,0,l), (490,0,l), (606,730,l), (184,730,l), (98,230,ls), (88,171,o), (57,130,o), (22,130,cs), (-8,130,l), (-30,-5,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-2,-5,ls), (113,-5,o), (178,75,o), (208,254,cs), (276,648,l), (475,648,l), (372,0,l), (462,0,l), (578,730,l), (200,730,l), (118,254,ls), (96,126,o), (66,79,o), (7,79,cs), (-11,79,l), (-25,-5,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (10,-5,ls), (91,-5,o), (154,61,o), (171,164,cs), (258,684,l), (504,684,l), (396,0,l), (446,0,l), (562,730,l), (216,730,l), (121,164,ls), (109,92,o), (68,45,o), (18,45,cs), (-12,45,l), (-20,-5,l) ); } ); width = 600; } ); unicode = 1051; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_m-cy.glyph000066400000000000000000000006031472355150100300210ustar00rootroot00000000000000{ glyphname = "Em-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = M; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = M; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = M; } ); width = 600; } ); unicode = 1052; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_macron.glyph000066400000000000000000000007231472355150100304360ustar00rootroot00000000000000{ glyphname = Emacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 274; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_n-cy.glyph000066400000000000000000000006031472355150100300220ustar00rootroot00000000000000{ glyphname = "En-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = H; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = H; } ); width = 600; } ); unicode = 1053; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_ndescender-cy.glyph000066400000000000000000000012541472355150100317020ustar00rootroot00000000000000{ glyphname = "Endescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (469,-140,l), (498,45,l), (448,45,l), (419,-140,l) ); }, { alignment = -1; pos = (-2,0); ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (484,-140,l), (519,80,l), (439,80,l), (404,-140,l) ); }, { alignment = -1; pos = (-4,0); ref = H; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (524,-140,l), (568,140,l), (438,140,l), (394,-140,l) ); }, { alignment = -1; pos = (-10,0); ref = H; } ); width = 600; } ); unicode = 1186; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_ng.glyph000066400000000000000000000024471472355150100275700ustar00rootroot00000000000000{ glyphname = Eng; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (227,-180,ls), (368,-180,o), (481,-96,o), (500,25,cs), (612,730,l), (480,730,l), (447,526,ls), (436,457,o), (427,330,o), (422,257,c), (302,730,l), (132,730,l), (16,0,l), (148,0,l), (199,320,ls), (210,389,o), (219,501,o), (223,565,c), (352,41,l), (345,-7,o), (311,-35,o), (260,-35,cs), (200,-35,l), (177,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (232,-180,ls), (356,-180,o), (449,-103,o), (468,15,cs), (582,730,l), (495,730,l), (442,397,ls), (430,324,o), (422,229,o), (418,179,c), (280,730,l), (162,730,l), (46,0,l), (133,0,l), (198,410,ls), (210,483,o), (219,576,o), (223,625,c), (378,15,l), (367,-55,o), (316,-98,o), (245,-98,cs), (180,-98,l), (167,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (234,-180,ls), (352,-180,o), (429,-115,o), (447,0,cs), (563,730,l), (515,730,l), (434,219,ls), (426,168,o), (420,118,o), (418,94,c), (249,730,l), (181,730,l), (65,0,l), (113,0,l), (202,560,ls), (210,611,o), (216,656,o), (218,675,c), (397,0,l), (383,-88,o), (330,-135,o), (242,-135,cs), (162,-135,l), (154,-180,l) ); } ); width = 600; } ); unicode = 330; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_ogonek.glyph000066400000000000000000000022171472355150100304410ustar00rootroot00000000000000{ glyphname = Eogonek; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (454,-225,l), (471,-120,l), (402,-120,ls), (373,-120,o), (359,-103,o), (362,-83,cs), (365,-66,o), (383,-42,o), (413,-18,cs), (450,11,l), (364,11,l), (291,-19,o), (240,-68,o), (233,-115,cs), (222,-180,o), (265,-225,o), (346,-225,cs) ); }, { alignment = -1; ref = E; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (449,-203,l), (458,-143,l), (398,-143,ls), (364,-143,o), (347,-122,o), (351,-93,cs), (356,-65,o), (379,-36,o), (430,1,c), (443,10,l), (368,10,l), (298,-34,o), (270,-72,o), (264,-110,cs), (255,-164,o), (297,-203,o), (371,-203,cs) ); }, { alignment = -1; ref = E; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (440,-195,l), (447,-153,l), (383,-153,ls), (351,-153,o), (335,-134,o), (340,-103,cs), (344,-75,o), (373,-36,o), (417,0,cs), (430,10,l), (393,10,l), (336,-27,o), (297,-74,o), (291,-115,cs), (283,-165,o), (312,-195,o), (367,-195,c) ); }, { alignment = -1; ref = E; } ); width = 600; } ); unicode = 280; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_open.glyph000066400000000000000000000037501472355150100301230ustar00rootroot00000000000000{ glyphname = Eopen; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (398,-10,o), (504,73,o), (523,193,c), (473,193,l), (458,99,o), (376,35,o), (272,35,cs), (168,35,o), (106,99,o), (121,193,cs), (136,288,o), (218,353,o), (322,353,cs), (397,353,l), (404,398,l), (334,398,ls), (237,398,o), (181,459,o), (195,547,cs), (209,635,o), (284,696,o), (381,696,cs), (478,696,o), (535,635,o), (521,547,c), (571,547,l), (589,661,o), (514,740,o), (388,740,cs), (262,740,o), (163,661,o), (145,547,cs), (128,442,o), (185,370,o), (285,370,c), (286,380,l), (176,380,o), (88,305,o), (71,196,cs), (52,74,o), (130,-10,o), (264,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (406,-10,o), (513,71,o), (534,192,c), (444,192,l), (431,119,o), (365,70,o), (280,70,cs), (190,70,o), (139,124,o), (151,205,cs), (164,286,o), (233,340,o), (323,340,cs), (414,340,l), (427,420,l), (337,420,ls), (256,420,o), (209,468,o), (221,540,cs), (232,612,o), (294,660,o), (375,660,cs), (457,660,o), (503,610,o), (491,535,c), (581,535,l), (600,658,o), (522,740,o), (384,740,cs), (250,740,o), (150,663,o), (131,546,cs), (115,444,o), (173,380,o), (281,382,c), (282,392,l), (165,394,o), (79,321,o), (60,205,cs), (40,76,o), (122,-10,o), (267,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (411,-10,o), (530,76,o), (554,205,c), (404,205,l), (392,154,o), (345,120,o), (284,120,cs), (218,120,o), (180,159,o), (190,218,cs), (199,278,o), (249,317,o), (316,317,cs), (417,317,l), (436,437,l), (333,437,ls), (273,437,o), (240,471,o), (248,523,cs), (256,575,o), (301,610,o), (361,610,cs), (421,610,o), (455,575,o), (447,523,c), (597,523,l), (618,654,o), (528,740,o), (373,740,cs), (226,740,o), (117,660,o), (98,540,cs), (82,444,o), (131,383,o), (222,383,c), (223,390,l), (126,392,o), (53,325,o), (36,217,cs), (15,80,o), (104,-10,o), (260,-10,cs) ); } ); width = 600; } ); unicode = 400; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_psilon.glyph000066400000000000000000000005221472355150100304600ustar00rootroot00000000000000{ glyphname = Epsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; } ); width = 600; } ); unicode = 917; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_psilontonos.glyph000066400000000000000000000010141472355150100315400ustar00rootroot00000000000000{ glyphname = Epsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { alignment = -1; pos = (-300,0); ref = tonos.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; }, { alignment = -1; pos = (-340,0); ref = tonos.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { alignment = -1; pos = (-350,0); ref = tonos.case; } ); width = 600; } ); unicode = 904; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_r-cy.glyph000066400000000000000000000006031472355150100300260ustar00rootroot00000000000000{ glyphname = "Er-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = P; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = P; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = P; } ); width = 600; } ); unicode = 1056; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_reversed-cy.glyph000066400000000000000000000031521472355150100314060ustar00rootroot00000000000000{ glyphname = "Ereversed-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (397,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,653,o), (516,740,o), (369,740,cs), (222,740,o), (111,653,o), (90,520,c), (240,520,l), (250,578,o), (289,610,o), (349,610,cs), (409,610,o), (438,578,o), (428,520,cs), (415,435,l), (210,435,l), (189,300,l), (394,300,l), (379,210,ls), (370,152,o), (331,120,o), (271,120,cs), (211,120,o), (182,152,o), (191,210,c), (41,210,l), (20,77,o), (103,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (477,69,o), (498,200,cs), (550,530,ls), (571,661,o), (502,740,o), (369,740,cs), (238,740,o), (144,659,o), (124,530,c), (214,530,l), (227,613,o), (279,660,o), (357,660,cs), (436,660,o), (473,613,o), (460,531,cs), (441,409,l), (216,409,l), (203,327,l), (428,327,l), (408,200,ls), (395,117,o), (342,70,o), (263,70,cs), (185,70,o), (149,117,o), (162,200,c), (72,200,l), (51,71,o), (119,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-10,o), (467,69,o), (486,190,cs), (542,540,ls), (561,662,o), (494,740,o), (372,740,cs), (248,740,o), (155,658,o), (135,530,c), (185,530,l), (201,632,o), (270,695,o), (365,695,cs), (458,695,o), (507,636,o), (492,540,cs), (468,391,l), (233,391,l), (226,346,l), (461,346,l), (436,190,ls), (421,94,o), (355,35,o), (261,35,cs), (165,35,o), (117,98,o), (133,200,c), (83,200,l), (62,72,o), (129,-10,o), (253,-10,cs) ); } ); width = 600; } ); unicode = 1069; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_s-cy.glyph000066400000000000000000000006031472355150100300270ustar00rootroot00000000000000{ glyphname = "Es-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = C; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = C; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = C; } ); width = 600; } ); unicode = 1057; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_ta.glyph000066400000000000000000000005161472355150100275630ustar00rootroot00000000000000{ glyphname = Eta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = H; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = H; } ); width = 600; } ); unicode = 919; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_tatonos.glyph000066400000000000000000000007701472355150100306500ustar00rootroot00000000000000{ glyphname = Etatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-300,0); ref = tonos.case; }, { ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-340,0); ref = tonos.case; }, { ref = H; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-350,0); ref = tonos.case; }, { ref = H; } ); width = 600; } ); unicode = 905; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_th.glyph000066400000000000000000000010731472355150100275710ustar00rootroot00000000000000{ glyphname = Eth; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (290,325,l), (290,420,l), (10,420,l), (10,325,l) ); }, { ref = D; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (290,335,l), (290,410,l), (10,410,l), (10,335,l) ); }, { ref = D; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (290,351,l), (290,395,l), (10,395,l), (10,351,l) ); }, { ref = D; } ); width = 600; } ); unicode = 208; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/E_tilde.glyph000066400000000000000000000010001472355150100302450ustar00rootroot00000000000000{ glyphname = Etilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = E; }, { pos = (620,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; }, { pos = (620,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = E; }, { pos = (620,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7868; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/F_.glyph000066400000000000000000000015771472355150100272470ustar00rootroot00000000000000{ glyphname = F; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (176,0,l), (222,288,l), (516,288,l), (538,428,l), (242,428,l), (267,590,l), (589,590,l), (612,730,l), (142,730,l), (26,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (192,324,l), (506,324,l), (519,406,l), (203,406,l), (242,648,l), (584,648,l), (597,730,l), (167,730,l), (51,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (121,0,l), (176,346,l), (501,346,l), (508,392,l), (183,392,l), (229,684,l), (589,684,l), (597,730,l), (187,730,l), (71,0,l) ); } ); width = 600; } ); unicode = 70; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/F_doubleS_truck.glyph000066400000000000000000000017511472355150100317670ustar00rootroot00000000000000{ glyphname = FdoubleStruck; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (236,0,l), (237,361,l), (500,361,l), (500,407,l), (237,407,l), (238,684,l), (525,684,l), (525,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (133,684,l), (193,684,l), (193,46,l), (133,46,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (236,0,l), (237,361,l), (500,361,l), (500,407,l), (237,407,l), (238,684,l), (525,684,l), (525,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (133,684,l), (193,684,l), (193,46,l), (133,46,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (236,0,l), (237,361,l), (500,361,l), (500,407,l), (237,407,l), (238,684,l), (525,684,l), (525,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (133,684,l), (193,684,l), (193,46,l), (133,46,l) ); } ); width = 600; } ); unicode = 120125; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_.glyph000066400000000000000000000035321472355150100272410ustar00rootroot00000000000000{ glyphname = G; layers = ( { anchors = ( { name = bottom; pos = (260,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (405,-10,o), (516,77,o), (537,210,cs), (567,400,l), (309,400,l), (289,273,l), (397,273,l), (387,210,ls), (378,152,o), (339,120,o), (279,120,cs), (219,120,o), (190,152,o), (199,210,cs), (248,520,ls), (258,578,o), (297,610,o), (357,610,cs), (417,610,o), (446,578,o), (436,520,c), (586,520,l), (607,653,o), (524,740,o), (377,740,cs), (230,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,78,o), (111,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (260,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (486,71,o), (506,200,cs), (533,372,l), (295,372,l), (282,290,l), (430,290,l), (416,200,ls), (403,117,o), (349,70,o), (271,70,cs), (192,70,o), (153,117,o), (166,200,cs), (218,531,ls), (231,613,o), (285,659,o), (364,659,cs), (442,659,o), (481,613,o), (468,530,c), (558,530,l), (578,659,o), (508,740,o), (377,740,cs), (244,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (262,0); }, { name = top; pos = (378,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,200,cs), (522,356,l), (299,356,l), (292,310,l), (465,310,l), (448,200,ls), (432,98,o), (364,35,o), (268,35,cs), (174,35,o), (126,94,o), (141,190,cs), (197,540,ls), (212,636,o), (279,695,o), (372,695,cs), (467,695,o), (516,632,o), (500,530,c), (550,530,l), (570,658,o), (503,740,o), (379,740,cs), (257,740,o), (166,662,o), (147,540,cs), (91,190,ls), (72,69,o), (138,-10,o), (260,-10,cs) ); } ); width = 600; } ); unicode = 71; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_acute.glyph000066400000000000000000000007771472355150100302730ustar00rootroot00000000000000{ glyphname = Gacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (617,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 500; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_amma.glyph000066400000000000000000000005421472355150100300730ustar00rootroot00000000000000{ glyphname = Gamma; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "Ge-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "Ge-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "Ge-cy"; } ); width = 600; } ); unicode = 915; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_breve.glyph000066400000000000000000000010541472355150100302620ustar00rootroot00000000000000{ glyphname = Gbreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { alignment = 1; pos = (605,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 286; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_caron.glyph000066400000000000000000000007771472355150100302740ustar00rootroot00000000000000{ glyphname = Gcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (605,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 486; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_circumflex.glyph000066400000000000000000000010231472355150100313140ustar00rootroot00000000000000{ glyphname = Gcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (605,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 284; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_commaaccent.glyph000066400000000000000000000007471472355150100314410ustar00rootroot00000000000000{ glyphname = Gcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = G; }, { pos = (606,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = G; }, { pos = (604,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = G; }, { pos = (604,0); ref = commaaccentcomb.case; } ); width = 600; } ); unicode = 290; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_dotaccent.glyph000066400000000000000000000010171472355150100311220ustar00rootroot00000000000000{ glyphname = Gdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (605,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 288; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_e-cy.glyph000066400000000000000000000015431472355150100300170ustar00rootroot00000000000000{ glyphname = "Ge-cy"; layers = ( { anchors = ( { name = bottomright; pos = (556,0); }, { name = top; pos = (392,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (221,0,l), (314,590,l), (609,590,l), (632,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (556,0); }, { name = top; pos = (392,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (176,0,l), (279,648,l), (614,648,l), (627,730,l), (202,730,l), (86,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (556,0); }, { name = top; pos = (392,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,0,l), (254,685,l), (609,685,l), (617,730,l), (212,730,l), (96,0,l) ); } ); width = 600; } ); unicode = 1043; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_ermandbls.glyph000066400000000000000000000031231472355150100311250ustar00rootroot00000000000000{ glyphname = Germandbls; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (202,543,ls), (216,629,o), (281,685,o), (369,685,cs), (528,685,l), (291,411,l), (284,368,l), (324,368,ls), (421,368,o), (474,305,o), (459,208,cs), (443,109,o), (370,45,o), (273,45,cs), (211,45,l), (204,0,l), (266,0,ls), (394,0,o), (489,82,o), (509,210,cs), (528,330,o), (458,407,o), (330,407,c), (331,396,l), (581,684,l), (589,730,l), (377,730,ls), (259,730,o), (170,657,o), (152,543,cs), (66,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (151,0,l), (232,511,ls), (241,568,o), (286,605,o), (347,605,cs), (460,605,l), (284,438,l), (267,328,l), (314,328,ls), (377,328,o), (409,287,o), (400,227,cs), (390,167,o), (346,125,o), (282,125,cs), (235,125,l), (215,0,l), (267,0,ls), (418,0,o), (528,84,o), (549,215,cs), (569,344,o), (495,427,o), (359,425,c), (364,370,l), (595,589,l), (618,730,l), (368,730,ls), (225,730,o), (118,644,o), (97,511,cs), (16,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (221,524,ls), (233,601,o), (287,648,o), (361,648,cs), (489,648,l), (293,423,l), (281,345,l), (326,345,ls), (406,345,o), (448,295,o), (435,215,cs), (422,133,o), (364,82,o), (284,82,cs), (227,82,l), (214,0,l), (281,0,ls), (410,0,o), (510,86,o), (530,215,cs), (550,342,o), (487,425,o), (373,423,c), (369,396,l), (587,642,l), (601,730,l), (374,730,ls), (248,730,o), (151,648,o), (131,524,cs), (48,0,l) ); } ); width = 600; } ); unicode = 7838; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_hestroke-cy.glyph000066400000000000000000000011471472355150100314170ustar00rootroot00000000000000{ glyphname = "Ghestroke-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (381,347,l), (388,392,l), (58,392,l), (51,347,l) ); }, { pos = (10,0); ref = "Ge-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (388,326,l), (400,406,l), (50,406,l), (38,326,l) ); }, { ref = "Ge-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (394,305,l), (414,430,l), (54,430,l), (34,305,l) ); }, { ref = "Ge-cy"; } ); width = 600; } ); unicode = 1170; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_heupturn-cy.glyph000066400000000000000000000012601472355150100314410ustar00rootroot00000000000000{ glyphname = "Gheupturn-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (221,0,l), (314,590,l), (609,590,l), (647,825,l), (502,825,l), (487,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (176,0,l), (279,648,l), (614,648,l), (642,825,l), (557,825,l), (542,730,l), (202,730,l), (86,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,0,l), (254,685,l), (609,685,l), (632,825,l), (582,825,l), (567,730,l), (212,730,l), (96,0,l) ); } ); width = 600; } ); unicode = 1168; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/G_je-cy.glyph000066400000000000000000000010241472355150100301630ustar00rootroot00000000000000{ glyphname = "Gje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "Ge-cy"; }, { pos = (632,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "Ge-cy"; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "Ge-cy"; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 1027; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/H_.glyph000066400000000000000000000017011472355150100272360ustar00rootroot00000000000000{ glyphname = H; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (221,310,l), (389,310,l), (340,0,l), (490,0,l), (606,730,l), (456,730,l), (411,450,l), (243,450,l), (288,730,l), (138,730,l), (22,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (139,0,l), (192,336,l), (426,336,l), (373,0,l), (463,0,l), (579,730,l), (489,730,l), (439,418,l), (205,418,l), (255,730,l), (165,730,l), (49,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (172,356,l), (452,356,l), (396,0,l), (446,0,l), (562,730,l), (512,730,l), (460,402,l), (180,402,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 72; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/H_a-cy.glyph000066400000000000000000000006031472355150100300100ustar00rootroot00000000000000{ glyphname = "Ha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = X; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = X; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = X; } ); width = 600; } ); unicode = 1061; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/H_ardsign-cy.glyph000066400000000000000000000024451472355150100312250ustar00rootroot00000000000000{ glyphname = "Hardsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (424,0,o), (540,88,o), (561,223,cs), (583,358,o), (494,445,o), (336,445,cs), (286,445,l), (332,730,l), (67,730,l), (48,610,l), (163,610,l), (66,0,l) ); }, { closed = 1; nodes = ( (266,315,l), (316,315,ls), (383,315,o), (420,279,o), (411,222,cs), (402,166,o), (354,130,o), (287,130,cs), (237,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (286,0,ls), (417,0,o), (520,87,o), (540,215,cs), (560,344,o), (485,430,o), (354,430,cs), (249,430,l), (297,730,l), (67,730,l), (54,648,l), (194,648,l), (91,0,l) ); }, { closed = 1; nodes = ( (236,348,l), (336,348,ls), (415,348,o), (460,295,o), (447,215,cs), (434,135,o), (373,82,o), (294,82,cs), (194,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (397,0,o), (494,82,o), (514,210,cs), (535,338,o), (464,420,o), (333,420,cs), (213,420,l), (262,730,l), (82,730,l), (74,680,l), (204,680,l), (96,0,l) ); }, { closed = 1; nodes = ( (205,375,l), (325,375,ls), (425,375,o), (479,310,o), (463,210,cs), (447,110,o), (373,45,o), (273,45,cs), (153,45,l) ); } ); width = 600; } ); unicode = 1066; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/H_bar.glyph000066400000000000000000000011541472355150100277250ustar00rootroot00000000000000{ glyphname = Hbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (630,525,l), (645,620,l), (65,620,l), (50,525,l) ); }, { alignment = -1; ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (629,525,l), (641,600,l), (62,600,l), (50,525,l) ); }, { alignment = -1; ref = H; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (632,540,l), (639,584,l), (59,584,l), (52,540,l) ); }, { alignment = -1; ref = H; } ); width = 600; } ); unicode = 294; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/H_circumflex.glyph000066400000000000000000000010231472355150100313150ustar00rootroot00000000000000{ glyphname = Hcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = H; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = H; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = H; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 292; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_-cy.glyph000066400000000000000000000006021472355150100276470ustar00rootroot00000000000000{ glyphname = "I-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; } ); width = 600; } ); unicode = 1030; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_.glyph000066400000000000000000000024031472355150100272370ustar00rootroot00000000000000{ glyphname = I; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (280,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (476,0,l), (497,130,l), (352,130,l), (426,600,l), (571,600,l), (592,730,l), (152,730,l), (131,600,l), (276,600,l), (202,130,l), (57,130,l), (36,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (280,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (451,0,l), (464,82,l), (315,82,l), (405,648,l), (554,648,l), (567,730,l), (177,730,l), (164,648,l), (313,648,l), (223,82,l), (74,82,l), (61,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (280,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (436,0,l), (443,46,l), (289,46,l), (390,684,l), (544,684,l), (552,730,l), (192,730,l), (184,684,l), (340,684,l), (239,46,l), (83,46,l), (76,0,l) ); } ); width = 600; } ); unicode = 73; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_a-cy.glyph000066400000000000000000000025561472355150100300220ustar00rootroot00000000000000{ glyphname = "Ia-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (149,0,l), (315,276,l), (385,276,l), (341,0,l), (490,0,l), (606,730,l), (372,730,ls), (217,730,o), (103,644,o), (81,508,cs), (64,396,o), (117,304,o), (217,288,c), (218,362,l), (-7,0,l) ); }, { closed = 1; nodes = ( (254,406,o), (221,441,o), (230,501,cs), (240,563,o), (285,600,o), (351,600,cs), (436,600,l), (405,406,l), (320,406,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (113,0,l), (304,310,l), (420,310,l), (371,0,l), (461,0,l), (577,730,l), (353,730,ls), (223,730,o), (122,645,o), (102,520,cs), (85,410,o), (139,331,o), (242,313,c), (238,354,l), (12,0,l) ); }, { closed = 1; nodes = ( (224,390,o), (183,442,o), (195,520,cs), (208,598,o), (266,650,o), (340,650,cs), (474,650,l), (433,390,l), (299,390,ls) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (88,0,l), (304,330,l), (448,330,l), (396,0,l), (446,0,l), (562,730,l), (357,730,ls), (228,730,o), (134,652,o), (115,528,cs), (97,416,o), (155,339,o), (266,330,c), (261,351,l), (28,0,l) ); }, { closed = 1; nodes = ( (203,375,o), (150,436,o), (165,530,cs), (180,624,o), (252,685,o), (349,685,cs), (504,685,l), (455,375,l), (300,375,ls) ); } ); width = 600; } ); unicode = 1071; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_acute.glyph000066400000000000000000000007171472355150100302670ustar00rootroot00000000000000{ glyphname = Iacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 205; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_breve.glyph000066400000000000000000000010541472355150100302640ustar00rootroot00000000000000{ glyphname = Ibreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 300; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_circumflex.glyph000066400000000000000000000007431472355150100313260ustar00rootroot00000000000000{ glyphname = Icircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 206; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_dieresis.glyph000066400000000000000000000007331472355150100307730ustar00rootroot00000000000000{ glyphname = Idieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 207; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_dotaccent.glyph000066400000000000000000000010171472355150100311240ustar00rootroot00000000000000{ glyphname = Idotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 304; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_dotbelow.glyph000066400000000000000000000007341472355150100310040ustar00rootroot00000000000000{ glyphname = Idotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7882; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_e-cy.glyph000066400000000000000000000006031472355150100300150ustar00rootroot00000000000000{ glyphname = "Ie-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = E; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = E; } ); width = 600; } ); unicode = 1045; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_grave.glyph000066400000000000000000000007171472355150100302720ustar00rootroot00000000000000{ glyphname = Igrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 204; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_hookabove.glyph000066400000000000000000000007401472355150100311370ustar00rootroot00000000000000{ glyphname = Ihookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7880; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_i-cy.glyph000066400000000000000000000023411472355150100300220ustar00rootroot00000000000000{ glyphname = "Ii-cy"; layers = ( { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (193,0,l), (469,565,l), (451,492,o), (423,369,o), (412,300,cs), (364,0,l), (496,0,l), (612,730,l), (435,730,l), (160,165,l), (176,230,o), (202,341,o), (213,410,cs), (264,730,l), (132,730,l), (16,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (166,0,l), (488,625,l), (476,576,o), (455,483,o), (444,410,cs), (379,0,l), (466,0,l), (582,730,l), (462,730,l), (141,105,l), (152,154,o), (172,247,o), (184,320,cs), (249,730,l), (162,730,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (134,0,l), (510,675,l), (502,635,o), (490,575,o), (488,560,cs), (399,0,l), (447,0,l), (563,730,l), (493,730,l), (120,55,l), (124,74,o), (132,119,o), (140,170,cs), (229,730,l), (181,730,l), (65,0,l) ); } ); width = 600; } ); unicode = 1048; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_ishort-cy.glyph000066400000000000000000000011051472355150100310770ustar00rootroot00000000000000{ glyphname = "Iishort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "Ii-cy"; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "Ii-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "Ii-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 1049; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_macron.glyph000066400000000000000000000007231472355150100304420ustar00rootroot00000000000000{ glyphname = Imacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 298; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_o-cy.glyph000066400000000000000000000007321472355150100300320ustar00rootroot00000000000000{ glyphname = "Io-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (621,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 1025; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_ogonek.glyph000066400000000000000000000021361472355150100304450ustar00rootroot00000000000000{ glyphname = Iogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (299,-195,l), (305,-153,l), (241,-153,ls), (209,-153,o), (193,-134,o), (198,-103,cs), (203,-75,o), (232,-36,o), (275,0,cs), (288,10,l), (251,10,l), (194,-27,o), (156,-74,o), (149,-115,cs), (141,-165,o), (171,-195,o), (226,-195,c) ); }, { ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (309,-203,l), (318,-143,l), (258,-143,ls), (224,-143,o), (207,-122,o), (211,-93,cs), (216,-65,o), (239,-36,o), (290,1,c), (303,10,l), (228,10,l), (158,-34,o), (130,-72,o), (124,-110,cs), (115,-164,o), (157,-203,o), (231,-203,cs) ); }, { ref = I; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (324,-225,l), (341,-120,l), (272,-120,ls), (243,-120,o), (229,-103,o), (232,-83,cs), (235,-66,o), (253,-42,o), (283,-18,cs), (320,11,l), (234,11,l), (161,-19,o), (110,-68,o), (103,-115,cs), (92,-180,o), (135,-225,o), (216,-225,cs) ); }, { ref = I; } ); width = 600; } ); unicode = 302; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_ota.glyph000066400000000000000000000005171472355150100277470ustar00rootroot00000000000000{ glyphname = Iota; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; } ); width = 600; } ); unicode = 921; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_otadieresis.glyph000066400000000000000000000007361472355150100315020ustar00rootroot00000000000000{ glyphname = Iotadieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 938; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_otatonos.glyph000066400000000000000000000007711472355150100310340ustar00rootroot00000000000000{ glyphname = Iotatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-300,0); ref = tonos.case; }, { ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-340,0); ref = tonos.case; }, { ref = I; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-350,0); ref = tonos.case; }, { ref = I; } ); width = 600; } ); unicode = 906; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_tilde.glyph000066400000000000000000000007771472355150100302750ustar00rootroot00000000000000{ glyphname = Itilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 296; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/I_u-cy.glyph000066400000000000000000000035301472355150100300370ustar00rootroot00000000000000{ glyphname = "Iu-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (455,-10,o), (536,60,o), (553,170,cs), (615,561,ls), (632,671,o), (574,740,o), (465,740,cs), (369,740,o), (296,670,o), (279,561,cs), (258,427,l), (187,427,l), (235,730,l), (112,730,l), (-4,0,l), (119,0,l), (170,322,l), (241,322,l), (217,170,ls), (200,60,o), (250,-10,o), (346,-10,cs) ); }, { closed = 1; nodes = ( (331,100,o), (313,123,o), (319,160,cs), (384,571,ls), (390,607,o), (415,630,o), (448,630,cs), (481,630,o), (499,607,o), (493,571,cs), (428,160,ls), (422,123,o), (398,100,o), (364,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (449,-10,o), (526,63,o), (545,180,cs), (603,550,ls), (622,667,o), (568,740,o), (462,740,cs), (358,740,o), (284,668,o), (265,550,cs), (244,415,l), (165,415,l), (215,730,l), (132,730,l), (16,0,l), (99,0,l), (152,335,l), (231,335,l), (207,180,ls), (188,63,o), (240,-10,o), (343,-10,cs) ); }, { closed = 1; nodes = ( (299,68,o), (274,108,o), (286,180,cs), (344,550,ls), (356,622,o), (393,662,o), (450,662,cs), (507,662,o), (532,622,o), (520,550,cs), (462,180,ls), (450,108,o), (413,68,o), (356,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (435,-10,o), (502,53,o), (519,160,cs), (584,570,ls), (601,677,o), (554,740,o), (459,740,cs), (365,740,o), (297,677,o), (280,570,cs), (253,396,l), (143,396,l), (196,730,l), (148,730,l), (32,0,l), (80,0,l), (136,356,l), (246,356,l), (215,160,ls), (198,53,o), (246,-10,o), (340,-10,cs) ); }, { closed = 1; nodes = ( (284,35,o), (251,83,o), (263,160,cs), (328,570,ls), (340,647,o), (388,695,o), (452,695,cs), (516,695,o), (548,647,o), (536,570,cs), (471,160,ls), (459,83,o), (412,35,o), (348,35,cs) ); } ); width = 600; } ); unicode = 1070; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/J_.glyph000066400000000000000000000022741472355150100272460ustar00rootroot00000000000000{ glyphname = J; layers = ( { anchors = ( { name = top; pos = (504,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (487,73,o), (511,219,cs), (592,730,l), (237,730,l), (215,595,l), (420,595,l), (361,219,ls), (351,158,o), (306,120,o), (245,120,cs), (183,120,o), (151,159,o), (161,221,c), (11,221,l), (-11,79,o), (70,-10,o), (224,-10,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (432,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (368,-10,o), (462,70,o), (484,210,cs), (567,730,l), (272,730,l), (259,648,l), (464,648,l), (394,210,ls), (380,121,o), (322,70,o), (237,70,cs), (152,70,o), (110,121,o), (124,210,c), (34,210,l), (13,74,o), (84,-10,o), (224,-10,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (504,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (359,-10,o), (446,66,o), (468,199,cs), (552,730,l), (275,730,l), (267,683,l), (494,683,l), (418,199,ls), (402,98,o), (333,35,o), (237,35,cs), (141,35,o), (91,97,o), (108,200,c), (58,200,l), (37,69,o), (101,-10,o), (229,-10,cs) ); } ); width = 600; } ); unicode = 74; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/J_circumflex.glyph000066400000000000000000000010231472355150100313170ustar00rootroot00000000000000{ glyphname = Jcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = J; }, { pos = (731,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = J; }, { pos = (659,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = J; }, { pos = (731,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 308; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/J_e-cy.glyph000066400000000000000000000006031472355150100300160ustar00rootroot00000000000000{ glyphname = "Je-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = J; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = J; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = J; } ); width = 600; } ); unicode = 1032; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_.glyph000066400000000000000000000021211472355150100272360ustar00rootroot00000000000000{ glyphname = K; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (171,0,l), (220,309,l), (296,309,l), (372,0,l), (531,0,l), (429,372,l), (641,730,l), (478,730,l), (310,447,l), (242,447,l), (287,730,l), (137,730,l), (21,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (192,338,l), (300,338,l), (416,0,l), (516,0,l), (385,376,l), (622,730,l), (522,730,l), (310,417,l), (204,417,l), (254,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (172,356,l), (327,356,l), (440,0,l), (496,0,l), (375,377,l), (602,730,l), (544,730,l), (332,401,l), (180,401,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 75; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_.ss00.glyph000066400000000000000000000021241472355150100300250ustar00rootroot00000000000000{ export = 0; glyphname = K.ss00; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (171,0,l), (228,359,l), (239,359,l), (366,0,l), (531,0,l), (385,381,l), (641,730,l), (478,730,l), (245,397,l), (234,397,l), (287,730,l), (137,730,l), (21,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (196,366,l), (213,366,l), (412,0,l), (516,0,l), (309,370,l), (622,730,l), (522,730,l), (220,389,l), (200,389,l), (254,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (175,370,l), (197,370,l), (433,0,l), (496,0,l), (253,375,l), (602,730,l), (539,730,l), (200,387,l), (177,387,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_a-cy.glyph000066400000000000000000000006031472355150100300130ustar00rootroot00000000000000{ glyphname = "Ka-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = K; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = K; } ); width = 600; } ); unicode = 1050; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_a-cy.ss00.glyph000066400000000000000000000006231472355150100306010ustar00rootroot00000000000000{ export = 0; glyphname = "Ka-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = K.ss00; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_adescender-cy.glyph000066400000000000000000000012551472355150100316740ustar00rootroot00000000000000{ glyphname = "Kadescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (494,-140,l), (523,45,l), (473,45,l), (444,-140,l) ); }, { alignment = -1; pos = (-5,0); ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (519,-140,l), (554,80,l), (474,80,l), (439,-140,l) ); }, { alignment = -1; pos = (-11,0); ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (529,-140,l), (573,140,l), (443,140,l), (399,-140,l) ); }, { alignment = -1; pos = (-15,0); ref = K; } ); width = 600; } ); unicode = 1178; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_adescender-cy.ss00.glyph000066400000000000000000000012561472355150100324610ustar00rootroot00000000000000{ export = 0; glyphname = "Kadescender-cy.ss00"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (494,-140,l), (523,45,l), (473,45,l), (444,-140,l) ); }, { alignment = -1; pos = (-5,0); ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (519,-140,l), (554,80,l), (474,80,l), (439,-140,l) ); }, { alignment = -1; pos = (-11,0); ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (529,-140,l), (573,140,l), (443,140,l), (399,-140,l) ); }, { alignment = -1; pos = (-15,0); ref = K; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_aiS_ymbol.glyph000066400000000000000000000017031472355150100311020ustar00rootroot00000000000000{ glyphname = KaiSymbol; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (337,-180,ls), (434,-180,o), (496,-129,o), (510,-35,cs), (524,51,l), (474,51,l), (460,-35,ls), (450,-99,o), (409,-135,o), (345,-135,cs), (300,-135,l), (292,-180,l) ); }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,-180,ls), (442,-180,o), (517,-117,o), (536,0,cs), (547,71,l), (461,71,l), (450,0,ls), (440,-62,o), (393,-101,o), (333,-101,cs), (304,-101,l), (291,-180,l) ); }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (330,-180,ls), (445,-180,o), (517,-120,o), (534,-10,cs), (552,100,l), (420,100,l), (404,0,ls), (398,-37,o), (377,-55,o), (340,-55,cs), (283,-55,l), (263,-180,l) ); }, { alignment = -1; ref = K; } ); width = 600; } ); unicode = 975; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_aiS_ymbol.ss00.glyph000066400000000000000000000016441472355150100316720ustar00rootroot00000000000000{ export = 0; glyphname = KaiSymbol.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (326,-180,ls), (423,-180,o), (484,-129,o), (499,-35,cs), (512,51,l), (462,51,l), (449,-35,ls), (439,-99,o), (397,-135,o), (333,-135,cs), (288,-135,l), (281,-180,l) ); }, { ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,-180,ls), (442,-180,o), (517,-117,o), (536,0,cs), (547,71,l), (461,71,l), (450,0,ls), (440,-62,o), (393,-101,o), (333,-101,cs), (304,-101,l), (291,-180,l) ); }, { ref = K.ss00; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,-180,ls), (446,-180,o), (517,-120,o), (535,-10,cs), (552,100,l), (420,100,l), (404,0,ls), (398,-37,o), (378,-55,o), (341,-55,cs), (284,-55,l), (264,-180,l) ); }, { ref = K.ss00; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_appa.glyph000066400000000000000000000005201472355150100301010ustar00rootroot00000000000000{ glyphname = Kappa; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K; } ); width = 600; } ); unicode = 922; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_appa.ss00.glyph000066400000000000000000000005411472355150100306700ustar00rootroot00000000000000{ export = 0; glyphname = Kappa.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K.ss00; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K.ss00; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_commaaccent.glyph000066400000000000000000000007471472355150100314450ustar00rootroot00000000000000{ glyphname = Kcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; } ); unicode = 310; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_commaaccent.ss00.glyph000066400000000000000000000007701472355150100322250ustar00rootroot00000000000000{ export = 0; glyphname = Kcommaaccent.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K.ss00; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K.ss00; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K.ss00; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_je-cy.glyph000066400000000000000000000010021472355150100301630ustar00rootroot00000000000000{ glyphname = "Kje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = acutecomb.case; }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = acutecomb.case; }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = acutecomb.case; }, { alignment = -1; ref = K; } ); width = 600; } ); unicode = 1036; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/K_je-cy.ss00.glyph000066400000000000000000000010221472355150100307510ustar00rootroot00000000000000{ export = 0; glyphname = "Kje-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (610,0); ref = acutecomb.case; }, { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (610,0); ref = acutecomb.case; }, { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (610,0); ref = acutecomb.case; }, { alignment = -1; ref = K.ss00; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_.glyph000066400000000000000000000015101472355150100272400ustar00rootroot00000000000000{ glyphname = L; layers = ( { anchors = ( { name = bottom; pos = (296,0); }, { name = top; pos = (262,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,140,l), (243,140,l), (337,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (296,0); }, { name = top; pos = (253,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (511,0,l), (524,82,l), (194,82,l), (297,730,l), (207,730,l), (91,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (296,0); }, { name = top; pos = (238,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (501,0,l), (508,46,l), (153,46,l), (262,730,l), (212,730,l), (96,0,l) ); } ); width = 600; } ); unicode = 76; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_acute.glyph000066400000000000000000000007171472355150100302720ustar00rootroot00000000000000{ glyphname = Lacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = L; }, { pos = (477,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = L; }, { pos = (492,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = L; }, { pos = (502,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 313; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_ambda.glyph000066400000000000000000000015431472355150100302330ustar00rootroot00000000000000{ glyphname = Lambda; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (77,0,l), (312,550,ls), (346,630,o), (367,690,o), (367,690,c), (367,690,o), (370,630,o), (379,550,cs), (439,0,l), (488,0,l), (403,730,l), (341,730,l), (24,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (101,0,l), (302,496,ls), (340,590,o), (362,660,o), (362,660,c), (362,660,o), (364,590,o), (373,495,cs), (418,0,l), (506,0,l), (433,730,l), (312,730,l), (6,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (137,0,l), (307,462,ls), (327,516,o), (350,590,o), (350,590,c), (350,590,o), (353,516,o), (356,461,cs), (381,0,l), (531,0,l), (466,730,l), (276,730,l), (-19,0,l) ); } ); width = 600; } ); unicode = 923; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_caron.glyph000066400000000000000000000007141472355150100302700ustar00rootroot00000000000000{ glyphname = Lcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = L; }, { pos = (516,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = L; }, { pos = (531,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = L; }, { pos = (540,0); ref = caroncomb.alt; } ); width = 600; } ); unicode = 317; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_commaaccent.glyph000066400000000000000000000007471472355150100314460ustar00rootroot00000000000000{ glyphname = Lcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = L; }, { pos = (640,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = L; }, { pos = (640,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = L; }, { pos = (640,0); ref = commaaccentcomb.case; } ); width = 600; } ); unicode = 315; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_dot.glyph000066400000000000000000000010331472355150100277470ustar00rootroot00000000000000{ glyphname = Ldot; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = L; }, { alignment = -1; pos = (169,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = L; }, { alignment = -1; pos = (145,275); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = L; }, { alignment = -1; pos = (140,275); ref = period; } ); width = 600; } ); unicode = 319; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_je-cy.glyph000066400000000000000000000033571472355150100302030ustar00rootroot00000000000000{ glyphname = "Lje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-25,-5,ls), (76,-5,o), (157,79,o), (178,205,cs), (249,620,l), (329,620,l), (231,0,l), (356,0,ls), (473,0,o), (557,69,o), (575,185,cs), (587,259,ls), (606,376,o), (543,445,o), (426,445,cs), (421,445,l), (467,730,l), (149,730,l), (58,205,ls), (48,147,o), (19,110,o), (-17,110,cs), (-37,110,l), (-55,-5,l) ); }, { closed = 1; nodes = ( (404,335,l), (409,335,ls), (453,335,o), (475,307,o), (467,257,cs), (455,186,ls), (448,137,o), (417,110,o), (373,110,cs), (368,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-35,-5,ls), (49,-5,o), (114,71,o), (135,194,cs), (213,655,l), (340,655,l), (236,0,l), (376,0,ls), (472,0,o), (546,62,o), (561,155,cs), (580,275,ls), (594,368,o), (540,430,o), (444,430,cs), (384,430,l), (432,730,l), (146,730,l), (56,194,ls), (43,120,o), (15,75,o), (-19,75,cs), (-37,75,l), (-50,-5,l) ); }, { closed = 1; nodes = ( (372,355,l), (432,355,ls), (480,355,o), (507,323,o), (500,275,cs), (481,155,ls), (473,107,o), (436,75,o), (388,75,cs), (328,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-25,-5,ls), (47,-5,o), (105,59,o), (122,158,cs), (214,685,l), (361,685,l), (253,0,l), (371,0,ls), (463,0,o), (530,58,o), (545,150,cs), (564,270,ls), (578,362,o), (530,420,o), (438,420,cs), (370,420,l), (419,730,l), (172,730,l), (72,158,ls), (60,87,o), (27,45,o), (-17,45,cs), (-42,45,l), (-50,-5,l) ); }, { closed = 1; nodes = ( (362,375,l), (430,375,ls), (492,375,o), (524,335,o), (514,270,cs), (495,150,ls), (484,85,o), (440,45,o), (378,45,cs), (310,45,l) ); } ); width = 600; } ); unicode = 1033; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/L_slash.glyph000066400000000000000000000012121472355150100302720ustar00rootroot00000000000000{ glyphname = Lslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (423,420,l), (445,565,l), (35,370,l), (12,225,l) ); }, { alignment = -1; pos = (10,0); ref = L; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (422,480,l), (435,564,l), (25,310,l), (12,226,l) ); }, { alignment = -1; ref = L; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (424,495,l), (433,552,l), (23,295,l), (14,238,l) ); }, { alignment = -1; pos = (10,0); ref = L; } ); width = 600; } ); unicode = 321; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/M_.glyph000066400000000000000000000030601472355150100272430ustar00rootroot00000000000000{ glyphname = M; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (120,0,l), (162,265,ls), (183,396,o), (195,582,o), (199,685,c), (261,320,l), (356,320,l), (531,685,l), (502,578,o), (454,389,o), (434,265,cs), (392,0,l), (480,0,l), (596,730,l), (476,730,l), (366,495,ls), (346,451,o), (327,405,o), (318,382,c), (315,405,o), (309,451,o), (302,494,cs), (264,730,l), (148,730,l), (32,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (97,0,l), (167,440,ls), (183,542,o), (197,651,o), (203,705,c), (281,325,l), (334,325,l), (532,705,l), (521,651,o), (501,542,o), (485,440,cs), (415,0,l), (464,0,l), (580,730,l), (504,730,l), (358,450,ls), (343,420,o), (322,381,o), (312,359,c), (308,381,o), (301,421,o), (294,450,cs), (237,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (135,0,l), (167,200,ls), (191,353,o), (204,541,o), (206,640,c), (242,310,l), (369,310,l), (505,640,l), (477,537,o), (432,346,o), (409,200,cs), (377,0,l), (514,0,l), (630,730,l), (458,730,l), (355,500,ls), (334,452,o), (321,414,o), (317,399,c), (318,414,o), (317,452,o), (310,500,cs), (280,730,l), (114,730,l), (-2,0,l) ); } ); width = 600; } ); unicode = 77; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/M_u.glyph000066400000000000000000000005151472355150100274320ustar00rootroot00000000000000{ glyphname = Mu; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = M; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = M; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = M; } ); width = 600; } ); unicode = 924; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_.glyph000066400000000000000000000023121472355150100272430ustar00rootroot00000000000000{ glyphname = N; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,0,l), (199,320,ls), (210,389,o), (219,501,o), (223,565,c), (323,0,l), (496,0,l), (612,730,l), (480,730,l), (432,430,ls), (421,361,o), (411,238,o), (406,165,c), (305,730,l), (132,730,l), (16,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (133,0,l), (198,410,ls), (210,483,o), (219,576,o), (223,625,c), (347,0,l), (466,0,l), (582,730,l), (495,730,l), (430,320,ls), (418,247,o), (409,154,o), (406,105,c), (281,730,l), (162,730,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (114,0,l), (203,560,ls), (211,611,o), (217,656,o), (219,675,c), (378,0,l), (446,0,l), (562,730,l), (514,730,l), (425,170,ls), (423,155,o), (415,95,o), (411,55,c), (249,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 78; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_U_L_L_.glyph000066400000000000000000000003511472355150100302560ustar00rootroot00000000000000{ glyphname = NULL; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 0; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 0; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_acute.glyph000066400000000000000000000007771472355150100303020ustar00rootroot00000000000000{ glyphname = Nacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = N; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = N; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = N; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 323; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_caron.glyph000066400000000000000000000007771472355150100303030ustar00rootroot00000000000000{ glyphname = Ncaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = N; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = N; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = N; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 327; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_commaaccent.glyph000066400000000000000000000010101472355150100314300ustar00rootroot00000000000000{ glyphname = Ncommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = N; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = N; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = N; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 325; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_doubleS_truck.glyph000066400000000000000000000023131472355150100317720ustar00rootroot00000000000000{ glyphname = NdoubleStruck; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (139,0,l), (139,430,ls), (139,467,o), (137,526,o), (135,560,c), (381,0,l), (510,0,l), (510,730,l), (461,730,l), (461,300,ls), (461,264,o), (463,204,o), (465,170,c), (219,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (124,691,l), (190,691,l), (476,39,l), (410,39,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (139,0,l), (139,430,ls), (139,467,o), (137,526,o), (135,560,c), (381,0,l), (510,0,l), (510,730,l), (461,730,l), (461,300,ls), (461,264,o), (463,204,o), (465,170,c), (219,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (124,691,l), (190,691,l), (476,39,l), (410,39,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (139,0,l), (139,430,ls), (139,467,o), (137,526,o), (135,560,c), (381,0,l), (510,0,l), (510,730,l), (461,730,l), (461,300,ls), (461,264,o), (463,204,o), (465,170,c), (219,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (124,691,l), (190,691,l), (476,39,l), (410,39,l) ); } ); width = 600; } ); unicode = 8469; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_je-cy.glyph000066400000000000000000000031241472355150100301750ustar00rootroot00000000000000{ glyphname = "Nje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (116,0,l), (171,345,l), (286,345,l), (231,0,l), (356,0,ls), (474,0,o), (557,70,o), (575,185,cs), (589,269,ls), (607,385,o), (546,455,o), (428,455,cs), (423,455,l), (467,730,l), (347,730,l), (303,455,l), (188,455,l), (232,730,l), (112,730,l), (-4,0,l) ); }, { closed = 1; nodes = ( (406,345,l), (411,345,ls), (455,345,o), (476,317,o), (468,267,cs), (455,186,ls), (448,138,o), (418,110,o), (373,110,cs), (368,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (89,0,l), (145,355,l), (292,355,l), (236,0,l), (376,0,ls), (474,0,o), (546,60,o), (561,155,cs), (580,275,ls), (595,370,o), (542,430,o), (444,430,cs), (384,430,l), (432,730,l), (352,730,l), (304,430,l), (157,430,l), (205,730,l), (125,730,l), (9,0,l) ); }, { closed = 1; nodes = ( (372,355,l), (432,355,ls), (482,355,o), (507,325,o), (500,275,cs), (481,155,ls), (473,105,o), (438,75,o), (388,75,cs), (328,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (68,0,l), (127,375,l), (312,375,l), (253,0,l), (366,0,ls), (461,0,o), (530,58,o), (545,150,cs), (564,270,ls), (578,362,o), (528,420,o), (433,420,cs), (370,420,l), (419,730,l), (369,730,l), (320,420,l), (135,420,l), (184,730,l), (134,730,l), (18,0,l) ); }, { closed = 1; nodes = ( (362,375,l), (425,375,ls), (490,375,o), (524,335,o), (514,270,cs), (495,150,ls), (484,85,o), (438,45,o), (373,45,cs), (310,45,l) ); } ); width = 600; } ); unicode = 1034; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_tilde.glyph000066400000000000000000000007171472355150100302740ustar00rootroot00000000000000{ glyphname = Ntilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = N; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = N; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = N; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 209; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/N_u.glyph000066400000000000000000000005151472355150100274330ustar00rootroot00000000000000{ glyphname = Nu; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = N; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = N; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = N; } ); width = 600; } ); unicode = 925; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_-cy.glyph000066400000000000000000000006021472355150100276550ustar00rootroot00000000000000{ glyphname = "O-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; } ); width = 600; } ); unicode = 1054; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_.glyph000066400000000000000000000045001472355150100272450ustar00rootroot00000000000000{ glyphname = O; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (314,365); }, { name = horn; pos = (387,700); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); }, { name = topright; pos = (652,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (314,365); }, { name = horn; pos = (387,700); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); }, { name = topright; pos = (652,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (552,531,ls), (572,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (314,365); }, { name = horn; pos = (387,700); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); }, { name = topright; pos = (652,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (215,120,o), (190,152,o), (199,210,cs), (248,520,ls), (257,578,o), (292,610,o), (353,610,cs), (414,610,o), (437,578,o), (428,520,cs), (379,210,ls), (370,152,o), (335,120,o), (275,120,cs) ); } ); width = 600; } ); unicode = 79; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_E_.glyph000066400000000000000000000040351472355150100275140ustar00rootroot00000000000000{ glyphname = OE; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (202,-4,o), (243,47,o), (255,86,c), (260,86,l), (246,0,l), (536,0,l), (556,126,l), (395,126,l), (424,311,l), (560,311,l), (580,437,l), (444,437,l), (471,605,l), (632,605,l), (652,730,l), (362,730,l), (349,650,l), (344,650,l), (345,689,o), (320,740,o), (248,740,cs), (157,740,o), (91,666,o), (72,541,cs), (17,195,ls), (-3,70,o), (39,-4,o), (130,-4,cs) ); }, { closed = 1; nodes = ( (167,121,o), (150,149,o), (157,195,cs), (212,541,ls), (219,587,o), (245,615,o), (280,615,cs), (316,615,o), (333,588,o), (326,541,cs), (271,195,ls), (263,148,o), (238,121,o), (202,121,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (218,-10,o), (261,41,o), (274,80,c), (279,80,l), (266,0,l), (531,0,l), (544,82,l), (367,82,l), (407,336,l), (559,336,l), (572,418,l), (420,418,l), (457,648,l), (634,648,l), (647,730,l), (382,730,l), (369,650,l), (364,650,l), (364,689,o), (337,740,o), (268,740,cs), (172,740,o), (102,667,o), (83,550,cs), (25,180,ls), (6,63,o), (53,-10,o), (149,-10,cs) ); }, { closed = 1; nodes = ( (131,70,o), (104,112,o), (115,180,cs), (173,550,ls), (184,618,o), (225,660,o), (281,660,cs), (337,660,o), (364,618,o), (353,550,cs), (295,180,ls), (284,112,o), (243,70,o), (187,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (219,-10,o), (267,41,o), (284,80,c), (289,80,l), (276,0,l), (525,0,l), (533,50,l), (339,50,l), (387,352,l), (545,352,l), (553,402,l), (395,402,l), (439,680,l), (633,680,l), (641,730,l), (392,730,l), (379,650,l), (374,650,l), (370,689,o), (338,740,o), (269,740,cs), (178,740,o), (101,664,o), (84,557,cs), (23,173,ls), (6,66,o), (59,-10,o), (150,-10,cs) ); }, { closed = 1; nodes = ( (102,40,o), (66,94,o), (78,173,cs), (139,557,ls), (152,636,o), (205,690,o), (272,690,cs), (338,690,o), (377,638,o), (364,557,cs), (303,173,ls), (291,92,o), (235,40,o), (169,40,cs) ); } ); width = 600; } ); unicode = 338; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_acute.glyph000066400000000000000000000007171472355150100302750ustar00rootroot00000000000000{ glyphname = Oacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 211; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_barred-cy.glyph000066400000000000000000000034421472355150100310420ustar00rootroot00000000000000{ glyphname = "Obarred-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (404,-10,o), (509,81,o), (530,215,cs), (578,516,ls), (599,651,o), (525,740,o), (373,740,cs), (221,740,o), (119,651,o), (98,516,cs), (50,215,ls), (29,79,o), (102,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (208,120,o), (181,161,o), (191,220,cs), (205,310,l), (405,310,l), (391,220,ls), (381,161,o), (342,120,o), (275,120,cs) ); }, { closed = 1; nodes = ( (237,510,ls), (246,570,o), (286,610,o), (353,610,cs), (420,610,o), (446,570,o), (437,510,cs), (425,435,l), (225,435,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,71,o), (498,201,cs), (550,530,ls), (571,661,o), (504,740,o), (373,740,cs), (242,740,o), (151,661,o), (130,530,cs), (78,201,ls), (57,70,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,69,o), (153,116,o), (167,201,cs), (188,334,l), (430,334,l), (409,201,ls), (395,116,o), (345,69,o), (267,69,cs) ); }, { closed = 1; nodes = ( (219,530,ls), (232,615,o), (282,661,o), (361,661,cs), (440,661,o), (474,615,o), (461,530,cs), (443,414,l), (201,414,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (166,350,l), (456,350,l), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (464,395,l), (174,395,l) ); } ); width = 600; } ); unicode = 1256; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_breve.glyph000066400000000000000000000010541472355150100302720ustar00rootroot00000000000000{ glyphname = Obreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 334; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_circumflex.glyph000066400000000000000000000007431472355150100313340ustar00rootroot00000000000000{ glyphname = Ocircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 212; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_circumflexacute.glyph000066400000000000000000000010071472355150100323500ustar00rootroot00000000000000{ glyphname = Ocircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; } ); unicode = 7888; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_circumflexdotbelow.glyph000066400000000000000000000011631472355150100330710ustar00rootroot00000000000000{ glyphname = Ocircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 7896; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_circumflexgrave.glyph000066400000000000000000000010071472355150100323530ustar00rootroot00000000000000{ glyphname = Ocircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; } ); unicode = 7890; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_circumflexhookabove.glyph000066400000000000000000000010271472355150100332260ustar00rootroot00000000000000{ glyphname = Ocircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7892; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_circumflextilde.glyph000066400000000000000000000010071472355150100323500ustar00rootroot00000000000000{ glyphname = Ocircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; } ); unicode = 7894; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_dieresis.glyph000066400000000000000000000007331472355150100310010ustar00rootroot00000000000000{ glyphname = Odieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 214; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_dotbelow.glyph000066400000000000000000000007751472355150100310170ustar00rootroot00000000000000{ glyphname = Odotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7884; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_grave.glyph000066400000000000000000000007171472355150100303000ustar00rootroot00000000000000{ glyphname = Ograve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 210; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_hookabove.glyph000066400000000000000000000007401472355150100311450ustar00rootroot00000000000000{ glyphname = Ohookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7886; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_horn.glyph000066400000000000000000000020271472355150100301360ustar00rootroot00000000000000{ glyphname = Ohorn; layers = ( { anchors = ( { name = top; pos = (362,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (492,600,ls), (579,600,o), (646,654,o), (658,735,cs), (670,810,l), (550,810,l), (538,735,ls), (535,713,o), (520,700,o), (498,700,cs), (448,700,l), (432,600,l) ); }, { ref = O; } ); width = 600; }, { anchors = ( { name = top; pos = (362,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (482,635,ls), (546,635,o), (592,672,o), (602,730,cs), (614,810,l), (539,810,l), (527,735,ls), (524,714,o), (508,700,o), (487,700,cs), (467,700,l), (457,635,l) ); }, { ref = O; } ); width = 600; }, { anchors = ( { name = top; pos = (390,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (499,665,ls), (550,665,o), (589,699,o), (597,750,cs), (607,810,l), (567,810,l), (557,750,ls), (552,720,o), (532,700,o), (505,700,cs), (464,700,l), (458,665,l) ); }, { ref = O; } ); width = 600; } ); unicode = 416; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_hornacute.glyph000066400000000000000000000010201472355150100311500ustar00rootroot00000000000000{ glyphname = Ohornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (602,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (601,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (629,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 7898; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_horndotbelow.glyph000066400000000000000000000007541472355150100317030ustar00rootroot00000000000000{ glyphname = Ohorndotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Ohorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Ohorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Ohorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7906; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_horngrave.glyph000066400000000000000000000010201472355150100311530ustar00rootroot00000000000000{ glyphname = Ohorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (576,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (576,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (605,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7900; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_hornhookabove.glyph000066400000000000000000000007601472355150100320360ustar00rootroot00000000000000{ glyphname = Ohornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Ohorn; }, { pos = (618,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Ohorn; }, { pos = (590,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Ohorn; }, { pos = (590,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7902; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_horntilde.glyph000066400000000000000000000010201472355150100311500ustar00rootroot00000000000000{ glyphname = Ohorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (590,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (590,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (618,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7904; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_hungarumlaut.glyph000066400000000000000000000010331472355150100317000ustar00rootroot00000000000000{ glyphname = Ohungarumlaut; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; } ); unicode = 336; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_macron.glyph000066400000000000000000000010031472355150100304400ustar00rootroot00000000000000{ glyphname = Omacron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 332; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_mega.glyph000066400000000000000000000034511472355150100301030ustar00rootroot00000000000000{ glyphname = Omega; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (216,0,l), (252,230,l), (215,230,o), (195,258,o), (202,300,cs), (236,516,ls), (245,573,o), (291,610,o), (353,610,cs), (415,610,o), (449,573,o), (440,516,cs), (406,300,ls), (399,258,o), (369,230,o), (332,230,c), (296,0,l), (507,0,l), (529,140,l), (383,140,l), (384,146,l), (448,152,o), (540,199,o), (556,305,cs), (590,516,ls), (611,651,o), (525,740,o), (373,740,cs), (221,740,o), (107,651,o), (86,516,cs), (52,305,ls), (36,199,o), (112,151,o), (174,145,c), (173,140,l), (28,140,l), (6,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (216,0,l), (233,110,l), (180,110,o), (152,164,o), (164,240,cs), (209,525,ls), (222,607,o), (282,660,o), (361,660,cs), (440,660,o), (482,607,o), (469,525,cs), (424,240,ls), (412,164,o), (366,110,o), (313,110,c), (296,0,l), (507,0,l), (520,80,l), (374,80,l), (375,86,l), (425,92,o), (498,139,o), (515,245,cs), (559,525,ls), (580,656,o), (508,740,o), (373,740,cs), (238,740,o), (140,656,o), (119,525,cs), (75,245,ls), (58,139,o), (116,91,o), (164,85,c), (164,80,l), (19,80,l), (6,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (216,0,l), (229,85,l), (167,85,o), (137,133,o), (149,210,cs), (201,538,ls), (217,636,o), (280,695,o), (367,695,cs), (453,695,o), (497,636,o), (481,538,cs), (429,210,ls), (417,132,o), (371,84,o), (309,84,c), (296,0,l), (506,0,l), (513,45,l), (348,45,l), (351,60,l), (396,62,o), (462,104,o), (479,210,cs), (531,538,ls), (551,661,o), (489,740,o), (374,740,cs), (257,740,o), (171,661,o), (151,538,cs), (99,210,ls), (82,104,o), (136,62,o), (181,60,c), (178,45,l), (13,45,l), (6,0,l) ); } ); width = 600; } ); unicode = 937; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_megatonos.glyph000066400000000000000000000010061472355150100311600ustar00rootroot00000000000000{ glyphname = Omegatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Omega; }, { alignment = -1; pos = (-270,0); ref = tonos.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Omega; }, { alignment = -1; pos = (-305,0); ref = tonos.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Omega; }, { alignment = -1; pos = (-320,0); ref = tonos.case; } ); width = 600; } ); unicode = 911; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_micron.glyph000066400000000000000000000005221472355150100304550ustar00rootroot00000000000000{ glyphname = Omicron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; } ); width = 600; } ); unicode = 927; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_microntonos.glyph000066400000000000000000000007741472355150100315510ustar00rootroot00000000000000{ glyphname = Omicrontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-270,0); ref = tonos.case; }, { ref = O; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-305,0); ref = tonos.case; }, { ref = O; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-320,0); ref = tonos.case; }, { ref = O; } ); width = 600; } ); unicode = 908; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_ogonek.glyph000066400000000000000000000050461472355150100304560ustar00rootroot00000000000000{ glyphname = Oogonek; layers = ( { anchors = ( { name = horn; pos = (387,700); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (383,-225,l), (400,-120,l), (331,-120,ls), (302,-120,o), (288,-103,o), (291,-82,cs), (294,-65,o), (310,-38,o), (340,-17,cs), (394,21,l), (464,58,o), (517,127,o), (530,210,cs), (579,520,ls), (600,652,o), (521,740,o), (374,740,cs), (227,740,o), (120,652,o), (99,520,cs), (50,210,ls), (29,78,o), (108,-10,o), (255,-10,cs), (288,-10,o), (307,11,o), (308,21,c), (236,-9,o), (169,-68,o), (162,-115,cs), (151,-180,o), (194,-225,o), (275,-225,cs) ); }, { closed = 1; nodes = ( (216,120,o), (191,152,o), (200,210,cs), (249,520,ls), (259,578,o), (293,610,o), (354,610,cs), (415,610,o), (439,578,o), (429,520,cs), (380,210,ls), (371,152,o), (336,120,o), (276,120,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (387,700); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (367,-195,l), (374,-153,l), (310,-153,ls), (278,-153,o), (262,-134,o), (267,-103,cs), (271,-75,o), (300,-33,o), (344,2,cs), (355,10,l), (422,45,o), (468,105,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs), (265,-10,o), (284,-9,o), (295,-6,c), (252,-39,o), (223,-80,o), (218,-115,cs), (210,-165,o), (239,-195,o), (294,-195,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (387,700); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (381,-203,l), (390,-143,l), (330,-143,ls), (296,-143,o), (279,-122,o), (283,-93,cs), (288,-65,o), (307,-36,o), (357,1,cs), (390,25,l), (448,60,o), (487,121,o), (500,200,cs), (552,531,ls), (573,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs), (258,-10,o), (263,-10,o), (267,-10,c), (226,-45,o), (200,-82,o), (196,-110,cs), (187,-164,o), (229,-203,o), (303,-203,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); } ); width = 600; } ); unicode = 490; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_slash.glyph000066400000000000000000000041701472355150100303030ustar00rootroot00000000000000{ glyphname = Oslash; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (392,730); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (83,-40,l), (660,750,l), (542,750,l), (-35,-40,l) ); }, { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (214,120,o), (185,152,o), (194,210,cs), (243,520,ls), (253,578,o), (292,610,o), (353,610,cs), (414,610,o), (443,578,o), (433,520,cs), (384,210,ls), (375,152,o), (336,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (392,730); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (71,-40,l), (640,750,l), (554,750,l), (-15,-40,l) ); }, { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (552,531,ls), (572,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (392,730); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (50,-40,l), (625,750,l), (575,750,l), (0,-40,l) ); }, { closed = 1; nodes = ( (373,-10,o), (461,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (71,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (213,638,o), (275,696,o), (366,696,cs), (457,696,o), (503,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 216; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_slashacute.glyph000066400000000000000000000010231472355150100313170ustar00rootroot00000000000000{ glyphname = Oslashacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Oslash; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Oslash; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Oslash; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 510; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/O_tilde.glyph000066400000000000000000000007171472355150100302750ustar00rootroot00000000000000{ glyphname = Otilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 213; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/P_.glyph000066400000000000000000000025561472355150100272570ustar00rootroot00000000000000{ glyphname = P; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (214,266,l), (313,266,ls), (466,266,o), (583,359,o), (605,498,cs), (627,638,o), (541,730,o), (387,730,cs), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (266,595,l), (365,595,ls), (429,595,o), (464,557,o), (455,498,cs), (446,439,o), (399,401,o), (335,401,cs), (236,401,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (186,300,l), (331,300,ls), (467,300,o), (567,384,o), (588,515,cs), (608,646,o), (535,730,o), (399,730,cs), (164,730,l), (48,0,l) ); }, { closed = 1; nodes = ( (241,649,l), (386,649,ls), (465,649,o), (508,597,o), (495,515,cs), (482,433,o), (422,381,o), (343,381,cs), (198,381,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (167,324,l), (332,324,ls), (459,324,o), (555,404,o), (574,527,cs), (594,650,o), (525,730,o), (397,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (224,684,l), (389,684,ls), (487,684,o), (540,624,o), (524,527,cs), (509,431,o), (437,370,o), (340,370,cs), (175,370,l) ); } ); width = 600; } ); unicode = 80; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/P_e-cy.glyph000066400000000000000000000012351472355150100300260ustar00rootroot00000000000000{ glyphname = "Pe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (265,590,l), (433,590,l), (340,0,l), (490,0,l), (606,730,l), (138,730,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (140,0,l), (243,648,l), (475,648,l), (372,0,l), (462,0,l), (578,730,l), (166,730,l), (50,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (224,685,l), (504,685,l), (396,0,l), (446,0,l), (562,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 1055; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/P_hi.glyph000066400000000000000000000006201472355150100275660ustar00rootroot00000000000000{ glyphname = Phi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "Ef-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "Ef-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "Ef-cy"; } ); width = 600; } ); unicode = 934; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/P_i.glyph000066400000000000000000000005371472355150100274250ustar00rootroot00000000000000{ glyphname = Pi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "Pe-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "Pe-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "Pe-cy"; } ); width = 600; } ); unicode = 928; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/P_si.glyph000066400000000000000000000024341472355150100276060ustar00rootroot00000000000000{ glyphname = Psi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (308,170,l), (437,170,o), (529,248,o), (549,372,cs), (606,730,l), (556,730,l), (499,372,ls), (485,281,o), (408,215,o), (315,215,c), (397,730,l), (347,730,l), (265,215,l), (172,215,o), (117,281,o), (131,372,cs), (188,730,l), (138,730,l), (81,372,ls), (61,248,o), (129,170,o), (258,170,c), (231,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (298,0,l), (325,170,l), (448,170,o), (542,252,o), (562,378,cs), (618,730,l), (534,730,l), (478,378,ls), (465,296,o), (412,246,o), (337,246,c), (414,730,l), (330,730,l), (253,246,l), (178,246,o), (141,296,o), (154,378,cs), (210,730,l), (126,730,l), (70,378,ls), (50,252,o), (118,170,o), (241,170,c), (214,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (316,0,l), (343,170,l), (470,173,o), (567,260,o), (588,389,cs), (642,730,l), (515,730,l), (461,389,ls), (451,327,o), (408,286,o), (355,286,c), (426,730,l), (318,730,l), (247,286,l), (194,286,o), (165,327,o), (175,389,cs), (229,730,l), (102,730,l), (48,389,ls), (27,260,o), (96,173,o), (223,170,c), (196,0,l) ); } ); width = 600; } ); unicode = 936; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Q_.glyph000066400000000000000000000037341472355150100272570ustar00rootroot00000000000000{ glyphname = Q; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (479,-180,l), (362,77,l), (345,3,l), (447,29,o), (513,106,o), (529,210,cs), (578,520,ls), (599,652,o), (517,740,o), (373,740,cs), (228,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,79,o), (110,-10,o), (254,-10,cs), (260,-10,o), (269,-9,o), (274,-9,c), (250,4,l), (332,-180,l) ); }, { closed = 1; nodes = ( (213,121,o), (190,153,o), (199,210,cs), (248,520,ls), (257,578,o), (295,610,o), (353,610,cs), (411,610,o), (437,578,o), (428,520,cs), (379,210,ls), (370,153,o), (337,121,o), (275,121,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-180,l), (348,50,l), (342,4,l), (430,31,o), (492,105,o), (508,205,cs), (559,525,ls), (580,656,o), (508,740,o), (373,740,cs), (238,740,o), (140,656,o), (119,525,cs), (68,205,ls), (47,74,o), (119,-10,o), (254,-10,cs), (264,-10,o), (275,-9,o), (286,-7,c), (274,-3,l), (352,-180,l) ); }, { closed = 1; nodes = ( (188,70,o), (145,123,o), (158,205,cs), (209,525,ls), (222,607,o), (282,660,o), (361,660,cs), (440,660,o), (482,607,o), (469,525,cs), (418,205,ls), (405,123,o), (346,70,o), (267,70,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (433,-180,l), (340,31,l), (339,5,l), (415,31,o), (467,101,o), (481,190,cs), (537,540,ls), (556,656,o), (493,740,o), (374,740,cs), (254,740,o), (167,662,o), (147,540,cs), (91,190,ls), (72,69,o), (136,-10,o), (255,-10,cs), (275,-10,o), (298,-7,o), (309,-5,c), (301,0,l), (382,-180,l) ); }, { closed = 1; nodes = ( (171,35,o), (125,92,o), (141,190,cs), (197,540,ls), (213,638,o), (275,695,o), (367,695,cs), (457,695,o), (503,637,o), (487,540,cs), (431,190,ls), (415,92,o), (354,35,o), (263,35,cs) ); } ); width = 600; } ); unicode = 81; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Q_doubleS_truck.glyph000066400000000000000000000046421472355150100320040ustar00rootroot00000000000000{ glyphname = QdoubleStruck; layers = ( { anchors = ( { name = top; pos = (300,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (510,-180,l), (395,10,l), (459,40,o), (495,106,o), (495,190,cs), (495,540,ls), (495,656,o), (420,740,o), (301,740,cs), (181,740,o), (105,662,o), (105,540,cs), (105,190,ls), (105,69,o), (182,-10,o), (301,-10,cs), (321,-10,o), (343,-7,o), (354,-5,c), (339,0,l), (449,-180,l) ); }, { closed = 1; nodes = ( (249,27,l), (249,709,l), (207,709,l), (207,27,l) ); }, { closed = 1; nodes = ( (209,35,o), (147,92,o), (147,190,cs), (147,540,ls), (147,638,o), (209,695,o), (301,695,cs), (391,695,o), (453,637,o), (453,540,cs), (453,190,ls), (453,92,o), (392,35,o), (301,35,cs) ); }, { closed = 1; nodes = ( (393,27,l), (393,709,l), (351,709,l), (351,27,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (300,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (510,-180,l), (395,10,l), (459,40,o), (495,106,o), (495,190,cs), (495,540,ls), (495,656,o), (420,740,o), (301,740,cs), (181,740,o), (105,662,o), (105,540,cs), (105,190,ls), (105,69,o), (182,-10,o), (301,-10,cs), (321,-10,o), (343,-7,o), (354,-5,c), (339,0,l), (449,-180,l) ); }, { closed = 1; nodes = ( (249,27,l), (249,709,l), (207,709,l), (207,27,l) ); }, { closed = 1; nodes = ( (209,35,o), (147,92,o), (147,190,cs), (147,540,ls), (147,638,o), (209,695,o), (301,695,cs), (391,695,o), (453,637,o), (453,540,cs), (453,190,ls), (453,92,o), (392,35,o), (301,35,cs) ); }, { closed = 1; nodes = ( (393,27,l), (393,709,l), (351,709,l), (351,27,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (300,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,-180,l), (395,10,l), (459,40,o), (495,106,o), (495,190,cs), (495,540,ls), (495,656,o), (420,740,o), (301,740,cs), (181,740,o), (105,662,o), (105,540,cs), (105,190,ls), (105,69,o), (182,-10,o), (301,-10,cs), (321,-10,o), (343,-7,o), (354,-5,c), (339,0,l), (449,-180,l) ); }, { closed = 1; nodes = ( (249,27,l), (249,709,l), (207,709,l), (207,27,l) ); }, { closed = 1; nodes = ( (209,35,o), (147,92,o), (147,190,cs), (147,540,ls), (147,638,o), (209,695,o), (301,695,cs), (391,695,o), (453,637,o), (453,540,cs), (453,190,ls), (453,92,o), (392,35,o), (301,35,cs) ); }, { closed = 1; nodes = ( (393,27,l), (393,709,l), (351,709,l), (351,27,l) ); } ); width = 600; } ); unicode = 8474; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/R_.glyph000066400000000000000000000031441472355150100272530ustar00rootroot00000000000000{ glyphname = R; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (170,0,l), (214,276,l), (284,276,l), (366,0,l), (521,0,l), (404,361,l), (385,287,l), (490,306,o), (574,396,o), (591,508,cs), (613,644,o), (527,730,o), (372,730,cs), (137,730,l), (21,0,l) ); }, { closed = 1; nodes = ( (265,600,l), (351,600,ls), (417,600,o), (450,563,o), (440,501,cs), (431,441,o), (386,406,o), (320,406,cs), (234,406,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (187,310,l), (304,310,l), (399,0,l), (501,0,l), (383,359,l), (372,314,l), (478,333,o), (557,411,o), (573,520,cs), (593,645,o), (520,730,o), (390,730,cs), (164,730,l), (48,0,l) ); }, { closed = 1; nodes = ( (241,649,l), (377,649,ls), (451,649,o), (493,598,o), (480,520,cs), (468,442,o), (411,391,o), (336,391,cs), (200,391,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (168,330,l), (314,330,l), (428,0,l), (482,0,l), (356,353,l), (352,330,l), (464,340,o), (547,417,o), (565,528,cs), (584,652,o), (516,730,o), (387,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (224,684,l), (379,684,ls), (476,684,o), (530,624,o), (515,530,cs), (500,436,o), (427,375,o), (330,375,cs), (175,375,l) ); } ); width = 600; } ); unicode = 82; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/R_acute.glyph000066400000000000000000000007771472355150100303060ustar00rootroot00000000000000{ glyphname = Racute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = R; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = R; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = R; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 340; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/R_caron.glyph000066400000000000000000000007771472355150100303070ustar00rootroot00000000000000{ glyphname = Rcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = R; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = R; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = R; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 344; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/R_commaaccent.glyph000066400000000000000000000010101472355150100314340ustar00rootroot00000000000000{ glyphname = Rcommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = R; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = R; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = R; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 342; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/R_ho.glyph000066400000000000000000000005161472355150100276020ustar00rootroot00000000000000{ glyphname = Rho; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = P; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = P; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = P; } ); width = 600; } ); unicode = 929; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_.glyph000066400000000000000000000042271472355150100272570ustar00rootroot00000000000000{ glyphname = S; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (409,-10,o), (520,74,o), (542,206,cs), (559,319,o), (500,398,o), (377,428,cs), (302,446,ls), (259,456,o), (240,489,o), (248,535,cs), (255,583,o), (291,610,o), (349,610,cs), (410,610,o), (439,581,o), (432,535,c), (582,535,l), (602,660,o), (520,740,o), (371,740,cs), (223,740,o), (117,657,o), (97,529,cs), (80,418,o), (140,335,o), (260,306,cs), (331,289,ls), (376,278,o), (397,244,o), (391,199,cs), (383,149,o), (341,120,o), (278,120,cs), (213,120,o), (177,151,o), (185,200,c), (35,200,l), (14,72,o), (100,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (495,70,o), (514,190,cs), (529,287,o), (484,363,o), (392,394,cs), (297,426,ls), (242,444,o), (216,492,o), (226,554,cs), (236,620,o), (288,660,o), (366,660,cs), (445,660,o), (483,617,o), (471,545,c), (561,545,l), (578,663,o), (507,741,o), (379,741,cs), (249,741,o), (153,663,o), (134,546,cs), (120,450,o), (167,375,o), (260,345,cs), (354,314,ls), (407,297,o), (433,250,o), (424,188,cs), (412,115,o), (355,71,o), (271,71,cs), (181,71,o), (136,116,o), (148,190,c), (58,190,l), (40,66,o), (115,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (388,-10,o), (481,64,o), (500,180,cs), (515,273,o), (465,355,o), (371,384,cs), (290,409,ls), (223,430,o), (189,488,o), (200,563,cs), (212,645,o), (278,695,o), (371,695,cs), (462,695,o), (512,637,o), (498,548,c), (548,548,l), (566,666,o), (501,740,o), (379,740,cs), (256,740,o), (167,670,o), (150,559,cs), (135,466,o), (180,392,o), (271,364,cs), (352,339,ls), (427,316,o), (461,258,o), (449,177,cs), (435,88,o), (367,35,o), (267,35,cs), (164,35,o), (106,94,o), (120,185,c), (70,185,l), (51,66,o), (124,-10,o), (259,-10,cs) ); } ); width = 600; } ); unicode = 83; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_P_C_.glyph000066400000000000000000000003561472355150100277770ustar00rootroot00000000000000{ glyphname = SPC; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_acute.glyph000066400000000000000000000007771472355150100303070ustar00rootroot00000000000000{ glyphname = Sacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 346; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_caron.glyph000066400000000000000000000007771472355150100303100ustar00rootroot00000000000000{ glyphname = Scaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 352; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_cedilla.glyph000066400000000000000000000025221472355150100305710ustar00rootroot00000000000000{ glyphname = Scedilla; layers = ( { anchors = ( { name = _bottom; pos = (256,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (225,-225,ls), (309,-225,o), (372,-182,o), (380,-133,cs), (390,-72,o), (313,-43,o), (253,-39,c), (281,16,l), (208,16,l), (159,-69,l), (232,-69,o), (272,-88,o), (267,-119,cs), (265,-135,o), (239,-155,o), (206,-155,cs), (126,-155,l), (115,-225,l) ); }, { alignment = -1; ref = S; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (256,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,-203,ls), (286,-203,o), (340,-166,o), (347,-120,cs), (355,-68,o), (292,-41,o), (240,-35,c), (271,26,l), (214,26,l), (164,-69,l), (231,-69,o), (266,-89,o), (262,-112,cs), (259,-130,o), (237,-148,o), (208,-148,cs), (138,-148,l), (129,-203,l) ); }, { alignment = -1; ref = S; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (256,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (240,-195,ls), (300,-195,o), (346,-161,o), (352,-118,cs), (361,-61,o), (302,-37,o), (256,-34,c), (288,26,l), (246,26,l), (197,-64,l), (268,-64,o), (311,-86,o), (306,-118,cs), (303,-140,o), (278,-160,o), (246,-160,cs), (166,-160,l), (160,-195,l) ); }, { alignment = -1; ref = S; } ); width = 600; } ); unicode = 350; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_chwa-cy.glyph000066400000000000000000000033021472355150100305240ustar00rootroot00000000000000{ glyphname = "Schwa-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (376,-10,o), (467,67,o), (486,190,cs), (542,540,ls), (561,663,o), (495,740,o), (371,740,cs), (246,740,o), (155,659,o), (135,530,c), (185,530,l), (201,632,o), (270,695,o), (364,695,cs), (458,695,o), (507,635,o), (492,540,cs), (468,391,l), (113,391,l), (83,200,ls), (62,71,o), (127,-10,o), (252,-10,cs) ); }, { closed = 1; nodes = ( (166,35,o), (117,98,o), (133,200,cs), (156,346,l), (461,346,l), (436,190,ls), (421,95,o), (354,35,o), (260,35,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (382,-10,o), (477,71,o), (498,200,cs), (550,530,ls), (570,659,o), (501,740,o), (370,740,cs), (239,740,o), (144,659,o), (124,530,c), (214,530,l), (227,610,o), (282,660,o), (358,660,cs), (434,660,o), (473,610,o), (460,531,cs), (441,409,l), (105,409,l), (72,200,ls), (51,71,o), (120,-10,o), (251,-10,cs) ); }, { closed = 1; nodes = ( (188,70,o), (149,120,o), (162,200,cs), (182,327,l), (428,327,l), (408,200,ls), (395,120,o), (340,70,o), (264,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (397,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,653,o), (516,740,o), (369,740,cs), (222,740,o), (111,653,o), (90,520,c), (240,520,l), (250,578,o), (289,610,o), (349,610,cs), (409,610,o), (438,578,o), (428,520,cs), (415,435,l), (77,435,l), (41,210,ls), (20,77,o), (103,-10,o), (250,-10,cs) ); }, { closed = 1; nodes = ( (211,120,o), (182,152,o), (191,210,cs), (206,300,l), (394,300,l), (379,210,ls), (370,152,o), (331,120,o), (271,120,cs) ); } ); width = 600; } ); unicode = 1240; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_chwa.glyph000066400000000000000000000033431472355150100301200ustar00rootroot00000000000000{ glyphname = Schwa; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,653,o), (521,740,o), (374,740,cs), (228,740,o), (122,654,o), (100,520,c), (250,520,l), (260,578,o), (294,610,o), (354,610,cs), (414,610,o), (438,578,o), (428,520,c), (412,416,l), (82,416,l), (49,210,ls), (28,78,o), (109,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (212,105,o), (188,138,o), (199,210,cs), (216,316,l), (204,306,l), (394,306,l), (379,210,ls), (368,142,o), (340,105,o), (274,105,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (478,73,o), (498,200,cs), (550,530,ls), (571,661,o), (506,740,o), (373,740,cs), (242,740,o), (150,659,o), (130,530,c), (220,530,l), (233,613,o), (283,660,o), (361,660,cs), (440,660,o), (473,613,o), (460,531,cs), (439,400,l), (109,400,l), (78,200,ls), (58,73,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (184,65,o), (154,113,o), (168,200,cs), (190,338,l), (181,330,l), (428,330,l), (408,200,ls), (394,113,o), (348,65,o), (266,65,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-10,o), (462,69,o), (481,190,cs), (537,540,ls), (556,662,o), (494,740,o), (372,740,cs), (248,740,o), (165,658,o), (145,530,c), (195,530,l), (211,632,o), (270,695,o), (365,695,cs), (458,695,o), (502,636,o), (487,540,cs), (461,378,l), (121,378,l), (91,190,ls), (72,69,o), (132,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (168,34,o), (126,94,o), (141,190,cs), (165,344,l), (153,335,l), (454,335,l), (431,190,ls), (416,93,o), (354,34,o), (260,34,cs) ); } ); width = 600; } ); unicode = 399; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_circumflex.glyph000066400000000000000000000010231472355150100313300ustar00rootroot00000000000000{ glyphname = Scircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 348; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_commaaccent.glyph000066400000000000000000000010101472355150100314350ustar00rootroot00000000000000{ glyphname = Scommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 536; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_doubleS_truck.glyph000066400000000000000000000071111472355150100320000ustar00rootroot00000000000000{ glyphname = SdoubleStruck; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (78,64,o), (167,-10,o), (287,-10,cs), (428,-10,o), (524,81,o), (524,218,cs), (524,304,o), (480,379,o), (409,413,cs), (295,468,ls), (248,491,o), (219,536,o), (219,586,cs), (219,651,o), (263,695,o), (326,695,cs), (397,695,o), (450,641,o), (457,563,c), (507,563,l), (497,668,o), (413,740,o), (301,740,cs), (172,740,o), (83,654,o), (83,527,cs), (83,451,o), (124,384,o), (189,353,cs), (305,298,ls), (354,275,o), (384,225,o), (384,167,cs), (384,88,o), (335,35,o), (263,35,cs), (186,35,o), (127,91,o), (118,172,c), (68,172,l) ); }, { closed = 1; nodes = ( (126,619,o), (173,681,o), (246,703,c), (203,680,o), (177,636,o), (176,580,cs), (175,517,o), (214,458,o), (278,428,cs), (387,377,ls), (446,349,o), (483,285,o), (483,211,cs), (483,128,o), (439,65,o), (369,37,c), (405,66,o), (427,113,o), (427,173,cs), (427,244,o), (389,306,o), (328,335,cs), (215,389,ls), (160,415,o), (126,471,o), (126,536,cs) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (453,-10,o), (553,77,o), (553,206,cs), (553,324,o), (485,402,o), (356,432,cs), (278,450,ls), (233,460,o), (207,491.999,o), (207,535,cs), (207,583,o), (239,610,o), (296,610,cs), (357,610,o), (391,581,o), (391,535,c), (541,535,l), (541,660,o), (447,740,o), (298,740,cs), (150,740,o), (57,657,o), (57,529,cs), (57,414,o), (129,331,o), (253,302,cs), (327,285,ls), (375,274,o), (403,242,o), (403,199,cs), (403,149,o), (366,120,o), (303,120,cs), (238,120,o), (197,151,o), (197,200,c), (47,200,l), (47,72,o), (146,-10,o), (300,-10,cs) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (78,64,o), (167,-10,o), (287,-10,cs), (428,-10,o), (524,81,o), (524,218,cs), (524,304,o), (480,379,o), (409,413,cs), (295,468,ls), (248,491,o), (219,536,o), (219,586,cs), (219,651,o), (263,695,o), (326,695,cs), (397,695,o), (450,641,o), (457,563,c), (507,563,l), (497,668,o), (413,740,o), (301,740,cs), (172,740,o), (83,654,o), (83,527,cs), (83,451,o), (124,384,o), (189,353,cs), (305,298,ls), (354,275,o), (384,225,o), (384,167,cs), (384,88,o), (335,35,o), (263,35,cs), (186,35,o), (127,91,o), (118,172,c), (68,172,l) ); }, { closed = 1; nodes = ( (126,619,o), (173,681,o), (246,703,c), (203,680,o), (177,636,o), (176,580,cs), (175,517,o), (214,458,o), (278,428,cs), (387,377,ls), (446,349,o), (483,285,o), (483,211,cs), (483,128,o), (439,65,o), (369,37,c), (405,66,o), (427,113,o), (427,173,cs), (427,244,o), (389,306,o), (328,335,cs), (215,389,ls), (160,415,o), (126,471,o), (126,536,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (78,64,o), (167,-10,o), (287,-10,cs), (428,-10,o), (524,81,o), (524,218,cs), (524,304,o), (480,379,o), (409,413,cs), (295,468,ls), (248,491,o), (219,536,o), (219,586,cs), (219,651,o), (263,695,o), (326,695,cs), (397,695,o), (450,641,o), (457,563,c), (507,563,l), (497,668,o), (413,740,o), (301,740,cs), (172,740,o), (83,654,o), (83,527,cs), (83,451,o), (124,384,o), (189,353,cs), (305,298,ls), (354,275,o), (384,225,o), (384,167,cs), (384,88,o), (335,35,o), (263,35,cs), (186,35,o), (127,91,o), (118,172,c), (68,172,l) ); }, { closed = 1; nodes = ( (126,619,o), (173,681,o), (246,703,c), (203,680,o), (177,636,o), (176,580,cs), (175,517,o), (214,458,o), (278,428,cs), (387,377,ls), (446,349,o), (483,285,o), (483,211,cs), (483,128,o), (439,65,o), (369,37,c), (405,66,o), (427,113,o), (427,173,cs), (427,244,o), (389,306,o), (328,335,cs), (215,389,ls), (160,415,o), (126,471,o), (126,536,cs) ); } ); width = 600; } ); unicode = 120138; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_ha-cy.glyph000066400000000000000000000014751472355150100302030ustar00rootroot00000000000000{ glyphname = "Sha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (632,730,l), (509,730,l), (409,100,l), (324,100,l), (424,730,l), (320,730,l), (220,100,l), (135,100,l), (235,730,l), (112,730,l), (-4,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (492,0,l), (608,730,l), (525,730,l), (420,68,l), (304,68,l), (409,730,l), (337,730,l), (232,68,l), (115,68,l), (220,730,l), (136,730,l), (22,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,0,l), (596,730,l), (548,730,l), (439,43,l), (287,43,l), (396,730,l), (348,730,l), (239,43,l), (87,43,l), (196,730,l), (148,730,l), (32,0,l) ); } ); width = 600; } ); unicode = 1064; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_hcha-cy.glyph000066400000000000000000000017351472355150100305150ustar00rootroot00000000000000{ glyphname = "Shcha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (521,-140,l), (559,100,l), (494,100,l), (594,730,l), (481,730,l), (381,100,l), (302,100,l), (402,730,l), (303,730,l), (203,100,l), (124,100,l), (224,730,l), (111,730,l), (-5,0,l), (413,0,l), (391,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,-140,l), (543,76,l), (496,76,l), (600,730,l), (519,730,l), (415,76,l), (299,76,l), (403,730,l), (333,730,l), (229,76,l), (113,76,l), (217,730,l), (136,730,l), (20,0,l), (451,0,l), (429,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (528,43,l), (481,43,l), (590,730,l), (542,730,l), (433,43,l), (284,43,l), (393,730,l), (345,730,l), (236,43,l), (87,43,l), (196,730,l), (148,730,l), (32,0,l), (471,0,l), (449,-140,l) ); } ); width = 600; } ); unicode = 1065; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_hha-cy.glyph000066400000000000000000000007641472355150100303530ustar00rootroot00000000000000{ glyphname = "Shha-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = "Che-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = "Che-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = "Che-cy"; } ); width = 600; } ); unicode = 1210; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_igma.glyph000066400000000000000000000014711472355150100301130ustar00rootroot00000000000000{ glyphname = Sigma; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (511,0,l), (518,46,l), (106,46,l), (405,373,l), (203,684,l), (619,684,l), (627,730,l), (157,730,l), (149,682,l), (346,378,l), (49,48,l), (41,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,80,l), (154,80,l), (431,375,l), (237,650,l), (609,650,l), (622,730,l), (147,730,l), (134,650,l), (321,380,l), (44,80,l), (31,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (506,0,l), (527,135,l), (227,135,l), (444,375,l), (295,595,l), (600,595,l), (622,730,l), (137,730,l), (116,600,l), (269,382,l), (42,130,l), (21,0,l) ); } ); width = 600; } ); unicode = 931; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/S_oftsign-cy.glyph000066400000000000000000000023351472355150100312600ustar00rootroot00000000000000{ glyphname = "Softsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (424,0,o), (540,88,o), (561,223,cs), (583,358,o), (494,445,o), (336,445,cs), (242,445,l), (288,730,l), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (222,315,l), (316,315,ls), (383,315,o), (420,279,o), (411,222,cs), (402,166,o), (354,130,o), (287,130,cs), (193,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (286,0,ls), (417,0,o), (520,87,o), (540,215,cs), (560,344,o), (485,430,o), (354,430,cs), (208,430,l), (256,730,l), (166,730,l), (50,0,l) ); }, { closed = 1; nodes = ( (195,348,l), (336,348,ls), (415,348,o), (460,295,o), (447,215,cs), (434,135,o), (373,82,o), (294,82,cs), (153,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (397,0,o), (494,82,o), (514,210,cs), (535,338,o), (464,420,o), (333,420,cs), (183,420,l), (232,730,l), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (175,375,l), (325,375,ls), (425,375,o), (479,310,o), (463,210,cs), (447,110,o), (373,45,o), (273,45,cs), (123,45,l) ); } ); width = 600; } ); unicode = 1068; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_.glyph000066400000000000000000000016341472355150100272570ustar00rootroot00000000000000{ glyphname = T; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (424,590,l), (609,590,l), (632,730,l), (112,730,l), (89,590,l), (274,590,l), (181,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (404,648,l), (604,648,l), (617,730,l), (127,730,l), (114,648,l), (314,648,l), (211,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (282,0,l), (390,684,l), (604,684,l), (612,730,l), (132,730,l), (124,684,l), (340,684,l), (232,0,l) ); } ); width = 600; } ); unicode = 84; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_au.glyph000066400000000000000000000005161472355150100276030ustar00rootroot00000000000000{ glyphname = Tau; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = T; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = T; } ); width = 600; } ); unicode = 932; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_bar.glyph000066400000000000000000000011421472355150100277360ustar00rootroot00000000000000{ glyphname = Tbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (500,275,l), (518,390,l), (118,390,l), (100,275,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (493,295,l), (505,370,l), (125,370,l), (113,295,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,310,l), (493,355,l), (133,355,l), (126,310,l) ); }, { ref = T; } ); width = 600; } ); unicode = 358; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_caron.glyph000066400000000000000000000007771472355150100303110ustar00rootroot00000000000000{ glyphname = Tcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = T; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = T; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = T; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 356; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_cedilla.glyph000066400000000000000000000022711472355150100305730ustar00rootroot00000000000000{ glyphname = Tcedilla; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (284,-225,ls), (368,-225,o), (431,-182,o), (439,-133,cs), (449,-72,o), (372,-43,o), (312,-39,c), (331,0,l), (267,16,l), (218,-69,l), (291,-69,o), (331,-88,o), (326,-119,cs), (324,-135,o), (298,-155,o), (265,-155,cs), (185,-155,l), (174,-225,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,-203,ls), (329,-203,o), (383,-166,o), (390,-120,cs), (398,-68,o), (335,-41,o), (283,-35,c), (301,0,l), (257,26,l), (207,-69,l), (274,-69,o), (309,-89,o), (305,-112,cs), (302,-130,o), (280,-148,o), (251,-148,cs), (181,-148,l), (172,-203,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (248,-195,ls), (308,-195,o), (353,-161,o), (360,-118,cs), (369,-61,o), (310,-37,o), (263,-34,c), (282,0,l), (254,26,l), (205,-64,l), (276,-64,o), (319,-86,o), (314,-118,cs), (311,-140,o), (286,-160,o), (254,-160,cs), (174,-160,l), (168,-195,l) ); }, { alignment = -1; ref = T; } ); width = 600; } ); unicode = 354; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_commaaccent.glyph000066400000000000000000000010101472355150100314360ustar00rootroot00000000000000{ glyphname = Tcommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = T; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = T; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = T; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 538; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_e-cy.glyph000066400000000000000000000006031472355150100300300ustar00rootroot00000000000000{ glyphname = "Te-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = T; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = T; } ); width = 600; } ); unicode = 1058; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_heta.glyph000066400000000000000000000034321472355150100301170ustar00rootroot00000000000000{ glyphname = Theta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (407,352,l), (414,397,l), (224,397,l), (217,352,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (552,531,ls), (573,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); }, { closed = 1; nodes = ( (397,325,l), (410,407,l), (230,407,l), (217,325,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (509,78,o), (530,210,cs), (579,520,ls), (600,652,o), (521,740,o), (374,740,cs), (227,740,o), (120,652,o), (99,520,cs), (50,210,ls), (29,78,o), (108,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (216,120,o), (191,152,o), (200,210,cs), (249,520,ls), (259,578,o), (293,610,o), (354,610,cs), (415,610,o), (439,578,o), (429,520,cs), (380,210,ls), (371,152,o), (336,120,o), (276,120,cs) ); }, { closed = 1; nodes = ( (365,304,l), (387,444,l), (266,444,l), (244,304,l) ); } ); width = 600; } ); unicode = 920; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_horn.glyph000066400000000000000000000024611472355150100301450ustar00rootroot00000000000000{ glyphname = Thorn; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (176,0,l), (202,165,l), (322,165,ls), (465,165,o), (565,246,o), (586,380,cs), (608,515,o), (534,595,o), (390,595,cs), (270,595,l), (292,730,l), (142,730,l), (26,0,l) ); }, { closed = 1; nodes = ( (250,470,l), (345,470,ls), (413,470,o), (445,438,o), (436,380,cs), (427,322,o), (385,290,o), (317,290,cs), (222,290,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (136,0,l), (165,180,l), (318,180,ls), (450,180,o), (547,258,o), (566,380,cs), (585,500,o), (512,580,o), (381,580,cs), (228,580,l), (252,730,l), (162,730,l), (46,0,l) ); }, { closed = 1; nodes = ( (215,500,l), (368,500,ls), (444,500,o), (485,454,o), (473,380,cs), (461,306,o), (407,260,o), (330,260,cs), (177,260,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (111,0,l), (142,195,l), (320,195,ls), (441,195,o), (528,266,o), (546,380,cs), (564,494,o), (499,565,o), (378,565,cs), (200,565,l), (227,730,l), (177,730,l), (61,0,l) ); }, { closed = 1; nodes = ( (193,520,l), (371,520,ls), (462,520,o), (510,467,o), (496,380,cs), (483,294,o), (418,241,o), (327,241,cs), (149,241,l) ); } ); width = 600; } ); unicode = 222; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_se-cy.glyph000066400000000000000000000015041472355150100302140ustar00rootroot00000000000000{ glyphname = "Tse-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (512,-140,l), (556,140,l), (481,140,l), (575,730,l), (425,730,l), (331,140,l), (194,140,l), (288,730,l), (138,730,l), (22,0,l), (394,0,l), (372,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (534,80,l), (459,80,l), (562,730,l), (472,730,l), (369,80,l), (153,80,l), (256,730,l), (166,730,l), (50,0,l), (441,0,l), (419,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,-140,l), (513,45,l), (436,45,l), (545,730,l), (495,730,l), (386,45,l), (123,45,l), (232,730,l), (182,730,l), (66,0,l), (456,0,l), (434,-140,l) ); } ); width = 600; } ); unicode = 1062; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/T_she-cy.glyph000066400000000000000000000025511472355150100303670ustar00rootroot00000000000000{ glyphname = "Tshe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (206,0,l), (252,290,l), (290,323,ls), (324,352,o), (351,365,o), (377,365,cs), (417,365,o), (433,337,o), (425,285,cs), (381,0,l), (531,0,l), (576,290,ls), (596,414,o), (540,495,o), (436,495,cs), (384,495,o), (336,475,o), (289,434,cs), (273,420,l), (299,590,l), (409,590,l), (432,730,l), (72,730,l), (49,590,l), (149,590,l), (56,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (156,0,l), (205,310,l), (257,357,ls), (302,399,o), (342,419,o), (380,419,cs), (436,419,o), (461,377,o), (448,296,cs), (401,0,l), (491,0,l), (541,316,ls), (558,425,o), (507,495,o), (413,495,cs), (355,495,o), (298,469,o), (237,413,cs), (219,396,l), (259,651,l), (379,651,l), (392,730,l), (72,730,l), (59,651,l), (169,651,l), (66,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (136,0,l), (185,310,l), (272,388,ls), (319,429,o), (366,452,o), (405,452,cs), (460,452,o), (486,408,o), (474,336,cs), (421,0,l), (471,0,l), (526,346,ls), (540,437,o), (498,495,o), (419,495,cs), (364,495,o), (306,468,o), (249,416,cs), (194,366,l), (244,685,l), (369,685,l), (377,730,l), (72,730,l), (64,685,l), (194,685,l), (86,0,l) ); } ); width = 600; } ); unicode = 1035; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_-cy.glyph000066400000000000000000000020521472355150100276640ustar00rootroot00000000000000{ glyphname = "U-cy"; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (274,0,l), (647,730,l), (488,730,l), (350,433,ls), (336,402,o), (321,354,o), (314,327,c), (314,354,o), (311,401,o), (306,433,cs), (257,730,l), (97,730,l), (215,187,l), (117,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (243,0,l), (622,730,l), (522,730,l), (350,373,ls), (328,327,o), (313,283,o), (307,263,c), (307,283,o), (303,327,o), (293,373,cs), (218,730,l), (122,730,l), (250,189,l), (147,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (222,0,l), (604,730,l), (548,730,l), (363,373,ls), (340,329,o), (315,274,o), (303,246,c), (298,274,o), (286,329,o), (276,373,cs), (195,730,l), (140,730,l), (267,192,l), (163,0,l) ); } ); width = 600; } ); unicode = 1059; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_.glyph000066400000000000000000000031641472355150100272600ustar00rootroot00000000000000{ glyphname = U; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (457,730); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topright; pos = (652,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (508,76,o), (530,214,cs), (612,730,l), (462,730,l), (380,215,ls), (370,154,o), (331,120,o), (275,120,cs), (218,120,o), (190,154,o), (200,215,cs), (282,730,l), (132,730,l), (50,214,ls), (28,75,o), (106,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (457,730); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topright; pos = (652,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (391,-10,o), (477,69,o), (498,200,cs), (582,730,l), (492,730,l), (408,200,ls), (395,120,o), (347,70,o), (267,70,cs), (186,70,o), (155,120,o), (168,200,cs), (252,730,l), (162,730,l), (78,200,ls), (57,70,o), (118,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (464,730); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topright; pos = (652,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (371,-10,o), (459,69,o), (478,190,cs), (564,730,l), (514,730,l), (428,190,ls), (413,93,o), (352,35,o), (263,35,cs), (173,35,o), (129,92,o), (144,190,cs), (230,730,l), (180,730,l), (94,190,ls), (75,69,o), (138,-10,o), (255,-10,cs) ); } ); width = 600; } ); unicode = 85; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_acute.glyph000066400000000000000000000007171472355150100303030ustar00rootroot00000000000000{ glyphname = Uacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 218; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_breve.glyph000066400000000000000000000010541472355150100303000ustar00rootroot00000000000000{ glyphname = Ubreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 364; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_circumflex.glyph000066400000000000000000000007431472355150100313420ustar00rootroot00000000000000{ glyphname = Ucircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 219; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_dieresis.glyph000066400000000000000000000007331472355150100310070ustar00rootroot00000000000000{ glyphname = Udieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 220; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_dotbelow.glyph000066400000000000000000000007751472355150100310250ustar00rootroot00000000000000{ glyphname = Udotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7908; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_grave.glyph000066400000000000000000000007171472355150100303060ustar00rootroot00000000000000{ glyphname = Ugrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 217; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_hookabove.glyph000066400000000000000000000007401472355150100311530ustar00rootroot00000000000000{ glyphname = Uhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7910; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_horn.glyph000066400000000000000000000020671472355150100301500ustar00rootroot00000000000000{ glyphname = Uhorn; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (562,630,ls), (649,630,o), (715,684,o), (728,765,cs), (740,840,l), (620,840,l), (608,765,ls), (605,743,o), (590,730,o), (568,730,cs), (518,730,l), (502,630,l) ); }, { alignment = -1; ref = U; } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (551,665,ls), (615,665,o), (662,702,o), (671,760,cs), (684,840,l), (609,840,l), (597,765,ls), (594,744,o), (578,730,o), (557,730,cs), (507,730,l), (496,665,l) ); }, { ref = U; } ); width = 600; }, { anchors = ( { name = top; pos = (360,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (595,695,ls), (646,695,o), (685,729,o), (693,780,cs), (703,840,l), (663,840,l), (653,780,ls), (648,750,o), (628,730,o), (601,730,cs), (516,730,l), (510,695,l) ); }, { alignment = -1; ref = U; } ); width = 600; } ); unicode = 431; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_hornacute.glyph000066400000000000000000000010201472355150100311560ustar00rootroot00000000000000{ glyphname = Uhornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (599,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 7912; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_horndotbelow.glyph000066400000000000000000000007541472355150100317110ustar00rootroot00000000000000{ glyphname = Uhorndotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7920; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_horngrave.glyph000066400000000000000000000010201472355150100311610ustar00rootroot00000000000000{ glyphname = Uhorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (575,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7914; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_hornhookabove.glyph000066400000000000000000000007601472355150100320440ustar00rootroot00000000000000{ glyphname = Uhornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Uhorn; }, { pos = (588,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7916; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_horntilde.glyph000066400000000000000000000010201472355150100311560ustar00rootroot00000000000000{ glyphname = Uhorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (588,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7918; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_hungarumlaut.glyph000066400000000000000000000010331472355150100317060ustar00rootroot00000000000000{ glyphname = Uhungarumlaut; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; } ); unicode = 368; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_macron.glyph000066400000000000000000000010031472355150100304460ustar00rootroot00000000000000{ glyphname = Umacron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 362; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_ogonek.glyph000066400000000000000000000040701472355150100304600ustar00rootroot00000000000000{ glyphname = Uogonek; layers = ( { anchors = ( { name = horn; pos = (457,730); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (382,-225,l), (399,-120,l), (330,-120,ls), (301,-120,o), (287,-103,o), (290,-82,cs), (293,-65,o), (309,-38,o), (339,-17,cs), (393,21,l), (463,58,o), (516,127,o), (529,210,cs), (612,730,l), (462,730,l), (379,210,ls), (370,152,o), (335,120,o), (275,120,cs), (215,120,o), (190,152,o), (199,210,cs), (282,730,l), (132,730,l), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs), (287,-10,o), (306,11,o), (307,21,c), (235,-9,o), (168,-68,o), (161,-115,cs), (150,-180,o), (193,-225,o), (274,-225,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (457,730); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (381,-203,l), (390,-143,l), (330,-143,ls), (296,-143,o), (279,-122,o), (283,-93,cs), (288,-65,o), (307,-36,o), (357,1,cs), (390,25,l), (448,60,o), (485,121,o), (498,200,cs), (582,730,l), (492,730,l), (408,200,ls), (395,117,o), (345,71,o), (267,71,cs), (189,71,o), (155,117,o), (168,200,cs), (252,730,l), (162,730,l), (78,200,ls), (57,69,o), (123,-10,o), (254,-10,cs), (258,-10,o), (263,-10,o), (267,-10,c), (226,-45,o), (200,-82,o), (196,-110,cs), (187,-164,o), (229,-203,o), (303,-203,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (464,730); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (367,-195,l), (374,-153,l), (310,-153,ls), (278,-153,o), (262,-134,o), (267,-103,cs), (271,-75,o), (300,-33,o), (344,2,cs), (355,10,l), (422,45,o), (465,105,o), (478,190,cs), (564,730,l), (514,730,l), (428,190,ls), (412,91,o), (353,34,o), (261,34,cs), (169,34,o), (128,91,o), (144,190,cs), (230,730,l), (180,730,l), (94,190,ls), (75,68,o), (136,-10,o), (254,-10,cs), (265,-10,o), (284,-9,o), (295,-6,c), (252,-39,o), (223,-80,o), (218,-115,cs), (210,-165,o), (239,-195,o), (294,-195,cs) ); } ); width = 600; } ); unicode = 370; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_psilon.glyph000066400000000000000000000005221472355150100305000ustar00rootroot00000000000000{ glyphname = Upsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; } ); width = 600; } ); unicode = 933; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_psilondieresis.glyph000066400000000000000000000007411472355150100322330ustar00rootroot00000000000000{ glyphname = Upsilondieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 939; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_psilontonos.glyph000066400000000000000000000007741472355150100315740ustar00rootroot00000000000000{ glyphname = Upsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-320,0); ref = tonos.case; }, { ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-350,0); ref = tonos.case; }, { ref = Y; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-390,0); ref = tonos.case; }, { ref = Y; } ); width = 600; } ); unicode = 910; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_ring.glyph000066400000000000000000000007731472355150100301430ustar00rootroot00000000000000{ glyphname = Uring; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; } ); unicode = 366; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_short-cy.glyph000066400000000000000000000011011472355150100307360ustar00rootroot00000000000000{ glyphname = "Ushort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "U-cy"; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "U-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "U-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 1038; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_straight-cy.glyph000066400000000000000000000006121472355150100314320ustar00rootroot00000000000000{ glyphname = "Ustraight-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Y; } ); width = 600; } ); unicode = 1198; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_straightstroke-cy.glyph000066400000000000000000000012031472355150100326570ustar00rootroot00000000000000{ glyphname = "Ustraightstroke-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (458,235,l), (465,280,l), (135,280,l), (128,235,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,198,l), (474,273,l), (124,273,l), (112,198,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (463,170,l), (477,260,l), (117,260,l), (103,170,l) ); }, { alignment = -1; ref = Y; } ); width = 600; } ); unicode = 1200; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/U_tilde.glyph000066400000000000000000000007771472355150100303110ustar00rootroot00000000000000{ glyphname = Utilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 360; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/V_.glyph000066400000000000000000000017701472355150100272620ustar00rootroot00000000000000{ glyphname = V; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (352,0,l), (647,730,l), (493,730,l), (322,270,ls), (310,237,o), (292,178,o), (282,144,c), (281,178,o), (279,237,o), (277,269,cs), (249,730,l), (97,730,l), (162,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (317,0,l), (622,730,l), (529,730,l), (327,234,ls), (299,165,o), (277,100,o), (268,70,c), (268,100,o), (264,165,o), (258,234,cs), (213,730,l), (122,730,l), (194,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (288,0,l), (604,730,l), (552,730,l), (316,180,ls), (291,122,o), (271,66,o), (262,40,c), (261,66,o), (259,122,o), (252,180,cs), (190,730,l), (140,730,l), (224,0,l) ); } ); width = 600; } ); unicode = 86; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/V_e-cy.glyph000066400000000000000000000006031472355150100300320ustar00rootroot00000000000000{ glyphname = "Ve-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = B; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = B; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = B; } ); width = 600; } ); unicode = 1042; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/W_.glyph000066400000000000000000000034231472355150100272600ustar00rootroot00000000000000{ glyphname = W; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (191,0,l), (321,485,ls), (330,519,o), (346,594,o), (356,640,c), (352,594,o), (346,519,o), (344,485,cs), (317,0,l), (473,0,l), (662,730,l), (538,730,l), (426,242,ls), (419,213,o), (406,144,o), (398,100,c), (400,144,o), (402,213,o), (404,242,cs), (430,730,l), (313,730,l), (181,242,ls), (173,213,o), (156,144,o), (145,100,c), (151,144,o), (159,213,o), (161,242,cs), (202,730,l), (82,730,l), (34,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (178,0,l), (332,550,ls), (345,595,o), (357,643,o), (364,667,c), (362,643,o), (359,595,o), (357,550,cs), (332,0,l), (445,0,l), (647,730,l), (565,730,l), (422,190,ls), (410,146,o), (398,93,o), (391,65,c), (393,93,o), (395,146,o), (397,190,cs), (421,730,l), (326,730,l), (172,190,ls), (159,146,o), (147,93,o), (139,65,c), (143,93,o), (147,146,o), (150,190,cs), (181,730,l), (97,730,l), (65,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (156,0,l), (320,530,ls), (336,582,o), (356,652,o), (368,690,c), (367,651,o), (365,581,o), (364,530,cs), (353,0,l), (425,0,l), (632,730,l), (583,730,l), (435,190,ls), (425,154,o), (403,80,o), (390,35,c), (391,80,o), (392,154,o), (393,190,cs), (405,730,l), (341,730,l), (178,190,ls), (167,154,o), (145,80,o), (132,35,c), (134,80,o), (137,154,o), (138,190,cs), (156,730,l), (112,730,l), (86,0,l) ); } ); width = 600; } ); unicode = 87; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/W_acute.glyph000066400000000000000000000007201472355150100302770ustar00rootroot00000000000000{ glyphname = Wacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 7810; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/W_circumflex.glyph000066400000000000000000000007431472355150100313440ustar00rootroot00000000000000{ glyphname = Wcircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 372; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/W_dieresis.glyph000066400000000000000000000007341472355150100310120ustar00rootroot00000000000000{ glyphname = Wdieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 7812; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/W_grave.glyph000066400000000000000000000007201472355150100303020ustar00rootroot00000000000000{ glyphname = Wgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7808; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/X_.glyph000066400000000000000000000026401472355150100272610ustar00rootroot00000000000000{ glyphname = X; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (142,0,l), (259,180,ls), (278,209,o), (291,237,o), (297,250,c), (300,237,o), (307,209,o), (317,180,cs), (376,0,l), (536,0,l), (400,373,l), (639,730,l), (473,730,l), (369,570,ls), (350,541,o), (339,515,o), (334,504,c), (333,515,o), (324,540,o), (315,570,cs), (265,730,l), (105,730,l), (232,381,l), (-24,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (100,0,l), (262,233,ls), (277,255,o), (295,284,o), (305,300,c), (309,284,o), (319,255,o), (328,232,cs), (417,0,l), (516,0,l), (367,374,l), (621,730,l), (518,730,l), (369,514,ls), (353,491,o), (336,462,o), (327,447,c), (321,462,o), (310,491,o), (302,514,cs), (223,730,l), (123,730,l), (264,372,l), (-4,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (66,0,l), (246,252,ls), (261,273,o), (292,316,o), (313,344,c), (324,316,o), (345,273,o), (353,252,cs), (449,0,l), (503,0,l), (346,381,l), (604,730,l), (548,730,l), (388,508,ls), (372,485,o), (340,442,o), (321,416,c), (309,443,o), (289,485,o), (280,508,cs), (194,730,l), (140,730,l), (287,381,l), (9,0,l) ); } ); width = 600; } ); unicode = 88; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/X_i.glyph000066400000000000000000000017451472355150100274370ustar00rootroot00000000000000{ glyphname = Xi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (579,680,l), (587,730,l), (157,730,l), (149,680,l) ); }, { closed = 1; nodes = ( (471,0,l), (479,50,l), (49,50,l), (41,0,l) ); }, { closed = 1; nodes = ( (486,345,l), (494,395,l), (144,395,l), (136,345,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (579,648,l), (592,730,l), (152,730,l), (139,648,l) ); }, { closed = 1; nodes = ( (476,0,l), (489,82,l), (49,82,l), (36,0,l) ); }, { closed = 1; nodes = ( (498,329,l), (511,411,l), (131,411,l), (118,329,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (584,590,l), (607,730,l), (137,730,l), (114,590,l) ); }, { closed = 1; nodes = ( (491,0,l), (513,140,l), (43,140,l), (21,0,l) ); }, { closed = 1; nodes = ( (509,300,l), (531,440,l), (121,440,l), (99,300,l) ); } ); width = 600; } ); unicode = 926; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_.glyph000066400000000000000000000022631472355150100272630ustar00rootroot00000000000000{ glyphname = Y; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (372,260,l), (657,730,l), (497,730,l), (373,510,ls), (348,466,o), (327,410,o), (316,380,c), (315,410,o), (308,466,o), (297,510,cs), (240,730,l), (87,730,l), (222,260,l), (181,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (344,273,l), (637,730,l), (542,730,l), (352,430,ls), (331,397,o), (318,372,o), (313,362,c), (312,372,o), (306,397,o), (295,430,cs), (198,730,l), (107,730,l), (254,273,l), (211,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (325,280,l), (622,730,l), (568,730,l), (351,400,ls), (331,370,o), (315,342,o), (307,330,c), (303,343,o), (294,371,o), (284,400,cs), (172,730,l), (122,730,l), (275,280,l), (231,0,l) ); } ); width = 600; } ); unicode = 89; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_acute.glyph000066400000000000000000000007171472355150100303070ustar00rootroot00000000000000{ glyphname = Yacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 221; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_circumflex.glyph000066400000000000000000000007431472355150100313460ustar00rootroot00000000000000{ glyphname = Ycircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 374; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_dieresis.glyph000066400000000000000000000007331472355150100310130ustar00rootroot00000000000000{ glyphname = Ydieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 376; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_dotbelow.glyph000066400000000000000000000007341472355150100310240ustar00rootroot00000000000000{ glyphname = Ydotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7924; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_eru-cy.glyph000066400000000000000000000030231472355150100304030ustar00rootroot00000000000000{ glyphname = "Yeru-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (146,0,ls), (264,0,o), (347,72,o), (366,190,cs), (376,254,ls), (395,372,o), (334,445,o), (216,445,cs), (191,445,l), (237,730,l), (112,730,l), (-4,0,l) ); }, { closed = 1; nodes = ( (173,330,l), (198,330,ls), (242,330,o), (264,302,o), (256,252,cs), (246,191,ls), (238,142,o), (208,115,o), (164,115,cs), (139,115,l) ); }, { closed = 1; nodes = ( (516,0,l), (632,730,l), (507,730,l), (391,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (146,0,ls), (268,0,o), (353,71,o), (372,189,cs), (380,240,ls), (399,357,o), (335,430,o), (214,430,cs), (173,430,l), (221,730,l), (137,730,l), (21,0,l) ); }, { closed = 1; nodes = ( (161,351,l), (202,351,ls), (272,351,o), (305,310,o), (294,240,cs), (286,190,ls), (275,120,o), (229,79,o), (159,79,cs), (118,79,l) ); }, { closed = 1; nodes = ( (491,0,l), (607,730,l), (523,730,l), (407,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (141,0,ls), (260,0,o), (348,75,o), (366,190,cs), (372,230,ls), (391,345,o), (327,420,o), (208,420,cs), (153,420,l), (202,730,l), (152,730,l), (36,0,l) ); }, { closed = 1; nodes = ( (145,375,l), (200,375,ls), (290,375,o), (337,320,o), (322,230,cs), (316,190,ls), (302,100,o), (238,45,o), (148,45,cs), (93,45,l) ); }, { closed = 1; nodes = ( (476,0,l), (592,730,l), (542,730,l), (426,0,l) ); } ); width = 600; } ); unicode = 1067; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_grave.glyph000066400000000000000000000007201472355150100303040ustar00rootroot00000000000000{ glyphname = Ygrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7922; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_hookabove.glyph000066400000000000000000000007401472355150100311570ustar00rootroot00000000000000{ glyphname = Yhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7926; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_i-cy.glyph000066400000000000000000000010121472355150100300340ustar00rootroot00000000000000{ glyphname = "Yi-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb.case; }, { alignment = -1; ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb.case; }, { alignment = -1; ref = I; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb.case; }, { alignment = -1; ref = I; } ); width = 600; } ); unicode = 1031; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_macron.glyph000066400000000000000000000007231472355150100304620ustar00rootroot00000000000000{ glyphname = Ymacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 562; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Y_tilde.glyph000066400000000000000000000010001472355150100302710ustar00rootroot00000000000000{ glyphname = Ytilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Y; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Y; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Y; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7928; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_.glyph000066400000000000000000000015661472355150100272710ustar00rootroot00000000000000{ glyphname = Z; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (481,0,l), (503,140,l), (228,140,l), (563,590,l), (586,730,l), (155,730,l), (132,590,l), (388,590,l), (54,140,l), (32,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (471,0,l), (484,82,l), (148,82,l), (562,640,l), (577,730,l), (162,730,l), (149,648,l), (470,648,l), (55,90,l), (41,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (464,0,l), (471,46,l), (108,46,l), (558,673,l), (567,730,l), (167,730,l), (159,684,l), (508,684,l), (55,50,l), (47,0,l) ); } ); width = 600; } ); unicode = 90; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_acute.glyph000066400000000000000000000007771472355150100303160ustar00rootroot00000000000000{ glyphname = Zacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Z; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Z; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Z; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 377; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_caron.glyph000066400000000000000000000007771472355150100303170ustar00rootroot00000000000000{ glyphname = Zcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 381; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_dotaccent.glyph000066400000000000000000000010171472355150100311450ustar00rootroot00000000000000{ glyphname = Zdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 379; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_doubleS_truck.glyph000066400000000000000000000017301472355150100320100ustar00rootroot00000000000000{ glyphname = ZdoubleStruck; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (509,0,l), (509,46,l), (244,46,l), (495,680,l), (495,730,l), (95,730,l), (95,684,l), (342,684,l), (91,50,l), (91,0,l) ); }, { closed = 1; nodes = ( (134,46,l), (387,684,l), (452,684,l), (199,46,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,0,l), (509,46,l), (244,46,l), (495,680,l), (495,730,l), (95,730,l), (95,684,l), (342,684,l), (91,50,l), (91,0,l) ); }, { closed = 1; nodes = ( (134,46,l), (387,684,l), (452,684,l), (199,46,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (509,0,l), (509,46,l), (244,46,l), (495,680,l), (495,730,l), (95,730,l), (95,684,l), (342,684,l), (91,50,l), (91,0,l) ); }, { closed = 1; nodes = ( (134,46,l), (387,684,l), (452,684,l), (199,46,l) ); } ); width = 600; } ); unicode = 8484; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_e-cy.glyph000066400000000000000000000037561472355150100300520ustar00rootroot00000000000000{ glyphname = "Ze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (411,-10,o), (530,80,o), (551,217,cs), (568,325,o), (517,392,o), (420,390,c), (419,383,l), (510,383,o), (577,444,o), (593,540,cs), (612,660,o), (527,740,o), (380,740,cs), (225,740,o), (109,654,o), (88,523,c), (238,523,l), (246,575,o), (292,610,o), (352,610,cs), (412,610,o), (445,575,o), (437,523,cs), (429,471,o), (384,437,o), (324,437,cs), (221,437,l), (202,317,l), (303,317,ls), (370,317,o), (408,278,o), (399,218,cs), (389,159,o), (339,120,o), (273,120,cs), (212,120,o), (175,154,o), (179,205,c), (29,205,l), (13,76,o), (104,-10,o), (255,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (499,76,o), (519,205,cs), (538,321,o), (474,394,o), (357,392,c), (356,382,l), (462,380,o), (540,444,o), (556,546,cs), (575,663,o), (499,740,o), (365,740,cs), (227,740,o), (123,658,o), (104,535,c), (194,535,l), (206,610,o), (268,660,o), (350,660,cs), (431,660,o), (477,612,o), (466,540,cs), (454,468,o), (393,420,o), (312,420,cs), (222,420,l), (209,340,l), (300,340,ls), (390,340,o), (441,286,o), (428,205,cs), (416,124,o), (347,70,o), (257,70,cs), (172,70,o), (122,119,o), (131,192,c), (41,192,l), (24,71,o), (105,-10,o), (244,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (378,-10,o), (484,74,o), (503,196,cs), (520,305,o), (456,380,o), (346,380,c), (345,370,l), (445,370,o), (524,442,o), (541,547,cs), (559,661,o), (484,740,o), (358,740,cs), (232,740,o), (133,661,o), (115,547,c), (165,547,l), (179,635,o), (254,696,o), (351,696,cs), (448,696,o), (505,635,o), (491,547,cs), (477,459,o), (401,398,o), (304,398,cs), (234,398,l), (227,353,l), (302,353,ls), (406,353,o), (468,288,o), (453,193,cs), (438,99,o), (356,35,o), (252,35,cs), (148,35,o), (86,99,o), (101,193,c), (51,193,l), (32,73,o), (110,-10,o), (244,-10,cs) ); } ); width = 600; } ); unicode = 1047; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_eta.glyph000066400000000000000000000005171472355150100277560ustar00rootroot00000000000000{ glyphname = Zeta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Z; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Z; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Z; } ); width = 600; } ); unicode = 918; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_he-cy.glyph000066400000000000000000000022621472355150100302110ustar00rootroot00000000000000{ glyphname = "Zhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (89,0,l), (225,343,l), (257,343,l), (208,0,l), (310,0,l), (359,343,l), (398,343,l), (430,0,l), (546,0,l), (506,369,l), (652,730,l), (532,730,l), (399,397,l), (368,397,l), (421,730,l), (319,730,l), (266,397,l), (230,397,l), (205,730,l), (88,730,l), (119,372,l), (-34,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (62,0,l), (229,342,l), (272,342,l), (218,0,l), (294,0,l), (348,342,l), (395,342,l), (453,0,l), (544,0,l), (473,372,l), (650,730,l), (554,730,l), (399,406,l), (358,406,l), (410,730,l), (334,730,l), (282,406,l), (238,406,l), (186,730,l), (94,730,l), (160,379,l), (-32,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (38,0,l), (219,354,l), (289,354,l), (233,0,l), (277,0,l), (333,354,l), (406,354,l), (475,0,l), (526,0,l), (450,376,l), (632,730,l), (580,730,l), (410,396,l), (340,396,l), (393,730,l), (349,730,l), (296,396,l), (223,396,l), (160,730,l), (110,730,l), (180,382,l), (-15,0,l) ); } ); width = 600; } ); unicode = 1046; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/Z_he-cy.ss00.glyph000066400000000000000000000022631472355150100307760ustar00rootroot00000000000000{ export = 0; glyphname = "Zhe-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (87,0,l), (225,354,l), (259,354,l), (208,0,l), (310,0,l), (361,354,l), (396,354,l), (426,0,l), (546,0,l), (507,372,l), (652,730,l), (534,730,l), (399,386,l), (366,386,l), (421,730,l), (319,730,l), (264,386,l), (232,386,l), (209,730,l), (88,730,l), (118,369,l), (-34,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (62,0,l), (242,363,l), (275,363,l), (218,0,l), (294,0,l), (351,363,l), (385,363,l), (453,0,l), (544,0,l), (470,371,l), (650,730,l), (554,730,l), (387,385,l), (355,385,l), (410,730,l), (334,730,l), (279,385,l), (249,385,l), (186,730,l), (94,730,l), (164,381,l), (-32,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (39,0,l), (243,367,l), (291,367,l), (233,0,l), (277,0,l), (335,367,l), (383,367,l), (474,0,l), (526,0,l), (429,373,l), (632,730,l), (580,730,l), (386,383,l), (338,383,l), (393,730,l), (349,730,l), (294,383,l), (246,383,l), (160,730,l), (110,730,l), (201,385,l), (-15,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/_notdef.glyph000066400000000000000000000016141472355150100303310ustar00rootroot00000000000000{ glyphname = .notdef; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,0,l), (510,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (460,621,l), (460,50,l), (160,50,l) ); }, { closed = 1; nodes = ( (140,680,l), (440,680,l), (140,109,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (510,0,l), (510,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (460,621,l), (460,50,l), (160,50,l) ); }, { closed = 1; nodes = ( (140,680,l), (440,680,l), (140,109,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (510,0,l), (510,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (460,621,l), (460,50,l), (160,50,l) ); }, { closed = 1; nodes = ( (140,680,l), (440,680,l), (140,109,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/_similiar_tilda.glyph000066400000000000000000000024731472355150100320440ustar00rootroot00000000000000{ export = 0; glyphname = _similiar_tilda; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (129,267,l), (132,285,ls), (138,325,o), (167,350,o), (207,350,cs), (280,350,o), (318,267,o), (404,267,cs), (466,267,o), (521,311,o), (532,377,cs), (534,392,l), (489,392,l), (486,374,ls), (480,334,o), (451,309,o), (411,309,cs), (338,309,o), (305,392,o), (214,392,cs), (148,392,o), (97,348,o), (87,282,cs), (84,267,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (147,258,l), (152,288,ls), (156,316,o), (177,333,o), (206,333,cs), (268,333,o), (300,253,o), (401,253,cs), (481,253,o), (539,305,o), (552,388,cs), (555,403,l), (470,403,l), (465,373,ls), (461,345,o), (440,328,o), (411,328,cs), (348,328,o), (316,408,o), (216,408,cs), (136,408,o), (77,356,o), (64,273,cs), (62,258,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (155,248,l), (160,278,ls), (164,303,o), (181,318,o), (206,318,cs), (266,318,o), (282,228,o), (397,228,cs), (492,228,o), (562,288,o), (577,383,cs), (581,413,l), (461,413,l), (457,383,ls), (453,358,o), (435,343,o), (410,343,cs), (350,343,o), (335,433,o), (220,433,cs), (125,433,o), (55,373,o), (40,278,cs), (35,248,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/a-cy.glyph000066400000000000000000000006021472355150100275400ustar00rootroot00000000000000{ glyphname = "a-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = a; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = a; } ); width = 600; } ); unicode = 1072; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/a.glyph000066400000000000000000000042461472355150100271370ustar00rootroot00000000000000{ glyphname = a; layers = ( { anchors = ( { name = bottom; pos = (261,0); }, { name = ogonek; pos = (390,0); }, { name = top; pos = (348,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-10,o), (352,45,o), (367,140,c), (327,105,l), (362,105,l), (345,0,l), (490,0,l), (577,550,l), (428,550,l), (415,445,l), (380,445,l), (410,410,l), (425,505,o), (379,560,o), (288,560,cs), (177,560,o), (93,476,o), (71,345,cs), (48,205,ls), (26,73,o), (86,-10,o), (197,-10,cs) ); }, { closed = 1; nodes = ( (216,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,397,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (373,210,ls), (364,152,o), (327,120,o), (272,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = ogonek; pos = (410,0); }, { name = top; pos = (348,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (337,-10,o), (414,49,o), (428,140,c), (380,75,l), (408,75,l), (396,0,l), (446,0,l), (533,550,l), (483,550,l), (471,475,l), (453,475,l), (471,410,l), (485,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,480,o), (118,360,cs), (91,189,ls), (72,69,o), (131,-10,o), (241,-10,cs) ); }, { closed = 1; nodes = ( (169,33,o), (126,91,o), (141,189,cs), (168,360,ls), (183,458,o), (246,517,o), (335,517,cs), (426,517,o), (468,458,o), (453,360,cs), (426,189,ls), (411,91,o), (348,33,o), (258,33,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = ogonek; pos = (420,0); }, { name = top; pos = (348,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (314,-10,o), (382,42,o), (395,126,c), (374,105,l), (392,105,l), (375,0,l), (465,0,l), (552,550,l), (462,550,l), (447,445,l), (427,445,l), (442,424,l), (455,507,o), (404,560,o), (314,560,cs), (203,560,o), (121,482,o), (101,355,cs), (76,194,ls), (56,68,o), (113,-10,o), (223,-10,cs) ); }, { closed = 1; nodes = ( (190,68,o), (154,115,o), (167,200,cs), (190,350,ls), (203,435,o), (255,482,o), (331,482,cs), (405,482,o), (443,433,o), (430,350,cs), (407,200,ls), (394,117,o), (340,68,o), (266,68,cs) ); } ); width = 600; } ); unicode = 97; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/aacute.glyph000066400000000000000000000007001472355150100301500ustar00rootroot00000000000000{ glyphname = aacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (626,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (616,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (617,0); ref = acutecomb; } ); width = 600; } ); unicode = 225; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/abreve.glyph000066400000000000000000000007001472355150100301520ustar00rootroot00000000000000{ glyphname = abreve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb; } ); width = 600; } ); unicode = 259; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/abreveacute.glyph000066400000000000000000000007441472355150100312040ustar00rootroot00000000000000{ glyphname = abreveacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_acutecomb; } ); width = 600; } ); unicode = 7855; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/abrevedotbelow.glyph000066400000000000000000000011011472355150100317060ustar00rootroot00000000000000{ glyphname = abrevedotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = brevecomb; } ); width = 600; } ); unicode = 7863; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/abrevegrave.glyph000066400000000000000000000007441472355150100312070ustar00rootroot00000000000000{ glyphname = abrevegrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_gravecomb; } ); width = 600; } ); unicode = 7857; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/abrevehookabove.glyph000066400000000000000000000007641472355150100320620ustar00rootroot00000000000000{ glyphname = abrevehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_hookabovecomb; } ); width = 600; } ); unicode = 7859; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/abrevetilde.glyph000066400000000000000000000007441472355150100312040ustar00rootroot00000000000000{ glyphname = abrevetilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_tildecomb; } ); width = 600; } ); unicode = 7861; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acaron.glyph000066400000000000000000000007001472355150100301510ustar00rootroot00000000000000{ glyphname = acaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (605,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = caroncomb; } ); width = 600; } ); unicode = 462; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acircumflex.glyph000066400000000000000000000007241472355150100312160ustar00rootroot00000000000000{ glyphname = acircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 226; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acircumflexacute.glyph000066400000000000000000000007701472355150100322410ustar00rootroot00000000000000{ glyphname = acircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_acutecomb; } ); width = 600; } ); unicode = 7845; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acircumflexdotbelow.glyph000066400000000000000000000011251472355150100327520ustar00rootroot00000000000000{ glyphname = acircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 7853; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acircumflexgrave.glyph000066400000000000000000000007701472355150100322440ustar00rootroot00000000000000{ glyphname = acircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_gravecomb; } ); width = 600; } ); unicode = 7847; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acircumflexhookabove.glyph000066400000000000000000000010101472355150100331010ustar00rootroot00000000000000{ glyphname = acircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; } ); unicode = 7849; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acircumflextilde.glyph000066400000000000000000000007701472355150100322410ustar00rootroot00000000000000{ glyphname = acircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_tildecomb; } ); width = 600; } ); unicode = 7851; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acute.case.glyph000066400000000000000000000007121472355150100307240ustar00rootroot00000000000000{ glyphname = acute.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = acutecomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acute.glyph000066400000000000000000000006251472355150100300150ustar00rootroot00000000000000{ glyphname = acute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = acutecomb; } ); width = 600; } ); unicode = 180; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acutecomb.case.glyph000066400000000000000000000014251472355150100315670ustar00rootroot00000000000000{ glyphname = acutecomb.case; layers = ( { anchors = ( { name = _top; pos = (-239,730); }, { name = top; pos = (-158,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-208,810,l), (-74,950,l), (-137,950,l), (-265,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-239,730); }, { name = top; pos = (-162,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-191,810,l), (-58,950,l), (-160,950,l), (-288,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-240,730); }, { name = top; pos = (-161,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-164,810,l), (-25,950,l), (-192,950,l), (-319,810,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/acutecomb.glyph000066400000000000000000000014401472355150100306520ustar00rootroot00000000000000{ glyphname = acutecomb; layers = ( { anchors = ( { name = _top; pos = (-278,550); }, { name = top; pos = (-184,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-234,645,l), (-100,785,l), (-163,785,l), (-291,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-268,550); }, { name = top; pos = (-188,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-217,645,l), (-84,785,l), (-186,785,l), (-314,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-269,550); }, { name = top; pos = (-187,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-190,645,l), (-51,785,l), (-218,785,l), (-345,645,l) ); } ); width = 0; } ); unicode = 769; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/adieresis.glyph000066400000000000000000000007141472355150100306630ustar00rootroot00000000000000{ glyphname = adieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 228; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/adotbelow.glyph000066400000000000000000000007751472355150100307020ustar00rootroot00000000000000{ glyphname = adotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = a; }, { pos = (604,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = a; }, { pos = (604,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = a; }, { pos = (604,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7841; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ae.glyph000066400000000000000000000065271472355150100273100ustar00rootroot00000000000000{ glyphname = ae; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (207,-10,o), (251,33,o), (262,65,c), (270,65,l), (270,33,o), (297,-10,o), (374,-10,cs), (461,-10,o), (529,50,o), (543,140,c), (428,140,l), (423,106,o), (403,87,o), (374,87,cs), (345,87,o), (330,107,o), (335,140,cs), (353,250,l), (561,250,l), (586,410,ls), (600,500,o), (552,560,o), (465,560,cs), (388,560,o), (347,517,o), (337,485,c), (329,485,l), (329,517,o), (302,560,o), (226,560,cs), (138,560,o), (70,496,o), (54,400,c), (169,400,l), (176,440,o), (197,463,o), (228,463,cs), (256,463,o), (269,443,o), (264,410,cs), (251,330,l), (208,330,ls), (109,330,o), (34,274,o), (21,190,cs), (13,140,ls), (-1,50,o), (44,-10,o), (126,-10,cs) ); }, { closed = 1; nodes = ( (138,87,o), (123,107,o), (128,140,cs), (136,190,ls), (142,228,o), (165,250,o), (196,250,cs), (239,250,l), (221,140,ls), (216,107,o), (197,87,o), (169,87,cs) ); }, { closed = 1; nodes = ( (378,410,ls), (383,443,o), (403,463,o), (433,463,cs), (462,463,o), (477,444,o), (471,410,cs), (458,330,l), (365,330,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (209,-10,o), (257,36,o), (268,70,c), (272,70,l), (272,36,o), (299,-10,o), (374,-10,cs), (461,-10,o), (528,46,o), (542,130,c), (457,130,l), (450,91,o), (420,67,o), (377,67,cs), (337,67,o), (315,100,o), (323,150,cs), (339,255,l), (561,255,l), (584,400,ls), (600,499,o), (555,560,o), (465,560,cs), (391,560,o), (348,514,o), (337,480,c), (333,480,l), (332,514,o), (303,560,o), (225,560,cs), (145,560,o), (83,504,o), (70,420,c), (155,420,l), (161,458,o), (189,483,o), (227,483,cs), (273,483,o), (290,457,o), (281,399,cs), (269,325,l), (195,325,ls), (102,325,o), (34,272,o), (21,190,cs), (12,130,ls), (-2,44,o), (41,-10,o), (124,-10,cs) ); }, { closed = 1; nodes = ( (117,67,o), (95,91,o), (102,130,cs), (111,190,ls), (117,230,o), (145,255,o), (186,255,cs), (258,255,l), (242,150,ls), (234,100,o), (200,67,o), (157,67,cs) ); }, { closed = 1; nodes = ( (362,400,ls), (370,450,o), (400,483,o), (442,483,cs), (486,483,o), (507,450,o), (499,400,cs), (487,325,l), (350,325,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (209,-10,o), (256,38,o), (269,75,c), (272,75,l), (273,38,o), (303,-10,o), (380,-10,cs), (461,-10,o), (517,43,o), (537,125,c), (487,125,l), (473,72,o), (437,35,o), (385,35,cs), (328,35,o), (297,79,o), (306,140,cs), (326,268,l), (558,268,l), (581,410,ls), (595,500,o), (552,560,o), (468,560,cs), (397,560,o), (350,511,o), (335,474,c), (333,474,l), (332,511,o), (302,560,o), (225,560,cs), (144,560,o), (83,507,o), (63,425,c), (113,425,l), (127,478,o), (169,516,o), (221,516,cs), (277,516,o), (309,471,o), (299,410,cs), (284,313,l), (176,313,ls), (95,313,o), (38,263,o), (25,185,cs), (18,139,ls), (4,50,o), (45,-10,o), (128,-10,cs) ); }, { closed = 1; nodes = ( (88,32,o), (58,77,o), (68,139,cs), (75,185,ls), (83,234,o), (121,268,o), (168,268,cs), (276,268,l), (256,140,ls), (246,78,o), (199,32,o), (144,32,cs) ); }, { closed = 1; nodes = ( (349,410,ls), (358,470,o), (404,516,o), (458,516,cs), (512,516,o), (540,470,o), (531,410,cs), (516,313,l), (334,313,l) ); } ); width = 600; } ); unicode = 230; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/aeacute.glyph000066400000000000000000000007641472355150100303270ustar00rootroot00000000000000{ glyphname = aeacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ae; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ae; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ae; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 509; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/agrave.glyph000066400000000000000000000007001472355150100301530ustar00rootroot00000000000000{ glyphname = agrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (593,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (591,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (591,0); ref = gravecomb; } ); width = 600; } ); unicode = 224; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ahookabove.glyph000066400000000000000000000007211472355150100310270ustar00rootroot00000000000000{ glyphname = ahookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (605,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7843; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/alpha.glyph000066400000000000000000000005201472355150100277730ustar00rootroot00000000000000{ glyphname = alpha; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; } ); width = 600; } ); unicode = 945; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/alphatonos.glyph000066400000000000000000000010251472355150100310570ustar00rootroot00000000000000{ glyphname = alphatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (23,0); ref = tonos; }, { alignment = -1; ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (24,0); ref = tonos; }, { alignment = -1; ref = a; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (21,0); ref = tonos; }, { alignment = -1; ref = a; } ); width = 600; } ); unicode = 940; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/amacron.glyph000066400000000000000000000007041472355150100303320ustar00rootroot00000000000000{ glyphname = amacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = macroncomb; } ); width = 600; } ); unicode = 257; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ampersand.glyph000066400000000000000000000044331472355150100306670ustar00rootroot00000000000000{ glyphname = ampersand; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (255,-10,o), (315,11,o), (365,51,c), (393,0,l), (536,0,l), (453,155,l), (587,360,l), (447,360,l), (390,271,l), (301,436,ls), (277,480,o), (263,518,o), (268,550,cs), (275,592,o), (307,620,o), (349,620,cs), (391,620,o), (415,592,o), (408,550,c), (543,550,l), (561,664,o), (491,740,o), (368,740,cs), (248,740,o), (157,668,o), (140,565,cs), (131,507,o), (147,449,o), (180,390,c), (205,443,l), (112,434,o), (48,367,o), (32,265,cs), (21,195,ls), (0,66,o), (61,-10,o), (189,-10,cs) ); }, { closed = 1; nodes = ( (177,110,o), (152,140,o), (161,195,cs), (172,265,ls), (177,298,o), (190,321,o), (209,335,c), (310,151,l), (286,125,o), (255,110,o), (222,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (249,-10,o), (316,24,o), (374,87,c), (423,0,l), (522,0,l), (430,161,l), (575,360,l), (481,360,l), (390,233,l), (255,470,ls), (236,504,o), (227,546,o), (233,579,cs), (241,630,o), (281,662,o), (336,662,cs), (397,662,o), (429,627,o), (420,569,c), (510,569,l), (527,674,o), (464,740,o), (348,740,cs), (240,740,o), (158,677,o), (143,581,cs), (135,533,o), (146,487,o), (178,431,cs), (184,421,l), (113,401,o), (66,350,o), (55,280,cs), (36,155,ls), (19,52,o), (75,-10,o), (184,-10,cs) ); }, { closed = 1; nodes = ( (145,70,o), (117,101,o), (126,155,cs), (145,280,ls), (152,324,o), (178,351,o), (220,358,c), (335,155,l), (297,102,o), (247,70,o), (202,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (254,-10,o), (328,33,o), (392,118,c), (464,0,l), (517,0,l), (422,161,l), (560,360,l), (510,360,l), (399,201,l), (257,443,ls), (227,494,o), (211,539,o), (218,580,cs), (228,641,o), (284,695,o), (351,695,cs), (421,695,o), (462,637,o), (451,570,c), (501,570,l), (517,667,o), (461,740,o), (358,740,cs), (259,740,o), (182,670,o), (168,580,cs), (160,531,o), (172,478,o), (214,411,c), (221,429,l), (137,420,o), (78,360,o), (63,266,cs), (46,155,ls), (29,52,o), (78,-10,o), (174,-10,cs) ); }, { closed = 1; nodes = ( (122,35,o), (84,84,o), (96,155,cs), (113,266,ls), (124,336,o), (170,382,o), (230,386,c), (368,158,l), (311,77,o), (248,35,o), (187,35,cs) ); } ); width = 600; } ); unicode = 38; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ampersand_ampersand.liga.glyph000066400000000000000000000103661472355150100336360ustar00rootroot00000000000000{ glyphname = ampersand_ampersand.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (225,-10,o), (285,11,o), (335,51,c), (363,0,l), (506,0,l), (423,155,l), (557,360,l), (417,360,l), (360,271,l), (271,436,ls), (247,480,o), (233,518,o), (238,550,cs), (245,592,o), (277,620,o), (319,620,cs), (361,620,o), (385,592,o), (378,550,c), (513,550,l), (531,664,o), (461,740,o), (338,740,cs), (218,740,o), (127,668,o), (110,565,cs), (101,507,o), (117,449,o), (150,390,c), (175,443,l), (82,434,o), (18,367,o), (2,265,cs), (-9,195,ls), (-30,66,o), (31,-10,o), (159,-10,cs) ); }, { closed = 1; nodes = ( (-373,110,o), (-398,140,o), (-389,195,cs), (-378,265,ls), (-373,298,o), (-360,321,o), (-341,335,c), (-240,151,l), (-264,125,o), (-295,110,o), (-328,110,cs) ); }, { closed = 1; nodes = ( (-295,-10,o), (-235,11,o), (-185,51,c), (-157,0,l), (-14,0,l), (-249,436,ls), (-273,480,o), (-287,518,o), (-282,550,cs), (-275,592,o), (-243,620,o), (-201,620,cs), (-159,620,o), (-135,592,o), (-142,550,c), (-7,550,l), (11,664,o), (-59,740,o), (-182,740,cs), (-302,740,o), (-393,668,o), (-410,565,cs), (-419,507,o), (-403,449,o), (-370,390,c), (-345,443,l), (-438,434,o), (-502,367,o), (-518,265,cs), (-529,195,ls), (-550,66,o), (-489,-10,o), (-361,-10,cs) ); }, { closed = 1; nodes = ( (147,110,o), (122,140,o), (131,195,cs), (142,265,ls), (147,298,o), (160,321,o), (179,335,c), (280,151,l), (256,125,o), (225,110,o), (192,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (219,-10,o), (286,24,o), (344,87,c), (393,0,l), (492,0,l), (400,161,l), (545,360,l), (451,360,l), (360,233,l), (225,470,ls), (206,504,o), (197,546,o), (203,579,cs), (211,630,o), (251,662,o), (306,662,cs), (367,662,o), (399,627,o), (390,569,c), (480,569,l), (497,674,o), (434,740,o), (318,740,cs), (210,740,o), (128,677,o), (113,581,cs), (105,533,o), (116,487,o), (148,431,cs), (154,421,l), (83,401,o), (36,350,o), (25,280,cs), (6,155,ls), (-11,52,o), (45,-10,o), (154,-10,cs) ); }, { closed = 1; nodes = ( (-425,70,o), (-453,101,o), (-444,155,cs), (-425,280,ls), (-418,324,o), (-392,351,o), (-350,358,c), (-235,155,l), (-273,102,o), (-323,70,o), (-368,70,cs) ); }, { closed = 1; nodes = ( (-321,-10,o), (-254,24,o), (-196,87,c), (-147,0,l), (-48,0,l), (-315,470,ls), (-334,504,o), (-343,546,o), (-337,579,cs), (-329,630,o), (-289,662,o), (-234,662,cs), (-173,662,o), (-141,627,o), (-150,569,c), (-60,569,l), (-43,674,o), (-106,740,o), (-222,740,cs), (-330,740,o), (-412,677,o), (-427,581,cs), (-435,533,o), (-424,487,o), (-392,431,cs), (-386,421,l), (-457,401,o), (-504,350,o), (-515,280,cs), (-534,155,ls), (-551,52,o), (-495,-10,o), (-386,-10,cs) ); }, { closed = 1; nodes = ( (115,70,o), (87,101,o), (96,155,cs), (115,280,ls), (122,324,o), (148,351,o), (190,358,c), (305,155,l), (267,102,o), (217,70,o), (172,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (223,-10,o), (297,33,o), (361,118,c), (433,0,l), (486,0,l), (391,161,l), (529,360,l), (479,360,l), (368,201,l), (226,443,ls), (196,494,o), (180,539,o), (187,580,cs), (197,641,o), (253,695,o), (320,695,cs), (390,695,o), (431,637,o), (420,570,c), (470,570,l), (486,667,o), (430,740,o), (327,740,cs), (228,740,o), (151,670,o), (137,580,cs), (129,531,o), (141,478,o), (183,411,c), (190,429,l), (106,420,o), (47,360,o), (32,266,cs), (15,155,ls), (-2,52,o), (47,-10,o), (143,-10,cs) ); }, { closed = 1; nodes = ( (-449,35,o), (-486,84,o), (-474,155,cs), (-457,266,ls), (-446,336,o), (-400,382,o), (-340,386,c), (-202,158,l), (-259,77,o), (-322,35,o), (-383,35,cs) ); }, { closed = 1; nodes = ( (-316,-10,o), (-242,33,o), (-178,118,c), (-106,0,l), (-53,0,l), (-313,443,ls), (-343,494,o), (-359,539,o), (-352,580,cs), (-342,641,o), (-286,695,o), (-219,695,cs), (-149,695,o), (-108,637,o), (-119,570,c), (-69,570,l), (-53,667,o), (-109,740,o), (-212,740,cs), (-311,740,o), (-388,670,o), (-402,580,cs), (-410,531,o), (-398,478,o), (-356,411,c), (-349,429,l), (-433,420,o), (-492,360,o), (-507,266,cs), (-524,155,ls), (-541,52,o), (-492,-10,o), (-396,-10,cs) ); }, { closed = 1; nodes = ( (91,35,o), (53,84,o), (65,155,cs), (82,266,ls), (93,336,o), (139,382,o), (199,386,c), (337,158,l), (280,77,o), (217,35,o), (156,35,cs) ); } ); width = 600; } ); } ampersand_ampersand_ampersand.liga.glyph000066400000000000000000000144031472355150100356050ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = ampersand_ampersand_ampersand.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (195,-10,o), (255,11,o), (305,51,c), (333,0,l), (476,0,l), (393,155,l), (527,360,l), (387,360,l), (330,271,l), (241,436,ls), (217,480,o), (203,518,o), (208,550,cs), (215,592,o), (247,620,o), (289,620,cs), (331,620,o), (355,592,o), (348,550,c), (483,550,l), (501,664,o), (431,740,o), (308,740,cs), (188,740,o), (97,668,o), (80,565,cs), (71,507,o), (87,449,o), (120,390,c), (145,443,l), (52,434,o), (-12,367,o), (-28,265,cs), (-39,195,ls), (-60,66,o), (1,-10,o), (129,-10,cs) ); }, { closed = 1; nodes = ( (-963,110,o), (-988,140,o), (-979,195,cs), (-968,265,ls), (-963,298,o), (-950,321,o), (-931,335,c), (-830,151,l), (-854,125,o), (-885,110,o), (-918,110,cs) ); }, { closed = 1; nodes = ( (-885,-10,o), (-825,11,o), (-775,51,c), (-747,0,l), (-604,0,l), (-839,436,ls), (-863,480,o), (-877,518,o), (-872,550,cs), (-865,592,o), (-833,620,o), (-791,620,cs), (-749,620,o), (-725,592,o), (-732,550,c), (-597,550,l), (-579,664,o), (-649,740,o), (-772,740,cs), (-892,740,o), (-983,668,o), (-1000,565,cs), (-1009,507,o), (-993,449,o), (-960,390,c), (-935,443,l), (-1028,434,o), (-1092,367,o), (-1108,265,cs), (-1119,195,ls), (-1140,66,o), (-1079,-10,o), (-951,-10,cs) ); }, { closed = 1; nodes = ( (-423,110,o), (-448,140,o), (-439,195,cs), (-428,265,ls), (-423,298,o), (-410,321,o), (-391,335,c), (-290,151,l), (-314,125,o), (-345,110,o), (-378,110,cs) ); }, { closed = 1; nodes = ( (-345,-10,o), (-285,11,o), (-235,51,c), (-207,0,l), (-64,0,l), (-299,436,ls), (-323,480,o), (-337,518,o), (-332,550,cs), (-325,592,o), (-293,620,o), (-251,620,cs), (-209,620,o), (-185,592,o), (-192,550,c), (-57,550,l), (-39,664,o), (-109,740,o), (-232,740,cs), (-352,740,o), (-443,668,o), (-460,565,cs), (-469,507,o), (-453,449,o), (-420,390,c), (-395,443,l), (-488,434,o), (-552,367,o), (-568,265,cs), (-579,195,ls), (-600,66,o), (-539,-10,o), (-411,-10,cs) ); }, { closed = 1; nodes = ( (117,110,o), (92,140,o), (101,195,cs), (112,265,ls), (117,298,o), (130,321,o), (149,335,c), (250,151,l), (226,125,o), (195,110,o), (162,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (189,-10,o), (256,24,o), (314,87,c), (363,0,l), (462,0,l), (370,161,l), (515,360,l), (421,360,l), (330,233,l), (195,470,ls), (176,504,o), (167,546,o), (173,579,cs), (181,630,o), (221,662,o), (276,662,cs), (337,662,o), (369,627,o), (360,569,c), (450,569,l), (467,674,o), (404,740,o), (288,740,cs), (180,740,o), (98,677,o), (83,581,cs), (75,533,o), (86,487,o), (118,431,cs), (124,421,l), (53,401,o), (6,350,o), (-5,280,cs), (-24,155,ls), (-41,52,o), (15,-10,o), (124,-10,cs) ); }, { closed = 1; nodes = ( (-995,70,o), (-1023,101,o), (-1014,155,cs), (-995,280,ls), (-988,324,o), (-962,351,o), (-920,358,c), (-805,155,l), (-843,102,o), (-893,70,o), (-938,70,cs) ); }, { closed = 1; nodes = ( (-891,-10,o), (-824,24,o), (-766,87,c), (-717,0,l), (-618,0,l), (-885,470,ls), (-904,504,o), (-913,546,o), (-907,579,cs), (-899,630,o), (-859,662,o), (-804,662,cs), (-743,662,o), (-711,627,o), (-720,569,c), (-630,569,l), (-613,674,o), (-676,740,o), (-792,740,cs), (-900,740,o), (-982,677,o), (-997,581,cs), (-1005,533,o), (-994,487,o), (-962,431,cs), (-956,421,l), (-1027,401,o), (-1074,350,o), (-1085,280,cs), (-1104,155,ls), (-1121,52,o), (-1065,-10,o), (-956,-10,cs) ); }, { closed = 1; nodes = ( (-455,70,o), (-483,101,o), (-474,155,cs), (-455,280,ls), (-448,324,o), (-422,351,o), (-380,358,c), (-265,155,l), (-303,102,o), (-353,70,o), (-398,70,cs) ); }, { closed = 1; nodes = ( (-351,-10,o), (-284,24,o), (-226,87,c), (-177,0,l), (-78,0,l), (-345,470,ls), (-364,504,o), (-373,546,o), (-367,579,cs), (-359,630,o), (-319,662,o), (-264,662,cs), (-203,662,o), (-171,627,o), (-180,569,c), (-90,569,l), (-73,674,o), (-136,740,o), (-252,740,cs), (-360,740,o), (-442,677,o), (-457,581,cs), (-465,533,o), (-454,487,o), (-422,431,cs), (-416,421,l), (-487,401,o), (-534,350,o), (-545,280,cs), (-564,155,ls), (-581,52,o), (-525,-10,o), (-416,-10,cs) ); }, { closed = 1; nodes = ( (85,70,o), (57,101,o), (66,155,cs), (85,280,ls), (92,324,o), (118,351,o), (160,358,c), (275,155,l), (237,102,o), (187,70,o), (142,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (203,-10,o), (277,33,o), (341,118,c), (413,0,l), (466,0,l), (371,161,l), (509,360,l), (459,360,l), (348,201,l), (206,443,ls), (176,494,o), (160,539,o), (167,580,cs), (177,641,o), (233,695,o), (300,695,cs), (370,695,o), (411,637,o), (400,570,c), (450,570,l), (466,667,o), (410,740,o), (307,740,cs), (208,740,o), (131,670,o), (117,580,cs), (109,531,o), (121,478,o), (163,411,c), (170,429,l), (86,420,o), (27,360,o), (12,266,cs), (-5,155,ls), (-22,52,o), (27,-10,o), (123,-10,cs) ); }, { closed = 1; nodes = ( (-1019,35,o), (-1056,84,o), (-1044,155,cs), (-1027,266,ls), (-1016,336,o), (-970,382,o), (-910,386,c), (-772,158,l), (-829,77,o), (-892,35,o), (-953,35,cs) ); }, { closed = 1; nodes = ( (-886,-10,o), (-812,33,o), (-748,118,c), (-676,0,l), (-623,0,l), (-883,443,ls), (-913,494,o), (-929,539,o), (-922,580,cs), (-912,641,o), (-856,695,o), (-789,695,cs), (-719,695,o), (-678,637,o), (-689,570,c), (-639,570,l), (-623,667,o), (-679,740,o), (-782,740,cs), (-881,740,o), (-958,670,o), (-972,580,cs), (-980,531,o), (-968,478,o), (-926,411,c), (-919,429,l), (-1003,420,o), (-1062,360,o), (-1077,266,cs), (-1094,155,ls), (-1111,52,o), (-1062,-10,o), (-966,-10,cs) ); }, { closed = 1; nodes = ( (-479,35,o), (-516,84,o), (-504,155,cs), (-487,266,ls), (-476,336,o), (-430,382,o), (-370,386,c), (-232,158,l), (-289,77,o), (-352,35,o), (-413,35,cs) ); }, { closed = 1; nodes = ( (-346,-10,o), (-272,33,o), (-208,118,c), (-136,0,l), (-83,0,l), (-343,443,ls), (-373,494,o), (-389,539,o), (-382,580,cs), (-372,641,o), (-316,695,o), (-249,695,cs), (-179,695,o), (-138,637,o), (-149,570,c), (-99,570,l), (-83,667,o), (-139,740,o), (-242,740,cs), (-341,740,o), (-418,670,o), (-432,580,cs), (-440,531,o), (-428,478,o), (-386,411,c), (-379,429,l), (-463,420,o), (-522,360,o), (-537,266,cs), (-554,155,ls), (-571,52,o), (-522,-10,o), (-426,-10,cs) ); }, { closed = 1; nodes = ( (71,35,o), (33,84,o), (45,155,cs), (62,266,ls), (73,336,o), (119,382,o), (179,386,c), (317,158,l), (260,77,o), (197,35,o), (136,35,cs) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ampersand_equal.liga.glyph000066400000000000000000000053441472355150100327730ustar00rootroot00000000000000{ glyphname = ampersand_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-244,-10,o), (-158,39,o), (-97,132,cs), (67,385,l), (537,385,l), (559,525,l), (26,525,l), (-207,174,ls), (-235,133,o), (-272,110,o), (-313,110,cs), (-358,110,o), (-383,140,o), (-374,195,cs), (-363,265,ls), (-354,320,o), (-325,350,o), (-279,350,cs), (-265,350,l), (-250,445,l), (-305,445,ls), (-411,445,o), (-485,377,o), (-503,265,cs), (-514,195,ls), (-535,66,o), (-474,-10,o), (-346,-10,cs) ); }, { closed = 1; nodes = ( (1,0,l), (-234,436,ls), (-258,480,o), (-272,518,o), (-267,550,cs), (-260,592,o), (-228,620,o), (-186,620,cs), (-144,620,o), (-120,592,o), (-127,550,c), (8,550,l), (26,664,o), (-44,740,o), (-167,740,cs), (-287,740,o), (-378,668,o), (-395,565,cs), (-404,506,o), (-387,446,o), (-355,387,cs), (-142,0,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (45,275,l), (22,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-287,-10,o), (-206,41,o), (-140,132,cs), (58,410,l), (541,410,l), (554,490,l), (25,490,l), (-215,155,ls), (-253,102,o), (-303,70,o), (-348,70,cs), (-405,70,o), (-433,101,o), (-424,155,cs), (-405,280,ls), (-396,332,o), (-362,360,o), (-306,360,cs), (-292,360,l), (-281,430,l), (-296,430,ls), (-406,430,o), (-480,371,o), (-495,280,cs), (-514,155,ls), (-531,52,o), (-475,-10,o), (-366,-10,cs) ); }, { closed = 1; nodes = ( (-28,0,l), (-295,470,ls), (-314,504,o), (-323,546,o), (-317,579,cs), (-309,630,o), (-269,662,o), (-214,662,cs), (-153,662,o), (-121,627,o), (-130,569,c), (-40,569,l), (-23,674,o), (-86,740,o), (-202,740,cs), (-310,740,o), (-392,677,o), (-407,581,cs), (-415,533,o), (-404,487,o), (-372,431,cs), (-127,0,l) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (41,250,l), (28,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-277,-10,o), (-199,37,o), (-133,132,cs), (68,421,l), (543,421,l), (550,466,l), (47,466,l), (-168,155,ls), (-222,78,o), (-287,35,o), (-348,35,cs), (-414,35,o), (-451,84,o), (-439,155,cs), (-422,266,ls), (-410,339,o), (-361,386,o), (-297,386,cs), (-283,386,l), (-276,431,l), (-291,431,ls), (-387,431,o), (-456,369,o), (-472,266,cs), (-489,155,ls), (-506,52,o), (-457,-10,o), (-361,-10,cs) ); }, { closed = 1; nodes = ( (-18,0,l), (-278,443,ls), (-308,494,o), (-324,539,o), (-317,580,cs), (-307,641,o), (-251,695,o), (-184,695,cs), (-114,695,o), (-73,637,o), (-84,570,c), (-34,570,l), (-18,667,o), (-74,740,o), (-177,740,cs), (-276,740,o), (-353,670,o), (-367,580,cs), (-375,532,o), (-363,480,o), (-322,414,cs), (-71,0,l) ); }, { closed = 1; nodes = ( (507,195,l), (514,240,l), (39,240,l), (32,195,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/anoteleia.glyph000066400000000000000000000006231472355150100306530ustar00rootroot00000000000000{ glyphname = anoteleia; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (44,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (44,275); ref = period; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (44,275); ref = period; } ); width = 600; } ); unicode = 903; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/aogonek.glyph000066400000000000000000000020671472355150100303410ustar00rootroot00000000000000{ glyphname = aogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (469,-195,l), (476,-153,l), (412,-153,ls), (380,-153,o), (364,-134,o), (369,-103,cs), (373,-75,o), (402,-36,o), (446,0,c), (421,10,l), (365,-27,o), (326,-74,o), (320,-115,cs), (312,-165,o), (341,-195,o), (396,-195,c) ); }, { ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (483,-203,l), (492,-143,l), (432,-143,ls), (398,-143,o), (381,-122,o), (385,-93,cs), (390,-65,o), (413,-37,o), (464,0,c), (402,10,l), (332,-34,o), (304,-72,o), (298,-110,cs), (289,-164,o), (331,-203,o), (405,-203,cs) ); }, { ref = a; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,-225,l), (527,-120,l), (458,-120,ls), (429,-120,o), (415,-103,o), (418,-83,cs), (421,-66,o), (439,-42,o), (492,0,c), (420,11,l), (347,-19,o), (296,-68,o), (289,-115,cs), (278,-180,o), (321,-225,o), (402,-225,cs) ); }, { ref = a; } ); width = 600; } ); unicode = 261; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/apostrophemod.glyph000066400000000000000000000010411472355150100315710ustar00rootroot00000000000000{ glyphname = apostrophemod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,465,l), (479,776,l), (299,776,l), (170,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (275,465,l), (454,776,l), (324,776,l), (195,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (255,465,l), (429,776,l), (339,776,l), (215,465,l) ); } ); width = 600; } ); unicode = 700; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/approxequal.glyph000066400000000000000000000011741472355150100312550ustar00rootroot00000000000000{ glyphname = approxequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (18,110); ref = asciitilde; }, { alignment = -1; pos = (-24,-155); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (16,100); ref = asciitilde; }, { alignment = -1; pos = (-22,-145); ref = asciitilde; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (15,95); ref = asciitilde; }, { alignment = -1; pos = (-22,-140); ref = asciitilde; } ); width = 600; } ); unicode = 8776; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/aring.glyph000066400000000000000000000006741472355150100300200ustar00rootroot00000000000000{ glyphname = aring; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = ringcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = ringcomb; } ); width = 600; } ); unicode = 229; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asciicircum.glyph000066400000000000000000000016011472355150100312020ustar00rootroot00000000000000{ glyphname = asciicircum; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (214,340,l), (327,550,ls), (343,580,o), (353,609,o), (357,622,c), (357,609,o), (361,580,o), (367,550,cs), (411,340,l), (550,340,l), (446,730,l), (300,730,l), (70,340,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (174,340,l), (330,598,ls), (346,624,o), (359,651,o), (366,665,c), (368,651,o), (374,624,o), (381,598,cs), (452,340,l), (530,340,l), (415,730,l), (331,730,l), (90,340,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (170,340,l), (325,600,ls), (340,626,o), (359,660,o), (367,678,c), (371,660,o), (378,626,o), (385,600,cs), (455,340,l), (510,340,l), (401,730,l), (348,730,l), (110,340,l) ); } ); width = 600; } ); unicode = 94; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asciicircum_equal.liga.glyph000066400000000000000000000017311472355150100333100ustar00rootroot00000000000000{ glyphname = asciicircum_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-310,385,l), (-141,637,l), (-53,385,l), (432,385,l), (454,525,l), (31,525,l), (-64,760,l), (-184,760,l), (-453,385,l) ); }, { closed = 1; nodes = ( (392,135,l), (415,275,l), (-70,275,l), (-93,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-338,410,l), (-144,691,l), (-46,410,l), (436,410,l), (449,490,l), (18,490,l), (-95,760,l), (-179,760,l), (-434,410,l) ); }, { closed = 1; nodes = ( (398,170,l), (411,250,l), (-74,250,l), (-87,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-317,420,l), (-126,711,l), (-32,420,l), (438,420,l), (445,465,l), (4,465,l), (-97,760,l), (-144,760,l), (-374,420,l) ); }, { closed = 1; nodes = ( (402,195,l), (409,240,l), (-61,240,l), (-68,195,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asciitilde.glyph000066400000000000000000000024721472355150100310300ustar00rootroot00000000000000{ glyphname = asciitilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (156,255,l), (168,330,ls), (172,352,o), (185,365,o), (206,365,cs), (274,365,o), (252,225,o), (397,225,cs), (492,225,o), (560,280,o), (574,365,cs), (587,450,l), (467,450,l), (455,375,ls), (452,353,o), (439,340,o), (418,340,cs), (350,340,o), (372,480,o), (227,480,cs), (133,480,o), (63,425,o), (50,340,cs), (36,255,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (151,255,l), (162,325,ls), (168,361,o), (188,380,o), (218,380,cs), (286,380,o), (271,250,o), (396,250,cs), (474,250,o), (534,303,o), (546,380,cs), (557,450,l), (472,450,l), (461,380,ls), (455,344,o), (435,325,o), (405,325,cs), (337,325,o), (353,455,o), (228,455,cs), (150,455,o), (90,403,o), (77,325,cs), (66,255,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (132,260,l), (144,335,ls), (151,378,o), (177,403,o), (215,403,cs), (300,403,o), (287,260,o), (407,260,cs), (470,260,o), (514,301,o), (525,370,cs), (536,445,l), (491,445,l), (480,370,ls), (473,327,o), (449,302,o), (414,302,cs), (325,302,o), (336,445,o), (221,445,cs), (156,445,o), (110,403,o), (99,335,cs), (87,260,l) ); } ); width = 600; } ); unicode = 126; } asciitilde_asciitilde.liga.glyph000066400000000000000000000035041472355150100340530ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = asciitilde_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (35,215,o), (59,335,o), (109,335,cs), (159,335,o), (155,215,o), (290,215,cs), (377,215,o), (444,269,o), (456,350,cs), (464,400,l), (344,400,l), (339,364,ls), (335,341,o), (316,325,o), (292,325,cs), (232,325,o), (246,445,o), (126,445,cs), (6,445,o), (-18,325,o), (-68,325,cs), (-118,325,o), (-104,445,o), (-244,445,cs), (-332,445,o), (-397,392,o), (-410,310,cs), (-418,260,l), (-298,260,l), (-292,296,ls), (-288,319,o), (-270,335,o), (-247,335,cs), (-191,335,o), (-205,215,o), (-85,215,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (22,230,o), (45,360,o), (115,360,cs), (185,360,o), (167,230,o), (292,230,cs), (370,230,o), (431,283,o), (443,360,cs), (449,400,l), (364,400,l), (358,360,ls), (352,324,o), (332,305,o), (302,305,cs), (234,305,o), (250,435,o), (125,435,cs), (0,435,o), (-23,305,o), (-93,305,cs), (-163,305,o), (-146,435,o), (-270,435,cs), (-348,435,o), (-408,383,o), (-421,305,cs), (-427,265,l), (-342,265,l), (-336,305,ls), (-330,341,o), (-310,360,o), (-280,360,cs), (-212,360,o), (-228,230,o), (-103,230,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (4,240,o), (37,383,o), (122,383,cs), (207,383,o), (189,240,o), (309,240,cs), (376,240,o), (426,283,o), (436,350,cs), (444,400,l), (399,400,l), (391,350,ls), (385,308,o), (357,282,o), (316,282,cs), (227,282,o), (243,425,o), (128,425,cs), (13,425,o), (-19,282,o), (-104,282,cs), (-189,282,o), (-172,425,o), (-292,425,cs), (-359,425,o), (-408,382,o), (-419,315,cs), (-427,265,l), (-382,265,l), (-374,315,ls), (-367,357,o), (-339,383,o), (-298,383,cs), (-208,383,o), (-226,240,o), (-111,240,cs) ); } ); width = 600; } ); } asciitilde_asciitilde_greater.liga.glyph000066400000000000000000000054111472355150100355630ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = asciitilde_asciitilde_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (194,625,l), (311,422,l), (238,399,o), (202,330,o), (157,330,cs), (102,330,o), (108,430,o), (-12,430,cs), (-122,430,o), (-168,330,o), (-223,330,cs), (-278,330,o), (-282,430,o), (-402,430,cs), (-512,430,o), (-558,330,o), (-613,330,cs), (-668,330,o), (-672,430,o), (-792,430,cs), (-912,430,o), (-928,330,o), (-983,330,cs), (-1010,330,o), (-1021,345,o), (-1017,368,cs), (-1012,400,l), (-1122,400,l), (-1129,355,ls), (-1141,280,o), (-1093,230,o), (-1009,230,cs), (-899,230,o), (-863,330,o), (-808,330,cs), (-753,330,o), (-749,230,o), (-629,230,cs), (-509,230,o), (-473,330,o), (-418,330,cs), (-363,330,o), (-359,230,o), (-239,230,cs), (-119,230,o), (-83,330,o), (-28,330,cs), (27,330,o), (21,230,o), (141,230,cs), (261,230,o), (287,330,o), (342,330,cs), (363,330,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (382,414,l), (303,386,o), (272,304,o), (214,304,cs), (144,304,o), (160,434,o), (35,434,cs), (-90,434,o), (-116,304,o), (-186,304,cs), (-256,304,o), (-240,434,o), (-365,434,cs), (-490,434,o), (-523,304,o), (-591,304,cs), (-661,304,o), (-650,434,o), (-775,434,cs), (-900,434,o), (-926,304,o), (-994,304,cs), (-1024,304,o), (-1037,323,o), (-1032,359,cs), (-1026,399,l), (-1111,399,l), (-1117,359,ls), (-1129,282,o), (-1086,229,o), (-1008,229,cs), (-883,229,o), (-859,359,o), (-789,359,cs), (-719,359,o), (-728,229,o), (-603,229,cs), (-478,229,o), (-447,359,o), (-377,359,cs), (-307,359,o), (-323,229,o), (-198,229,cs), (-73,229,o), (-47,359,o), (23,359,cs), (93,359,o), (77,229,o), (202,229,cs), (326,229,o), (354,347,o), (422,349,c), (434,333,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (421,392,l), (340,371,o), (335,282,o), (256,282,cs), (171,282,o), (193,425,o), (73,425,cs), (-47,425,o), (-79,282,o), (-164,282,cs), (-249,282,o), (-242,425,o), (-357,425,cs), (-477,425,o), (-509,282,o), (-594,282,cs), (-679,282,o), (-672,425,o), (-787,425,cs), (-902,425,o), (-935,282,o), (-1024,282,cs), (-1059,282,o), (-1076,307,o), (-1069,350,cs), (-1061,400,l), (-1106,400,l), (-1114,350,ls), (-1125,281,o), (-1094,240,o), (-1031,240,cs), (-911,240,o), (-878,383,o), (-793,383,cs), (-708,383,o), (-716,240,o), (-601,240,cs), (-486,240,o), (-453,383,o), (-363,383,cs), (-278,383,o), (-286,240,o), (-171,240,cs), (-56,240,o), (-23,383,o), (67,383,cs), (157,383,o), (134,240,o), (249,240,cs), (355,240,o), (373,349,o), (446,357,c), (463,332,l), (170,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asciitilde_at.liga.glyph000066400000000000000000000024641472355150100324300ustar00rootroot00000000000000{ glyphname = asciitilde_at.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (8,225,o), (115,321,o), (136,457,c), (58,457,l), (47,387,o), (-20,340,o), (-93,340,cs), (-220,340,o), (-204,480,o), (-353,480,cs), (-453,480,o), (-539,411,o), (-553,320,cs), (-564,255,l), (-444,255,l), (-435,310,ls), (-430,341,o), (-404,365,o), (-371,365,cs), (-288,365,o), (-286,225,o), (-116,225,cs) ); }, { ref = at; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (12,250,o), (103,340,o), (124,471,c), (79,471,l), (65,384,o), (-3,325,o), (-91,325,cs), (-210,325,o), (-204,455,o), (-349,455,cs), (-436,455,o), (-511,395,o), (-524,315,cs), (-534,255,l), (-449,255,l), (-439,315,ls), (-433,352,o), (-399,380,o), (-359,380,cs), (-271,380,o), (-266,250,o), (-102,250,cs) ); }, { ref = at; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (31,260,o), (108,344,o), (126,454,c), (96,454,l), (82,369,o), (17,302,o), (-71,302,cs), (-208,302,o), (-197,445,o), (-341,445,cs), (-426,445,o), (-492,390,o), (-505,310,cs), (-513,260,l), (-468,260,l), (-460,310,ls), (-451,365,o), (-405,403,o), (-347,403,cs), (-234,403,o), (-240,260,o), (-78,260,cs) ); }, { ref = at; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asciitilde_greater.liga.glyph000066400000000000000000000040041472355150100334450ustar00rootroot00000000000000{ glyphname = asciitilde_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (381,295,l), (406,348,l), (409,364,l), (268,307,o), (324,445,o), (191,445,cs), (71,445,o), (47,325,o), (-3,325,cs), (-53,325,o), (-39,445,o), (-159,445,cs), (-279,445,o), (-303,325,o), (-358,325,cs), (-380,325,o), (-389,339,o), (-386,364,cs), (-381,400,l), (-501,400,l), (-509,350,ls), (-522,268,o), (-465,215,o), (-380,215,cs), (-260,215,o), (-226,335,o), (-176,335,cs), (-126,335,o), (-140,215,o), (-20,215,cs), (100,215,o), (124,335,o), (174,335,cs), (217,335,o), (208,266,o), (285,246,c), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (439,330,l), (428,330,l), (418,330,ls), (348,330,o), (360,434,o), (235,434,cs), (110,434,o), (77,304,o), (9,304,cs), (-61,304,o), (-50,434,o), (-175,434,cs), (-300,434,o), (-326,304,o), (-394,304,cs), (-424,304,o), (-437,323,o), (-432,359,cs), (-426,399,l), (-511,399,l), (-517,359,ls), (-529,282,o), (-486,229,o), (-408,229,cs), (-283,229,o), (-259,359,o), (-189,359,cs), (-119,359,o), (-128,229,o), (-3,229,cs), (122,229,o), (153,359,o), (223,359,cs), (284,359,o), (286,284,o), (363,264,c), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (464,332,l), (442,308,l), (424,308,ls), (355,308,o), (363,425,o), (253,425,cs), (133,425,o), (106,282,o), (21,282,cs), (-64,282,o), (-52,425,o), (-167,425,cs), (-282,425,o), (-310,282,o), (-399,282,cs), (-440,282,o), (-461,308,o), (-454,350,cs), (-446,400,l), (-491,400,l), (-499,350,ls), (-510,283,o), (-473,240,o), (-406,240,cs), (-286,240,o), (-258,383,o), (-173,383,cs), (-88,383,o), (-101,240,o), (14,240,cs), (129,240,o), (157,383,o), (247,383,cs), (333,383,o), (310,279,o), (403,269,c), (170,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asciitilde_hyphen.liga.glyph000066400000000000000000000025771472355150100333240ustar00rootroot00000000000000{ glyphname = asciitilde_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-19,195,o), (34,220,o), (70,260,c), (507,260,l), (529,400,l), (4,400,l), (0,375,ls), (-6,334,o), (-30,310,o), (-66,310,cs), (-155,310,o), (-150,465,o), (-310,465,cs), (-409,465,o), (-491,397,o), (-505,310,cs), (-517,235,l), (-397,235,l), (-387,295,ls), (-382,329,o), (-357,350,o), (-324,350,cs), (-234,350,o), (-238,195,o), (-78,195,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-48,220,o), (4,246,o), (37,290,c), (502,290,l), (515,370,l), (-15,370,l), (-16,365,l), (-23,325,o), (-55,295,o), (-97,295,cs), (-185,295,o), (-174,440,o), (-314,440,cs), (-407,440,o), (-478,382,o), (-492,295,cs), (-502,235,l), (-417,235,l), (-407,295,ls), (-401,337,o), (-368,365,o), (-326,365,cs), (-236,365,o), (-246,220,o), (-109,220,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-44,245,o), (4,270,o), (27,310,c), (505,310,l), (512,355,l), (-3,355,l), (-4,350,ls), (-10,312,o), (-48,287,o), (-94,287,cs), (-194,287,o), (-225,435,o), (-340,435,cs), (-405,435,o), (-452,393,o), (-463,325,cs), (-474,250,l), (-429,250,l), (-418,325,ls), (-411,368,o), (-385,393,o), (-347,393,cs), (-262,393,o), (-230,245,o), (-100,245,cs) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asterisk.glyph000066400000000000000000000044561472355150100305470ustar00rootroot00000000000000{ glyphname = asterisk; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (206,127,ls), (247,174,o), (284,257,o), (301,299,c), (307,299,l), (312,257,o), (323,174,o), (348,127,cs), (373,82,l), (491,156,l), (467,202,ls), (441,248,o), (382,297,o), (350,322,c), (353,326,l), (398,326,o), (478,329,o), (533,348,cs), (588,367,l), (562,489,l), (507,470,ls), (452,451,o), (381,401,o), (342,372,c), (338,375,l), (360,416,o), (401,497,o), (410,555,cs), (419,610,l), (289,610,l), (280,555,ls), (271,497,o), (286,416,o), (294,375,c), (289,371,l), (259,400,o), (203,451,o), (154,470,cs), (105,489,l), (42,367,l), (90,348,ls), (139,329,o), (220,326,o), (265,326,c), (266,322,l), (226,297,o), (151,248,o), (111,201,cs), (73,156,l), (167,82,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (219,172,ls), (250,209,o), (282,264,o), (301,300,c), (308,300,l), (314,264,o), (327,208,o), (347,172,cs), (390,94,l), (470,144,l), (427,222,ls), (407,258,o), (370,298,o), (344,322,c), (349,330,l), (388,333,o), (446,340,o), (489,355,cs), (583,387,l), (566,470,l), (472,438,ls), (428,423,o), (373,390,o), (338,367,c), (334,371,l), (351,408,o), (376,469,o), (383,515,cs), (398,610,l), (310,610,l), (295,515,ls), (288,469,o), (293,408,o), (297,371,c), (291,367,l), (264,390,o), (219,423,o), (179,438,cs), (96,470,l), (53,387,l), (136,355,ls), (175,340,o), (232,333,o), (269,330,c), (271,323,l), (238,299,o), (187,259,o), (155,222,cs), (89,144,l), (153,94,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (228,207,ls), (273,260,o), (283,287,o), (299,310,c), (310,310,l), (318,286,o), (321,260,o), (349,207,cs), (405,103,l), (454,134,l), (398,238,ls), (370,289,o), (349,305,o), (334,323,c), (341,337,l), (365,341,o), (393,340,o), (450,360,cs), (578,404,l), (567,456,l), (438,413,ls), (383,395,o), (359,377,o), (337,364,c), (329,371,l), (338,395,o), (349,421,o), (359,480,cs), (380,610,l), (326,610,l), (305,480,ls), (295,421,o), (301,395,o), (301,371,c), (291,365,l), (273,378,o), (253,395,o), (202,414,cs), (89,457,l), (62,407,l), (175,363,ls), (226,343,o), (254,342,o), (277,339,c), (279,324,l), (258,306,o), (233,291,o), (188,239,cs), (98,136,l), (139,104,l) ); } ); width = 600; } ); unicode = 42; } asterisk_asterisk_asterisk.liga.glyph000066400000000000000000000014241472355150100352050ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = asterisk_asterisk_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1160,0); ref = asterisk; }, { alignment = -1; pos = (-600,160); ref = asterisk; }, { alignment = -1; pos = (-41,0); ref = asterisk; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1160,0); ref = asterisk; }, { alignment = -1; pos = (-600,160); ref = asterisk; }, { alignment = -1; pos = (-40,0); ref = asterisk; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1160,0); ref = asterisk; }, { alignment = -1; pos = (-600,160); ref = asterisk; }, { alignment = -1; pos = (-40,0); ref = asterisk; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asterisk_greater.liga.glyph000066400000000000000000000051141472355150100331630ustar00rootroot00000000000000{ glyphname = asterisk_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-370,127,ls), (-329,175,o), (-292,257,o), (-275,299,c), (-269,299,l), (-264,257,o), (-253,174,o), (-228,127,cs), (-188,52,l), (-70,126,l), (-109,202,l), (-135,248,o), (-194,297,o), (-226,322,c), (-223,326,l), (-178,326,o), (-98,329,o), (-43,348,cs), (44,377,l), (18,499,l), (-69,470,ls), (-124,451,o), (-195,401,o), (-234,372,c), (-238,375,l), (-216,416,o), (-175,497,o), (-166,555,cs), (-153,640,l), (-283,640,l), (-296,555,ls), (-305,497,o), (-290,416,o), (-282,375,c), (-287,371,l), (-317,400,o), (-373,451,o), (-422,470,cs), (-499,499,l), (-562,377,l), (-486,348,ls), (-437,329,o), (-356,326,o), (-311,326,c), (-310,323,l), (-351,298,o), (-425,248,o), (-465,201,cs), (-528,126,l), (-434,52,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-357,172,ls), (-326,209,o), (-294,264,o), (-276,300,c), (-268,300,l), (-262,264,o), (-248,208,o), (-229,172,cs), (-171,64,l), (-91,114,l), (-149,222,ls), (-168,258,o), (-206,297,o), (-232,322,c), (-227,331,l), (-188,334,o), (-130,341,o), (-87,355,cs), (39,397,l), (22,480,l), (-104,438,ls), (-148,423,o), (-203,390,o), (-238,368,c), (-242,371,l), (-225,408,o), (-201,469,o), (-193,515,cs), (-174,640,l), (-262,640,l), (-281,515,ls), (-289,469,o), (-283,408,o), (-279,371,c), (-285,367,l), (-312,390,o), (-357,423,o), (-397,438,cs), (-509,480,l), (-552,397,l), (-440,355,ls), (-401,341,o), (-344,333,o), (-307,330,c), (-305,323,l), (-339,299,o), (-390,259,o), (-421,222,cs), (-512,114,l), (-448,64,l) ); }, { alignment = -1; pos = (15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-347,207,ls), (-301,259,o), (-292,287,o), (-276,310,c), (-265,310,l), (-258,286,o), (-256,259,o), (-226,207,cs), (-161,93,l), (-112,124,l), (-177,238,ls), (-206,289,o), (-226,305,o), (-241,323,c), (-235,336,l), (-210,339,o), (-182,340,o), (-125,362,cs), (15,416,l), (5,466,l), (-136,413,ls), (-191,392,o), (-215,376,o), (-238,364,c), (-246,371,l), (-237,395,o), (-225,421,o), (-216,480,cs), (-192,630,l), (-246,630,l), (-270,480,ls), (-279,421,o), (-274,395,o), (-274,371,c), (-284,364,l), (-303,376,o), (-323,392,o), (-373,414,cs), (-495,467,l), (-522,417,l), (-400,363,ls), (-349,341,o), (-321,341,o), (-298,338,c), (-296,324,l), (-317,306,o), (-340,289,o), (-386,238,cs), (-487,125,l), (-447,94,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asterisk_slash.liga.glyph000066400000000000000000000010601472355150100326400ustar00rootroot00000000000000{ glyphname = asterisk_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,-80); ref = asterisk; }, { alignment = -1; ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,-80); ref = asterisk; }, { alignment = -1; ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,-80); ref = asterisk; }, { alignment = -1; ref = slash; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asteriskoperator.circled.glyph000066400000000000000000000071371472355150100337260ustar00rootroot00000000000000{ glyphname = asteriskoperator.circled; layers = ( { background = { shapes = ( { pos = (0,-11); ref = asterisk; } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { closed = 1; nodes = ( (239,196,ls), (277,251,o), (286,276,o), (294,299,c), (305,299,l), (314,274,o), (324,248,o), (360,196,cs), (408,128,l), (452,159,l), (404,227,ls), (368,279,o), (347,296,o), (327,312,c), (332,326,l), (358,328,o), (383,331,o), (437,351,cs), (522,382,l), (504,432,l), (418,402,ls), (365,383,o), (342,367,o), (323,353,c), (314,360,l), (321,384,o), (327,410,o), (327,469,cs), (327,555,l), (273,555,l), (273,469,ls), (273,410,o), (279,384,o), (286,360,c), (277,354,l), (257,368,o), (235,383,o), (180,403,cs), (97,433,l), (78,383,l), (162,352,ls), (216,332,o), (244,329,o), (267,328,c), (272,313,l), (251,296,o), (231,278,o), (195,227,cs), (147,159,l), (192,128,l) ); } ); width = 600; }, { background = { shapes = ( { pos = (0,-10); ref = asterisk; } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { closed = 1; nodes = ( (235,162,ls), (260,199,o), (283,254,o), (296,290,c), (303,290,l), (315,254,o), (338,198,o), (363,162,cs), (399,110,l), (471,160,l), (435,212,ls), (410,248,o), (366,288,o), (336,312,c), (340,320,l), (378,323,o), (435,330,o), (476,345,cs), (538,367,l), (508,450,l), (446,428,ls), (404,413,o), (354,380,o), (323,357,c), (318,361,l), (329,398,o), (344,459,o), (344,505,cs), (344,565,l), (256,565,l), (256,505,ls), (256,459,o), (271,398,o), (281,361,c), (276,357,l), (245,380,o), (195,413,o), (153,428,cs), (92,450,l), (62,367,l), (123,345,ls), (164,330,o), (222,323,o), (260,320,c), (263,313,l), (234,289,o), (189,249,o), (163,212,cs), (128,161,l), (200,111,l) ); } ); width = 600; }, { background = { shapes = ( { pos = (0,-7); ref = asterisk; } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { closed = 1; nodes = ( (229,120,ls), (262,167,o), (286,250,o), (297,292,c), (303,292,l), (314,250,o), (338,167,o), (371,120,cs), (390,93,l), (497,167,l), (478,195,ls), (446,243,o), (378,291,o), (342,315,c), (344,319,l), (389,319,o), (469,322,o), (521,341,cs), (554,353,l), (509,475,l), (476,463,ls), (424,444,o), (360,394,o), (326,365,c), (322,368,l), (337,409,o), (365,490,o), (365,548,cs), (365,575,l), (235,575,l), (235,548,ls), (235,490,o), (263,409,o), (278,368,c), (273,364,l), (239,393,o), (175,445,o), (123,463,cs), (91,474,l), (47,352,l), (78,341,ls), (130,322,o), (211,319,o), (256,319,c), (258,315,l), (222,290,o), (155,241,o), (122,194,cs), (103,166,l), (210,92,l) ); } ); width = 600; } ); unicode = 8859; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/asymptoticallyequal.glyph000066400000000000000000000012271472355150100330210ustar00rootroot00000000000000{ glyphname = asymptoticallyequal; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (497,195,l), (504,240,l), (84,240,l), (77,195,l) ); }, { pos = (18,114); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (513,170,l), (526,250,l), (66,250,l), (53,170,l) ); }, { pos = (19,114); ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (533,135,l), (555,275,l), (45,275,l), (23,135,l) ); }, { pos = (19,114); ref = asciitilde; } ); width = 600; } ); unicode = 8771; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/at.glyph000066400000000000000000000053661472355150100273270ustar00rootroot00000000000000{ glyphname = at; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (323,-179,l), (340,-69,l), (270,-69,ls), (154,-69,o), (100,-5,o), (119,111,cs), (172,450,ls), (191,569,o), (264,635,o), (365,635,cs), (464,635,o), (509,586,o), (495,500,cs), (493,487,l), (483,410,l), (466,410,l), (479,400,l), (488,457,o), (450,495,o), (384,495,cs), (302,495,o), (250,434,o), (233,330,cs), (216,220,ls), (199,116,o), (233,55,o), (315,55,cs), (380,55,o), (431,94,o), (440,151,c), (425,140,l), (441,140,l), (429,65,l), (546,65,l), (615,500,ls), (637,638,o), (554,740,o), (388,740,cs), (208,740,o), (81,630,o), (52,450,cs), (-1,111,ls), (-30,-69,o), (67,-179,o), (253,-179,cs) ); }, { closed = 1; nodes = ( (339,140,o), (322,162,o), (331,220,cs), (348,330,ls), (356,381,o), (382,410,o), (421,410,cs), (459,410,o), (476,381,o), (468,330,cs), (451,220,ls), (441,161,o), (420,140,o), (378,140,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (322,-180,l), (334,-105,l), (264,-105,ls), (140,-105,o), (77,-23,o), (98,110,cs), (152,450,ls), (174,589,o), (257,670,o), (377,670,cs), (484,670,o), (532,608,o), (514,495,cs), (514,490,l), (504,410,l), (487,410,l), (499,399,l), (507,451,o), (471,485,o), (407,485,cs), (320,485,o), (264,431,o), (248,330,cs), (229,210,ls), (213,109,o), (252,55,o), (339,55,cs), (403,55,o), (450,89,o), (458,140,c), (438,130,l), (459,130,l), (448,65,l), (526,65,l), (594,495,ls), (618,647,o), (540,740,o), (388,740,cs), (220,740,o), (101,630,o), (72,450,cs), (18,110,ls), (-10,-67,o), (81,-180,o), (252,-180,cs) ); }, { closed = 1; nodes = ( (321,118,o), (299,147,o), (309,210,cs), (328,330,ls), (338,393,o), (369,422,o), (423,422,cs), (478,422,o), (498,394,o), (488,331,cs), (471,220,ls), (460,151,o), (430,118,o), (375,118,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (328,-179,l), (335,-134,l), (260,-134,ls), (128,-134,o), (65,-37,o), (89,116,cs), (141,445,ls), (167,603,o), (252,696,o), (381,696,cs), (493,696,o), (549,616,o), (528,485,cs), (527,480,l), (521,410,l), (494,410,l), (513,390,l), (522,451,o), (485,485,o), (411,485,cs), (325,485,o), (270,434,o), (255,340,cs), (234,210,ls), (218,110,o), (257,55,o), (343,55,cs), (413,55,o), (466,93,o), (475,150,c), (453,130,l), (477,130,l), (466,65,l), (511,65,l), (578,485,ls), (603,641,o), (529,740,o), (388,740,cs), (230,740,o), (120,628,o), (91,445,cs), (39,116,ls), (11,-64,o), (91,-179,o), (253,-179,cs) ); }, { closed = 1; nodes = ( (301,100,o), (273,137,o), (284,210,cs), (305,340,ls), (315,406,o), (355,440,o), (421,440,cs), (485,440,o), (515,404,o), (505,340,cs), (484,210,ls), (473,140,o), (431,100,o), (367,100,cs) ); } ); width = 600; } ); unicode = 64; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/at_underscore.liga.glyph000066400000000000000000000056071472355150100324710ustar00rootroot00000000000000{ glyphname = at_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (470,-165,l), (492,-25,l), (-323,-25,ls), (-439,-25,o), (-493,39,o), (-474,155,cs), (-428,450,ls), (-409,569,o), (-336,635,o), (-228,635,cs), (-137,635,o), (-87,612,o), (-98,540,cs), (-100,530,l), (-91,460,l), (-126,460,l), (-114,440,l), (-105,497,o), (-143,535,o), (-209,535,cs), (-291,535,o), (-349,474,o), (-365,370,cs), (-383,260,ls), (-399,156,o), (-361,95,o), (-279,95,cs), (-213,95,o), (-163,133,o), (-154,191,c), (-172,160,l), (-140,160,l), (-158,105,l), (-47,105,l), (22,540,ls), (43,678,o), (-46,740,o), (-212,740,cs), (-392,740,o), (-519,630,o), (-548,450,cs), (-594,155,ls), (-623,-25,o), (-531,-165,o), (-345,-165,cs) ); }, { closed = 1; nodes = ( (-254,180,o), (-272,202,o), (-263,260,cs), (-245,370,ls), (-237,421,o), (-212,450,o), (-173,450,cs), (-135,450,o), (-117,421,o), (-125,370,cs), (-143,260,ls), (-152,201,o), (-173,180,o), (-215,180,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (-323,-25,ls), (-447,-25,o), (-510,57,o), (-489,190,cs), (-448,450,ls), (-426,589,o), (-343,670,o), (-223,670,cs), (-116,670,o), (-61,648,o), (-79,535,cs), (-80,530,l), (-81,460,l), (-105,460,l), (-94,439,l), (-86,491,o), (-123,525,o), (-187,525,cs), (-274,525,o), (-329,471,o), (-345,370,cs), (-364,250,ls), (-380,149,o), (-342,95,o), (-255,95,cs), (-191,95,o), (-144,129,o), (-135,180,c), (-158,160,l), (-130,160,l), (-138,105,l), (-67,105,l), (1,535,ls), (25,687,o), (-60,740,o), (-212,740,cs), (-380,740,o), (-499,630,o), (-528,450,cs), (-569,190,ls), (-597,13,o), (-506,-100,o), (-335,-100,cs) ); }, { closed = 1; nodes = ( (-273,158,o), (-294,187,o), (-284,250,cs), (-265,370,ls), (-255,433,o), (-225,462,o), (-171,462,cs), (-116,462,o), (-95,434,o), (-105,371,cs), (-123,260,ls), (-134,191,o), (-164,158,o), (-219,158,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,-70,l), (492,-25,l), (-323,-25,l), (-455,-25,o), (-518,72,o), (-493,225,cs), (-459,445,ls), (-433,603,o), (-348,696,o), (-219,696,cs), (-107,696,o), (-45,656,o), (-66,525,cs), (-67,520,l), (-73,450,l), (-100,450,l), (-81,430,l), (-71,491,o), (-109,525,o), (-183,525,cs), (-269,525,o), (-324,474,o), (-339,380,cs), (-359,250,ls), (-375,150,o), (-337,95,o), (-251,95,cs), (-181,95,o), (-128,133,o), (-119,190,c), (-141,170,l), (-117,170,l), (-127,105,l), (-82,105,l), (-16,525,ls), (9,681,o), (-71,740,o), (-212,740,cs), (-370,740,o), (-480,628,o), (-509,445,cs), (-543,225,ls), (-572,45,o), (-492,-70,o), (-330,-70,c) ); }, { closed = 1; nodes = ( (-293,140,o), (-321,177,o), (-309,250,cs), (-289,380,ls), (-278,446,o), (-239,480,o), (-173,480,cs), (-109,480,o), (-79,444,o), (-89,380,cs), (-109,250,ls), (-120,180,o), (-163,140,o), (-227,140,cs) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/atilde.glyph000066400000000000000000000007001472355150100301500ustar00rootroot00000000000000{ glyphname = atilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (605,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = tildecomb; } ); width = 600; } ); unicode = 227; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/b.glyph000066400000000000000000000035611472355150100271370ustar00rootroot00000000000000{ glyphname = b; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (422,-10,o), (508,73,o), (528,205,cs), (551,345,ls), (571,476,o), (513,560,o), (402,560,cs), (311,560,o), (247,505,o), (232,410,c), (272,445,l), (237,445,l), (264,580,l), (288,730,l), (138,730,l), (22,0,l), (167,0,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs) ); }, { closed = 1; nodes = ( (223,120,o), (196,152,o), (205,210,cs), (226,340,ls), (235,397,o), (272,430,o), (327,430,cs), (383,430,o), (409,397,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (396,-10,o), (479,68,o), (499,194,cs), (524,355,ls), (544,482,o), (488,560,o), (377,560,cs), (287,560,o), (218,507,o), (205,424,c), (226,445,l), (206,445,l), (228,570,l), (254,730,l), (164,730,l), (48,0,l), (138,0,l), (155,105,l), (173,105,l), (158,126,l), (145,42,o), (195,-10,o), (286,-10,cs) ); }, { closed = 1; nodes = ( (195,68,o), (157,117,o), (170,200,cs), (193,350,ls), (207,433,o), (260,482,o), (334,482,cs), (410,482,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (345,68,o), (269,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (462,69,o), (481,189,cs), (508,360,ls), (527,480,o), (468,560,o), (358,560,cs), (262,560,o), (185,501,o), (171,410,c), (209,475,l), (191,475,l), (208,580,l), (232,730,l), (182,730,l), (66,0,l), (116,0,l), (128,75,l), (156,75,l), (128,140,l), (114,49,o), (171,-10,o), (267,-10,cs) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,189,cs), (173,360,ls), (189,458,o), (250,517,o), (341,517,cs), (430,517,o), (474,458,o), (458,360,cs), (431,189,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; } ); unicode = 98; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/backslash.glyph000066400000000000000000000010421472355150100306410ustar00rootroot00000000000000{ glyphname = backslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (488,-110,l), (287,830,l), (136,830,l), (337,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (464,-110,l), (252,830,l), (162,830,l), (374,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,-110,l), (234,830,l), (182,830,l), (392,-110,l) ); } ); width = 600; } ); unicode = 92; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ballotX_.glyph000066400000000000000000000015071472355150100304600ustar00rootroot00000000000000{ glyphname = ballotX; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (299,327,l), (524,102,l), (558,136,l), (333,361,l), (557,585,l), (525,617,l), (301,393,l), (76,618,l), (42,584,l), (267,359,l), (43,135,l), (75,103,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (299,303,l), (511,91,l), (569,149,l), (357,361,l), (568,571,l), (511,628,l), (301,417,l), (89,629,l), (31,571,l), (243,359,l), (32,149,l), (89,92,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (299,258,l), (486,71,l), (588,173,l), (401,360,l), (587,546,l), (487,646,l), (301,460,l), (114,647,l), (12,545,l), (199,358,l), (13,172,l), (113,72,l) ); } ); width = 600; } ); unicode = 10007; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar.glyph000066400000000000000000000010351472355150100274540ustar00rootroot00000000000000{ glyphname = bar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,-110,l), (462,830,l), (312,830,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (284,-110,l), (432,830,l), (342,830,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (412,830,l), (362,830,l), (214,-110,l) ); } ); width = 600; } ); unicode = 124; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_bar.liga.glyph000066400000000000000000000010731472355150100312150ustar00rootroot00000000000000{ glyphname = bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-60,0); ref = bar; }, { alignment = -1; pos = (-540,0); ref = bar; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-60,0); ref = bar; }, { alignment = -1; pos = (-540,0); ref = bar; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-65,0); ref = bar; }, { alignment = -1; pos = (-535,0); ref = bar; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_bar_bar.liga.glyph000066400000000000000000000020421472355150100320360ustar00rootroot00000000000000{ glyphname = bar_bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (205,-110,l), (353,830,l), (203,830,l), (55,-110,l) ); }, { closed = 1; nodes = ( (-776,-110,l), (-628,830,l), (-778,830,l), (-926,-110,l) ); }, { closed = 1; nodes = ( (-293,-110,l), (-145,830,l), (-295,830,l), (-443,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (164,-110,l), (312,830,l), (222,830,l), (74,-110,l) ); }, { closed = 1; nodes = ( (-796,-110,l), (-648,830,l), (-738,830,l), (-886,-110,l) ); }, { closed = 1; nodes = ( (-316,-110,l), (-168,830,l), (-258,830,l), (-406,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (144,-110,l), (292,830,l), (242,830,l), (94,-110,l) ); }, { closed = 1; nodes = ( (-816,-110,l), (-668,830,l), (-718,830,l), (-866,-110,l) ); }, { closed = 1; nodes = ( (-336,-110,l), (-188,830,l), (-238,830,l), (-386,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_bar_bar_greater.liga.glyph000066400000000000000000000017531472355150100335570ustar00rootroot00000000000000{ glyphname = bar_bar_bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-842,-85,l), (-710,750,l), (-860,750,l), (-992,-85,l) ); }, { closed = 1; nodes = ( (-1272,-85,l), (-1140,750,l), (-1290,750,l), (-1422,-85,l) ); }, { alignment = -1; pos = (-150,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-872,-85,l), (-740,750,l), (-830,750,l), (-962,-85,l) ); }, { closed = 1; nodes = ( (-1302,-85,l), (-1170,750,l), (-1260,750,l), (-1392,-85,l) ); }, { alignment = -1; pos = (-150,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-892,-85,l), (-760,750,l), (-810,750,l), (-942,-85,l) ); }, { closed = 1; nodes = ( (-1322,-85,l), (-1190,750,l), (-1240,750,l), (-1372,-85,l) ); }, { alignment = -1; pos = (-150,0); ref = bar_greater.liga; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_bar_equal.liga.glyph000066400000000000000000000021461472355150100324060ustar00rootroot00000000000000{ glyphname = bar_bar_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-367,-85,l), (-333,135,l), (348,135,l), (371,275,l), (-310,275,l), (-293,385,l), (388,385,l), (410,525,l), (-271,525,l), (-235,750,l), (-385,750,l), (-517,-85,l) ); }, { closed = 1; nodes = ( (-797,-85,l), (-665,750,l), (-815,750,l), (-947,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-397,-85,l), (-357,170,l), (353,170,l), (366,250,l), (-344,250,l), (-319,410,l), (391,410,l), (404,490,l), (-306,490,l), (-265,750,l), (-355,750,l), (-487,-85,l) ); }, { closed = 1; nodes = ( (-827,-85,l), (-695,750,l), (-785,750,l), (-917,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-416,-85,l), (-372,195,l), (323,195,l), (330,240,l), (-365,240,l), (-336,421,l), (359,421,l), (366,466,l), (-329,466,l), (-284,750,l), (-334,750,l), (-466,-85,l) ); }, { closed = 1; nodes = ( (-842,-85,l), (-710,750,l), (-760,750,l), (-892,-85,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_bar_greater.liga.glyph000066400000000000000000000013311472355150100327230ustar00rootroot00000000000000{ glyphname = bar_bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-747,-85,l), (-615,750,l), (-765,750,l), (-897,-85,l) ); }, { alignment = -1; pos = (-60,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-777,-85,l), (-645,750,l), (-735,750,l), (-867,-85,l) ); }, { alignment = -1; pos = (-55,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-797,-85,l), (-665,750,l), (-715,750,l), (-847,-85,l) ); }, { alignment = -1; pos = (-55,0); ref = bar_greater.liga; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_bar_hyphen.liga.glyph000066400000000000000000000017051472355150100325720ustar00rootroot00000000000000{ glyphname = bar_bar_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-367,-85,l), (-313,260,l), (367,260,l), (389,400,l), (-291,400,l), (-235,750,l), (-385,750,l), (-517,-85,l) ); }, { closed = 1; nodes = ( (-797,-85,l), (-665,750,l), (-815,750,l), (-947,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-397,-85,l), (-338,290,l), (372,290,l), (385,370,l), (-325,370,l), (-265,750,l), (-355,750,l), (-487,-85,l) ); }, { closed = 1; nodes = ( (-827,-85,l), (-695,750,l), (-785,750,l), (-917,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-416,-85,l), (-354,310,l), (375,310,l), (382,355,l), (-347,355,l), (-284,750,l), (-334,750,l), (-466,-85,l) ); }, { closed = 1; nodes = ( (-842,-85,l), (-710,750,l), (-760,750,l), (-892,-85,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_braceright.liga.glyph000066400000000000000000000037601472355150100325700ustar00rootroot00000000000000{ glyphname = bar_braceright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (28,-111,ls), (137,-111,o), (228,-38,o), (238,74,cs), (251,219,ls), (254,261,o), (290,289,o), (332,289,cs), (457,289,l), (479,429,l), (354,429,ls), (312,429,o), (285,457,o), (295,499,cs), (329,650,ls), (353,760,o), (287,830,o), (177,830,cs), (22,830,l), (0,690,l), (125,690,ls), (163,690,o), (186,673,o), (176,630,cs), (142,479,ls), (125,406,o), (180,357,o), (278,357,c), (279,364,l), (181,364,o), (111,314,o), (104,239,cs), (90,89,ls), (86,53,o), (57,29,o), (21,29,cs), (-104,29,l), (-127,-111,l) ); }, { alignment = -1; pos = (-580,0); ref = bar; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1,-110,ls), (117,-110,o), (199,-49,o), (210,56,cs), (226,220,ls), (233,291,o), (256,320,o), (342,320,cs), (452,320,l), (464,400,l), (354,400,ls), (267,400,o), (255,429,o), (270,500,cs), (306,664,ls), (329,769,o), (265,830,o), (147,830,cs), (32,830,l), (20,750,l), (135,750,ls), (198,750,o), (228,721,o), (216,664,cs), (180,500,ls), (161,413,o), (203,358,o), (288,358,c), (288,363,l), (204,363,o), (144,306,o), (136,220,cs), (120,56,ls), (114,-1,o), (74,-30,o), (11,-30,cs), (-104,-30,l), (-116,-110,l) ); }, { alignment = -1; pos = (-580,0); ref = bar; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (23,-110,ls), (119,-110,o), (189,-55,o), (197,40,cs), (214,237,ls), (220,308,o), (244,336,o), (330,336,cs), (440,336,l), (447,382,l), (337,382,ls), (255,382,o), (236,408,o), (253,482,cs), (298,680,ls), (320,775,o), (268,830,o), (172,830,cs), (58,830,l), (51,785,l), (165,785,ls), (227,785,o), (263,745,o), (248,680,cs), (203,482,ls), (186,407,o), (221,357,o), (288,357,c), (289,364,l), (222,364,o), (171,313,o), (164,237,cs), (147,40,ls), (141,-25,o), (92,-65,o), (30,-65,cs), (-84,-65,l), (-91,-110,l) ); }, { alignment = -1; pos = (-580,0); ref = bar; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_bracketright.liga.glyph000066400000000000000000000016761472355150100331330ustar00rootroot00000000000000{ glyphname = bar_bracketright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (309,-110,l), (457,830,l), (42,830,l), (20,690,l), (285,690,l), (181,30,l), (-84,30,l), (-106,-110,l) ); }, { closed = 1; nodes = ( (-281,-110,l), (-133,830,l), (-283,830,l), (-431,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (412,830,l), (27,830,l), (15,750,l), (310,750,l), (186,-30,l), (-109,-30,l), (-121,-110,l) ); }, { closed = 1; nodes = ( (-296,-110,l), (-148,830,l), (-238,830,l), (-386,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (244,-110,l), (392,830,l), (37,830,l), (30,785,l), (335,785,l), (201,-65,l), (-104,-65,l), (-111,-110,l) ); }, { closed = 1; nodes = ( (-316,-110,l), (-168,830,l), (-218,830,l), (-366,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_equal.liga.glyph000066400000000000000000000015431472355150100315620ustar00rootroot00000000000000{ glyphname = bar_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-282,-85,l), (-248,135,l), (397,135,l), (420,275,l), (-225,275,l), (-208,385,l), (437,385,l), (459,525,l), (-186,525,l), (-150,750,l), (-300,750,l), (-432,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-312,-85,l), (-272,170,l), (403,170,l), (416,250,l), (-259,250,l), (-234,410,l), (441,410,l), (454,490,l), (-221,490,l), (-180,750,l), (-270,750,l), (-402,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-332,-85,l), (-288,195,l), (407,195,l), (414,240,l), (-281,240,l), (-252,421,l), (443,421,l), (450,466,l), (-245,466,l), (-200,750,l), (-250,750,l), (-382,-85,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_equal_greater.liga.glyph000066400000000000000000000022511472355150100332700ustar00rootroot00000000000000{ glyphname = bar_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-968,35,l), (-953,135,l), (183,135,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (194,625,l), (252,525,l), (-891,525,l), (-875,625,l), (-1025,625,l), (-1118,35,l) ); }, { closed = 1; nodes = ( (-913,385,l), (335,385,l), (364,331,l), (312,275,l), (-930,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1018,35,l), (-997,170,l), (274,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-946,490,l), (-925,625,l), (-1015,625,l), (-1108,35,l) ); }, { closed = 1; nodes = ( (-959,410,l), (383,410,l), (432,328,l), (351,250,l), (-984,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1048,35,l), (-1023,195,l), (327,195,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-980,466,l), (-955,625,l), (-1005,625,l), (-1098,35,l) ); }, { closed = 1; nodes = ( (-987,421,l), (405,421,l), (465,333,l), (372,240,l), (-1016,240,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_greater.liga.glyph000066400000000000000000000020561472355150100321040ustar00rootroot00000000000000{ glyphname = bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-247,-85,l), (382,258,l), (405,402,l), (-115,750,l), (-265,750,l), (-397,-85,l) ); }, { closed = 1; nodes = ( (-138,594,l), (204,367,ls), (226,352,o), (251,343,o), (263,340,c), (251,336,o), (222,325,o), (194,310,c), (-218,88,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-292,-85,l), (360,280,l), (376,380,l), (-160,750,l), (-250,750,l), (-382,-85,l) ); }, { closed = 1; nodes = ( (-175,650,l), (226,376,ls), (253,358,o), (279,342,o), (291,335,c), (277,329,o), (246,314,o), (214,296,cs), (-274,26,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-312,-85,l), (344,302,l), (352,356,l), (-180,750,l), (-230,750,l), (-362,-85,l) ); }, { closed = 1; nodes = ( (-188,694,l), (211,402,ls), (252,372,o), (291,345,o), (309,333,c), (287,322,o), (239,296,o), (190,267,cs), (-301,-23,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_hyphen.liga.glyph000066400000000000000000000013021472355150100317370ustar00rootroot00000000000000{ glyphname = bar_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-282,-85,l), (-228,260,l), (417,260,l), (439,400,l), (-206,400,l), (-150,750,l), (-300,750,l), (-432,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-312,-85,l), (-253,290,l), (422,290,l), (435,370,l), (-240,370,l), (-180,750,l), (-270,750,l), (-402,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-332,-85,l), (-270,310,l), (425,310,l), (432,355,l), (-263,355,l), (-200,750,l), (-250,750,l), (-382,-85,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bar_hyphen_greater.liga.glyph000066400000000000000000000016111472355150100334530ustar00rootroot00000000000000{ glyphname = bar_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-968,35,l), (-933,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (323,400,l), (-911,400,l), (-875,625,l), (-1025,625,l), (-1118,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1018,35,l), (-978,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (411,370,l), (-965,370,l), (-925,625,l), (-1015,625,l), (-1108,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1048,35,l), (-1006,305,l), (435,305,l), (169,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (449,355,l), (-998,355,l), (-955,625,l), (-1005,625,l), (-1098,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/be-cy.glyph000066400000000000000000000040061472355150100277100ustar00rootroot00000000000000{ glyphname = "be-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-13,o), (508,75,o), (529,210,cs), (540,279,ls), (562,414,o), (506,494,o), (390,494,cs), (296,494,o), (238,446,o), (227,371,c), (241,385,l), (227,385,l), (238,455,ls), (252,540,o), (306,585,o), (394,585,cs), (559,585,l), (582,730,l), (417,730,ls), (234,730,o), (116,631,o), (88,455,cs), (49,210,ls), (28,75,o), (108,-7,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (210,279,ls), (219,337,o), (256,369,o), (314,369,cs), (372,369,o), (399,337,o), (390,279,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (477,71,o), (498,205,cs), (511,285,ls), (532,416,o), (476,495,o), (360,495,cs), (270,495,o), (208,449,o), (195,370,c), (212,390,l), (198,390,l), (208,455,ls), (227,575,o), (294,640,o), (402,640,cs), (542,640,l), (557,730,l), (417,730,ls), (253,730,o), (146,631,o), (118,455,cs), (78,205,ls), (57,72,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (190,70,o), (155,118,o), (168,205,cs), (181,285,ls), (195,373,o), (245,420,o), (323,420,cs), (400,420,o), (435,372,o), (421,285,cs), (408,205,ls), (395,118,o), (344,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (379,-10,o), (461,66,o), (483,200,cs), (496,285,ls), (518,421,o), (464,495,o), (345,495,cs), (246,495,o), (181,445,o), (168,358,c), (187,393,l), (173,393,l), (186,475,ls), (207,606,o), (287,680,o), (409,680,cs), (534,680,l), (542,730,l), (417,730,ls), (262,730,o), (162,640,o), (136,475,cs), (93,200,ls), (71,66,o), (130,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (172,35,o), (126,97,o), (143,200,cs), (156,285,ls), (172,385,o), (235,452,o), (329,452,cs), (419,452,o), (463,389,o), (446,285,cs), (433,200,ls), (416,97,o), (353,35,o), (263,35,cs) ); } ); width = 600; } ); unicode = 1073; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bell-control.glyph000066400000000000000000000016211472355150100313050ustar00rootroot00000000000000{ glyphname = "bell-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = B; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = B; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = B; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9223; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/beta.glyph000066400000000000000000000047511472355150100276330ustar00rootroot00000000000000{ glyphname = beta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (261,0,ls), (393,0,o), (484,80,o), (504,208,cs), (518,299,o), (479,360,o), (400,376,c), (473,395,o), (529,462,o), (543,550,cs), (561,666,o), (500,740,o), (378,740,cs), (261,740,o), (171,661,o), (152,543,cs), (37,-180,l) ); }, { closed = 1; nodes = ( (202,543,ls), (217,635,o), (283,695,o), (371,695,cs), (463,695,o), (507,637,o), (492,545,cs), (478,457,o), (413,397,o), (324,397,cs), (284,397,l), (277,352,l), (317,352,ls), (422,352,o), (468,297,o), (453,200,cs), (437,102,o), (373,45,o), (268,45,cs), (123,45,l) ); } ); width = 600; }, { hints = ( { place = (20,46); type = Stem; }, { place = (393,51); type = Stem; }, { place = (380,51); type = Stem; }, { horizontal = 1; place = (-54,36); type = Stem; }, { horizontal = 1; place = (281,38); type = Stem; }, { horizontal = 1; place = (606,36); type = Stem; }, { place = (20,46); type = Stem; }, { place = (393,51); type = Stem; }, { place = (380,51); type = Stem; }, { horizontal = 1; place = (-54,36); type = Stem; }, { horizontal = 1; place = (281,38); type = Stem; }, { horizontal = 1; place = (606,36); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,-180,l), (138,0,l), (271,0,ls), (400,0,o), (500,86,o), (519,208,cs), (534,304,o), (495,370,o), (417,391,c), (493,412,o), (547,473,o), (560,554,cs), (579,674,o), (504,740,o), (376,740,cs), (248,740,o), (152,658,o), (133,534,cs), (19,-180,l) ); }, { closed = 1; nodes = ( (223,534,ls), (235,611,o), (289,658,o), (363,658,cs), (436,658,o), (475,613,o), (463,536,cs), (452,465,o), (398,413,o), (324,413,cs), (282,413,l), (270,335,l), (314,335,ls), (395,335,o), (437,288,o), (424,211,cs), (412,134,o), (354,82,o), (274,82,cs), (151,82,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (122,-180,l), (151,0,l), (268,0,ls), (417,0,o), (529,84,o), (549,209,cs), (564,300,o), (519,365,o), (435,387,c), (521,406,o), (576,461,o), (589,545,cs), (608,662,o), (520,740,o), (369,740,cs), (227,740,o), (119,650,o), (98,516,cs), (-13,-180,l) ); }, { closed = 1; nodes = ( (233,516,ls), (242,577,o), (287,615,o), (348,615,cs), (410,615,o), (443,577,o), (434,517,cs), (425,462,o), (385,428,o), (329,428,cs), (284,428,l), (266,318,l), (313,318,ls), (376,318,o), (410,281,o), (400,221,cs), (390,161,o), (347,125,o), (283,125,cs), (171,125,l) ); } ); width = 600; } ); unicode = 946; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bitcoin.glyph000066400000000000000000000051421472355150100303420ustar00rootroot00000000000000{ glyphname = bitcoin; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (164,-140,l), (186,0,l), (266,0,l), (244,-140,l), (282,-140,l), (305,4,l), (411,20,o), (487,93,o), (504,200,cs), (519,294,o), (480,358,o), (401,376,c), (474,394,o), (526,456,o), (540,542,cs), (555,639,o), (508,708,o), (419,725,c), (442,871,l), (404,871,l), (382,730,l), (302,730,l), (324,871,l), (286,871,l), (264,730,l), (182,730,l), (66,0,l), (148,0,l), (126,-140,l) ); }, { closed = 1; nodes = ( (172,353,l), (313,353,ls), (415,353,o), (469,294,o), (454,199,cs), (438,104,o), (366,45,o), (264,45,cs), (123,45,l) ); }, { closed = 1; nodes = ( (224,685,l), (362,685,ls), (455,685,o), (504,630,o), (490,541,cs), (476,452,o), (411,398,o), (317,398,cs), (179,398,l) ); } ); width = 600; }, { hints = ( { place = (46,45); type = Stem; }, { place = (380,51); type = Stem; }, { place = (393,51); type = Stem; }, { horizontal = 1; place = (-44,38); type = Stem; }, { horizontal = 1; place = (286,34); type = Stem; }, { horizontal = 1; place = (594,38); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (173,-140,l), (195,0,l), (265,0,l), (243,-140,l), (303,-140,l), (326,5,l), (430,23,o), (501,96,o), (518,203,cs), (533,297,o), (496,364,o), (420,386,c), (492,405,o), (542,462,o), (555,541,cs), (570,637,o), (527,702,o), (440,723,c), (463,871,l), (403,871,l), (381,730,l), (311,730,l), (333,871,l), (273,871,l), (251,730,l), (165,730,l), (49,0,l), (135,0,l), (113,-140,l) ); }, { closed = 1; nodes = ( (191,341,l), (315,341,ls), (399,341,o), (442,286,o), (430,206,cs), (417,129,o), (358,81,o), (274,81,cs), (150,81,l) ); }, { closed = 1; nodes = ( (240,649,l), (359,649,ls), (436,649,o), (476,605,o), (465,534,cs), (453,463,o), (398,419,o), (321,419,cs), (203,419,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (176,-140,l), (198,0,l), (268,0,l), (246,-140,l), (311,-140,l), (334,6,l), (451,27,o), (532,103,o), (549,211,cs), (567,323,o), (495,379,o), (396,381,c), (488,386,o), (571,446,o), (586,543,cs), (601,636,o), (548,702,o), (448,723,c), (471,871,l), (406,871,l), (384,730,l), (314,730,l), (336,871,l), (271,871,l), (249,730,l), (138,730,l), (22,0,l), (133,0,l), (111,-140,l) ); }, { closed = 1; nodes = ( (217,318,l), (310,318,ls), (375,318,o), (409,280,o), (400,219,cs), (390,158,o), (344,121,o), (279,121,cs), (186,121,l) ); }, { closed = 1; nodes = ( (263,609,l), (351,609,ls), (409,609,o), (440,577,o), (432,523,cs), (423,469,o), (382,436,o), (324,436,cs), (236,436,l) ); } ); width = 600; } ); unicode = 8383; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/blackC_ircle.glyph000066400000000000000000000015331472355150100312500ustar00rootroot00000000000000{ glyphname = blackCircle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); } ); width = 600; } ); unicode = 9679; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/blackD_iamond.glyph000066400000000000000000000010361472355150100314200ustar00rootroot00000000000000{ glyphname = blackDiamond; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); } ); width = 600; } ); unicode = 9670; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/blackS_mallS_quare.glyph000066400000000000000000000010451472355150100324350ustar00rootroot00000000000000{ glyphname = blackSmallSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); } ); width = 600; } ); unicode = 9642; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/blackS_quare.glyph000066400000000000000000000010161472355150100313030ustar00rootroot00000000000000{ glyphname = blackSquare; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); } ); width = 600; } ); unicode = 9632; } boxD_oubleD_ownA_ndH_orizontal.glyph000066400000000000000000000022751472355150100347040ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDoubleDownAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9574; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxD_oubleD_ownA_ndL_eft.glyph000066400000000000000000000017041472355150100335200ustar00rootroot00000000000000{ glyphname = boxDoubleDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,520,l), (-20,520,l), (-20,420,l), (350,420,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,520,l), (-20,520,l), (-20,420,l), (350,420,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,520,l), (-20,520,l), (-20,420,l), (350,420,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9559; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxD_oubleD_ownA_ndR_ight.glyph000066400000000000000000000017051472355150100337040ustar00rootroot00000000000000{ glyphname = boxDoubleDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,420,l), (620,420,l), (620,520,l), (150,520,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,420,l), (620,420,l), (620,520,l), (150,520,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,420,l), (620,420,l), (620,520,l), (150,520,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); } ); width = 600; } ); unicode = 9556; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxD_oubleH_orizontal.glyph000066400000000000000000000014331472355150100332050ustar00rootroot00000000000000{ glyphname = boxDoubleHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; } ); unicode = 9552; } boxD_oubleU_pA_ndH_orizontal.glyph000066400000000000000000000022731472355150100343570ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDoubleUpAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9577; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxD_oubleU_pA_ndL_eft.glyph000066400000000000000000000017021472355150100331730ustar00rootroot00000000000000{ glyphname = boxDoubleUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,220,l), (450,1120,l), (350,1120,l), (350,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,220,l), (450,1120,l), (350,1120,l), (350,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,220,l), (450,1120,l), (350,1120,l), (350,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9565; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxD_oubleU_pA_ndR_ight.glyph000066400000000000000000000017031472355150100333570ustar00rootroot00000000000000{ glyphname = boxDoubleUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (250,320,l), (250,1120,l), (150,1120,l), (150,220,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (250,320,l), (250,1120,l), (150,1120,l), (150,220,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (250,320,l), (250,1120,l), (150,1120,l), (150,220,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; } ); unicode = 9562; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxD_oubleV_ertical.glyph000066400000000000000000000014611472355150100326260ustar00rootroot00000000000000{ glyphname = boxDoubleVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9553; } boxD_oubleV_erticalA_ndH_orizontal.glyph000066400000000000000000000031341472355150100355410ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDoubleVerticalAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; } ); unicode = 9580; } boxD_oubleV_erticalA_ndL_eft.glyph000066400000000000000000000023071472355150100343030ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDoubleVerticalAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9571; } boxD_oubleV_erticalA_ndR_ight.glyph000066400000000000000000000023101472355150100344600ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDoubleVerticalAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; } ); unicode = 9568; } boxD_ownD_oubleA_ndH_orizontalS_ingle.glyph000066400000000000000000000015711472355150100362030ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownDoubleAndHorizontalSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9573; } boxD_ownD_oubleA_ndL_eftS_ingle.glyph000066400000000000000000000014451472355150100347440ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownDoubleAndLeftSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9558; } boxD_ownD_oubleA_ndR_ightS_ingle.glyph000066400000000000000000000014461472355150100351300ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownDoubleAndRightSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (150,420,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (150,420,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (150,420,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9555; } boxD_ownH_eavyA_ndH_orizontalL_ight.glyph000066400000000000000000000013251472355150100356700ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownHeavyAndHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9520; } boxD_ownH_eavyA_ndL_eftL_ight.glyph000066400000000000000000000012011472355150100344220ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownHeavyAndLeftLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9490; } boxD_ownH_eavyA_ndL_eftU_pL_ight.glyph000066400000000000000000000014451472355150100351000ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownHeavyAndLeftUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1020,l), (250,1020,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1020,l), (250,1020,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1020,l), (250,1020,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9511; } boxD_ownH_eavyA_ndR_ightL_ight.glyph000066400000000000000000000012021472355150100346060ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownHeavyAndRightLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9486; } boxD_ownH_eavyA_ndR_ightU_pL_ight.glyph000066400000000000000000000014461472355150100352640ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownHeavyAndRightUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9503; } boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glyph000066400000000000000000000015711472355150100363370ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownHeavyAndUpHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9537; } boxD_ownL_ightA_ndH_orizontalH_eavy.glyph000066400000000000000000000013251472355150100356700ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownLightAndHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9519; } boxD_ownL_ightA_ndL_eftH_eavy.glyph000066400000000000000000000012011472355150100344220ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownLightAndLeftHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9489; } boxD_ownL_ightA_ndL_eftU_pH_eavy.glyph000066400000000000000000000014451472355150100351000ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownLightAndLeftUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9513; } boxD_ownL_ightA_ndR_ightH_eavy.glyph000066400000000000000000000012021472355150100346060ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownLightAndRightHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9485; } boxD_ownL_ightA_ndR_ightU_pH_eavy.glyph000066400000000000000000000014461472355150100352640ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownLightAndRightUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9505; } boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glyph000066400000000000000000000015711472355150100363370ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownLightAndUpHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9543; } boxD_ownS_ingleA_ndH_orizontalD_ouble.glyph000066400000000000000000000017121472355150100362000ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownSingleAndHorizontalDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9572; } boxD_ownS_ingleA_ndL_eftD_ouble.glyph000066400000000000000000000014371472355150100347450ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownSingleAndLeftDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9557; } boxD_ownS_ingleA_ndR_ightD_ouble.glyph000066400000000000000000000014401472355150100351220ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxDownSingleAndRightDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (250,520,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (250,520,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (250,520,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9554; } boxH_eavyD_oubleD_ashH_orizontal.glyph000066400000000000000000000014361472355150100352240ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyDoubleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (525,270,l), (525,470,l), (375,470,l), (375,270,l) ); }, { closed = 1; nodes = ( (225,270,l), (225,470,l), (75,470,l), (75,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (525,270,l), (525,470,l), (375,470,l), (375,270,l) ); }, { closed = 1; nodes = ( (225,270,l), (225,470,l), (75,470,l), (75,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (525,270,l), (525,470,l), (375,470,l), (375,270,l) ); }, { closed = 1; nodes = ( (225,270,l), (225,470,l), (75,470,l), (75,270,l) ); } ); width = 600; } ); unicode = 9549; } boxH_eavyD_oubleD_ashV_ertical.glyph000066400000000000000000000014501472355150100346400ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyDoubleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-145,l), (400,270,l), (200,270,l), (200,-145,l) ); }, { closed = 1; nodes = ( (400,460,l), (400,873,l), (200,873,l), (200,460,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-145,l), (400,270,l), (200,270,l), (200,-145,l) ); }, { closed = 1; nodes = ( (400,460,l), (400,873,l), (200,873,l), (200,460,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-145,l), (400,270,l), (200,270,l), (200,-145,l) ); }, { closed = 1; nodes = ( (400,460,l), (400,873,l), (200,873,l), (200,460,l) ); } ); width = 600; } ); unicode = 9551; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyD_own.glyph000066400000000000000000000010471472355150100316260ustar00rootroot00000000000000{ glyphname = boxHeavyDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9595; } boxH_eavyD_ownA_ndH_orizontal.glyph000066400000000000000000000013201472355150100345340ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyDownAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9523; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyD_ownA_ndL_eft.glyph000066400000000000000000000011741472355150100333630ustar00rootroot00000000000000{ glyphname = boxHeavyDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9491; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyD_ownA_ndR_ight.glyph000066400000000000000000000011751472355150100335470ustar00rootroot00000000000000{ glyphname = boxHeavyDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9487; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyH_orizontal.glyph000066400000000000000000000010471472355150100330500ustar00rootroot00000000000000{ glyphname = boxHeavyHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9473; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyL_eft.glyph000066400000000000000000000010411472355150100316030ustar00rootroot00000000000000{ glyphname = boxHeavyLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9592; } boxH_eavyL_eftA_ndL_ightR_ight.glyph000066400000000000000000000013121472355150100345730ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyLeftAndLightRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9598; } boxH_eavyQ_uadrupleD_ashH_orizontal.glyph000066400000000000000000000024071472355150100357530ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyQuadrupleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (575,270,l), (575,470,l), (475,470,l), (475,270,l) ); }, { closed = 1; nodes = ( (125,270,l), (125,470,l), (25,470,l), (25,270,l) ); }, { closed = 1; nodes = ( (275,270,l), (275,470,l), (175,470,l), (175,270,l) ); }, { closed = 1; nodes = ( (425,270,l), (425,470,l), (325,470,l), (325,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (575,270,l), (575,470,l), (475,470,l), (475,270,l) ); }, { closed = 1; nodes = ( (125,270,l), (125,470,l), (25,470,l), (25,270,l) ); }, { closed = 1; nodes = ( (275,270,l), (275,470,l), (175,470,l), (175,270,l) ); }, { closed = 1; nodes = ( (425,270,l), (425,470,l), (325,470,l), (325,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (575,270,l), (575,470,l), (475,470,l), (475,270,l) ); }, { closed = 1; nodes = ( (125,270,l), (125,470,l), (25,470,l), (25,270,l) ); }, { closed = 1; nodes = ( (275,270,l), (275,470,l), (175,470,l), (175,270,l) ); }, { closed = 1; nodes = ( (425,270,l), (425,470,l), (325,470,l), (325,270,l) ); } ); width = 600; } ); unicode = 9481; } boxH_eavyQ_uadrupleD_ashV_ertical.glyph000066400000000000000000000024131472355150100353700ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyQuadrupleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,720,l), (400,935,l), (200,935,l), (200,720,l) ); }, { closed = 1; nodes = ( (400,-195,l), (400,20,l), (200,20,l), (200,-195,l) ); }, { closed = 1; nodes = ( (400,110,l), (400,325,l), (200,325,l), (200,110,l) ); }, { closed = 1; nodes = ( (400,415,l), (400,630,l), (200,630,l), (200,415,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,720,l), (400,935,l), (200,935,l), (200,720,l) ); }, { closed = 1; nodes = ( (400,-195,l), (400,20,l), (200,20,l), (200,-195,l) ); }, { closed = 1; nodes = ( (400,110,l), (400,325,l), (200,325,l), (200,110,l) ); }, { closed = 1; nodes = ( (400,415,l), (400,630,l), (200,630,l), (200,415,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,720,l), (400,935,l), (200,935,l), (200,720,l) ); }, { closed = 1; nodes = ( (400,-195,l), (400,20,l), (200,20,l), (200,-195,l) ); }, { closed = 1; nodes = ( (400,110,l), (400,325,l), (200,325,l), (200,110,l) ); }, { closed = 1; nodes = ( (400,415,l), (400,630,l), (200,630,l), (200,415,l) ); } ); width = 600; } ); unicode = 9483; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyR_ight.glyph000066400000000000000000000010421472355150100317670ustar00rootroot00000000000000{ glyphname = boxHeavyRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,270,l) ); } ); width = 600; } ); unicode = 9594; } boxH_eavyT_ripleD_ashH_orizontal.glyph000066400000000000000000000020211472355150100352400ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyTripleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (563,270,l), (563,470,l), (437,470,l), (437,270,l) ); }, { closed = 1; nodes = ( (163,270,l), (163,470,l), (37,470,l), (37,270,l) ); }, { closed = 1; nodes = ( (363,270,l), (363,470,l), (237,470,l), (237,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (563,270,l), (563,470,l), (437,470,l), (437,270,l) ); }, { closed = 1; nodes = ( (163,270,l), (163,470,l), (37,470,l), (37,270,l) ); }, { closed = 1; nodes = ( (363,270,l), (363,470,l), (237,470,l), (237,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (563,270,l), (563,470,l), (437,470,l), (437,270,l) ); }, { closed = 1; nodes = ( (163,270,l), (163,470,l), (37,470,l), (37,270,l) ); }, { closed = 1; nodes = ( (363,270,l), (363,470,l), (237,470,l), (237,270,l) ); } ); width = 600; } ); unicode = 9477; } boxH_eavyT_ripleD_ashV_ertical.glyph000066400000000000000000000020331472355150100346630ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyTripleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,182,l), (400,539,l), (200,539,l), (200,182,l) ); }, { closed = 1; nodes = ( (400,-219,l), (400,107,l), (200,107,l), (200,-219,l) ); }, { closed = 1; nodes = ( (400,612,l), (400,938,l), (200,938,l), (200,612,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,182,l), (400,539,l), (200,539,l), (200,182,l) ); }, { closed = 1; nodes = ( (400,-219,l), (400,107,l), (200,107,l), (200,-219,l) ); }, { closed = 1; nodes = ( (400,612,l), (400,938,l), (200,938,l), (200,612,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,182,l), (400,539,l), (200,539,l), (200,182,l) ); }, { closed = 1; nodes = ( (400,-219,l), (400,107,l), (200,107,l), (200,-219,l) ); }, { closed = 1; nodes = ( (400,612,l), (400,938,l), (200,938,l), (200,612,l) ); } ); width = 600; } ); unicode = 9479; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyU_p.glyph000066400000000000000000000010451472355150100313010ustar00rootroot00000000000000{ glyphname = boxHeavyUp; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; } ); unicode = 9593; } boxH_eavyU_pA_ndH_orizontal.glyph000066400000000000000000000013161472355150100342160ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyUpAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9531; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyU_pA_ndL_eft.glyph000066400000000000000000000011721472355150100330360ustar00rootroot00000000000000{ glyphname = boxHeavyUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9499; } boxH_eavyU_pA_ndL_ightD_own.glyph000066400000000000000000000013231472355150100341210ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyUpAndLightDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9599; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyU_pA_ndR_ight.glyph000066400000000000000000000011731472355150100332220ustar00rootroot00000000000000{ glyphname = boxHeavyUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l) ); } ); width = 600; } ); unicode = 9495; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxH_eavyV_ertical.glyph000066400000000000000000000010611472355150100324640ustar00rootroot00000000000000{ glyphname = boxHeavyVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9475; } boxH_eavyV_erticalA_ndH_orizontal.glyph000066400000000000000000000015661472355150100354120ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyVerticalAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9547; } boxH_eavyV_erticalA_ndL_eft.glyph000066400000000000000000000013241472355150100341430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyVerticalAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9515; } boxH_eavyV_erticalA_ndR_ight.glyph000066400000000000000000000013251472355150100343270ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxHeavyVerticalAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9507; } boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glyph000066400000000000000000000017061472355150100362350ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftDownHeavyAndRightUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9541; } boxL_eftH_eavyA_ndR_ightD_ownL_ight.glyph000066400000000000000000000014421472355150100355660ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftHeavyAndRightDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9517; } boxL_eftH_eavyA_ndR_ightU_pL_ight.glyph000066400000000000000000000014401472355150100352410ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftHeavyAndRightUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9525; } boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glyph000066400000000000000000000015721472355150100364340ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftHeavyAndRightVerticalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9533; } boxL_eftL_ightA_ndR_ightD_ownH_eavy.glyph000066400000000000000000000014421472355150100355660ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftLightAndRightDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9522; } boxL_eftL_ightA_ndR_ightU_pH_eavy.glyph000066400000000000000000000014401472355150100352410ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftLightAndRightUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l) ); } ); width = 600; } ); unicode = 9530; } boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glyph000066400000000000000000000015721472355150100364340ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftLightAndRightVerticalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9546; } boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glyph000066400000000000000000000017061472355150100362350ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLeftUpHeavyAndRightDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9539; } boxL_ightA_rcD_ownA_ndL_eft.glyph000066400000000000000000000015511472355150100340630ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightArcDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,286,o), (218,420,o), (15,420,cs), (-20,420,l), (-20,320,l), (15,320,ls), (158,320,o), (250,226,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,286,o), (218,420,o), (15,420,cs), (-20,420,l), (-20,320,l), (15,320,ls), (158,320,o), (250,226,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,286,o), (218,420,o), (15,420,cs), (-20,420,l), (-20,320,l), (15,320,ls), (158,320,o), (250,226,o), (250,80,cs), (250,-400,l) ); } ); width = 600; } ); unicode = 9582; } boxL_ightA_rcD_ownA_ndR_ight.glyph000066400000000000000000000015601472355150100342460ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightArcDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,226,o), (443,320,o), (585,320,cs), (620,320,l), (620,420,l), (585,420,ls), (383,420,o), (250,286,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,226,o), (443,320,o), (585,320,cs), (620,320,l), (620,420,l), (585,420,ls), (383,420,o), (250,286,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,226,o), (443,320,o), (585,320,cs), (620,320,l), (620,420,l), (585,420,ls), (383,420,o), (250,286,o), (250,80,cs), (250,-400,l) ); } ); width = 600; } ); unicode = 9581; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightA_rcU_pA_ndL_eft.glyph000066400000000000000000000015551472355150100336230ustar00rootroot00000000000000{ glyphname = boxLightArcUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (15,320,ls), (218,320,o), (350,454,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,514,o), (158,420,o), (15,420,cs), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (15,320,ls), (218,320,o), (350,454,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,514,o), (158,420,o), (15,420,cs), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (15,320,ls), (218,320,o), (350,454,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,514,o), (158,420,o), (15,420,cs), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9583; } boxL_ightA_rcU_pA_ndR_ight.glyph000066400000000000000000000015641472355150100337270ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightArcUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (585,420,ls), (443,420,o), (350,514,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,454,o), (383,320,o), (585,320,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (585,420,ls), (443,420,o), (350,514,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,454,o), (383,320,o), (585,320,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (585,420,ls), (443,420,o), (350,514,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,454,o), (383,320,o), (585,320,cs) ); } ); width = 600; } ); unicode = 9584; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightD_iagonalC_ross.glyph000066400000000000000000000020121472355150100335720ustar00rootroot00000000000000{ glyphname = boxLightDiagonalCross; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (300,265,l), (540,-160,l), (620,-160,l), (620,-120,l), (351,360,l), (620,840,l), (620,880,l), (540,880,l), (300,455,l), (60,880,l), (-20,880,l), (-20,840,l), (249,360,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (300,265,l), (540,-160,l), (620,-160,l), (620,-120,l), (351,360,l), (620,840,l), (620,880,l), (540,880,l), (300,455,l), (60,880,l), (-20,880,l), (-20,840,l), (249,360,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (300,265,l), (540,-160,l), (620,-160,l), (620,-120,l), (351,360,l), (620,840,l), (620,880,l), (540,880,l), (300,455,l), (60,880,l), (-20,880,l), (-20,840,l), (249,360,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; } ); unicode = 9587; } boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glyph000066400000000000000000000012161472355150100374430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightDiagonalUpperLeftToLowerRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,-160,l), (620,-120,l), (60,880,l), (-20,880,l), (-20,840,l), (540,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,-160,l), (620,-120,l), (60,880,l), (-20,880,l), (-20,840,l), (540,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,-160,l), (620,-120,l), (60,880,l), (-20,880,l), (-20,840,l), (540,-160,l) ); } ); width = 600; } ); unicode = 9586; } boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glyph000066400000000000000000000012161472355150100374430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightDiagonalUpperRightToLowerLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (620,840,l), (620,880,l), (540,880,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (620,840,l), (620,880,l), (540,880,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (620,840,l), (620,880,l), (540,880,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; } ); unicode = 9585; } boxL_ightD_oubleD_ashH_orizontal.glyph000066400000000000000000000014361472355150100352170ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightDoubleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (530,320,l), (530,420,l), (370,420,l), (370,320,l) ); }, { closed = 1; nodes = ( (230,320,l), (230,420,l), (70,420,l), (70,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (530,320,l), (530,420,l), (370,420,l), (370,320,l) ); }, { closed = 1; nodes = ( (230,320,l), (230,420,l), (70,420,l), (70,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (530,320,l), (530,420,l), (370,420,l), (370,320,l) ); }, { closed = 1; nodes = ( (230,320,l), (230,420,l), (70,420,l), (70,320,l) ); } ); width = 600; } ); unicode = 9548; } boxL_ightD_oubleD_ashV_ertical.glyph000066400000000000000000000014501472355150100346330ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightDoubleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-165,l), (350,290,l), (250,290,l), (250,-165,l) ); }, { closed = 1; nodes = ( (350,440,l), (350,893,l), (250,893,l), (250,440,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-165,l), (350,290,l), (250,290,l), (250,-165,l) ); }, { closed = 1; nodes = ( (350,440,l), (350,893,l), (250,893,l), (250,440,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-165,l), (350,290,l), (250,290,l), (250,-165,l) ); }, { closed = 1; nodes = ( (350,440,l), (350,893,l), (250,893,l), (250,440,l) ); } ); width = 600; } ); unicode = 9550; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightD_own.glyph000066400000000000000000000010471472355150100316210ustar00rootroot00000000000000{ glyphname = boxLightDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9591; } boxL_ightD_ownA_ndH_orizontal.glyph000066400000000000000000000013201472355150100345270ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightDownAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9516; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightD_ownA_ndL_eft.glyph000066400000000000000000000011741472355150100333560ustar00rootroot00000000000000{ glyphname = boxLightDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9488; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightD_ownA_ndR_ight.glyph000066400000000000000000000011751472355150100335420ustar00rootroot00000000000000{ glyphname = boxLightDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9484; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightH_orizontal.glyph000066400000000000000000000010471472355150100330430ustar00rootroot00000000000000{ glyphname = boxLightHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9472; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightL_eft.glyph000066400000000000000000000010411472355150100315760ustar00rootroot00000000000000{ glyphname = boxLightLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9588; } boxL_ightL_eftA_ndH_eavyR_ight.glyph000066400000000000000000000013121472355150100345730ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightLeftAndHeavyRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; } ); unicode = 9596; } boxL_ightQ_uadrupleD_ashH_orizontal.glyph000066400000000000000000000024071472355150100357460ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightQuadrupleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (575,320,l), (575,420,l), (475,420,l), (475,320,l) ); }, { closed = 1; nodes = ( (125,320,l), (125,420,l), (25,420,l), (25,320,l) ); }, { closed = 1; nodes = ( (275,320,l), (275,420,l), (175,420,l), (175,320,l) ); }, { closed = 1; nodes = ( (425,320,l), (425,420,l), (325,420,l), (325,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (575,320,l), (575,420,l), (475,420,l), (475,320,l) ); }, { closed = 1; nodes = ( (125,320,l), (125,420,l), (25,420,l), (25,320,l) ); }, { closed = 1; nodes = ( (275,320,l), (275,420,l), (175,420,l), (175,320,l) ); }, { closed = 1; nodes = ( (425,320,l), (425,420,l), (325,420,l), (325,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (575,320,l), (575,420,l), (475,420,l), (475,320,l) ); }, { closed = 1; nodes = ( (125,320,l), (125,420,l), (25,420,l), (25,320,l) ); }, { closed = 1; nodes = ( (275,320,l), (275,420,l), (175,420,l), (175,320,l) ); }, { closed = 1; nodes = ( (425,320,l), (425,420,l), (325,420,l), (325,320,l) ); } ); width = 600; } ); unicode = 9480; } boxL_ightQ_uadrupleD_ashV_ertical.glyph000066400000000000000000000024131472355150100353630ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightQuadrupleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,720,l), (350,935,l), (250,935,l), (250,720,l) ); }, { closed = 1; nodes = ( (350,-195,l), (350,20,l), (250,20,l), (250,-195,l) ); }, { closed = 1; nodes = ( (350,110,l), (350,325,l), (250,325,l), (250,110,l) ); }, { closed = 1; nodes = ( (350,415,l), (350,630,l), (250,630,l), (250,415,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,720,l), (350,935,l), (250,935,l), (250,720,l) ); }, { closed = 1; nodes = ( (350,-195,l), (350,20,l), (250,20,l), (250,-195,l) ); }, { closed = 1; nodes = ( (350,110,l), (350,325,l), (250,325,l), (250,110,l) ); }, { closed = 1; nodes = ( (350,415,l), (350,630,l), (250,630,l), (250,415,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,720,l), (350,935,l), (250,935,l), (250,720,l) ); }, { closed = 1; nodes = ( (350,-195,l), (350,20,l), (250,20,l), (250,-195,l) ); }, { closed = 1; nodes = ( (350,110,l), (350,325,l), (250,325,l), (250,110,l) ); }, { closed = 1; nodes = ( (350,415,l), (350,630,l), (250,630,l), (250,415,l) ); } ); width = 600; } ); unicode = 9482; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightR_ight.glyph000066400000000000000000000010421472355150100317620ustar00rootroot00000000000000{ glyphname = boxLightRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (250,420,l), (250,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (250,420,l), (250,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (250,420,l), (250,320,l) ); } ); width = 600; } ); unicode = 9590; } boxL_ightT_ripleD_ashH_orizontal.glyph000066400000000000000000000020211472355150100352330ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightTripleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (563,320,l), (563,420,l), (437,420,l), (437,320,l) ); }, { closed = 1; nodes = ( (163,320,l), (163,420,l), (37,420,l), (37,320,l) ); }, { closed = 1; nodes = ( (363,320,l), (363,420,l), (237,420,l), (237,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (563,320,l), (563,420,l), (437,420,l), (437,320,l) ); }, { closed = 1; nodes = ( (163,320,l), (163,420,l), (37,420,l), (37,320,l) ); }, { closed = 1; nodes = ( (363,320,l), (363,420,l), (237,420,l), (237,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (563,320,l), (563,420,l), (437,420,l), (437,320,l) ); }, { closed = 1; nodes = ( (163,320,l), (163,420,l), (37,420,l), (37,320,l) ); }, { closed = 1; nodes = ( (363,320,l), (363,420,l), (237,420,l), (237,320,l) ); } ); width = 600; } ); unicode = 9476; } boxL_ightT_ripleD_ashV_ertical.glyph000066400000000000000000000020331472355150100346560ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightTripleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,600,l), (350,938,l), (250,938,l), (250,600,l) ); }, { closed = 1; nodes = ( (350,-219,l), (350,118,l), (250,118,l), (250,-219,l) ); }, { closed = 1; nodes = ( (350,193,l), (350,527,l), (250,527,l), (250,193,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,600,l), (350,938,l), (250,938,l), (250,600,l) ); }, { closed = 1; nodes = ( (350,-219,l), (350,118,l), (250,118,l), (250,-219,l) ); }, { closed = 1; nodes = ( (350,193,l), (350,527,l), (250,527,l), (250,193,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,600,l), (350,938,l), (250,938,l), (250,600,l) ); }, { closed = 1; nodes = ( (350,-219,l), (350,118,l), (250,118,l), (250,-219,l) ); }, { closed = 1; nodes = ( (350,193,l), (350,527,l), (250,527,l), (250,193,l) ); } ); width = 600; } ); unicode = 9478; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightU_p.glyph000066400000000000000000000010451472355150100312740ustar00rootroot00000000000000{ glyphname = boxLightUp; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; } ); unicode = 9589; } boxL_ightU_pA_ndH_eavyD_own.glyph000066400000000000000000000013231472355150100341210ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightUpAndHeavyDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9597; } boxL_ightU_pA_ndH_orizontal.glyph000066400000000000000000000013161472355150100342110ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightUpAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9524; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightU_pA_ndL_eft.glyph000066400000000000000000000011721472355150100330310ustar00rootroot00000000000000{ glyphname = boxLightUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9496; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightU_pA_ndR_ight.glyph000066400000000000000000000011731472355150100332150ustar00rootroot00000000000000{ glyphname = boxLightUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; } ); unicode = 9492; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/boxL_ightV_ertical.glyph000066400000000000000000000010611472355150100324570ustar00rootroot00000000000000{ glyphname = boxLightVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9474; } boxL_ightV_erticalA_ndH_orizontal.glyph000066400000000000000000000015661472355150100354050ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightVerticalAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9532; } boxL_ightV_erticalA_ndL_eft.glyph000066400000000000000000000013241472355150100341360ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightVerticalAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9508; } boxL_ightV_erticalA_ndR_ight.glyph000066400000000000000000000013251472355150100343220ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxLightVerticalAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9500; } boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glyph000066400000000000000000000017061472355150100362350ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightDownHeavyAndLeftUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9542; } boxR_ightH_eavyA_ndL_eftD_ownL_ight.glyph000066400000000000000000000014421472355150100355660ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightHeavyAndLeftDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9518; } boxR_ightH_eavyA_ndL_eftU_pL_ight.glyph000066400000000000000000000014401472355150100352410ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightHeavyAndLeftUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; } ); unicode = 9526; } boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glyph000066400000000000000000000015721472355150100364340ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightHeavyAndLeftVerticalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9534; } boxR_ightL_ightA_ndL_eftD_ownH_eavy.glyph000066400000000000000000000014421472355150100355660ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightLightAndLeftDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9521; } boxR_ightL_ightA_ndL_eftU_pH_eavy.glyph000066400000000000000000000014401472355150100352410ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightLightAndLeftUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9529; } boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glyph000066400000000000000000000015721472355150100364340ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightLightAndLeftVerticalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9545; } boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glyph000066400000000000000000000017061472355150100362350ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxRightUpHeavyAndLeftDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9540; } boxU_pD_oubleA_ndH_orizontalS_ingle.glyph000066400000000000000000000015671472355150100356650ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpDoubleAndHorizontalSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9576; } boxU_pD_oubleA_ndL_eftS_ingle.glyph000066400000000000000000000014431472355150100344170ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpDoubleAndLeftSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,320,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,320,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,320,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9564; } boxU_pD_oubleA_ndR_ightS_ingle.glyph000066400000000000000000000014441472355150100346030ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpDoubleAndRightSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,320,l) ); } ); width = 600; } ); unicode = 9561; } boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glyph000066400000000000000000000015711472355150100363370ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpHeavyAndDownHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9536; } boxU_pH_eavyA_ndH_orizontalL_ight.glyph000066400000000000000000000013231472355150100353430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpHeavyAndHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9528; } boxU_pH_eavyA_ndL_eftD_ownL_ight.glyph000066400000000000000000000014451472355150100351000ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpHeavyAndLeftDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9510; } boxU_pH_eavyA_ndL_eftL_ight.glyph000066400000000000000000000011771472355150100341130ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpHeavyAndLeftLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9498; } boxU_pH_eavyA_ndR_ightD_ownL_ight.glyph000066400000000000000000000014461472355150100352640ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpHeavyAndRightDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9502; } boxU_pH_eavyA_ndR_ightL_ight.glyph000066400000000000000000000012001472355150100342610ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpHeavyAndRightLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; } ); unicode = 9494; } boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glyph000066400000000000000000000015711472355150100363370ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpLightAndDownHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9544; } boxU_pL_ightA_ndH_orizontalH_eavy.glyph000066400000000000000000000013231472355150100353430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpLightAndHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9527; } boxU_pL_ightA_ndL_eftD_ownH_eavy.glyph000066400000000000000000000014451472355150100351000ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpLightAndLeftDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9514; } boxU_pL_ightA_ndL_eftH_eavy.glyph000066400000000000000000000011771472355150100341130ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpLightAndLeftHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9497; } boxU_pL_ightA_ndR_ightD_ownH_eavy.glyph000066400000000000000000000014461472355150100352640ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpLightAndRightDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9506; } boxU_pL_ightA_ndR_ightH_eavy.glyph000066400000000000000000000012001472355150100342610ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpLightAndRightHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,270,l) ); } ); width = 600; } ); unicode = 9493; } boxU_pS_ingleA_ndH_orizontalD_ouble.glyph000066400000000000000000000017101472355150100356530ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpSingleAndHorizontalDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; } ); unicode = 9575; } boxU_pS_ingleA_ndL_eftD_ouble.glyph000066400000000000000000000014351472355150100344200ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpSingleAndLeftDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,220,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,220,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,220,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; } ); unicode = 9563; } boxU_pS_ingleA_ndR_ightD_ouble.glyph000066400000000000000000000014361472355150100346040ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxUpSingleAndRightDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,220,l) ); } ); width = 600; } ); unicode = 9560; } boxV_erticalD_oubleA_ndH_orizontalS_ingle.glyph000066400000000000000000000023011472355150100370350ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalDoubleAndHorizontalSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9579; } boxV_erticalD_oubleA_ndL_eftS_ingle.glyph000066400000000000000000000017321472355150100356050ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalDoubleAndLeftSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); } ); width = 600; } ); unicode = 9570; } boxV_erticalD_oubleA_ndR_ightS_ingle.glyph000066400000000000000000000017331472355150100357710ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalDoubleAndRightSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9567; } boxV_erticalH_eavyA_ndH_orizontalL_ight.glyph000066400000000000000000000015731472355150100365370ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalHeavyAndHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9538; } boxV_erticalH_eavyA_ndL_eftL_ight.glyph000066400000000000000000000013311472355150100352700ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalHeavyAndLeftLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9512; } boxV_erticalH_eavyA_ndR_ightL_ight.glyph000066400000000000000000000013321472355150100354540ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalHeavyAndRightLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9504; } boxV_erticalL_ightA_ndH_orizontalH_eavy.glyph000066400000000000000000000015731472355150100365370ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalLightAndHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9535; } boxV_erticalL_ightA_ndL_eftH_eavy.glyph000066400000000000000000000013311472355150100352700ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalLightAndLeftHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9509; } boxV_erticalL_ightA_ndR_ightH_eavy.glyph000066400000000000000000000013321472355150100354540ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalLightAndRightHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9501; } boxV_erticalS_ingleA_ndH_orizontalD_ouble.glyph000066400000000000000000000022651472355150100370460ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalSingleAndHorizontalDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9578; } boxV_erticalS_ingleA_ndL_eftD_ouble.glyph000066400000000000000000000015671472355150100356130ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalSingleAndLeftDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9569; } boxV_erticalS_ingleA_ndR_ightD_ouble.glyph000066400000000000000000000015701472355150100357700ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = boxVerticalSingleAndRightDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9566; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/braceleft.glyph000066400000000000000000000035601472355150100306440ustar00rootroot00000000000000{ glyphname = braceleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (463,-111,l), (486,29,l), (431,29,ls), (395,29,o), (372,53,o), (380,89,cs), (414,239,ls), (431,314,o), (377,364,o), (279,364,c), (278,357,l), (376,357,o), (445,406,o), (452,479,cs), (466,630,ls), (470,673,o), (497,690,o), (535,690,cs), (590,690,l), (612,830,l), (527,830,ls), (417,830,o), (329,760,o), (319,650,cs), (305,499,ls), (301,457,o), (266,429,o), (224,429,cs), (99,429,l), (77,289,l), (202,289,ls), (244,289,o), (270,261,o), (261,219,cs), (228,74,ls), (202,-38,o), (269,-111,o), (378,-111,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (454,-110,l), (466,-30,l), (421,-30,ls), (358,-30,o), (328,-1,o), (340,56,cs), (376,220,ls), (394,306,o), (352,363,o), (268,363,c), (268,358,l), (353,358,o), (411,413,o), (420,500,cs), (436,664,ls), (442,721,o), (482,750,o), (545,750,cs), (590,750,l), (602,830,l), (557,830,ls), (439,830,o), (357,769,o), (346,664,cs), (330,500,ls), (323,429,o), (301,400,o), (214,400,cs), (104,400,l), (92,320,l), (202,320,ls), (288,320,o), (301,291,o), (286,220,cs), (250,56,ls), (227,-49,o), (291,-110,o), (409,-110,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (439,-110,l), (446,-65,l), (391,-65,ls), (329,-65,o), (292,-25,o), (307,40,cs), (354,237,ls), (372,313,o), (336,364,o), (269,364,c), (268,357,l), (335,357,o), (386,407,o), (392,482,cs), (409,680,ls), (414,745,o), (463,785,o), (525,785,cs), (580,785,l), (587,830,l), (532,830,ls), (436,830,o), (367,775,o), (359,680,cs), (342,482,ls), (337,408,o), (309,382,o), (227,382,cs), (117,382,l), (109,336,l), (219,336,ls), (305,336,o), (320,308,o), (304,237,cs), (257,40,ls), (235,-55,o), (288,-110,o), (384,-110,cs) ); } ); width = 600; } ); unicode = 123; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/braceleft_bar.liga.glyph000066400000000000000000000042561472355150100324060ustar00rootroot00000000000000{ glyphname = braceleft_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-2,-111,l), (21,29,l), (-104,29,ls), (-140,29,o), (-163,53,o), (-155,89,cs), (-121,239,ls), (-104,314,o), (-158,364,o), (-256,364,c), (-257,357,l), (-159,357,o), (-90,406,o), (-83,479,cs), (-69,630,ls), (-65,673,o), (-38,690,o), (0,690,cs), (125,690,l), (147,830,l), (-8,830,ls), (-118,830,o), (-206,760,o), (-216,650,cs), (-230,499,ls), (-234,457,o), (-269,429,o), (-311,429,cs), (-436,429,l), (-458,289,l), (-333,289,ls), (-291,289,o), (-265,261,o), (-274,219,cs), (-307,74,ls), (-333,-38,o), (-266,-111,o), (-157,-111,cs) ); }, { closed = 1; nodes = ( (289,-110,l), (437,830,l), (287,830,l), (139,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-6,-110,l), (6,-30,l), (-109,-30,ls), (-172,-30,o), (-202,-1,o), (-190,56,cs), (-154,220,ls), (-136,306,o), (-178,363,o), (-262,363,c), (-262,358,l), (-177,358,o), (-119,413,o), (-110,500,cs), (-94,664,ls), (-88,721,o), (-48,750,o), (15,750,cs), (130,750,l), (142,830,l), (27,830,ls), (-91,830,o), (-173,769,o), (-184,664,cs), (-200,500,ls), (-207,429,o), (-229,400,o), (-316,400,cs), (-426,400,l), (-438,320,l), (-328,320,ls), (-242,320,o), (-229,291,o), (-244,220,cs), (-280,56,ls), (-303,-49,o), (-239,-110,o), (-121,-110,cs) ); }, { closed = 1; nodes = ( (264,-110,l), (412,830,l), (322,830,l), (174,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-31,-110,l), (-24,-65,l), (-138,-65,ls), (-200,-65,o), (-237,-25,o), (-222,40,cs), (-176,237,ls), (-159,313,o), (-194,364,o), (-261,364,c), (-262,357,l), (-195,357,o), (-145,407,o), (-138,482,cs), (-120,680,ls), (-115,745,o), (-66,785,o), (-4,785,cs), (110,785,l), (117,830,l), (3,830,ls), (-93,830,o), (-162,775,o), (-170,680,cs), (-188,482,ls), (-194,408,o), (-221,382,o), (-303,382,cs), (-413,382,l), (-421,336,l), (-311,336,ls), (-225,336,o), (-210,308,o), (-226,237,cs), (-272,40,ls), (-294,-55,o), (-241,-110,o), (-145,-110,cs) ); }, { closed = 1; nodes = ( (244,-110,l), (392,830,l), (342,830,l), (194,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/braceright.glyph000066400000000000000000000035511472355150100310270ustar00rootroot00000000000000{ glyphname = braceright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (98,-111,ls), (207,-111,o), (298,-38,o), (308,74,cs), (321,219,ls), (324,261,o), (360,289,o), (402,289,cs), (527,289,l), (549,429,l), (424,429,ls), (382,429,o), (355,457,o), (365,499,cs), (399,650,ls), (423,760,o), (357,830,o), (247,830,cs), (162,830,l), (140,690,l), (195,690,ls), (233,690,o), (256,673,o), (246,630,cs), (212,479,ls), (195,406,o), (250,357,o), (348,357,c), (349,364,l), (251,364,o), (181,314,o), (174,239,cs), (160,89,ls), (156,53,o), (127,29,o), (91,29,cs), (36,29,l), (13,-111,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (69,-110,ls), (187,-110,o), (269,-49,o), (280,56,cs), (296,220,ls), (303,291,o), (326,320,o), (412,320,cs), (522,320,l), (534,400,l), (424,400,ls), (337,400,o), (325,429,o), (340,500,cs), (376,664,ls), (399,769,o), (335,830,o), (217,830,cs), (172,830,l), (160,750,l), (205,750,ls), (268,750,o), (298,721,o), (286,664,cs), (250,500,ls), (231,413,o), (273,358,o), (358,358,c), (358,363,l), (274,363,o), (214,306,o), (206,220,cs), (190,56,ls), (184,-1,o), (144,-30,o), (81,-30,cs), (36,-30,l), (24,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (93,-110,ls), (189,-110,o), (258,-55,o), (266,40,cs), (284,237,ls), (290,308,o), (313,336,o), (399,336,cs), (509,336,l), (517,382,l), (407,382,ls), (325,382,o), (306,408,o), (322,482,cs), (368,680,ls), (390,775,o), (337,830,o), (241,830,cs), (187,830,l), (180,785,l), (234,785,ls), (296,785,o), (333,745,o), (318,680,cs), (272,482,ls), (255,407,o), (291,357,o), (358,357,c), (359,364,l), (292,364,o), (241,313,o), (234,237,cs), (216,40,ls), (211,-25,o), (162,-65,o), (100,-65,cs), (46,-65,l), (39,-110,l) ); } ); width = 600; } ); unicode = 125; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bracketleft.glyph000066400000000000000000000012761472355150100312050ustar00rootroot00000000000000{ glyphname = bracketleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-110,l), (436,30,l), (281,30,l), (385,690,l), (540,690,l), (562,830,l), (257,830,l), (109,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-110,l), (401,-30,l), (246,-30,l), (370,750,l), (525,750,l), (537,830,l), (292,830,l), (144,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-110,l), (391,-65,l), (216,-65,l), (350,785,l), (525,785,l), (532,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; } ); unicode = 91; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bracketleft_bar.liga.glyph000066400000000000000000000016711472355150100327430ustar00rootroot00000000000000{ glyphname = bracketleft_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-16,-110,l), (6,30,l), (-259,30,l), (-155,690,l), (110,690,l), (132,830,l), (-283,830,l), (-431,-110,l) ); }, { closed = 1; nodes = ( (309,-110,l), (457,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1,-110,l), (11,-30,l), (-284,-30,l), (-160,750,l), (135,750,l), (147,830,l), (-238,830,l), (-386,-110,l) ); }, { closed = 1; nodes = ( (264,-110,l), (412,830,l), (322,830,l), (174,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-11,-110,l), (-4,-65,l), (-309,-65,l), (-175,785,l), (130,785,l), (137,830,l), (-218,830,l), (-366,-110,l) ); }, { closed = 1; nodes = ( (244,-110,l), (392,830,l), (342,830,l), (194,-110,l) ); } ); width = 600; } ); } bracketleft_bar_bar_bracketright.liga.glyph000066400000000000000000000032351472355150100362370ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ export = 0; glyphname = bracketleft_bar_bar_bracketright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (309,-110,l), (457,830,l), (152,830,l), (130,690,l), (285,690,l), (181,30,l), (26,30,l), (4,-110,l) ); }, { closed = 1; nodes = ( (-1326,-110,l), (-1304,30,l), (-1459,30,l), (-1355,690,l), (-1200,690,l), (-1178,830,l), (-1483,830,l), (-1631,-110,l) ); }, { closed = 1; nodes = ( (-876,-110,l), (-728,830,l), (-878,830,l), (-1026,-110,l) ); }, { closed = 1; nodes = ( (-296,-110,l), (-148,830,l), (-298,830,l), (-446,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (279,-110,l), (427,830,l), (182,830,l), (170,750,l), (325,750,l), (201,-30,l), (46,-30,l), (34,-110,l) ); }, { closed = 1; nodes = ( (-1356,-110,l), (-1344,-30,l), (-1499,-30,l), (-1375,750,l), (-1220,750,l), (-1208,830,l), (-1453,830,l), (-1601,-110,l) ); }, { closed = 1; nodes = ( (-906,-110,l), (-758,830,l), (-848,830,l), (-996,-110,l) ); }, { closed = 1; nodes = ( (-326,-110,l), (-178,830,l), (-268,830,l), (-416,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (269,-110,l), (417,830,l), (192,830,l), (185,785,l), (360,785,l), (226,-65,l), (51,-65,l), (44,-110,l) ); }, { closed = 1; nodes = ( (-1366,-110,l), (-1359,-65,l), (-1534,-65,l), (-1400,785,l), (-1225,785,l), (-1218,830,l), (-1443,830,l), (-1591,-110,l) ); }, { closed = 1; nodes = ( (-926,-110,l), (-778,830,l), (-828,830,l), (-976,-110,l) ); }, { closed = 1; nodes = ( (-346,-110,l), (-198,830,l), (-248,830,l), (-396,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bracketleft_less.liga.glyph000066400000000000000000000011451472355150100331410ustar00rootroot00000000000000{ glyphname = bracketleft_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-575,0); ref = bracketleft; }, { alignment = -1; pos = (-115,15); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-575,0); ref = bracketleft; }, { alignment = -1; pos = (-100,15); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-575,0); ref = bracketleft; }, { alignment = -1; pos = (-100,15); ref = less; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bracketleftwithquill.glyph000066400000000000000000000015441472355150100331460ustar00rootroot00000000000000{ glyphname = bracketleftwithquill; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (383,-110,l), (390,-65,l), (215,-65,l), (281,355,l), (456,355,l), (463,400,l), (288,400,l), (349,785,l), (524,785,l), (531,830,l), (306,830,l), (158,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (378,-110,l), (390,-30,l), (240,-30,l), (298,335,l), (453,335,l), (466,415,l), (311,415,l), (364,750,l), (519,750,l), (531,830,l), (286,830,l), (138,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (403,-110,l), (425,30,l), (270,30,l), (313,305,l), (468,305,l), (490,445,l), (335,445,l), (374,690,l), (529,690,l), (551,830,l), (246,830,l), (98,-110,l) ); } ); width = 600; } ); unicode = 8261; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bracketright.glyph000066400000000000000000000012731472355150100313650ustar00rootroot00000000000000{ glyphname = bracketright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (369,-110,l), (517,830,l), (212,830,l), (190,690,l), (345,690,l), (241,30,l), (86,30,l), (64,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (334,-110,l), (482,830,l), (237,830,l), (225,750,l), (380,750,l), (256,-30,l), (101,-30,l), (89,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (319,-110,l), (467,830,l), (242,830,l), (235,785,l), (410,785,l), (276,-65,l), (101,-65,l), (94,-110,l) ); } ); width = 600; } ); unicode = 93; } bracketright_numbersign.liga.glyph000066400000000000000000000035271472355150100344560ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = bracketright_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (129,0,l), (187,175,l), (317,175,l), (259,0,l), (359,0,l), (417,175,l), (514,175,l), (530,275,l), (450,275,l), (507,455,l), (593,455,l), (609,555,l), (540,555,l), (599,730,l), (499,730,l), (440,555,l), (310,555,l), (369,730,l), (269,730,l), (210,555,l), (-221,555,l), (-237,455,l), (177,455,l), (120,275,l), (-265,275,l), (-281,175,l), (87,175,l), (29,0,l) ); }, { closed = 1; nodes = ( (277,455,l), (407,455,l), (350,275,l), (220,275,l) ); }, { alignment = -1; pos = (-600,0); ref = bracketright; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,0,l), (181,210,l), (341,210,l), (269,0,l), (339,0,l), (411,210,l), (519,210,l), (530,275,l), (433,275,l), (495,455,l), (593,455,l), (603,520,l), (516,520,l), (589,730,l), (519,730,l), (446,520,l), (286,520,l), (359,730,l), (289,730,l), (216,520,l), (-217,520,l), (-227,455,l), (195,455,l), (133,275,l), (-255,275,l), (-266,210,l), (111,210,l), (39,0,l) ); }, { closed = 1; nodes = ( (265,455,l), (425,455,l), (363,275,l), (203,275,l) ); }, { alignment = -1; pos = (-600,0); ref = bracketright; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (137,0,l), (181,230,l), (367,230,l), (323,0,l), (368,0,l), (412,230,l), (530,230,l), (530,270,l), (420,270,l), (456,460,l), (565,460,l), (565,500,l), (464,500,l), (508,730,l), (463,730,l), (419,500,l), (233,500,l), (277,730,l), (232,730,l), (188,500,l), (-265,500,l), (-265,460,l), (180,460,l), (144,270,l), (-265,270,l), (-265,230,l), (136,230,l), (92,0,l) ); }, { closed = 1; nodes = ( (225,460,l), (411,460,l), (375,270,l), (189,270,l) ); }, { alignment = -1; pos = (-635,0); ref = bracketright; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bracketrightwithquill.glyph000066400000000000000000000015441472355150100333310ustar00rootroot00000000000000{ glyphname = bracketrightwithquill; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (321,-110,l), (469,830,l), (244,830,l), (237,785,l), (412,785,l), (351,400,l), (176,400,l), (169,355,l), (344,355,l), (278,-65,l), (103,-65,l), (96,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (341,-110,l), (489,830,l), (244,830,l), (232,750,l), (387,750,l), (334,415,l), (179,415,l), (166,335,l), (321,335,l), (263,-30,l), (113,-30,l), (101,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (403,-110,l), (551,830,l), (246,830,l), (224,690,l), (379,690,l), (340,445,l), (185,445,l), (163,305,l), (318,305,l), (275,30,l), (120,30,l), (98,-110,l) ); } ); width = 600; } ); unicode = 8262; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/breve.case.glyph000066400000000000000000000007121472355150100307260ustar00rootroot00000000000000{ glyphname = breve.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = brevecomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/breve.glyph000066400000000000000000000006251472355150100300170ustar00rootroot00000000000000{ glyphname = breve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = brevecomb; } ); width = 600; } ); unicode = 728; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevebelowcomb.case.glyph000066400000000000000000000023641472355150100326250ustar00rootroot00000000000000{ glyphname = brevebelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-381,-237); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-293,-237,o), (-228,-182,o), (-214,-95,c), (-259,-95,l), (-269,-158,o), (-314,-197,o), (-376,-197,cs), (-437,-197,o), (-469,-158,o), (-459,-95,c), (-504,-95,l), (-518,-182,o), (-471,-237,o), (-382,-237,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-382,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-286,-240,o), (-213,-182,o), (-199,-95,c), (-270,-95,l), (-278,-147,o), (-320,-182,o), (-374,-182,cs), (-427,-182,o), (-456,-147,o), (-448,-95,c), (-519,-95,l), (-533,-182,o), (-478,-240,o), (-382,-240,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-383,-245); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-272,-245,o), (-188,-185,o), (-174,-95,c), (-289,-95,l), (-295,-133,o), (-327,-158,o), (-369,-158,cs), (-410,-158,o), (-435,-133,o), (-429,-95,c), (-544,-95,l), (-558,-185,o), (-493,-245,o), (-383,-245,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb-cy.glyph000066400000000000000000000021231472355150100312640ustar00rootroot00000000000000{ glyphname = "brevecomb-cy"; layers = ( { anchors = ( { name = _top; pos = (-256,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,643,o), (-87,698,o), (-74,785,c), (-119,785,l), (-129,722,o), (-174,683,o), (-236,683,cs), (-297,683,o), (-329,722,o), (-319,785,c), (-364,785,l), (-377,698,o), (-330,643,o), (-241,643,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-146,640,o), (-72,698,o), (-59,785,c), (-131,785,l), (-139,733,o), (-180,698,o), (-234,698,cs), (-287,698,o), (-317,733,o), (-309,785,c), (-379,785,l), (-392,698,o), (-338,640,o), (-242,640,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-131,635,o), (-48,695,o), (-34,785,c), (-151,785,l), (-157,747,o), (-189,722,o), (-231,722,cs), (-272,722,o), (-297,747,o), (-291,785,c), (-404,785,l), (-418,695,o), (-352,635,o), (-242,635,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb.case.glyph000066400000000000000000000022721472355150100315720ustar00rootroot00000000000000{ glyphname = brevecomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-126,808,o), (-61,863,o), (-48,950,c), (-93,950,l), (-103,887,o), (-148,848,o), (-210,848,cs), (-271,848,o), (-303,887,o), (-293,950,c), (-338,950,l), (-351,863,o), (-304,808,o), (-215,808,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-120,805,o), (-46,863,o), (-33,950,c), (-105,950,l), (-113,898,o), (-154,863,o), (-208,863,cs), (-261,863,o), (-291,898,o), (-283,950,c), (-353,950,l), (-366,863,o), (-312,805,o), (-216,805,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-106,800,o), (-23,860,o), (-9,950,c), (-126,950,l), (-132,912,o), (-164,887,o), (-206,887,cs), (-247,887,o), (-271,912,o), (-265,950,c), (-378,950,l), (-392,860,o), (-327,800,o), (-217,800,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb.glyph000066400000000000000000000023061472355150100306560ustar00rootroot00000000000000{ glyphname = brevecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,643,o), (-87,698,o), (-74,785,c), (-119,785,l), (-129,722,o), (-174,683,o), (-236,683,cs), (-297,683,o), (-329,722,o), (-319,785,c), (-364,785,l), (-377,698,o), (-330,643,o), (-241,643,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-146,640,o), (-72,698,o), (-59,785,c), (-131,785,l), (-139,733,o), (-180,698,o), (-234,698,cs), (-287,698,o), (-317,733,o), (-309,785,c), (-379,785,l), (-392,698,o), (-338,640,o), (-242,640,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-131,635,o), (-48,695,o), (-34,785,c), (-151,785,l), (-157,747,o), (-189,722,o), (-231,722,cs), (-272,722,o), (-297,747,o), (-291,785,c), (-404,785,l), (-418,695,o), (-352,635,o), (-242,635,cs) ); } ); width = 0; } ); unicode = 774; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb_acutecomb.case.glyph000066400000000000000000000030371472355150100336140ustar00rootroot00000000000000{ glyphname = brevecomb_acutecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-148,905,l), (-15,1020,l), (-151,1020,l), (-274,905,l) ); }, { closed = 1; nodes = ( (-185,780,ls), (-84,780,o), (-12,832,o), (1,915,c), (-94,915,l), (-99,881,o), (-129,860,o), (-173,860,cs), (-244,860,ls), (-289,860,o), (-310,881,o), (-305,915,c), (-400,915,l), (-413,832,o), (-357,780,o), (-256,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-171,900,l), (-42,1020,l), (-142,1020,l), (-266,900,l) ); }, { closed = 1; nodes = ( (-196,780,ls), (-110,780,o), (-48,830,o), (-35,910,c), (-105,910,l), (-112,867,o), (-143,840,o), (-187,840,cs), (-236,840,ls), (-279,840,o), (-302,867,o), (-295,910,c), (-365,910,l), (-378,830,o), (-331,780,o), (-245,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-193,895,l), (-63,1020,l), (-125,1020,l), (-245,895,l) ); }, { closed = 1; nodes = ( (-200,780,ls), (-122,780,o), (-63,830,o), (-51,905,c), (-96,905,l), (-104,854,o), (-143,820,o), (-194,820,cs), (-234,820,ls), (-285,820,o), (-314,854,o), (-306,905,c), (-351,905,l), (-363,830,o), (-318,780,o), (-240,780,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb_acutecomb.glyph000066400000000000000000000026751472355150100327110ustar00rootroot00000000000000{ glyphname = brevecomb_acutecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,925); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-164,785,l), (-16,925,l), (-148,925,l), (-286,785,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-144,640,o), (-64,692,o), (-52,770,c), (-123,770,l), (-130,726,o), (-172,700,o), (-234,700,cs), (-295,700,o), (-330,726,o), (-323,770,c), (-392,770,l), (-404,692,o), (-342,640,o), (-243,640,cs) ); }, { closed = 1; nodes = ( (-194,760,l), (-53,890,l), (-152,890,l), (-288,760,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-118,770,l), (-126,719,o), (-174,685,o), (-237,685,cs), (-299,685,o), (-336,719,o), (-328,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-214,760,l), (-73,890,l), (-137,890,l), (-268,760,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb_gravecomb.case.glyph000066400000000000000000000030421472355150100336130ustar00rootroot00000000000000{ glyphname = brevecomb_gravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-185,780,ls), (-84,780,o), (-12,832,o), (1,915,c), (-94,915,l), (-99,881,o), (-129,860,o), (-173,860,cs), (-244,860,ls), (-289,860,o), (-310,881,o), (-305,915,c), (-400,915,l), (-413,832,o), (-357,780,o), (-256,780,cs) ); }, { closed = 1; nodes = ( (-137,905,l), (-203,1020,l), (-317,1020,l), (-241,905,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-182,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-195,780,ls), (-109,780,o), (-47,830,o), (-34,910,c), (-104,910,l), (-111,867,o), (-142,840,o), (-186,840,cs), (-235,840,ls), (-278,840,o), (-301,867,o), (-294,910,c), (-364,910,l), (-377,830,o), (-330,780,o), (-244,780,cs) ); }, { closed = 1; nodes = ( (-139,900,l), (-215,1020,l), (-307,1020,l), (-226,900,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-182,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-199,780,ls), (-121,780,o), (-62,830,o), (-50,905,c), (-95,905,l), (-103,854,o), (-142,820,o), (-193,820,cs), (-233,820,ls), (-284,820,o), (-313,854,o), (-305,905,c), (-350,905,l), (-362,830,o), (-317,780,o), (-239,780,cs) ); }, { closed = 1; nodes = ( (-157,895,l), (-230,1020,l), (-286,1020,l), (-203,895,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb_gravecomb.glyph000066400000000000000000000027001472355150100327010ustar00rootroot00000000000000{ glyphname = brevecomb_gravecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,925); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-156,785,l), (-248,925,l), (-376,925,l), (-274,785,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-144,640,o), (-64,692,o), (-52,770,c), (-123,770,l), (-130,726,o), (-172,701,o), (-234,701,cs), (-295,701,o), (-330,726,o), (-323,770,c), (-392,770,l), (-404,692,o), (-342,640,o), (-243,640,cs) ); }, { closed = 1; nodes = ( (-162,760,l), (-256,890,l), (-349,890,l), (-250,760,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-118,770,l), (-126,719,o), (-174,685,o), (-237,685,cs), (-300,685,o), (-336,719,o), (-328,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-183,760,l), (-272,890,l), (-329,890,l), (-230,760,l) ); } ); width = 0; } ); } brevecomb_hookabovecomb.case.glyph000066400000000000000000000042111472355150100344040ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = brevecomb_hookabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-148,890,l), (-138,901,ls), (-125,916,o), (-112,931,o), (-108,954,cs), (-101,995,o), (-127,1020,o), (-182,1020,cs), (-282,1020,l), (-294,949,l), (-228,949,ls), (-219,949,o), (-214,945,o), (-215,938,cs), (-216,932,o), (-220,927,o), (-227,920,cs), (-257,890,l) ); }, { closed = 1; nodes = ( (-185,780,ls), (-84,780,o), (-12,832,o), (1,915,c), (-94,915,l), (-99,881,o), (-129,860,o), (-173,860,cs), (-244,860,ls), (-289,860,o), (-310,881,o), (-305,915,c), (-400,915,l), (-413,832,o), (-357,780,o), (-256,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-174,880,l), (-136,920,ls), (-123,934,o), (-116,955,o), (-113,972,cs), (-108,1003,o), (-126,1020,o), (-160,1020,cs), (-257,1020,l), (-267,960,l), (-196,960,ls), (-190,960,o), (-186,957,o), (-187,952,cs), (-188,948,o), (-193,942,o), (-199,936,cs), (-254,880,l) ); }, { closed = 1; nodes = ( (-196,780,ls), (-110,780,o), (-48,830,o), (-35,910,c), (-105,910,l), (-112,867,o), (-143,840,o), (-187,840,cs), (-236,840,ls), (-279,840,o), (-302,867,o), (-295,910,c), (-365,910,l), (-378,830,o), (-331,780,o), (-245,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-188,880,l), (-152,915,ls), (-134,932,o), (-121,952,o), (-118,971,cs), (-113,1001,o), (-135,1020,o), (-178,1020,cs), (-249,1020,l), (-255,985,l), (-181,985,ls), (-164,985,o), (-156,977,o), (-158,966,cs), (-159,958,o), (-169,947,o), (-183,933,cs), (-238,880,l) ); }, { closed = 1; nodes = ( (-200,780,ls), (-122,780,o), (-63,830,o), (-51,905,c), (-96,905,l), (-104,854,o), (-143,820,o), (-194,820,cs), (-234,820,ls), (-285,820,o), (-314,854,o), (-306,905,c), (-351,905,l), (-363,830,o), (-318,780,o), (-240,780,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb_hookabovecomb.glyph000066400000000000000000000040371472355150100335570ustar00rootroot00000000000000{ glyphname = brevecomb_hookabovecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-190,970); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-168,780,l), (-127,822,ls), (-110,840,o), (-97,862,o), (-94,884,cs), (-86,935,o), (-123,970,o), (-186,970,cs), (-290,970,l), (-304,885,l), (-230,885,ls), (-212,885,o), (-205,879,o), (-207,867,cs), (-208,859,o), (-213,851,o), (-226,838,cs), (-284,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,930); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-144,640,o), (-64,692,o), (-52,770,c), (-122,770,l), (-129,726,o), (-171,701,o), (-233,701,cs), (-294,701,o), (-329,726,o), (-322,770,c), (-392,770,l), (-404,692,o), (-342,640,o), (-243,640,cs) ); }, { closed = 1; nodes = ( (-192,760,l), (-149,810,ls), (-136,825,o), (-127,841,o), (-124,859,cs), (-117,901,o), (-150,930,o), (-207,930,cs), (-272,930,l), (-281,870,l), (-232,870,ls), (-215,870,o), (-207,861,o), (-209,846,cs), (-210,838,o), (-215,829,o), (-222,821,cs), (-277,760,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,926); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-118,770,l), (-126,719,o), (-174,685,o), (-237,685,cs), (-300,685,o), (-336,719,o), (-328,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-214,760,l), (-167,811,ls), (-149,831,o), (-137,853,o), (-135,869,cs), (-130,904,o), (-156,926,o), (-201,926,cs), (-275,926,l), (-280,891,l), (-206,891,ls), (-186,891,o), (-176,881,o), (-179,865,cs), (-180,855,o), (-188,841,o), (-200,829,cs), (-264,760,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb_tildecomb.case.glyph000066400000000000000000000045731472355150100336220ustar00rootroot00000000000000{ glyphname = brevecomb_tildecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-175,780,ls), (-92,780,o), (-34,820,o), (-23,890,c), (-118,890,l), (-121,872,o), (-137,860,o), (-158,860,cs), (-257,860,ls), (-279,860,o), (-291,872,o), (-288,890,c), (-383,890,l), (-394,820,o), (-347,780,o), (-263,780,cs) ); }, { closed = 1; nodes = ( (-59,910,o), (-16,949,o), (-4,1010,cs), (-3,1015,l), (-88,1015,l), (-89,1010,ls), (-92,995,o), (-103,985,o), (-118,985,cs), (-163,985,o), (-192,1020,o), (-262,1020,cs), (-323,1020,o), (-366,980,o), (-378,920,cs), (-379,915,l), (-294,915,l), (-293,920,ls), (-290,935,o), (-279,945,o), (-264,945,cs), (-219,945,o), (-190,910,o), (-120,910,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-196,780,ls), (-110,780,o), (-49,820,o), (-36,900,c), (-106,900,l), (-113,857,o), (-143,840,o), (-187,840,cs), (-236,840,ls), (-279,840,o), (-303,857,o), (-296,900,c), (-366,900,l), (-379,820,o), (-331,780,o), (-245,780,cs) ); }, { closed = 1; nodes = ( (-67,920,o), (-27,952,o), (-20,1003,cs), (-19,1010,l), (-84,1010,l), (-85,1003,ls), (-88,985,o), (-102,973,o), (-120,973,cs), (-170,973,o), (-177,1020,o), (-257,1020,cs), (-312,1020,o), (-354,988,o), (-361,937,cs), (-362,930,l), (-297,930,l), (-296,937,ls), (-293,955,o), (-279,967,o), (-261,967,cs), (-211,967,o), (-200,920,o), (-121,920,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-200,780,ls), (-122,780,o), (-63,828,o), (-51,900,c), (-96,900,l), (-104,852,o), (-143,820,o), (-194,820,cs), (-234,820,ls), (-285,820,o), (-314,852,o), (-306,900,c), (-351,900,l), (-363,828,o), (-318,780,o), (-240,780,cs) ); }, { closed = 1; nodes = ( (-77,920,o), (-42,949,o), (-36,995,cs), (-34,1010,l), (-74,1010,l), (-76,995,ls), (-79,972,o), (-96,958,o), (-117,958,cs), (-172,958,o), (-182,1020,o), (-252,1020,cs), (-301,1020,o), (-335,991,o), (-344,945,cs), (-347,930,l), (-307,930,l), (-304,945,ls), (-299,968,o), (-283,982,o), (-258,982,cs), (-203,982,o), (-193,920,o), (-123,920,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brevecomb_tildecomb.glyph000066400000000000000000000044211472355150100327000ustar00rootroot00000000000000{ glyphname = brevecomb_tildecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-192,955); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-81,800,o), (-29,846,o), (-19,915,cs), (-14,950,l), (-99,950,l), (-104,913,ls), (-106,896,o), (-121,885,o), (-139,885,cs), (-179,885,o), (-178,955,o), (-263,955,cs), (-329,955,o), (-379,909,o), (-391,840,cs), (-397,805,l), (-312,805,l), (-306,837,ls), (-302,857,o), (-289,870,o), (-271,870,cs), (-231,870,o), (-232,800,o), (-147,800,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,928); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-146,645,o), (-74,697,o), (-61,775,c), (-127,775,l), (-135,729,o), (-175,702,o), (-235,702,cs), (-294,702,o), (-325,729,o), (-317,775,c), (-381,775,l), (-394,697,o), (-338,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-93,812,o), (-49,847,o), (-41,900,cs), (-38,920,l), (-103,920,l), (-107,895,ls), (-110,876,o), (-122,865,o), (-142,865,cs), (-191,865,o), (-182,928,o), (-263,928,cs), (-319,928,o), (-363,893,o), (-371,840,cs), (-374,820,l), (-309,820,l), (-305,845,ls), (-302,865,o), (-289,875,o), (-270,875,cs), (-221,875,o), (-229,812,o), (-149,812,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,925); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-117,770,l), (-125,719,o), (-173,685,o), (-236,685,cs), (-299,685,o), (-335,719,o), (-327,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-96,815,o), (-65,843,o), (-57,895,cs), (-53,920,l), (-93,920,l), (-97,895,ls), (-101,869,o), (-116,855,o), (-139,855,cs), (-192,855,o), (-191,925,o), (-262,925,cs), (-314,925,o), (-347,897,o), (-355,845,cs), (-359,820,l), (-319,820,l), (-315,845,ls), (-311,872,o), (-296,885,o), (-269,885,cs), (-216,885,o), (-217,815,o), (-145,815,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/breveinvertedcomb.case.glyph000066400000000000000000000023021472355150100333250ustar00rootroot00000000000000{ glyphname = breveinvertedcomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-194,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-316,808,l), (-306,871,o), (-262,910,o), (-201,910,cs), (-139,910,o), (-106,871,o), (-116,808,c), (-71,808,l), (-57,895,o), (-105,950,o), (-194,950,cs), (-283,950,o), (-347,895,o), (-361,808,c) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-304,805,l), (-295,857,o), (-255,892,o), (-202,892,cs), (-148,892,o), (-117,857,o), (-126,805,c), (-56,805,l), (-42,892,o), (-97,950,o), (-193,950,cs), (-289,950,o), (-362,892,o), (-376,805,c) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-288,800,l), (-282,838,o), (-250,863,o), (-209,863,cs), (-167,863,o), (-143,838,o), (-149,800,c), (-32,800,l), (-18,890,o), (-83,950,o), (-194,950,cs), (-304,950,o), (-387,890,o), (-401,800,c) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/brokenbar.glyph000066400000000000000000000014261472355150100306610ustar00rootroot00000000000000{ glyphname = brokenbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,450,l), (462,830,l), (312,830,l), (252,450,l) ); }, { closed = 1; nodes = ( (314,-110,l), (374,270,l), (224,270,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (372,450,l), (432,830,l), (342,830,l), (282,450,l) ); }, { closed = 1; nodes = ( (284,-110,l), (344,270,l), (254,270,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (352,450,l), (412,830,l), (362,830,l), (302,450,l) ); }, { closed = 1; nodes = ( (264,-110,l), (324,270,l), (274,270,l), (214,-110,l) ); } ); width = 600; } ); unicode = 166; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bullet.glyph000066400000000000000000000015371472355150100302060ustar00rootroot00000000000000{ glyphname = bullet; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (372,230,o), (436,285,o), (449,365,cs), (461,445,o), (415,500,o), (335,500,cs), (255,500,o), (191,445,o), (179,365,cs), (166,285,o), (212,230,o), (292,230,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (365,245,o), (423,295,o), (434,365,cs), (445,435,o), (403,485,o), (333,485,cs), (263,485,o), (205,435,o), (194,365,cs), (183,295,o), (225,245,o), (295,245,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (356,270,o), (400,308,o), (409,365,cs), (418,422,o), (386,460,o), (329,460,cs), (272,460,o), (228,422,o), (219,365,cs), (210,308,o), (242,270,o), (299,270,cs) ); } ); width = 600; } ); unicode = 8226; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bulletoperator.glyph000066400000000000000000000007061472355150100317570ustar00rootroot00000000000000{ glyphname = bulletoperator; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,235); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,250); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,255); ref = period; } ); width = 600; } ); unicode = 8729; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/bullseye.glyph000066400000000000000000000047641472355150100305500ustar00rootroot00000000000000{ glyphname = bullseye; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (372,233,o), (427,288,o), (427,360,cs), (427,432,o), (372,487,o), (300,487,cs), (228,487,o), (173,432,o), (173,360,cs), (173,288,o), (228,233,o), (300,233,cs) ); }, { closed = 1; nodes = ( (254,279,o), (219,314,o), (219,360,cs), (219,406,o), (254,441,o), (300,441,cs), (346,441,o), (381,406,o), (381,360,cs), (381,314,o), (346,279,o), (300,279,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (372,233,o), (427,288,o), (427,360,cs), (427,432,o), (372,487,o), (300,487,cs), (228,487,o), (173,432,o), (173,360,cs), (173,288,o), (228,233,o), (300,233,cs) ); }, { closed = 1; nodes = ( (254,279,o), (219,314,o), (219,360,cs), (219,406,o), (254,441,o), (300,441,cs), (346,441,o), (381,406,o), (381,360,cs), (381,314,o), (346,279,o), (300,279,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (372,233,o), (427,288,o), (427,360,cs), (427,432,o), (372,487,o), (300,487,cs), (228,487,o), (173,432,o), (173,360,cs), (173,288,o), (228,233,o), (300,233,cs) ); }, { closed = 1; nodes = ( (254,279,o), (219,314,o), (219,360,cs), (219,406,o), (254,441,o), (300,441,cs), (346,441,o), (381,406,o), (381,360,cs), (381,314,o), (346,279,o), (300,279,cs) ); } ); width = 600; } ); unicode = 9678; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/c.glyph000066400000000000000000000033031472355150100271320ustar00rootroot00000000000000{ glyphname = c; layers = ( { anchors = ( { name = bottom; pos = (259,0); }, { name = top; pos = (346,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (508,68,o), (533,195,c), (383,195,l), (371,147,o), (333,120,o), (278,120,cs), (218,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (267,430,o), (327,430,cs), (381,430,o), (412,402,o), (408,355,c), (558,355,l), (573,482,o), (493,560,o), (348,560,cs), (201,560,o), (91,473,o), (70,340,cs), (49,210,ls), (28,77,o), (110,-10,o), (257,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (260,0); }, { name = top; pos = (347,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (480,63,o), (503,180,c), (413,180,l), (397,110,o), (345,70,o), (271,70,cs), (192,70,o), (153,117,o), (166,200,cs), (190,351,ls), (203,433,o), (257,480,o), (336,480,cs), (410,480,o), (450,440,o), (443,370,c), (533,370,l), (547,487,o), (476,560,o), (349,560,cs), (216,560,o), (120,481,o), (99,350,cs), (76,200,ls), (55,69,o), (125,-10,o), (258,-10,cs) ); } ); visible = 1; width = 600; }, { anchors = ( { name = bottom; pos = (258,0); }, { name = top; pos = (345,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (466,64,o), (485,180,c), (435,180,l), (420,90,o), (356,36,o), (264,36,cs), (173,36,o), (126,94,o), (141,190,cs), (168,360,ls), (183,457,o), (248,514,o), (339,514,cs), (431,514,o), (479,460,o), (465,370,c), (515,370,l), (533,486,o), (468,560,o), (347,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (135,-10,o), (256,-10,cs) ); } ); width = 600; } ); unicode = 99; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/cacute.glyph000066400000000000000000000007001472355150100301520ustar00rootroot00000000000000{ glyphname = cacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = c; }, { pos = (623,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = c; }, { pos = (615,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = c; }, { pos = (615,0); ref = acutecomb; } ); width = 600; } ); unicode = 263; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/cancel-control.glyph000066400000000000000000000016231472355150100316160ustar00rootroot00000000000000{ glyphname = "cancel-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9240; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/caron.case.glyph000066400000000000000000000007121472355150100307250ustar00rootroot00000000000000{ glyphname = caron.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = caroncomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/caron.glyph000066400000000000000000000006251472355150100300160ustar00rootroot00000000000000{ glyphname = caron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = caroncomb; } ); width = 600; } ); unicode = 711; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/caroncomb.alt.glyph000066400000000000000000000014331472355150100314340ustar00rootroot00000000000000{ glyphname = caroncomb.alt; layers = ( { anchors = ( { name = _top; pos = (-278,730); }, { name = _topright; pos = (-152,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-2,550,l), (47,730,l), (-93,730,l), (-132,550,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-278,730); }, { name = _topright; pos = (-132,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-37,550,l), (12,730,l), (-73,730,l), (-112,550,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-278,730); }, { name = _topright; pos = (-112,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-52,550,l), (-3,730,l), (-53,730,l), (-92,550,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/caroncomb.case.glyph000066400000000000000000000016211472355150100315660ustar00rootroot00000000000000{ glyphname = caroncomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-185,810,l), (-43,950,l), (-93,950,l), (-210,841,l), (-294,950,l), (-343,950,l), (-245,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-173,810,l), (-12,950,l), (-115,950,l), (-207,872,l), (-277,950,l), (-374,950,l), (-256,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-145,810,l), (12,950,l), (-127,950,l), (-205,880,l), (-266,950,l), (-398,950,l), (-285,810,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/caroncomb.glyph000066400000000000000000000016351472355150100306610ustar00rootroot00000000000000{ glyphname = caroncomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-211,645,l), (-69,785,l), (-119,785,l), (-236,676,l), (-320,785,l), (-369,785,l), (-271,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-199,645,l), (-38,785,l), (-141,785,l), (-233,707,l), (-303,785,l), (-400,785,l), (-282,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-171,645,l), (-14,785,l), (-153,785,l), (-231,715,l), (-292,785,l), (-424,785,l), (-311,645,l) ); } ); width = 0; } ); unicode = 780; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/carriageR_eturn-control.glyph000066400000000000000000000013171472355150100335050ustar00rootroot00000000000000{ glyphname = "carriageReturn-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = R; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = R; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = R; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9229; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ccaron.glyph000066400000000000000000000007001472355150100301530ustar00rootroot00000000000000{ glyphname = ccaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = c; }, { pos = (602,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = c; }, { pos = (604,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = c; }, { pos = (603,0); ref = caroncomb; } ); width = 600; } ); unicode = 269; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ccedilla.glyph000066400000000000000000000024421472355150100304530ustar00rootroot00000000000000{ glyphname = ccedilla; layers = ( { anchors = ( { name = _bottom; pos = (258,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (217,-195,ls), (277,-195,o), (323,-161,o), (329,-118,cs), (338,-61,o), (279,-37,o), (233,-34,c), (265,26,l), (223,26,l), (174,-64,l), (245,-64,o), (288,-86,o), (283,-118,cs), (280,-140,o), (255,-160,o), (223,-160,cs), (143,-160,l), (137,-195,l) ); }, { ref = c; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (260,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (218,-203,ls), (290,-203,o), (344,-166,o), (351,-120,cs), (359,-68,o), (296,-41,o), (244,-35,c), (275,26,l), (218,26,l), (168,-69,l), (235,-69,o), (270,-89,o), (266,-112,cs), (263,-130,o), (241,-148,o), (212,-148,cs), (142,-148,l), (133,-203,l) ); }, { ref = c; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (259,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (223,-225,ls), (307,-225,o), (370,-182,o), (378,-133,cs), (388,-72,o), (311,-43,o), (251,-39,c), (279,16,l), (206,16,l), (157,-69,l), (230,-69,o), (270,-88,o), (265,-119,cs), (263,-135,o), (237,-155,o), (204,-155,cs), (124,-155,l), (113,-225,l) ); }, { ref = c; } ); width = 600; } ); unicode = 231; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ccircumflex.glyph000066400000000000000000000010041472355150100312100ustar00rootroot00000000000000{ glyphname = ccircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = c; }, { pos = (602,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = c; }, { pos = (603,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = c; }, { pos = (601,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 265; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/cdotaccent.glyph000066400000000000000000000010001472355150100310070ustar00rootroot00000000000000{ glyphname = cdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = c; }, { pos = (603,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = c; }, { pos = (604,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = c; }, { pos = (601,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 267; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/cedilla.glyph000066400000000000000000000006351472355150100303120ustar00rootroot00000000000000{ glyphname = cedilla; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = cedillacomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = cedillacomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = cedillacomb; } ); width = 600; } ); unicode = 184; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/cedillacomb.case.glyph000066400000000000000000000026311472355150100320630ustar00rootroot00000000000000{ glyphname = cedillacomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-369,0); }, { name = bottom; pos = (-375,-195); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-385,-195,ls), (-325,-195,o), (-279,-161,o), (-273,-118,cs), (-264,-61,o), (-323,-37,o), (-369,-34,c), (-337,26,l), (-379,26,l), (-428,-64,l), (-357,-64,o), (-314,-86,o), (-319,-118,cs), (-322,-140,o), (-347,-160,o), (-379,-160,cs), (-459,-160,l), (-465,-195,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-369,-203); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-386,-203,ls), (-314,-203,o), (-260,-166,o), (-253,-120,cs), (-245,-68,o), (-308,-41,o), (-360,-35,c), (-329,26,l), (-386,26,l), (-436,-69,l), (-369,-69,o), (-334,-89,o), (-338,-112,cs), (-341,-130,o), (-363,-148,o), (-392,-148,cs), (-462,-148,l), (-471,-203,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-360,-225); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-375,-225,ls), (-291,-225,o), (-228,-182,o), (-220,-133,cs), (-210,-72,o), (-287,-43,o), (-347,-39,c), (-319,16,l), (-392,16,l), (-441,-69,l), (-368,-69,o), (-328,-88,o), (-333,-119,cs), (-335,-135,o), (-361,-155,o), (-394,-155,cs), (-474,-155,l), (-485,-225,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/cedillacomb.glyph000066400000000000000000000026431472355150100311540ustar00rootroot00000000000000{ glyphname = cedillacomb; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-375,-195); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-385,-195,ls), (-325,-195,o), (-279,-161,o), (-273,-118,cs), (-264,-61,o), (-323,-37,o), (-369,-34,c), (-337,26,l), (-379,26,l), (-428,-64,l), (-357,-64,o), (-314,-86,o), (-319,-118,cs), (-322,-140,o), (-347,-160,o), (-379,-160,cs), (-459,-160,l), (-465,-195,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-369,-203); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-386,-203,ls), (-314,-203,o), (-260,-166,o), (-253,-120,cs), (-245,-68,o), (-308,-41,o), (-360,-35,c), (-329,26,l), (-386,26,l), (-436,-69,l), (-369,-69,o), (-334,-89,o), (-338,-112,cs), (-341,-130,o), (-363,-148,o), (-392,-148,cs), (-462,-148,l), (-471,-203,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-365,-225); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-380,-225,ls), (-296,-225,o), (-233,-182,o), (-225,-133,cs), (-215,-72,o), (-292,-43,o), (-352,-39,c), (-324,16,l), (-397,16,l), (-446,-69,l), (-373,-69,o), (-333,-88,o), (-338,-119,cs), (-340,-135,o), (-366,-155,o), (-399,-155,cs), (-479,-155,l), (-490,-225,l) ); } ); width = 0; } ); unicode = 807; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/cent.glyph000066400000000000000000000011501472355150100276370ustar00rootroot00000000000000{ glyphname = cent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,-140,l), (402,690,l), (337,690,l), (206,-140,l) ); }, { alignment = -1; ref = c; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (274,-140,l), (405,690,l), (345,690,l), (214,-140,l) ); }, { alignment = -1; ref = c; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (260,-140,l), (391,690,l), (351,690,l), (220,-140,l) ); }, { ref = c; } ); width = 600; } ); unicode = 162; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/che-cy.glyph000066400000000000000000000022071472355150100300620ustar00rootroot00000000000000{ glyphname = "che-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (573,550,l), (423,550,l), (385,310,l), (366,304,o), (334,300,o), (304,300,cs), (234,300,o), (207,324,o), (216,380,cs), (243,550,l), (93,550,l), (65,370,ls), (44,236,o), (110,165,o), (260,165,cs), (300,165,o), (339,169,o), (364,175,c), (336,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (456,0,l), (543,550,l), (453,550,l), (410,275,l), (397,272,o), (349,270,o), (295,270,cs), (206,270,o), (171,297,o), (181,360,cs), (211,550,l), (121,550,l), (91,360,ls), (73,247,o), (137,188,o), (279,189,cs), (331,189,o), (382,193,o), (397,196,c), (366,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (442,0,l), (529,550,l), (479,550,l), (433,256,l), (402,250,o), (349,246,o), (302,246,cs), (189,246,o), (146,288,o), (162,386,cs), (188,550,l), (138,550,l), (112,386,ls), (92,260,o), (150,200,o), (293,200,cs), (342,200,o), (395,204,o), (426,210,c), (392,0,l) ); } ); width = 600; } ); unicode = 1095; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/checkmark.glyph000066400000000000000000000011501472355150100306360ustar00rootroot00000000000000{ glyphname = checkmark; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (241,141,l), (548,586,l), (510,612,l), (236,216,l), (79,372,l), (44,337,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (253,115,l), (564,574,l), (495,622,l), (244,252,l), (100,394,l), (37,328,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (249,75,l), (580,563,l), (463,643,l), (230,300,l), (118,410,l), (16,308,l) ); } ); width = 600; } ); unicode = 10003; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/chedescender-cy.glyph000066400000000000000000000012221472355150100317330ustar00rootroot00000000000000{ glyphname = "chedescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (464,-140,l), (493,45,l), (443,45,l), (414,-140,l) ); }, { pos = (-3,0); ref = "che-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (474,-140,l), (509,80,l), (429,80,l), (394,-140,l) ); }, { pos = (-5,0); ref = "che-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (519,-140,l), (563,140,l), (433,140,l), (389,-140,l) ); }, { pos = (-10,0); ref = "che-cy"; } ); width = 600; } ); unicode = 1207; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/chi.glyph000066400000000000000000000011171472355150100274540ustar00rootroot00000000000000{ glyphname = chi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-180); ref = X; } ); width = 600; }, { hints = ( { horizontal = 1; place = (550.803,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (-165,21); target = up; type = BottomGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-180); ref = X; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-180); ref = X; } ); width = 600; } ); unicode = 967; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/circumflex.case.glyph000066400000000000000000000007361472355150100317720ustar00rootroot00000000000000{ glyphname = circumflex.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = circumflexcomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/circumflex.glyph000066400000000000000000000006511472355150100310540ustar00rootroot00000000000000{ glyphname = circumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 710; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/circumflexcomb.case.glyph000066400000000000000000000016301472355150100326250ustar00rootroot00000000000000{ glyphname = circumflexcomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-312,810,l), (-195,919,l), (-112,810,l), (-65,810,l), (-163,950,l), (-223,950,l), (-365,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-293,810,l), (-200,888,l), (-131,810,l), (-34,810,l), (-152,950,l), (-235,950,l), (-396,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-281,810,l), (-203,880,l), (-142,810,l), (-10,810,l), (-123,950,l), (-263,950,l), (-420,810,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/circumflexcomb.glyph000066400000000000000000000016421472355150100317160ustar00rootroot00000000000000{ glyphname = circumflexcomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-338,645,l), (-222,754,l), (-138,645,l), (-91,645,l), (-189,785,l), (-249,785,l), (-391,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-319,645,l), (-226,723,l), (-157,645,l), (-60,645,l), (-178,785,l), (-261,785,l), (-422,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-307,645,l), (-229,715,l), (-168,645,l), (-36,645,l), (-149,785,l), (-289,785,l), (-446,645,l) ); } ); width = 0; } ); unicode = 770; } circumflexcomb_acutecomb.case.glyph000066400000000000000000000022261472355150100345720ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = circumflexcomb_acutecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-98,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (57,905,l), (191,1020,l), (40,1020,l), (-84,905,l) ); }, { closed = 1; nodes = ( (-284,780,l), (-204,850,l), (-146,780,l), (-15,780,l), (-128,920,l), (-268,920,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-113,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (6,900,l), (135,1020,l), (29,1020,l), (-95,900,l) ); }, { closed = 1; nodes = ( (-298,780,l), (-205,858,l), (-137,780,l), (-39,780,l), (-156,920,l), (-240,920,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-121,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-46,895,l), (89,1020,l), (27,1020,l), (-98,895,l) ); }, { closed = 1; nodes = ( (-317,780,l), (-201,889,l), (-117,780,l), (-70,780,l), (-168,920,l), (-228,920,l), (-370,780,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/circumflexcomb_acutecomb.glyph000066400000000000000000000022161472355150100337360ustar00rootroot00000000000000{ glyphname = circumflexcomb_acutecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-111,895); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (33,755,l), (185,895,l), (38,895,l), (-104,755,l) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-129,900); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-18,760,l), (124,900,l), (20,900,l), (-117,760,l) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-136,900); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-68,760,l), (79,900,l), (15,900,l), (-122,760,l) ); }, { closed = 1; nodes = ( (-339,645,l), (-223,754,l), (-139,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); } circumflexcomb_gravecomb.case.glyph000066400000000000000000000022351472355150100345750ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = circumflexcomb_gravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-142,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (85,905,l), (-1,1020,l), (-139,1020,l), (-43,905,l) ); }, { closed = 1; nodes = ( (-284,780,l), (-204,850,l), (-146,780,l), (-15,780,l), (-128,920,l), (-268,920,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-153,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (37,900,l), (-59,1020,l), (-155,1020,l), (-54,900,l) ); }, { closed = 1; nodes = ( (-298,780,l), (-205,858,l), (-137,780,l), (-39,780,l), (-156,920,l), (-240,920,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-160,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-8,895,l), (-97,1020,l), (-155,1020,l), (-56,895,l) ); }, { closed = 1; nodes = ( (-317,780,l), (-201,889,l), (-117,780,l), (-70,780,l), (-168,920,l), (-228,920,l), (-370,780,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/circumflexcomb_gravecomb.glyph000066400000000000000000000022221472355150100337360ustar00rootroot00000000000000{ glyphname = circumflexcomb_gravecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-155,895); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (75,755,l), (-23,895,l), (-166,895,l), (-58,755,l) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-164,900); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,760,l), (-71,900,l), (-167,900,l), (-59,760,l) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-179,900); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-28,760,l), (-125,900,l), (-181,900,l), (-74,760,l) ); }, { closed = 1; nodes = ( (-339,645,l), (-223,754,l), (-139,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); } circumflexcomb_hookabovecomb.case.glyph000066400000000000000000000032751472355150100354530ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = circumflexcomb_hookabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-139,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (42,870,l), (63,886,ls), (79,898,o), (93,921,o), (96,938,cs), (104,991,o), (67,1020,o), (3,1020,cs), (-92,1020,l), (-104,944,l), (-36,944,ls), (-20,944,o), (-12,938,o), (-14,927,cs), (-15,920,o), (-19,914,o), (-31,904,cs), (-70,870,l) ); }, { closed = 1; nodes = ( (-284,780,l), (-204,850,l), (-146,780,l), (-15,780,l), (-128,920,l), (-268,920,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-147,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-5,880,l), (35,915,ls), (47,925,o), (55,940,o), (58,958,cs), (64,995,o), (41,1020,o), (-2,1020,cs), (-87,1020,l), (-97,962,l), (-35,962,ls), (-26,962,o), (-21,955,o), (-22,946,cs), (-23,939,o), (-27,932,o), (-33,927,cs), (-89,880,l) ); }, { closed = 1; nodes = ( (-298,780,l), (-205,858,l), (-137,780,l), (-39,780,l), (-156,920,l), (-240,920,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-138,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-22,880,l), (14,915,ls), (32,932,o), (45,952,o), (48,971,cs), (53,1001,o), (31,1020,o), (-12,1020,cs), (-83,1020,l), (-89,985,l), (-15,985,ls), (2,985,o), (10,977,o), (8,966,cs), (7,958,o), (-3,947,o), (-17,933,cs), (-72,880,l) ); }, { closed = 1; nodes = ( (-317,780,l), (-201,889,l), (-117,780,l), (-70,780,l), (-168,920,l), (-228,920,l), (-370,780,l) ); } ); width = 0; } ); } circumflexcomb_hookabovecomb.glyph000066400000000000000000000032721472355150100345360ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = circumflexcomb_hookabovecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-145,944); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (24,755,l), (65,797,ls), (82,814,o), (93,836,o), (97,858,cs), (105,910,o), (69,944,o), (6,944,cs), (-99,944,l), (-113,859,l), (-38,859,ls), (-19,859,o), (-12,855,o), (-14,842,cs), (-15,834,o), (-20,826,o), (-33,813,cs), (-91,755,l) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-162,930); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-26,760,l), (17,810,ls), (30,825,o), (39,841,o), (42,859,cs), (49,901,o), (16,930,o), (-41,930,cs), (-106,930,l), (-115,870,l), (-66,870,ls), (-49,870,o), (-41,861,o), (-43,846,cs), (-44,838,o), (-49,829,o), (-56,821,cs), (-111,760,l) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-157,926); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-55,760,l), (-8,811,ls), (10,831,o), (22,853,o), (24,869,cs), (29,904,o), (3,926,o), (-42,926,cs), (-116,926,l), (-121,891,l), (-47,891,ls), (-27,891,o), (-17,881,o), (-20,865,cs), (-21,855,o), (-29,841,o), (-41,829,cs), (-105,760,l) ); }, { closed = 1; nodes = ( (-339,645,l), (-223,754,l), (-139,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); } circumflexcomb_tildecomb.case.glyph000066400000000000000000000037761472355150100346050ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = circumflexcomb_tildecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-59,910,o), (-16,949,o), (-4,1010,cs), (-3,1015,l), (-88,1015,l), (-89,1010,ls), (-92,995,o), (-103,985,o), (-118,985,cs), (-163,985,o), (-192,1020,o), (-262,1020,cs), (-323,1020,o), (-366,980,o), (-378,920,cs), (-379,915,l), (-294,915,l), (-293,920,ls), (-290,935,o), (-279,945,o), (-264,945,cs), (-219,945,o), (-190,910,o), (-120,910,cs) ); }, { closed = 1; nodes = ( (-289,780,l), (-209,855,l), (-151,780,l), (-15,780,l), (-94,884,l), (-314,884,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-67,920,o), (-27,952,o), (-20,1003,cs), (-19,1010,l), (-84,1010,l), (-85,1003,ls), (-88,985,o), (-102,973,o), (-120,973,cs), (-170,973,o), (-177,1020,o), (-257,1020,cs), (-312,1020,o), (-354,988,o), (-361,937,cs), (-362,930,l), (-297,930,l), (-296,937,ls), (-293,955,o), (-279,967,o), (-261,967,cs), (-211,967,o), (-200,920,o), (-121,920,cs) ); }, { closed = 1; nodes = ( (-298,780,l), (-206,853,l), (-138,780,l), (-40,780,l), (-139,890,l), (-267,890,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-77,920,o), (-42,949,o), (-36,995,cs), (-34,1010,l), (-74,1010,l), (-76,995,ls), (-79,972,o), (-96,958,o), (-117,958,cs), (-172,958,o), (-182,1020,o), (-252,1020,cs), (-301,1020,o), (-335,991,o), (-344,945,cs), (-347,930,l), (-307,930,l), (-304,945,ls), (-299,968,o), (-283,982,o), (-258,982,cs), (-203,982,o), (-193,920,o), (-123,920,cs) ); }, { closed = 1; nodes = ( (-317,780,l), (-204,872,l), (-117,780,l), (-70,780,l), (-171,901,l), (-231,901,l), (-370,780,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/circumflexcomb_tildecomb.glyph000066400000000000000000000037551472355150100337470ustar00rootroot00000000000000{ glyphname = circumflexcomb_tildecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-191,970); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-77,826,o), (-27,872,o), (-15,941,cs), (-11,964,l), (-96,964,l), (-100,939,ls), (-103,922,o), (-117,911,o), (-135,911,cs), (-175,911,o), (-175,970,o), (-260,970,cs), (-326,970,o), (-378,924,o), (-389,855,cs), (-393,830,l), (-308,830,l), (-304,852,ls), (-300,872,o), (-287,885,o), (-269,885,cs), (-229,885,o), (-228,826,o), (-143,826,cs) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,928); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-93,812,o), (-49,847,o), (-41,900,cs), (-38,920,l), (-103,920,l), (-107,895,ls), (-110,876,o), (-122,865,o), (-142,865,cs), (-187,865,o), (-178,928,o), (-263,928,cs), (-319,928,o), (-363,893,o), (-371,840,cs), (-374,820,l), (-309,820,l), (-305,845,ls), (-302,865,o), (-289,875,o), (-270,875,cs), (-225,875,o), (-233,812,o), (-149,812,cs) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-198,925); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-96,815,o), (-65,843,o), (-57,895,cs), (-53,920,l), (-93,920,l), (-97,895,ls), (-101,869,o), (-116,855,o), (-139,855,cs), (-192,855,o), (-190,925,o), (-262,925,cs), (-314,925,o), (-347,897,o), (-355,845,cs), (-359,820,l), (-319,820,l), (-315,845,ls), (-311,872,o), (-296,885,o), (-269,885,cs), (-215,885,o), (-216,815,o), (-145,815,cs) ); }, { closed = 1; nodes = ( (-338,645,l), (-222,754,l), (-138,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon.case.glyph000066400000000000000000000025771472355150100307500ustar00rootroot00000000000000{ glyphname = colon.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (389,460,o), (435,496,o), (443,550,cs), (452,604,o), (418,640,o), (358,640,cs), (298,640,o), (252,604,o), (243,550,cs), (235,496,o), (269,460,o), (329,460,cs) ); }, { closed = 1; nodes = ( (327,70,o), (373,106,o), (382,160,cs), (390,214,o), (356,250,o), (296,250,cs), (236,250,o), (190,214,o), (182,160,cs), (173,106,o), (207,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (379,496,o), (412,525,o), (419,568,cs), (426,611,o), (402,640,o), (358,640,cs), (314,640,o), (280,611,o), (273,568,cs), (266,525,o), (291,496,o), (335,496,cs) ); }, { closed = 1; nodes = ( (311,70,o), (345,99,o), (352,142,cs), (359,185,o), (334,214,o), (290,214,cs), (246,214,o), (213,185,o), (206,142,cs), (199,99,o), (223,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,490,o), (422,520,o), (429,565,cs), (436,610,o), (408,640,o), (358,640,cs), (308,640,o), (270,610,o), (263,565,cs), (256,520,o), (284,490,o), (334,490,cs) ); }, { closed = 1; nodes = ( (317,70,o), (355,100,o), (362,145,cs), (369,190,o), (341,220,o), (291,220,cs), (241,220,o), (203,190,o), (196,145,cs), (189,100,o), (217,70,o), (267,70,cs) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon.glyph000066400000000000000000000026071472355150100300300ustar00rootroot00000000000000{ glyphname = colon; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (376,380,o), (422,416,o), (430,470,cs), (439,524,o), (405,560,o), (345,560,cs), (285,560,o), (239,524,o), (230,470,cs), (222,416,o), (256,380,o), (316,380,cs) ); }, { closed = 1; nodes = ( (314,-10,o), (360,26,o), (369,80,cs), (377,134,o), (343,170,o), (283,170,cs), (223,170,o), (177,134,o), (169,80,cs), (160,26,o), (194,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (366,416,o), (399,445,o), (406,488,cs), (413,531,o), (389,560,o), (345,560,cs), (301,560,o), (267,531,o), (260,488,cs), (253,445,o), (278,416,o), (322,416,cs) ); }, { closed = 1; nodes = ( (298,-10,o), (332,19,o), (339,62,cs), (346,105,o), (321,134,o), (277,134,cs), (233,134,o), (200,105,o), (193,62,cs), (186,19,o), (210,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (371,410,o), (409,440,o), (416,485,cs), (423,530,o), (395,560,o), (345,560,cs), (295,560,o), (257,530,o), (250,485,cs), (243,440,o), (271,410,o), (321,410,cs) ); }, { closed = 1; nodes = ( (304,-10,o), (342,20,o), (349,65,cs), (356,110,o), (328,140,o), (278,140,cs), (228,140,o), (190,110,o), (183,65,cs), (176,20,o), (204,-10,o), (254,-10,cs) ); } ); width = 600; } ); unicode = 58; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon_colon.liga.glyph000066400000000000000000000011131472355150100321240ustar00rootroot00000000000000{ glyphname = colon_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-520,0); ref = colon; }, { alignment = -1; pos = (-80,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-520,0); ref = colon; }, { alignment = -1; pos = (-80,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-520,0); ref = colon; }, { alignment = -1; pos = (-80,0); ref = colon; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon_colon_colon.liga.glyph000066400000000000000000000013551472355150100333260ustar00rootroot00000000000000{ glyphname = colon_colon_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1040,0); ref = colon; }, { alignment = -1; pos = (-600,0); ref = colon; }, { alignment = -1; pos = (-160,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1040,0); ref = colon; }, { alignment = -1; pos = (-600,0); ref = colon; }, { alignment = -1; pos = (-160,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1040,0); ref = colon; }, { alignment = -1; pos = (-600,0); ref = colon; }, { alignment = -1; pos = (-160,0); ref = colon; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon_colon_equal.liga.glyph000066400000000000000000000013631472355150100333220ustar00rootroot00000000000000{ glyphname = colon_colon_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1170,55); ref = colon; }, { alignment = -1; pos = (-720,55); ref = colon; }, { alignment = -1; pos = (-130,0); ref = equal; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1173,55); ref = colon; }, { alignment = -1; pos = (-721,55); ref = colon; }, { alignment = -1; pos = (-130,0); ref = equal; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1173,55); ref = colon; }, { alignment = -1; pos = (-721,55); ref = colon; }, { alignment = -1; pos = (-130,0); ref = equal; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon_equal.liga.glyph000066400000000000000000000036741472355150100321370ustar00rootroot00000000000000{ glyphname = colon_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (487,385,l), (509,525,l), (-41,525,l), (-63,385,l) ); }, { closed = 1; nodes = ( (-321,85,o), (-275,123,o), (-265,180,cs), (-256,241,o), (-289,281,o), (-349,281,cs), (-409,281,o), (-456,241,o), (-465,180,cs), (-475,123,o), (-441,85,o), (-381,85,cs) ); }, { closed = 1; nodes = ( (-274,379,o), (-228,417,o), (-219,474,cs), (-209,535,o), (-243,575,o), (-303,575,cs), (-363,575,o), (-409,535,o), (-419,474,cs), (-428,417,o), (-394,379,o), (-334,379,cs) ); }, { closed = 1; nodes = ( (447,135,l), (470,275,l), (-80,275,l), (-103,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (491,410,l), (504,490,l), (-46,490,l), (-59,410,l) ); }, { closed = 1; nodes = ( (-330,100,o), (-293,132,o), (-285,181,cs), (-278,229,o), (-305,260,o), (-353,260,cs), (-401,260,o), (-438,229,o), (-445,181,cs), (-453,132,o), (-426,100,o), (-378,100,cs) ); }, { closed = 1; nodes = ( (-283,400,o), (-246,431,o), (-238,480,cs), (-230,528,o), (-257,560,o), (-305,560,cs), (-353,560,o), (-390,528,o), (-398,480,cs), (-406,431,o), (-379,400,o), (-331,400,cs) ); }, { closed = 1; nodes = ( (453,170,l), (466,250,l), (-84,250,l), (-97,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (493,420,l), (500,465,l), (-50,465,l), (-57,420,l) ); }, { closed = 1; nodes = ( (-333,110,o), (-297,139,o), (-290,180,cs), (-284,221,o), (-311,250,o), (-354,250,cs), (-398,250,o), (-435,221,o), (-441,180,cs), (-448,139,o), (-421,110,o), (-377,110,cs) ); }, { closed = 1; nodes = ( (-285,410,o), (-249,439,o), (-243,480,cs), (-236,521,o), (-264,550,o), (-307,550,cs), (-351,550,o), (-387,521,o), (-394,480,cs), (-400,439,o), (-373,410,o), (-329,410,cs) ); }, { closed = 1; nodes = ( (457,195,l), (464,240,l), (-86,240,l), (-93,195,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon_greater.liga.glyph000066400000000000000000000011311472355150100324430ustar00rootroot00000000000000{ glyphname = colon_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-100,0); ref = greater; }, { alignment = -1; pos = (-600,55); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-100,0); ref = greater; }, { alignment = -1; pos = (-600,55); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-100,0); ref = greater; }, { alignment = -1; pos = (-600,55); ref = colon; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon_less.liga.glyph000066400000000000000000000011151472355150100317620ustar00rootroot00000000000000{ glyphname = colon_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,55); ref = colon; }, { alignment = -1; pos = (-140,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,55); ref = colon; }, { alignment = -1; pos = (-140,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,55); ref = colon; }, { alignment = -1; pos = (-140,0); ref = less; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colon_question.liga.glyph000066400000000000000000000011311472355150100326610ustar00rootroot00000000000000{ glyphname = colon_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-90,0); ref = question; }, { alignment = -1; pos = (-550,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-100,0); ref = question; }, { alignment = -1; pos = (-550,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-110,0); ref = question; }, { alignment = -1; pos = (-550,0); ref = colon; } ); width = 600; } ); } colon_question_greater.liga.glyph000066400000000000000000000012361472355150100343210ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = colon_question_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-709,0); ref = question; }, { pos = (-1195,0); ref = colon; }, { pos = (-85,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-709,0); ref = question; }, { pos = (-1195,0); ref = colon; }, { pos = (-85,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-709,0); ref = question; }, { pos = (-1195,0); ref = colon; }, { pos = (-85,0); ref = greater; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/colonequals.glyph000066400000000000000000000035351472355150100312440ustar00rootroot00000000000000{ glyphname = colonequals; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,405,l), (628,455,l), (278,455,l), (270,405,l) ); }, { closed = 1; nodes = ( (105,110,o), (139,137,o), (146,180,cs), (152,223,o), (128,250,o), (82,250,cs), (35,250,o), (1,223,o), (-5,180,cs), (-12,137,o), (12,110,o), (59,110,cs) ); }, { closed = 1; nodes = ( (154,410,o), (187,437,o), (193,480,cs), (200,523,o), (175,550,o), (129,550,cs), (82,550,o), (49,523,o), (42,480,cs), (36,437,o), (61,410,o), (107,410,cs) ); }, { closed = 1; nodes = ( (589,210,l), (597,260,l), (247,260,l), (239,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (621,410,l), (634,490,l), (284,490,l), (271,410,l) ); }, { closed = 1; nodes = ( (101,100,o), (137,131,o), (145,180,cs), (152,229,o), (126,260,o), (77,260,cs), (27,260,o), (-8,229,o), (-15,180,cs), (-23,131,o), (3,100,o), (52,100,cs) ); }, { closed = 1; nodes = ( (148,400,o), (184,431,o), (192,480,cs), (200,529,o), (174,560,o), (125,560,cs), (76,560,o), (40,529,o), (32,480,cs), (24,431,o), (50,400,o), (99,400,cs) ); }, { closed = 1; nodes = ( (583,170,l), (596,250,l), (246,250,l), (233,170,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (577,135,l), (600,275,l), (250,275,l), (227,135,l) ); }, { closed = 1; nodes = ( (120,85,o), (165,122,o), (175,180,cs), (184,242,o), (152,281,o), (91,281,cs), (29,281,o), (-16,242,o), (-25,180,cs), (-35,122,o), (-3,85,o), (59,85,cs) ); }, { closed = 1; nodes = ( (168,379,o), (212,416,o), (221,474,cs), (231,536,o), (199,575,o), (137,575,cs), (76,575,o), (31,536,o), (21,474,cs), (12,416,o), (44,379,o), (106,379,cs) ); }, { closed = 1; nodes = ( (617,385,l), (639,525,l), (289,525,l), (267,385,l) ); } ); width = 600; } ); unicode = 8788; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/comma.glyph000066400000000000000000000010341472355150100300030ustar00rootroot00000000000000{ glyphname = comma; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (201,-160,l), (380,151,l), (200,151,l), (71,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (178,-160,l), (357,151,l), (223,151,l), (94,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (164,-160,l), (338,151,l), (245,151,l), (121,-160,l) ); } ); width = 600; } ); unicode = 44; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/commaaccentcomb.alt.glyph000066400000000000000000000012671472355150100326110ustar00rootroot00000000000000{ glyphname = commaaccentcomb.alt; layers = ( { anchors = ( { name = _bottom; pos = (-346,0); }, { name = bottom; pos = (-384,-240); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = commaaccentcomb; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (-354,0); }, { name = bottom; pos = (-392,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = commaaccentcomb; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (-351,0); }, { name = bottom; pos = (-389,-240); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = commaaccentcomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/commaaccentcomb.case.glyph000066400000000000000000000014631472355150100327420ustar00rootroot00000000000000{ glyphname = commaaccentcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-389,-240); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-417,-240,l), (-289,-95,l), (-354,-95,l), (-467,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-392,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-399,-240,l), (-271,-95,l), (-372,-95,l), (-490,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-384,-240); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-374,-240,l), (-236,-95,l), (-392,-95,l), (-510,-240,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/commaaccentcomb.glyph000066400000000000000000000014771472355150100320350ustar00rootroot00000000000000{ glyphname = commaaccentcomb; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-384,-240); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-377,-240,l), (-239,-95,l), (-389,-95,l), (-507,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-392,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-397,-240,l), (-269,-95,l), (-374,-95,l), (-492,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-389,-240); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-417,-240,l), (-289,-95,l), (-354,-95,l), (-467,-240,l) ); } ); width = 600; } ); unicode = 806; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/commaturnedabovecomb.case.glyph000066400000000000000000000014511472355150100340200ustar00rootroot00000000000000{ glyphname = commaturnedabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-168,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-140,1020,l), (-278,810,l), (-209,810,l), (-91,1020,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-175,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-150,1020,l), (-303,810,l), (-184,810,l), (-81,1020,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-173,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-176,1020,l), (-329,810,l), (-153,810,l), (-50,1020,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/commaturnedabovecomb.glyph000066400000000000000000000014531472355150100331100ustar00rootroot00000000000000{ glyphname = commaturnedabovecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-185,880); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,880,l), (-304,645,l), (-235,645,l), (-103,880,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-192,880); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-162,880,l), (-329,645,l), (-210,645,l), (-93,880,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-190,880); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-188,880,l), (-355,645,l), (-179,645,l), (-62,880,l) ); } ); width = 0; } ); unicode = 786; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/complement.glyph000066400000000000000000000031671472355150100310630ustar00rootroot00000000000000{ glyphname = complement; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (435,40,o), (435,116,cs), (435,180,l), (385,180,l), (385,116,ls), (385,68,o), (353,36,o), (305,36,cs), (257,36,o), (225,68,o), (225,116,cs), (225,434,ls), (225,482,o), (257,514,o), (305,514,cs), (353,514,o), (385,482,o), (385,434,cs), (385,370,l), (435,370,l), (435,434,ls), (435,510,o), (384,560,o), (305,560,cs), (226,560,o), (175,510,o), (175,434,cs), (175,116,ls), (175,40,o), (226,-10,o), (305,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (396,-10,o), (455,49,o), (455,140,cs), (455,180,l), (365,180,l), (365,130,ls), (365,94,o), (341,70,o), (305,70,cs), (269,70,o), (245,94,o), (245,130,cs), (245,420,ls), (245,456,o), (269,480,o), (305,480,cs), (341,480,o), (365,456,o), (365,420,cs), (365,370,l), (455,370,l), (455,410,ls), (455,501,o), (396,560,o), (305,560,cs), (214,560,o), (155,501,o), (155,410,cs), (155,140,ls), (155,49,o), (214,-10,o), (305,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (420,-10,o), (495,65,o), (495,180,cs), (495,230,l), (345,230,l), (345,160,ls), (345,136,o), (329,120,o), (305,120,cs), (281,120,o), (265,136,o), (265,160,cs), (265,390,ls), (265,414,o), (281,430,o), (305,430,cs), (329,430,o), (345,414,o), (345,390,cs), (345,350,l), (495,350,l), (495,370,ls), (495,485,o), (420,560,o), (305,560,cs), (190,560,o), (115,485,o), (115,370,cs), (115,180,ls), (115,65,o), (190,-10,o), (305,-10,cs) ); } ); width = 600; } ); unicode = 8705; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/congruent.glyph000066400000000000000000000015641472355150100307230ustar00rootroot00000000000000{ glyphname = congruent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,114,l), (491,158,l), (71,158,l), (64,114,l) ); }, { closed = 1; nodes = ( (515,308,l), (522,352,l), (102,352,l), (95,308,l) ); }, { pos = (29,185); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (498,76,l), (510,152,l), (50,152,l), (38,76,l) ); }, { closed = 1; nodes = ( (532,292,l), (544,368,l), (84,368,l), (72,292,l) ); }, { pos = (35,215); ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (511,0,l), (532,130,l), (22,130,l), (1,0,l) ); }, { closed = 1; nodes = ( (553,265,l), (574,395,l), (64,395,l), (43,265,l) ); }, { pos = (39,245); ref = asciitilde; } ); width = 600; } ); unicode = 8773; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/control.glyph000066400000000000000000000012161472355150100303710ustar00rootroot00000000000000{ glyphname = control; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (154,370,l), (298,504,l), (444,370,l), (510,370,l), (323,550,l), (277,550,l), (90,370,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (170,370,l), (298,488,l), (429,370,l), (540,370,l), (350,550,l), (250,550,l), (60,370,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (211,370,l), (298,450,l), (389,370,l), (580,370,l), (391,550,l), (209,550,l), (20,370,l) ); } ); width = 600; } ); unicode = 8963; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/coproduct.glyph000066400000000000000000000015371472355150100307210ustar00rootroot00000000000000{ glyphname = coproduct; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (507,-180,l), (530,-40,l), (470,-40,l), (592,730,l), (442,730,l), (320,-40,l), (180,-40,l), (302,730,l), (152,730,l), (30,-40,l), (-30,-40,l), (-53,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (487,-180,l), (500,-98,l), (435,-98,l), (567,730,l), (477,730,l), (345,-98,l), (135,-98,l), (267,730,l), (177,730,l), (45,-98,l), (-20,-98,l), (-33,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,-180,l), (485,-135,l), (410,-135,l), (547,730,l), (497,730,l), (360,-135,l), (110,-135,l), (247,730,l), (197,730,l), (60,-135,l), (-15,-135,l), (-23,-180,l) ); } ); width = 600; } ); unicode = 8720; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/copyright.glyph000066400000000000000000000053471472355150100307320ustar00rootroot00000000000000{ glyphname = copyright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (426,110,o), (544,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (34,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,cs), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (380,245,o), (442,295,o), (454,370,c), (369,370,l), (364,340,o), (341,320,o), (312,320,cs), (282,320,o), (265,340,o), (270,370,cs), (287,480,ls), (292,510,o), (315,530,o), (345,530,cs), (374,530,o), (391,510,o), (386,480,c), (471,480,l), (483,555,o), (437,605,o), (357,605,cs), (276,605,o), (214,555,o), (202,480,cs), (185,370,ls), (173,295,o), (219,245,o), (300,245,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (426,110,o), (544,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (34,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,cs), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (374,245,o), (431,291,o), (442,360,c), (377,360,l), (371,324,o), (344,300,o), (309,300,cs), (273,300,o), (252,324,o), (258,360,cs), (279,490,ls), (284,526,o), (312,550,o), (348,550,cs), (383,550,o), (403,526,o), (398,490,c), (463,490,l), (474,559,o), (431,605,o), (357,605,cs), (282,605,o), (225,559,o), (214,490,cs), (193,360,ls), (182,291,o), (225,245,o), (300,245,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (422,110,o), (536,205,o), (559,350,cs), (583,500,ls), (606,645,o), (522,740,o), (373,740,cs), (224,740,o), (110,645,o), (87,500,cs), (63,350,ls), (40,205,o), (124,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (157,148,o), (87,229,o), (106,350,cs), (130,500,ls), (149,621,o), (245,702,o), (367,702,cs), (489,702,o), (559,621,o), (540,500,cs), (516,350,ls), (497,229,o), (401,148,o), (279,148,cs) ); }, { closed = 1; nodes = ( (368,245,o), (421,291,o), (432,360,c), (387,360,l), (380,315,o), (347,285,o), (306,285,cs), (264,285,o), (241,315,o), (248,360,cs), (269,490,ls), (276,535,o), (308,565,o), (350,565,cs), (391,565,o), (415,535,o), (408,490,c), (453,490,l), (464,559,o), (425,605,o), (357,605,cs), (288,605,o), (235,559,o), (224,490,cs), (203,360,ls), (192,291,o), (231,245,o), (300,245,cs) ); } ); width = 600; } ); unicode = 169; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/curlybracketextension.glyph000066400000000000000000000010661472355150100333430ustar00rootroot00000000000000{ glyphname = curlybracketextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,1020,l), (275,1020,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9130; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/curlyor.glyph000066400000000000000000000020501472355150100304050ustar00rootroot00000000000000{ glyphname = curlyor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (284,0,l), (300,100,l), (336,327,o), (457,486,o), (609,505,c), (616,550,l), (452,532,o), (320,392,o), (283,193,c), (285,193,l), (312,392,o), (228,532,o), (71,550,c), (64,505,l), (207,486,o), (276,327,o), (240,100,c), (224,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (304,0,l), (318,90,l), (352,300,o), (463,447,o), (602,464,c), (617,554,l), (453,536,o), (321,398,o), (284,202,c), (286,202,l), (313,398,o), (229,536,o), (72,554,c), (57,464,l), (189,447,o), (252,300,o), (218,90,c), (204,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (334,0,l), (346,77,l), (379,284,o), (470,410,o), (596,425,c), (617,555,l), (443,539,o), (319,393,o), (277,153,c), (279,153,l), (315,392,o), (240,538,o), (72,555,c), (51,425,l), (170,408,o), (219,281,o), (186,77,c), (174,0,l) ); } ); width = 600; } ); unicode = 8910; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/currency.glyph000066400000000000000000000051571472355150100305530ustar00rootroot00000000000000{ glyphname = currency; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (549,178,l), (431,316,l), (445,233,l), (484,271,o), (512,319,o), (520,373,cs), (529,427,o), (517,477,o), (490,512,c), (459,431,l), (607,560,l), (546,632,l), (398,503,l), (485,521,l), (449,555,o), (405,575,o), (348,575,cs), (294,575,o), (241,555,o), (204,525,c), (280,496,l), (163,636,l), (83,567,l), (199,428,l), (187,510,l), (146,475,o), (118,427,o), (110,373,cs), (102,317,o), (115,266,o), (145,230,c), (174,311,l), (25,182,l), (85,110,l), (237,241,l), (151,223,l), (183,189,o), (230,171,o), (284,171,cs), (337,171,o), (390,189,o), (427,221,c), (350,248,l), (468,110,l) ); }, { closed = 1; nodes = ( (239,266,o), (200,312,o), (210,373,cs), (220,434,o), (273,480,o), (333,480,cs), (392,480,o), (430,434,o), (420,373,cs), (410,312,o), (358,266,o), (299,266,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (524,165,l), (439,265,l), (443,238,l), (481,274,o), (507,320,o), (516,373,cs), (525,427,o), (511,474,o), (485,508,c), (476,481,l), (591,581,l), (562,616,l), (446,516,l), (474,522,l), (443,552,o), (400,570,o), (347,570,cs), (295,570,o), (245,552,o), (206,521,c), (232,512,l), (145,616,l), (105,581,l), (191,478,l), (186,505,l), (150,471,o), (125,425,o), (116,373,cs), (107,319,o), (121,273,o), (145,237,c), (155,265,l), (40,166,l), (70,131,l), (186,231,l), (158,225,l), (187,195,o), (232,176,o), (285,176,cs), (336,176,o), (385,193,o), (425,222,c), (399,231,l), (485,130,l) ); }, { closed = 1; nodes = ( (208,224,o), (155,288,o), (168,373,cs), (182,458,o), (256,522,o), (340,522,cs), (424,522,o), (478,458,o), (464,373,cs), (451,288,o), (376,224,o), (292,224,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (542,174,l), (444,290,l), (453,241,l), (487,277,o), (511,322,o), (520,373,cs), (529,424,o), (519,470,o), (495,506,c), (476,456,l), (603,565,l), (549,628,l), (421,517,l), (473,528,l), (443,558,o), (400,575,o), (348,575,cs), (299,575,o), (252,560,o), (215,533,c), (261,516,l), (161,635,l), (90,574,l), (188,457,l), (181,506,l), (143,470,o), (119,425,o), (110,373,cs), (101,321,o), (113,274,o), (138,241,c), (155,290,l), (29,179,l), (82,114,l), (212,225,l), (161,216,l), (191,187,o), (233,171,o), (284,171,cs), (333,171,o), (381,186,o), (418,215,c), (372,231,l), (471,113,l) ); }, { closed = 1; nodes = ( (220,240,o), (172,297,o), (184,373,cs), (196,449,o), (262,506,o), (337,506,cs), (411,506,o), (458,449,o), (446,373,cs), (434,297,o), (369,240,o), (295,240,cs) ); } ); width = 600; } ); unicode = 164; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/d.glyph000066400000000000000000000035541472355150100271430ustar00rootroot00000000000000{ glyphname = d; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-10,o), (352,45,o), (367,140,c), (327,105,l), (362,105,l), (345,0,l), (490,0,l), (606,730,l), (456,730,l), (432,580,l), (415,445,l), (380,445,l), (410,410,l), (425,505,o), (379,560,o), (288,560,cs), (177,560,o), (91,476,o), (71,345,cs), (48,205,ls), (28,73,o), (86,-10,o), (197,-10,cs) ); }, { closed = 1; nodes = ( (216,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,397,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (373,210,ls), (364,152,o), (327,120,o), (272,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (314,-10,o), (382,42,o), (395,126,c), (374,105,l), (392,105,l), (375,0,l), (465,0,l), (581,730,l), (491,730,l), (465,570,l), (447,445,l), (427,445,l), (442,424,l), (455,507,o), (404,560,o), (314,560,cs), (203,560,o), (121,482,o), (101,355,cs), (76,194,ls), (56,68,o), (113,-10,o), (223,-10,cs) ); }, { closed = 1; nodes = ( (190,68,o), (153,115,o), (167,200,cs), (190,350,ls), (204,435,o), (255,482,o), (331,482,cs), (405,482,o), (444,433,o), (430,350,cs), (407,200,ls), (394,117,o), (340,68,o), (266,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (337,-10,o), (414,49,o), (428,140,c), (380,75,l), (408,75,l), (396,0,l), (446,0,l), (562,730,l), (512,730,l), (488,580,l), (471,475,l), (453,475,l), (471,410,l), (485,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,480,o), (118,360,cs), (91,189,ls), (72,69,o), (131,-10,o), (241,-10,cs) ); }, { closed = 1; nodes = ( (169,33,o), (125,91,o), (141,189,cs), (168,360,ls), (184,458,o), (246,517,o), (335,517,cs), (426,517,o), (469,458,o), (453,360,cs), (426,189,ls), (410,91,o), (348,33,o), (258,33,cs) ); } ); width = 600; } ); unicode = 100; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dagger.glyph000066400000000000000000000015311472355150100301420ustar00rootroot00000000000000{ glyphname = dagger; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,-110,l), (407,480,l), (562,480,l), (584,620,l), (429,620,l), (462,830,l), (312,830,l), (279,620,l), (124,620,l), (102,480,l), (257,480,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (284,-110,l), (383,520,l), (558,520,l), (571,600,l), (396,600,l), (432,830,l), (342,830,l), (306,600,l), (131,600,l), (118,520,l), (293,520,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (367,540,l), (552,540,l), (559,585,l), (374,585,l), (412,830,l), (362,830,l), (324,585,l), (139,585,l), (132,540,l), (317,540,l), (214,-110,l) ); } ); width = 600; } ); unicode = 8224; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/daggerdbl.glyph000066400000000000000000000022161472355150100306250ustar00rootroot00000000000000{ glyphname = daggerdbl; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,-110,l), (348,110,l), (503,110,l), (526,250,l), (371,250,l), (407,480,l), (562,480,l), (584,620,l), (429,620,l), (462,830,l), (312,830,l), (279,620,l), (124,620,l), (102,480,l), (257,480,l), (221,250,l), (66,250,l), (43,110,l), (198,110,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (284,-110,l), (323,140,l), (498,140,l), (511,220,l), (336,220,l), (382,510,l), (557,510,l), (569,590,l), (394,590,l), (432,830,l), (342,830,l), (304,590,l), (129,590,l), (117,510,l), (292,510,l), (246,220,l), (71,220,l), (58,140,l), (233,140,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (306,160,l), (491,160,l), (498,205,l), (313,205,l), (365,529,l), (550,529,l), (557,574,l), (372,574,l), (412,830,l), (362,830,l), (322,574,l), (137,574,l), (130,529,l), (315,529,l), (263,205,l), (78,205,l), (71,160,l), (256,160,l), (214,-110,l) ); } ); width = 600; } ); unicode = 8225; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dataL_inkE_scape-control.glyph000066400000000000000000000016331472355150100335400ustar00rootroot00000000000000{ glyphname = "dataLinkEscape-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = E; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = E; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = E; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9232; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dblgravecomb.case.glyph000066400000000000000000000020271472355150100322530ustar00rootroot00000000000000{ glyphname = dblgravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-232,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-337,950,l), (-392,950,l), (-302,810,l), (-253,810,l) ); }, { closed = 1; nodes = ( (-178,950,l), (-233,950,l), (-143,810,l), (-94,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-231,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-330,950,l), (-419,950,l), (-326,810,l), (-242,810,l) ); }, { closed = 1; nodes = ( (-154,950,l), (-243,950,l), (-150,810,l), (-66,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-231,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-321,950,l), (-461,950,l), (-368,810,l), (-238,810,l) ); }, { closed = 1; nodes = ( (-107,950,l), (-247,950,l), (-154,810,l), (-24,810,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dblgravecomb.glyph000066400000000000000000000020421472355150100313360ustar00rootroot00000000000000{ glyphname = dblgravecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-258,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-363,785,l), (-418,785,l), (-328,645,l), (-279,645,l) ); }, { closed = 1; nodes = ( (-204,785,l), (-259,785,l), (-169,645,l), (-120,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-257,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-356,785,l), (-445,785,l), (-352,645,l), (-268,645,l) ); }, { closed = 1; nodes = ( (-180,785,l), (-269,785,l), (-176,645,l), (-92,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-257,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-347,785,l), (-487,785,l), (-394,645,l), (-264,645,l) ); }, { closed = 1; nodes = ( (-133,785,l), (-273,785,l), (-180,645,l), (-50,645,l) ); } ); width = 0; } ); unicode = 783; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dcaron.glyph000066400000000000000000000041401472355150100301560ustar00rootroot00000000000000{ glyphname = dcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (648,550,l), (687,730,l), (577,730,l), (548,550,l) ); }, { closed = 1; nodes = ( (234,-10,o), (293,48,o), (307,140,c), (267,105,l), (302,105,l), (285,0,l), (420,0,l), (536,730,l), (396,730,l), (372,580,l), (355,445,l), (320,445,l), (350,410,l), (365,502,o), (325,560,o), (248,560,cs), (148,560,o), (72,479,o), (52,351,cs), (28,200,ls), (7,71,o), (57,-10,o), (157,-10,cs) ); }, { closed = 1; nodes = ( (182,110,o), (159,145,o), (168,205,cs), (191,346,ls), (200,405,o), (235,440,o), (283,440,cs), (325,440,o), (344,405,o), (335,346,cs), (312,205,ls), (303,145,o), (272,110,o), (230,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (633,550,l), (672,730,l), (582,730,l), (553,550,l) ); }, { closed = 1; nodes = ( (265,-10,o), (326,43,o), (339,126,c), (318,105,l), (336,105,l), (319,0,l), (409,0,l), (525,730,l), (435,730,l), (409,570,l), (391,445,l), (371,445,l), (386,424,l), (399,507,o), (356,560,o), (273,560,cs), (172,560,o), (95,483,o), (76,360,cs), (49,189,ls), (30,67,o), (81,-10,o), (182,-10,cs) ); }, { closed = 1; nodes = ( (159,68,o), (127,115,o), (140,195,cs), (165,355,ls), (178,435,o), (224,482,o), (290,482,cs), (356,482,o), (388,435,o), (375,355,cs), (350,195,ls), (337,115,o), (291,68,o), (225,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (598,550,l), (642,730,l), (592,730,l), (553,550,l) ); }, { closed = 1; nodes = ( (310,-10,o), (379,48,o), (393,140,c), (345,75,l), (373,75,l), (361,0,l), (411,0,l), (527,730,l), (477,730,l), (453,580,l), (436,475,l), (418,475,l), (436,410,l), (451,502,o), (401,560,o), (307,560,cs), (202,560,o), (122,483,o), (103,360,cs), (76,189,ls), (57,67,o), (111,-10,o), (216,-10,cs) ); }, { closed = 1; nodes = ( (152,33,o), (111,93,o), (126,189,cs), (153,360,ls), (168,456,o), (229,517,o), (310,517,cs), (392,517,o), (433,456,o), (418,360,cs), (391,189,ls), (376,93,o), (315,33,o), (233,33,cs) ); } ); width = 600; } ); unicode = 271; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dcroat.glyph000066400000000000000000000041321472355150100301650ustar00rootroot00000000000000{ glyphname = dcroat; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (28,73,o), (86,-10,o), (197,-10,cs), (276,-10,o), (335,32,o), (359,105,c), (362,105,l), (345,0,l), (490,0,l), (578,555,l), (644,555,l), (658,645,l), (592,645,l), (606,730,l), (456,730,l), (442,645,l), (298,645,l), (284,555,l), (428,555,l), (422,520,l), (406,385,l), (403,385,l), (403,458,o), (357,500,o), (278,500,cs), (167,500,o), (82,416,o), (61,285,cs), (48,205,ls) ); }, { closed = 1; nodes = ( (210,280,ls), (219,337,o), (256,370,o), (312,370,cs), (367,370,o), (393,337,o), (384,280,cs), (373,210,ls), (364,152,o), (327,120,o), (272,120,cs), (216,120,o), (190,152,o), (199,210,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (57,68,o), (112,-10,o), (222,-10,cs), (306,-10,o), (367,33,o), (387,105,c), (389,105,l), (372,0,l), (462,0,l), (552,570,l), (646,570,l), (658,645,l), (564,645,l), (578,730,l), (488,730,l), (474,645,l), (308,645,l), (296,570,l), (462,570,l), (453,510,l), (435,385,l), (432,385,l), (434,456,o), (385,500,o), (303,500,cs), (192,500,o), (113,422,o), (93,295,cs), (77,194,ls) ); }, { closed = 1; nodes = ( (182,290,ls), (195,375,o), (245,422,o), (321,422,cs), (395,422,o), (431,373,o), (418,290,cs), (404,200,ls), (391,117,o), (339,68,o), (265,68,cs), (189,68,o), (154,115,o), (168,200,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (72,69,o), (131,-10,o), (241,-10,cs), (312,-10,o), (372,22,o), (404,75,c), (408,75,l), (396,0,l), (446,0,l), (539,586,l), (639,586,l), (646,631,l), (546,631,l), (562,730,l), (512,730,l), (496,631,l), (316,631,l), (309,586,l), (489,586,l), (478,520,l), (462,415,l), (458,415,l), (443,468,o), (393,500,o), (322,500,cs), (212,500,o), (128,420,o), (109,300,cs), (91,189,ls) ); }, { closed = 1; nodes = ( (159,300,ls), (174,398,o), (236,457,o), (325,457,cs), (416,457,o), (459,398,o), (444,300,cs), (426,189,ls), (410,91,o), (348,33,o), (258,33,cs), (169,33,o), (125,91,o), (141,189,cs) ); } ); width = 600; } ); unicode = 273; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/de-cy.glyph000066400000000000000000000040041472355150100277100ustar00rootroot00000000000000{ glyphname = "de-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-7,o), (508,75,o), (530,210,cs), (568,455,ls), (596,631,o), (509,730,o), (326,730,cs), (161,730,l), (139,585,l), (304,585,ls), (392,585,o), (431,540,o), (418,455,cs), (407,385,l), (393,385,l), (403,371,l), (415,446,o), (373,494,o), (279,494,cs), (163,494,o), (81,414,o), (61,279,cs), (50,210,ls), (28,75,o), (107,-13,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (200,210,cs), (211,279,ls), (220,337,o), (257,369,o), (315,369,cs), (373,369,o), (400,337,o), (391,279,cs), (380,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,205,cs), (537,455,ls), (565,631,o), (489,730,o), (325,730,cs), (185,730,l), (172,640,l), (312,640,ls), (420,640,o), (466,575,o), (447,455,cs), (437,390,l), (423,390,l), (433,370,l), (445,449,o), (398,495,o), (308,495,cs), (192,495,o), (111,416,o), (90,285,cs), (78,205,ls), (57,71,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (154,118,o), (168,205,cs), (180,285,ls), (194,372,o), (244,420,o), (321,420,cs), (399,420,o), (434,373,o), (420,285,cs), (408,205,ls), (394,118,o), (343,70,o), (266,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (379,-10,o), (462,66,o), (483,200,cs), (527,475,ls), (553,640,o), (481,730,o), (326,730,cs), (201,730,l), (194,680,l), (319,680,ls), (441,680,o), (497,606,o), (477,475,cs), (464,393,l), (450,393,l), (458,358,l), (472,445,o), (423,495,o), (324,495,cs), (205,495,o), (128,421,o), (106,285,cs), (93,200,ls), (72,66,o), (130,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (170,35,o), (127,97,o), (143,200,cs), (156,285,ls), (172,389,o), (236,452,o), (326,452,cs), (420,452,o), (462,385,o), (446,285,cs), (433,200,ls), (417,97,o), (351,35,o), (260,35,cs) ); } ); width = 600; } ); unicode = 1076; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/degree.glyph000066400000000000000000000026251472355150100301510ustar00rootroot00000000000000{ glyphname = degree; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (417,450,o), (486,508,o), (500,595,cs), (514,682,o), (463,740,o), (373,740,cs), (283,740,o), (214,682,o), (200,595,cs), (186,508,o), (237,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (293,515,o), (268,547,o), (275,595,cs), (283,643,o), (318,675,o), (363,675,cs), (408,675,o), (433,643,o), (425,595,cs), (418,547,o), (383,515,o), (338,515,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (417,450,o), (486,508,o), (500,595,cs), (514,682,o), (463,740,o), (373,740,cs), (283,740,o), (214,682,o), (200,595,cs), (186,508,o), (237,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (281,501,o), (251,539,o), (260,595,cs), (269,652,o), (311,690,o), (364,690,cs), (419,690,o), (449,652,o), (440,595,cs), (431,539,o), (389,501,o), (334,501,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (414,450,o), (481,508,o), (495,595,cs), (509,682,o), (460,740,o), (373,740,cs), (286,740,o), (219,683,o), (205,595,cs), (191,508,o), (240,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (274,490,o), (240,532,o), (250,595,cs), (260,659,o), (307,701,o), (367,701,cs), (427,701,o), (460,659,o), (450,595,cs), (440,532,o), (394,490,o), (334,490,cs) ); } ); width = 600; } ); unicode = 176; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/delete-control.glyph000066400000000000000000000016231472355150100316330ustar00rootroot00000000000000{ glyphname = "delete-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9249; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/delta.glyph000066400000000000000000000055271472355150100300130ustar00rootroot00000000000000{ glyphname = delta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (380,-10,o), (462,66,o), (484,200,cs), (498,292,ls), (511,370,o), (490,438,o), (437,492,cs), (245,685,l), (535,685,l), (543,730,l), (198,730,l), (190,683,l), (398,469,l), (394,466,l), (372,483,o), (349,495,o), (313,495,cs), (198,495,o), (129,420,o), (108,292,cs), (94,200,ls), (72,66,o), (131,-10,o), (256,-10,cs) ); }, { closed = 1; nodes = ( (171,35,o), (127,95,o), (144,200,cs), (158,292,ls), (175,397,o), (237,457,o), (329,457,cs), (421,457,o), (465,397,o), (448,292,cs), (434,200,ls), (417,95,o), (356,35,o), (264,35,cs) ); } ); width = 600; }, { hints = ( { horizontal = 1; place = (727,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (652,21); target = up; type = BottomGhost; }, { horizontal = 1; place = (727,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (652,21); target = up; type = BottomGhost; }, { place = (27,47); type = Stem; }, { place = (397,47); type = Stem; }, { horizontal = 1; place = (-53,37); type = Stem; }, { horizontal = 1; place = (317,33); type = Stem; }, { horizontal = 1; place = (717,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (642,21); target = up; type = BottomGhost; }, { place = (27,47); type = Stem; }, { place = (397,47); type = Stem; }, { horizontal = 1; place = (-53,37); type = Stem; }, { horizontal = 1; place = (317,33); type = Stem; }, { horizontal = 1; place = (727,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (652,21); target = up; type = BottomGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (386,-10,o), (478,71,o), (499,205,cs), (513,291,ls), (525,366,o), (503,427,o), (449,481,cs), (280,655,l), (541,655,l), (553,730,l), (181,730,l), (169,655,l), (357,458,l), (352,454,l), (341,464,o), (313,486,o), (268,486,cs), (181,486,o), (111,407,o), (93,288,cs), (79,205,ls), (58,72,o), (125,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (192,70,o), (156,119,o), (169,205,cs), (183,291,ls), (197,380,o), (248,431,o), (324,431,cs), (401,431,o), (437,380,o), (423,291,cs), (409,205,ls), (396,119,o), (344,70,o), (268,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-13,o), (509,75,o), (530,210,cs), (547,316,ls), (560,399,o), (538,449,o), (485,492,cs), (339,610,l), (549,610,l), (568,730,l), (167,730,l), (149,620,l), (341,452,l), (334,445,l), (319,460,o), (287,490,o), (244,490,cs), (154,490,o), (84,426,o), (66,310,cs), (50,210,ls), (29,75,o), (109,-7,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (219,120,o), (191,153,o), (200,210,cs), (217,316,ls), (226,373,o), (264,406,o), (321,406,cs), (378,406,o), (406,373,o), (397,316,cs), (380,210,ls), (371,153,o), (333,120,o), (276,120,cs) ); } ); width = 600; } ); unicode = 948; } deviceC_ontrolF_our-control.glyph000066400000000000000000000016471472355150100342520ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "deviceControlFour-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = four; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = four; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = four; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9236; } deviceC_ontrolO_ne-control.glyph000066400000000000000000000016431472355150100340540ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "deviceControlOne-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = one; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = one; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = one; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9233; } deviceC_ontrolT_hree-control.glyph000066400000000000000000000016531472355150100344030ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "deviceControlThree-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = three; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = three; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = three; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9235; } deviceC_ontrolT_wo-control.glyph000066400000000000000000000016431472355150100341040ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "deviceControlTwo-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = two; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = two; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = two; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9234; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dieresis.case.glyph000066400000000000000000000007261472355150100314370ustar00rootroot00000000000000{ glyphname = dieresis.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = dieresiscomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dieresis.glyph000066400000000000000000000006411472355150100305210ustar00rootroot00000000000000{ glyphname = dieresis; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 168; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dieresisbelowcomb.case.glyph000066400000000000000000000034341472355150100333300ustar00rootroot00000000000000{ glyphname = dieresisbelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-376,-205); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-236,-205,o), (-213,-183,o), (-208,-150,cs), (-203,-117,o), (-219,-95,o), (-250,-95,cs), (-282,-95,o), (-307,-117,o), (-312,-150,cs), (-317,-183,o), (-299,-205,o), (-267,-205,cs) ); }, { closed = 1; nodes = ( (-451,-205,o), (-427,-183,o), (-422,-150,cs), (-417,-117,o), (-434,-95,o), (-465,-95,cs), (-496,-95,o), (-521,-117,o), (-526,-150,cs), (-531,-183,o), (-513,-205,o), (-482,-205,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-377,-213); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-227,-213,o), (-198,-189,o), (-192,-150,cs), (-185,-110,o), (-206,-85,o), (-245,-85,cs), (-284,-85,o), (-313,-110,o), (-320,-150,cs), (-326,-189,o), (-305,-213,o), (-266,-213,cs) ); }, { closed = 1; nodes = ( (-449,-213,o), (-420,-189,o), (-414,-150,cs), (-407,-110,o), (-428,-85,o), (-467,-85,cs), (-506,-85,o), (-535,-110,o), (-542,-150,cs), (-548,-189,o), (-527,-213,o), (-488,-213,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-380,-233); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-209,-233,o), (-173,-203,o), (-166,-155,cs), (-158,-107,o), (-184,-77,o), (-233,-77,cs), (-282,-77,o), (-318,-107,o), (-326,-155,cs), (-333,-203,o), (-307,-233,o), (-258,-233,cs) ); }, { closed = 1; nodes = ( (-453,-233,o), (-417,-203,o), (-410,-155,cs), (-402,-107,o), (-428,-77,o), (-477,-77,cs), (-526,-77,o), (-562,-107,o), (-570,-155,cs), (-577,-203,o), (-551,-233,o), (-502,-233,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dieresiscomb.case.glyph000066400000000000000000000032731472355150100323000ustar00rootroot00000000000000{ glyphname = dieresiscomb.case; layers = ( { anchors = ( { name = _top; pos = (-229,730); }, { name = top; pos = (-195,935); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-73,825,o), (-50,847,o), (-45,880,cs), (-39,913,o), (-56,935,o), (-87,935,cs), (-119,935,o), (-143,913,o), (-149,880,cs), (-154,847,o), (-136,825,o), (-104,825,cs) ); }, { closed = 1; nodes = ( (-288,825,o), (-264,847,o), (-259,880,cs), (-253,913,o), (-271,935,o), (-302,935,cs), (-333,935,o), (-357,913,o), (-363,880,cs), (-368,847,o), (-350,825,o), (-319,825,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-194,945); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-64,817,o), (-35,841,o), (-29,880,cs), (-22,920,o), (-43,945,o), (-82,945,cs), (-121,945,o), (-150,920,o), (-157,880,cs), (-163,841,o), (-142,817,o), (-103,817,cs) ); }, { closed = 1; nodes = ( (-286,817,o), (-257,841,o), (-251,880,cs), (-244,920,o), (-265,945,o), (-304,945,cs), (-343,945,o), (-372,920,o), (-379,880,cs), (-385,841,o), (-364,817,o), (-325,817,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-192,958); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-45,802,o), (-9,832,o), (-2,880,cs), (6,928,o), (-20,958,o), (-69,958,cs), (-118,958,o), (-154,928,o), (-162,880,cs), (-169,832,o), (-143,802,o), (-94,802,cs) ); }, { closed = 1; nodes = ( (-289,802,o), (-253,832,o), (-246,880,cs), (-238,928,o), (-264,958,o), (-313,958,cs), (-362,958,o), (-398,928,o), (-406,880,cs), (-413,832,o), (-387,802,o), (-338,802,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dieresiscomb.glyph000066400000000000000000000033321472355150100313620ustar00rootroot00000000000000{ glyphname = dieresiscomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-221,777); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-91,649,o), (-62,673,o), (-56,712,cs), (-50,752,o), (-71,777,o), (-110,777,cs), (-149,777,o), (-178,752,o), (-184,712,cs), (-190,673,o), (-169,649,o), (-130,649,cs) ); }, { closed = 1; nodes = ( (-313,649,o), (-284,673,o), (-278,712,cs), (-272,752,o), (-293,777,o), (-332,777,cs), (-371,777,o), (-400,752,o), (-406,712,cs), (-412,673,o), (-391,649,o), (-352,649,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-218,793); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-71,637,o), (-35,667,o), (-28,715,cs), (-20,763,o), (-46,793,o), (-95,793,cs), (-144,793,o), (-180,763,o), (-188,715,cs), (-195,667,o), (-169,637,o), (-120,637,cs) ); }, { closed = 1; nodes = ( (-315,637,o), (-279,667,o), (-272,715,cs), (-264,763,o), (-290,793,o), (-339,793,cs), (-388,793,o), (-424,763,o), (-432,715,cs), (-439,667,o), (-413,637,o), (-364,637,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-222,765); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-100,655,o), (-77,677,o), (-72,710,cs), (-66,743,o), (-83,765,o), (-114,765,cs), (-146,765,o), (-170,743,o), (-176,710,cs), (-181,677,o), (-163,655,o), (-131,655,cs) ); }, { closed = 1; nodes = ( (-315,655,o), (-291,677,o), (-286,710,cs), (-280,743,o), (-298,765,o), (-329,765,cs), (-360,765,o), (-384,743,o), (-390,710,cs), (-395,677,o), (-377,655,o), (-346,655,cs) ); } ); visible = 1; width = 0; } ); unicode = 776; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dieresistonos.glyph000066400000000000000000000032171472355150100316060ustar00rootroot00000000000000{ glyphname = dieresistonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (394,769,l), (503,900,l), (454,900,l), (352,769,l) ); }, { closed = 1; nodes = ( (499,655,o), (522,677,o), (527,710,cs), (533,743,o), (516,765,o), (485,765,cs), (453,765,o), (429,743,o), (423,710,cs), (418,677,o), (436,655,o), (468,655,cs) ); }, { closed = 1; nodes = ( (284,655,o), (308,677,o), (313,710,cs), (319,743,o), (301,765,o), (270,765,cs), (239,765,o), (215,743,o), (209,710,cs), (204,677,o), (222,655,o), (253,655,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (407,769,l), (516,900,l), (436,900,l), (337,769,l) ); }, { closed = 1; nodes = ( (509,649,o), (538,673,o), (544,712,cs), (550,752,o), (529,777,o), (490,777,cs), (451,777,o), (422,752,o), (416,712,cs), (410,673,o), (431,649,o), (470,649,cs) ); }, { closed = 1; nodes = ( (287,649,o), (316,673,o), (322,712,cs), (328,752,o), (307,777,o), (268,777,cs), (229,777,o), (200,752,o), (194,712,cs), (188,673,o), (209,649,o), (248,649,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (436,796,l), (543,926,l), (413,926,l), (316,796,l) ); }, { closed = 1; nodes = ( (528,637,o), (564,667,o), (571,715,cs), (579,763,o), (553,793,o), (504,793,cs), (455,793,o), (419,763,o), (411,715,cs), (404,667,o), (430,637,o), (479,637,cs) ); }, { closed = 1; nodes = ( (284,637,o), (320,667,o), (327,715,cs), (335,763,o), (309,793,o), (260,793,cs), (211,793,o), (175,763,o), (167,715,cs), (160,667,o), (186,637,o), (235,637,cs) ); } ); width = 600; } ); unicode = 901; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/divide.glyph000066400000000000000000000031701472355150100301560ustar00rootroot00000000000000{ glyphname = divide; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (498,260,l), (520,400,l), (120,400,l), (98,260,l) ); }, { closed = 1; nodes = ( (390,460,o), (436,496,o), (444,550,cs), (453,604,o), (418,640,o), (358,640,cs), (298,640,o), (253,604,o), (244,550,cs), (236,496,o), (270,460,o), (330,460,cs) ); }, { closed = 1; nodes = ( (320,20,o), (366,56,o), (374,110,cs), (383,164,o), (349,200,o), (289,200,cs), (229,200,o), (183,164,o), (174,110,cs), (166,56,o), (200,20,o), (260,20,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (503,295,l), (515,370,l), (115,370,l), (103,295,l) ); }, { closed = 1; nodes = ( (379,460,o), (417,490,o), (424,535,cs), (431,580,o), (403,610,o), (353,610,cs), (303,610,o), (265,580,o), (258,535,cs), (251,490,o), (279,460,o), (329,460,cs) ); }, { closed = 1; nodes = ( (315,55,o), (353,85,o), (360,130,cs), (367,175,o), (339,205,o), (289,205,cs), (239,205,o), (201,175,o), (194,130,cs), (187,85,o), (215,55,o), (265,55,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (505,309,l), (513,359,l), (113,359,l), (105,309,l) ); }, { closed = 1; nodes = ( (372,456,o), (406,485,o), (413,528,cs), (420,571,o), (395,600,o), (351,600,cs), (307,600,o), (274,571,o), (267,528,cs), (260,485,o), (284,456,o), (328,456,cs) ); }, { closed = 1; nodes = ( (311,66,o), (344,95,o), (351,138,cs), (358,181,o), (334,210,o), (290,210,cs), (246,210,o), (212,181,o), (205,138,cs), (198,95,o), (223,66,o), (267,66,cs) ); } ); width = 600; } ); unicode = 247; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/divides.glyph000066400000000000000000000010201472355150100303310ustar00rootroot00000000000000{ glyphname = divides; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (447,730,l), (297,730,l), (181,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (417,730,l), (327,730,l), (211,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (397,730,l), (347,730,l), (231,0,l) ); } ); width = 600; } ); unicode = 8739; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/divisionslash.glyph000066400000000000000000000006361472355150100315750ustar00rootroot00000000000000{ glyphname = divisionslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = fraction; } ); width = 600; } ); unicode = 8725; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dje-cy.glyph000066400000000000000000000035761472355150100300770ustar00rootroot00000000000000{ glyphname = "dje-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (225,-180,ls), (347,-180,o), (431,-109,o), (450,10,cs), (497,307,ls), (515,425,o), (456,500,o), (348,500,cs), (252,500,o), (179,441,o), (164,350,c), (204,410,l), (181,410,l), (198,520,l), (209,586,l), (388,586,l), (395,631,l), (216,631,l), (232,730,l), (182,730,l), (166,631,l), (65,631,l), (58,586,l), (159,586,l), (66,0,l), (116,0,l), (164,300,ls), (179,397,o), (243,457,o), (331,457,cs), (417,457,o), (461,399,o), (446,300,cs), (400,10,ls), (385,-84,o), (327,-135,o), (233,-135,cs), (165,-135,l), (157,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,-180,ls), (349,-180,o), (448,-98,o), (469,31,cs), (513,310,ls), (532,427,o), (474,500,o), (364,500,cs), (272,500,o), (211,450,o), (198,364,c), (220,385,l), (201,385,l), (218,490,l), (230,570,l), (396,570,l), (408,645,l), (242,645,l), (256,730,l), (166,730,l), (152,645,l), (58,645,l), (46,570,l), (140,570,l), (50,0,l), (140,0,l), (186,290,ls), (199,375,o), (251,424,o), (326,424,cs), (398,424,o), (434,378,o), (422,300,cs), (379,31,ls), (366,-51,o), (311,-97,o), (228,-97,cs), (191,-97,l), (177,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (239,-180,ls), (377,-180,o), (477,-96,o), (498,40,cs), (539,295,ls), (558,419,o), (501,500,o), (394,500,cs), (303,500,o), (237,443,o), (222,350,c), (272,385,l), (228,385,l), (250,490,l), (260,555,l), (404,555,l), (418,645,l), (274,645,l), (288,730,l), (138,730,l), (124,645,l), (58,645,l), (44,555,l), (110,555,l), (22,0,l), (172,0,l), (216,280,ls), (225,337,o), (262,370,o), (315,370,cs), (369,370,o), (395,337,o), (386,280,cs), (349,45,ls), (341,-9,o), (305,-40,o), (251,-40,cs), (200,-40,l), (177,-180,l) ); } ); width = 600; } ); unicode = 1106; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dollar.glyph000066400000000000000000000050121472355150100301640ustar00rootroot00000000000000{ glyphname = dollar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (263,-140,l), (284,-9,l), (422,1,o), (522,85,o), (542,206,cs), (560,324,o), (505,402,o), (380,432,cs), (354,438,l), (381,607,l), (420,598,o), (438,572,o), (432,535,c), (582,535,l), (600,651,o), (531,728,o), (402,739,c), (423,870,l), (358,870,l), (337,738,l), (207,727,o), (115,647,o), (97,529,cs), (79,414,o), (137,331,o), (257,302,cs), (267,299,l), (240,124,l), (199,134,o), (179,162,o), (185,200,c), (35,200,l), (16,82,o), (87,3,o), (219,-8,c), (198,-140,l) ); }, { closed = 1; nodes = ( (341,352,l), (272,290,l), (356,295,o), (400,256,o), (391,199,cs), (384,156,o), (352,129,o), (304,122,c) ); }, { closed = 1; nodes = ( (345,447,l), (276,443,o), (239,481,o), (248,535,cs), (254,573,o), (278,598,o), (316,607,c), (281,387,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (269,-140,l), (290,-9,l), (408,3,o), (497,80,o), (514,190,cs), (530,289,o), (486,366,o), (394,397,cs), (356,410,l), (395,658,l), (454,648,o), (481,607,o), (471,545,c), (561,545,l), (577,654,o), (517,728,o), (408,739,c), (429,870,l), (369,870,l), (348,738,l), (234,727,o), (151,653,o), (134,546,cs), (119,448,o), (163,373,o), (258,342,cs), (284,334,l), (242,72,l), (172,81,o), (138,124,o), (148,190,c), (58,190,l), (42,75,o), (105,1,o), (230,-9,c), (209,-140,l) ); }, { closed = 1; nodes = ( (341,315,l), (352,311,ls), (407,293,o), (433,246,o), (424,188,cs), (414,124,o), (369,82,o), (302,72,c) ); }, { closed = 1; nodes = ( (329,422,l), (251,434,o), (215,484,o), (226,554,cs), (235,611,o), (275,649,o), (335,658,c), (293,389,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (259,-140,l), (280,-9,l), (397,-2,o), (482,69,o), (499,177,cs), (515,275,o), (466,354,o), (371,385,cs), (343,394,l), (391,694,l), (470,686,o), (511,630,o), (498,548,c), (548,548,l), (566,660,o), (508,732,o), (398,739,c), (419,870,l), (379,870,l), (358,739,l), (246,732,o), (166,664,o), (150,559,cs), (134,464,o), (180,392,o), (271,363,cs), (297,355,l), (247,36,l), (156,43,o), (107,100,o), (120,185,c), (70,185,l), (52,72,o), (118,-2,o), (240,-9,c), (219,-140,l) ); }, { closed = 1; nodes = ( (335,343,l), (352,338,ls), (424,315,o), (461,254,o), (449,177,cs), (436,94,o), (376,42,o), (287,36,c) ); }, { closed = 1; nodes = ( (291,411,ls), (224,433,o), (189,491,o), (200,563,cs), (212,638,o), (270,687,o), (351,694,c), (305,406,l) ); } ); width = 600; } ); unicode = 36; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dollar_greater.liga.glyph000066400000000000000000000061071472355150100326160ustar00rootroot00000000000000{ glyphname = dollar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-301,-140,l), (-280,-9,l), (-143,2,o), (-42,86,o), (-23,206,cs), (-6,320,o), (-62,404,o), (-184,427,cs), (-210,432,l), (-183,608,l), (-153,605,o), (-127,602,o), (-101,589,cs), (358,357,ls), (383,344,o), (408,337,o), (421,334,c), (407,331,o), (379,324,o), (350,312,cs), (55,190,l), (34,49,l), (527,258,l), (550,401,l), (-32,694,ls), (-76,716,o), (-123,732,o), (-162,737,c), (-141,870,l), (-206,870,l), (-227,739,l), (-358,727,o), (-450,647,o), (-468,529,cs), (-485,418,o), (-428,338,o), (-308,305,cs), (-297,302,l), (-324,124,l), (-366,134,o), (-387,161,o), (-380,200,c), (-530,200,l), (-549,82,o), (-478,3,o), (-345,-9,c), (-366,-140,l) ); }, { closed = 1; nodes = ( (-223,354,l), (-287,292,l), (-210,298,o), (-164,261,o), (-174,199,cs), (-181,157,o), (-213,129,o), (-260,122,c) ); }, { closed = 1; nodes = ( (-222,439,l), (-290,436,o), (-327,474,o), (-317,535,cs), (-311,573,o), (-286,598,o), (-248,607,c), (-283,387,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-296,-140,l), (-275,-9,l), (-154,3,o), (-68,77,o), (-51,190,cs), (-36,286,o), (-82,364,o), (-171,394,cs), (-209,407,l), (-170,658,l), (-137,655,o), (-107,648,o), (-60,621,cs), (397,357,ls), (418,345,o), (441,338,o), (452,336,c), (441,333,o), (417,324,o), (389,311,cs), (71,160,l), (56,65,l), (505,280,l), (521,380,l), (-20,690,ls), (-66,716,o), (-115,733,o), (-157,738,c), (-136,870,l), (-196,870,l), (-217,738,l), (-331,727,o), (-414,653,o), (-431,546,cs), (-442,452,o), (-396,376,o), (-307,345,cs), (-281,336,l), (-323,72,l), (-393,81,o), (-427,124,o), (-417,190,c), (-507,190,l), (-523,75,o), (-460,1,o), (-335,-9,c), (-356,-140,l) ); }, { closed = 1; nodes = ( (-224,318,l), (-212,314,ls), (-157,296,o), (-132,246,o), (-141,188,cs), (-151,124,o), (-196,82,o), (-263,72,c) ); }, { closed = 1; nodes = ( (-238,418,l), (-316,430,o), (-351,484,o), (-340,554,cs), (-331,614,o), (-293,649,o), (-230,658,c), (-272,386,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-296,-140,l), (-275,-9,l), (-158,-2,o), (-73,69,o), (-56,177,cs), (-40,274,o), (-88,350,o), (-184,381,cs), (-212,390,l), (-164,693,l), (-129,690,o), (-95,682,o), (-64,662,cs), (391,374,ls), (415,359,o), (449,341,o), (466,332,c), (446,323,o), (408,305,o), (377,290,cs), (67,136,l), (59,80,l), (510,307,l), (517,353,l), (-35,699,ls), (-72,722,o), (-114,736,o), (-157,739,c), (-136,870,l), (-176,870,l), (-197,739,l), (-309,732,o), (-389,664,o), (-405,559,cs), (-420,466,o), (-374,394,o), (-282,366,cs), (-256,358,l), (-308,36,l), (-399,43,o), (-448,100,o), (-435,185,c), (-485,185,l), (-503,72,o), (-437,-2,o), (-315,-9,c), (-336,-140,l) ); }, { closed = 1; nodes = ( (-218,346,l), (-201,341,ls), (-129,320,o), (-93,259,o), (-106,177,cs), (-119,94,o), (-179,42,o), (-268,36,c) ); }, { closed = 1; nodes = ( (-264,406,ls), (-333,426,o), (-367,485,o), (-355,563,cs), (-343,638,o), (-285,686,o), (-204,693,c), (-250,402,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dong.glyph000066400000000000000000000045171472355150100276470ustar00rootroot00000000000000{ glyphname = dong; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (297,50,o), (362,107,o), (377,200,c), (336,165,l), (371,165,l), (355,60,l), (500,60,l), (606,730,l), (456,730,l), (422,520,l), (406,385,l), (371,385,l), (400,350,l), (415,443,o), (368,500,o), (278,500,cs), (166,500,o), (82,419,o), (62,290,cs), (57,260,ls), (37,132,o), (96,50,o), (207,50,cs) ); }, { closed = 1; nodes = ( (480,-100,l), (496,0,l), (16,0,l), (0,-100,l) ); }, { closed = 1; nodes = ( (225,180,o), (199,209,o), (208,265,cs), (211,285,ls), (220,341,o), (255,370,o), (312,370,cs), (369,370,o), (394,341,o), (385,285,cs), (382,265,ls), (373,209,o), (339,180,o), (282,180,cs) ); }, { closed = 1; nodes = ( (644,555,l), (658,645,l), (348,645,l), (334,555,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (323,50,o), (388,102,o), (401,186,c), (380,165,l), (398,165,l), (382,60,l), (472,60,l), (578,730,l), (488,730,l), (453,510,l), (435,385,l), (415,385,l), (430,364,l), (443,447,o), (393,500,o), (303,500,cs), (192,500,o), (113,422,o), (93,295,cs), (86,254,ls), (66,128,o), (122,50,o), (232,50,cs) ); }, { closed = 1; nodes = ( (453,-80,l), (466,0,l), (46,0,l), (33,-80,l) ); }, { closed = 1; nodes = ( (198,128,o), (164,175,o), (177,260,cs), (182,290,ls), (195,375,o), (245,422,o), (321,422,cs), (395,422,o), (431,373,o), (418,290,cs), (413,260,ls), (400,177,o), (348,128,o), (274,128,cs) ); }, { closed = 1; nodes = ( (646,570,l), (658,645,l), (358,645,l), (346,570,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (347,50,o), (423,109,o), (438,200,c), (389,135,l), (417,135,l), (406,60,l), (456,60,l), (562,730,l), (512,730,l), (478,520,l), (462,415,l), (444,415,l), (461,350,l), (476,441,o), (418,500,o), (322,500,cs), (212,500,o), (128,420,o), (109,300,cs), (100,249,ls), (81,129,o), (141,50,o), (251,50,cs) ); }, { closed = 1; nodes = ( (449,-44,l), (456,0,l), (56,0,l), (49,-44,l) ); }, { closed = 1; nodes = ( (179,93,o), (135,151,o), (150,249,cs), (159,300,ls), (174,398,o), (236,457,o), (325,457,cs), (416,457,o), (459,398,o), (444,300,cs), (435,249,ls), (420,151,o), (358,93,o), (268,93,cs) ); }, { closed = 1; nodes = ( (639,586,l), (646,631,l), (355,631,l), (348,586,l) ); } ); width = 600; } ); unicode = 8363; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dotaccent.case.glyph000066400000000000000000000007321472355150100315710ustar00rootroot00000000000000{ glyphname = dotaccent.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = dotaccentcomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dotaccent.glyph000066400000000000000000000006451472355150100306620ustar00rootroot00000000000000{ glyphname = dotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 729; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dotaccentcomb.case.glyph000066400000000000000000000021701472355150100324300ustar00rootroot00000000000000{ glyphname = dotaccentcomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-195,935); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-177,825,o), (-151,847,o), (-146,880,cs), (-140,913,o), (-160,935,o), (-195,935,cs), (-230,935,o), (-256,913,o), (-262,880,cs), (-267,847,o), (-247,825,o), (-212,825,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-194,944); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-170,816,o), (-139,841,o), (-133,880,cs), (-126,919,o), (-149,944,o), (-193,944,cs), (-237,944,o), (-268,919,o), (-275,880,cs), (-281,841,o), (-258,816,o), (-214,816,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-192,958); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-161,802,o), (-121,832,o), (-114,880,cs), (-106,928,o), (-136,958,o), (-191,958,cs), (-246,958,o), (-286,928,o), (-294,880,cs), (-301,832,o), (-271,802,o), (-216,802,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dotaccentcomb.glyph000066400000000000000000000022021472355150100315120ustar00rootroot00000000000000{ glyphname = dotaccentcomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-222,765); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-205,655,o), (-178,677,o), (-173,710,cs), (-168,743,o), (-187,765,o), (-222,765,cs), (-257,765,o), (-284,743,o), (-289,710,cs), (-294,677,o), (-275,655,o), (-240,655,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-221,777); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-197,649,o), (-166,673,o), (-160,712,cs), (-154,752,o), (-177,777,o), (-221,777,cs), (-265,777,o), (-296,752,o), (-302,712,cs), (-308,673,o), (-285,649,o), (-241,649,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,793); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-188,637,o), (-148,667,o), (-141,715,cs), (-133,763,o), (-163,793,o), (-218,793,cs), (-273,793,o), (-313,763,o), (-321,715,cs), (-328,667,o), (-298,637,o), (-243,637,cs) ); } ); width = 0; } ); unicode = 775; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dotbelowcomb.case.glyph000066400000000000000000000022411472355150100323020ustar00rootroot00000000000000{ glyphname = dotbelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-377,-205); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-341,-205,o), (-315,-183,o), (-310,-150,cs), (-305,-117,o), (-324,-95,o), (-359,-95,cs), (-394,-95,o), (-421,-117,o), (-426,-150,cs), (-431,-183,o), (-411,-205,o), (-376,-205,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-378,-213); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-334,-213,o), (-303,-189,o), (-297,-150,cs), (-290,-110,o), (-313,-85,o), (-357,-85,cs), (-401,-85,o), (-432,-110,o), (-439,-150,cs), (-445,-189,o), (-422,-213,o), (-378,-213,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-381,-233); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-326,-233,o), (-286,-203,o), (-279,-155,cs), (-271,-107,o), (-301,-77,o), (-356,-77,cs), (-411,-77,o), (-451,-107,o), (-459,-155,cs), (-466,-203,o), (-436,-233,o), (-381,-233,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dotbelowcomb.glyph000066400000000000000000000022531472355150100313730ustar00rootroot00000000000000{ glyphname = dotbelowcomb; layers = ( { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-380,-233); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-325,-233,o), (-285,-203,o), (-278,-155,cs), (-270,-107,o), (-300,-77,o), (-355,-77,cs), (-410,-77,o), (-450,-107,o), (-458,-155,cs), (-465,-203,o), (-435,-233,o), (-380,-233,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-377,-213); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-333,-213,o), (-302,-189,o), (-296,-150,cs), (-289,-110,o), (-312,-85,o), (-356,-85,cs), (-400,-85,o), (-431,-110,o), (-438,-150,cs), (-444,-189,o), (-421,-213,o), (-377,-213,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-376,-205); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-340,-205,o), (-314,-183,o), (-309,-150,cs), (-304,-117,o), (-323,-95,o), (-358,-95,cs), (-393,-95,o), (-420,-117,o), (-425,-150,cs), (-430,-183,o), (-410,-205,o), (-375,-205,cs) ); } ); width = 0; } ); unicode = 803; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dotminus.glyph000066400000000000000000000017151472355150100305570ustar00rootroot00000000000000{ glyphname = dotminus; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (354,336,o), (387,365,o), (394,408,cs), (401,451,o), (377,480,o), (333,480,cs), (289,480,o), (255,451,o), (248,408,cs), (241,365,o), (266,336,o), (310,336,cs) ); }, { pos = (-18,-113); ref = minus; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (360,340,o), (398,370,o), (405,415,cs), (412,460,o), (384,490,o), (334,490,cs), (284,490,o), (246,460,o), (239,415,cs), (232,370,o), (260,340,o), (310,340,cs) ); }, { pos = (-19,-120); ref = minus; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (370,335,o), (416,371,o), (424,425,cs), (433,479,o), (399,515,o), (339,515,cs), (279,515,o), (233,479,o), (224,425,cs), (216,371,o), (250,335,o), (310,335,cs) ); }, { pos = (-20,-125); ref = minus; } ); width = 600; } ); unicode = 8760; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dottedC_ircle.glyph000066400000000000000000000104061472355150100314560ustar00rootroot00000000000000{ glyphname = dottedCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-10,332,o), (-7,305,o), (0,279,c), (48,292,l), (43,314,o), (40,336,o), (40,360,cs), (40,384,o), (43,406,o), (48,428,c), (0,441,l), (-7,415,o), (-10,388,o), (-10,360,cs) ); }, { closed = 1; nodes = ( (56,156,o), (96,116,o), (144,89,c), (169,133,l), (129,156,o), (96,189,o), (73,229,c), (29,204,l) ); }, { closed = 1; nodes = ( (73,491,l), (96,531,o), (129,564,o), (169,587,c), (144,631,l), (96,604,o), (56,564,o), (29,516,c) ); }, { closed = 1; nodes = ( (232,612,l), (254,617,o), (276,620,o), (300,620,cs), (324,620,o), (346,617,o), (368,612,c), (381,660,l), (355,667,o), (328,670,o), (300,670,cs), (272,670,o), (245,667,o), (219,660,c) ); }, { closed = 1; nodes = ( (245,53,o), (272,50,o), (300,50,cs), (328,50,o), (355,53,o), (381,60,c), (368,108,l), (346,103,o), (324,100,o), (300,100,cs), (276,100,o), (254,103,o), (232,108,c), (219,60,l) ); }, { closed = 1; nodes = ( (471,564,o), (504,531,o), (527,491,c), (571,516,l), (544,564,o), (504,604,o), (456,631,c), (431,587,l) ); }, { closed = 1; nodes = ( (456,89,l), (504,116,o), (544,156,o), (571,204,c), (527,229,l), (504,189,o), (471,156,o), (431,133,c) ); }, { closed = 1; nodes = ( (600,279,l), (607,305,o), (610,332,o), (610,360,cs), (610,388,o), (607,415,o), (600,441,c), (552,428,l), (557,406,o), (560,384,o), (560,360,cs), (560,336,o), (557,314,o), (552,292,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-10,332,o), (-7,305,o), (0,279,c), (48,292,l), (43,314,o), (40,336,o), (40,360,cs), (40,384,o), (43,406,o), (48,428,c), (0,441,l), (-7,415,o), (-10,388,o), (-10,360,cs) ); }, { closed = 1; nodes = ( (56,156,o), (96,116,o), (144,89,c), (169,133,l), (129,156,o), (96,189,o), (73,229,c), (29,204,l) ); }, { closed = 1; nodes = ( (73,491,l), (96,531,o), (129,564,o), (169,587,c), (144,631,l), (96,604,o), (56,564,o), (29,516,c) ); }, { closed = 1; nodes = ( (232,612,l), (254,617,o), (276,620,o), (300,620,cs), (324,620,o), (346,617,o), (368,612,c), (381,660,l), (355,667,o), (328,670,o), (300,670,cs), (272,670,o), (245,667,o), (219,660,c) ); }, { closed = 1; nodes = ( (245,53,o), (272,50,o), (300,50,cs), (328,50,o), (355,53,o), (381,60,c), (368,108,l), (346,103,o), (324,100,o), (300,100,cs), (276,100,o), (254,103,o), (232,108,c), (219,60,l) ); }, { closed = 1; nodes = ( (471,564,o), (504,531,o), (527,491,c), (571,516,l), (544,564,o), (504,604,o), (456,631,c), (431,587,l) ); }, { closed = 1; nodes = ( (456,89,l), (504,116,o), (544,156,o), (571,204,c), (527,229,l), (504,189,o), (471,156,o), (431,133,c) ); }, { closed = 1; nodes = ( (600,279,l), (607,305,o), (610,332,o), (610,360,cs), (610,388,o), (607,415,o), (600,441,c), (552,428,l), (557,406,o), (560,384,o), (560,360,cs), (560,336,o), (557,314,o), (552,292,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-10,332,o), (-7,305,o), (0,279,c), (48,292,l), (43,314,o), (40,336,o), (40,360,cs), (40,384,o), (43,406,o), (48,428,c), (0,441,l), (-7,415,o), (-10,388,o), (-10,360,cs) ); }, { closed = 1; nodes = ( (56,156,o), (96,116,o), (144,89,c), (169,133,l), (129,156,o), (96,189,o), (73,229,c), (29,204,l) ); }, { closed = 1; nodes = ( (73,491,l), (96,531,o), (129,564,o), (169,587,c), (144,631,l), (96,604,o), (56,564,o), (29,516,c) ); }, { closed = 1; nodes = ( (232,612,l), (254,617,o), (276,620,o), (300,620,cs), (324,620,o), (346,617,o), (368,612,c), (381,660,l), (355,667,o), (328,670,o), (300,670,cs), (272,670,o), (245,667,o), (219,660,c) ); }, { closed = 1; nodes = ( (245,53,o), (272,50,o), (300,50,cs), (328,50,o), (355,53,o), (381,60,c), (368,108,l), (346,103,o), (324,100,o), (300,100,cs), (276,100,o), (254,103,o), (232,108,c), (219,60,l) ); }, { closed = 1; nodes = ( (471,564,o), (504,531,o), (527,491,c), (571,516,l), (544,564,o), (504,604,o), (456,631,c), (431,587,l) ); }, { closed = 1; nodes = ( (456,89,l), (504,116,o), (544,156,o), (571,204,c), (527,229,l), (504,189,o), (471,156,o), (431,133,c) ); }, { closed = 1; nodes = ( (600,279,l), (607,305,o), (610,332,o), (610,360,cs), (610,388,o), (607,415,o), (600,441,c), (552,428,l), (557,406,o), (560,384,o), (560,360,cs), (560,336,o), (557,314,o), (552,292,c) ); } ); width = 600; } ); unicode = 9676; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/doubleprimemod.glyph000066400000000000000000000014221472355150100317170ustar00rootroot00000000000000{ glyphname = doubleprimemod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (466,409,l), (645,720,l), (465,720,l), (336,409,l) ); }, { closed = 1; nodes = ( (191,409,l), (370,720,l), (190,720,l), (61,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (431,409,l), (610,720,l), (480,720,l), (351,409,l) ); }, { closed = 1; nodes = ( (156,409,l), (335,720,l), (205,720,l), (76,409,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (406,409,l), (580,720,l), (490,720,l), (366,409,l) ); }, { closed = 1; nodes = ( (136,409,l), (310,720,l), (220,720,l), (96,409,l) ); } ); width = 600; } ); unicode = 698; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/doublesubset.glyph000066400000000000000000000051701472355150100314140ustar00rootroot00000000000000{ glyphname = doublesubset; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (555,130,l), (555,175,l), (265,175,ls), (164,175,o), (105,232,o), (105,330,cs), (105,390,ls), (105,488,o), (164,545,o), (265,545,cs), (555,545,l), (555,590,l), (265,590,ls), (135,590,o), (55,515,o), (55,392,cs), (55,328,ls), (55,205,o), (135,130,o), (265,130,cs) ); }, { closed = 1; nodes = ( (555,235,l), (555,280,l), (255,280,ls), (231,280,o), (215,296,o), (215,320,cs), (215,400,ls), (215,424,o), (231,440,o), (255,440,cs), (555,440,l), (555,485,l), (255,485,ls), (201,485,o), (165,451,o), (165,400,cs), (165,320,ls), (165,269,o), (201,235,o), (255,235,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (524,85,l), (532,130,l), (252,130,ls), (152,130,o), (92,194,o), (107,291,cs), (128,420,ls), (143,517,o), (224,590,o), (324,590,cs), (604,590,l), (612,635,l), (332,635,ls), (200,635,o), (97,546,o), (78,422,cs), (57,289,ls), (37,165,o), (112,85,o), (244,85,cs) ); }, { closed = 1; nodes = ( (547,225,l), (554,270,l), (299,270,ls), (268,270,o), (252,289,o), (257,320,cs), (269,400,ls), (274,431,o), (296,450,o), (327,450,cs), (582,450,l), (589,495,l), (334,495,ls), (271,495,o), (229,460,o), (219,400,cs), (207,320,ls), (197,260,o), (229,225,o), (292,225,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (532,70,l), (543,140,l), (258,140,ls), (158,140,o), (104,207,o), (120,310,cs), (136,410,ls), (152,513,o), (228,580,o), (328,580,cs), (613,580,l), (624,650,l), (339,650,ls), (190,650,o), (79,555,o), (56,410,cs), (40,310,ls), (17,165,o), (98,70,o), (247,70,cs) ); }, { closed = 1; nodes = ( (557,225,l), (568,295,l), (334,295,ls), (303,295,o), (287,314,o), (292,345,cs), (296,375,ls), (301,406,o), (323,425,o), (354,425,cs), (588,425,l), (599,495,l), (355,495,ls), (280,495,o), (229,452,o), (217,380,cs), (211,340,ls), (199,268,o), (238,225,o), (313,225,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,60,l), (556,155,l), (271,155,ls), (174,155,o), (120,217,o), (136,314,cs), (150,406,ls), (166,503,o), (238,565,o), (335,565,cs), (620,565,l), (636,660,l), (351,660,ls), (190,660,o), (70,560,o), (45,406,cs), (31,314,ls), (6,160,o), (95,60,o), (256,60,cs) ); }, { closed = 1; nodes = ( (567,225,l), (581,315,l), (325,315,ls), (310,315,o), (301,325,o), (304,340,cs), (310,380,ls), (313,395,o), (324,405,o), (339,405,cs), (595,405,l), (609,495,l), (334,495,ls), (270,495,o), (223,456,o), (214,395,cs), (202,325,ls), (193,264,o), (228,225,o), (292,225,cs) ); } ); width = 600; } ); unicode = 8912; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downA_rrow.glyph000066400000000000000000000024111472355150100310300ustar00rootroot00000000000000{ glyphname = downArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (405,184,ls), (376,159,o), (356,139,o), (350,130,c), (340,130,l), (342,147,o), (345,181,o), (345,210,cs), (345,730,l), (255,730,l), (255,210,ls), (255,181,o), (258,147,o), (260,130,c), (250,130,l), (244,138,o), (225,158,o), (196,183,cs), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (405,184,ls), (376,159,o), (356,139,o), (350,130,c), (340,130,l), (342,147,o), (345,181,o), (345,210,cs), (345,730,l), (255,730,l), (255,210,ls), (255,181,o), (258,147,o), (260,130,c), (250,130,l), (244,138,o), (225,158,o), (196,183,cs), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (405,184,ls), (376,159,o), (356,139,o), (350,130,c), (340,130,l), (342,147,o), (345,181,o), (345,210,cs), (345,730,l), (255,730,l), (255,210,ls), (255,181,o), (258,147,o), (260,130,c), (250,130,l), (244,138,o), (225,158,o), (196,183,cs), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; } ); unicode = 8595; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downA_rrowH_ead.glyph000066400000000000000000000011471472355150100317560ustar00rootroot00000000000000{ glyphname = downArrowHead; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (305,92,l), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (305,92,l), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (305,92,l), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; } ); unicode = 8964; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downB_lackS_mallT_riangle.glyph000066400000000000000000000007701472355150100337350ustar00rootroot00000000000000{ glyphname = downBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,720); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,720); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,720); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; } ); unicode = 9662; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downB_lackT_riangle.glyph000066400000000000000000000007741472355150100326110ustar00rootroot00000000000000{ glyphname = downBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); } ); width = 600; } ); unicode = 9660; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downD_oubleA_rrow.glyph000066400000000000000000000010641472355150100323250ustar00rootroot00000000000000{ glyphname = downDoubleArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); width = 600; }, { background = { shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); width = 600; } ); unicode = 8659; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downF_rombarA_rrow.glyph000066400000000000000000000007401472355150100325030ustar00rootroot00000000000000{ glyphname = downFrombarArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,550); ref = upFrombarArrow; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,550); ref = upFrombarArrow; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,550); ref = upFrombarArrow; scale = (1,-1); } ); width = 600; } ); unicode = 8615; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downW_hiteS_mallT_riangle.glyph000066400000000000000000000013201472355150100337710ustar00rootroot00000000000000{ glyphname = downWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,510,l), (150,510,l), (300,200,l) ); }, { closed = 1; nodes = ( (214,470,l), (386,470,l), (300,292,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,510,l), (150,510,l), (300,200,l) ); }, { closed = 1; nodes = ( (214,470,l), (386,470,l), (300,292,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,510,l), (150,510,l), (300,200,l) ); }, { closed = 1; nodes = ( (214,470,l), (386,470,l), (300,292,l) ); } ); width = 600; } ); unicode = 9663; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downW_hiteT_riangle.glyph000066400000000000000000000013051472355150100326440ustar00rootroot00000000000000{ glyphname = downWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); }, { closed = 1; nodes = ( (73,610,l), (527,610,l), (300,163,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); }, { closed = 1; nodes = ( (73,610,l), (527,610,l), (300,163,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); }, { closed = 1; nodes = ( (73,610,l), (527,610,l), (300,163,l) ); } ); width = 600; } ); unicode = 9661; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/downrightdiagonalellipsis.glyph000066400000000000000000000036771472355150100341770ustar00rootroot00000000000000{ glyphname = downrightdiagonalellipsis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,527,o), (107,550,o), (107,585,cs), (107,620,o), (84,643,o), (49,643,cs), (13,643,o), (-10,620,o), (-10,585,cs), (-10,550,o), (13,527,o), (49,527,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (587,25,o), (610,48,o), (610,83,cs), (610,118,o), (587,141,o), (552,141,cs), (516,141,o), (493,118,o), (493,83,cs), (493,48,o), (516,25,o), (552,25,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (103,503,o), (131,531,o), (131,573,cs), (131,615,o), (103,643,o), (61,643,cs), (18,643,o), (-10,615,o), (-10,573,cs), (-10,531,o), (18,503,o), (61,503,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (582,25,o), (610,53,o), (610,95,cs), (610,137,o), (582,165,o), (540,165,cs), (497,165,o), (469,137,o), (469,95,cs), (469,53,o), (497,25,o), (540,25,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (120,479,o), (154,512,o), (154,560,cs), (154,608,o), (120,641,o), (72,641,cs), (24,641,o), (-10,608,o), (-10,560,cs), (-10,512,o), (24,479,o), (72,479,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (576,27,o), (610,60,o), (610,108,cs), (610,156,o), (576,189,o), (528,189,cs), (480,189,o), (446,156,o), (446,108,cs), (446,60,o), (480,27,o), (528,27,cs) ); } ); width = 600; } ); unicode = 8945; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dze-cy.glyph000066400000000000000000000006041472355150100301040ustar00rootroot00000000000000{ glyphname = "dze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = s; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = s; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = s; } ); width = 600; } ); unicode = 1109; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/dzhe-cy.glyph000066400000000000000000000014751472355150100302630ustar00rootroot00000000000000{ glyphname = "dzhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (311,-125,l), (331,0,l), (490,0,l), (577,550,l), (427,550,l), (362,140,l), (194,140,l), (259,550,l), (109,550,l), (22,0,l), (181,0,l), (161,-125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (281,-125,l), (301,0,l), (462,0,l), (549,550,l), (459,550,l), (385,82,l), (153,82,l), (227,550,l), (137,550,l), (50,0,l), (211,0,l), (191,-125,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-125,l), (284,0,l), (446,0,l), (533,550,l), (478,550,l), (399,50,l), (129,50,l), (208,550,l), (153,550,l), (66,0,l), (229,0,l), (209,-125,l) ); } ); width = 600; } ); unicode = 1119; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/e-cy.glyph000066400000000000000000000031411472355150100275450ustar00rootroot00000000000000{ glyphname = "e-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (409,-10,o), (515,68,o), (540,195,c), (390,195,l), (378,147,o), (340,120,o), (285,120,cs), (225,120,o), (197,152,o), (206,210,cs), (208,220,l), (365,220,l), (383,334,l), (226,334,l), (227,340,ls), (236,398,o), (274,430,o), (334,430,cs), (388,430,o), (419,402,o), (415,355,c), (565,355,l), (580,482,o), (500,560,o), (355,560,cs), (208,560,o), (98,473,o), (77,340,cs), (56,210,ls), (35,77,o), (117,-10,o), (264,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (478,63,o), (501,180,c), (411,180,l), (395,110,o), (345,70,o), (271,70,cs), (192,70,o), (155,117,o), (168,200,cs), (174,240,l), (369,240,l), (382,320,l), (187,320,l), (192,351,ls), (205,433,o), (257,480,o), (336,480,cs), (410,480,o), (448,440,o), (441,370,c), (531,370,l), (545,487,o), (476,560,o), (349,560,cs), (216,560,o), (122,481,o), (101,350,cs), (78,200,ls), (57,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (466,64,o), (485,180,c), (435,180,l), (420,90,o), (355,34,o), (263,34,cs), (172,34,o), (126,94,o), (141,190,cs), (151,250,l), (361,250,l), (369,300,l), (159,300,l), (168,360,ls), (183,457,o), (249,516,o), (340,516,cs), (432,516,o), (479,460,o), (465,370,c), (515,370,l), (533,486,o), (468,560,o), (347,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (135,-10,o), (256,-10,cs) ); } ); width = 600; } ); unicode = 1108; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/e.glyph000066400000000000000000000040771472355150100271450ustar00rootroot00000000000000{ glyphname = e; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (374,-10,o), (476,54,o), (515,150,c), (368,150,l), (354,122,o), (323,105,o), (276,105,cs), (209,105,o), (181,141,o), (192,210,cs), (197,240,l), (534,240,l), (550,340,ls), (571,472,o), (492,560,o), (346,560,cs), (199,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (108,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (415,327,l), (210,325,l), (213,340,ls), (224,408,o), (262,447,o), (328,447,cs), (393,447,o), (418,410,o), (407,342,cs), (403,317,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (370,-10,o), (462,48,o), (488,140,c), (398,140,l), (380,91,o), (335,66,o), (266,66,cs), (184,66,o), (150,113,o), (164,200,cs), (172,253,l), (508,253,l), (523,350,ls), (544,477,o), (475,560,o), (345,560,cs), (215,560,o), (120,477,o), (99,350,cs), (76,200,ls), (56,73,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (438,321,l), (183,321,l), (187,350,ls), (201,437,o), (251,485,o), (333,485,cs), (415,485,o), (449,437,o), (435,350,cs), (430,313,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (358,-10,o), (437,46,o), (471,135,c), (421,135,l), (392,72,o), (336,34,o), (262,34,cs), (169,34,o), (126,94,o), (141,190,cs), (153,265,l), (493,265,l), (508,360,ls), (527,481,o), (467,560,o), (346,560,cs), (224,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (132,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (461,308,l), (160,308,l), (168,360,ls), (183,457,o), (245,516,o), (339,516,cs), (431,516,o), (474,456,o), (458,360,cs), (448,299,l) ); } ); width = 600; } ); unicode = 101; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eacute.glyph000066400000000000000000000007001472355150100301540ustar00rootroot00000000000000{ glyphname = eacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 233; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ebreve.glyph000066400000000000000000000007601472355150100301640ustar00rootroot00000000000000{ glyphname = ebreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = brevecomb; } ); width = 600; } ); unicode = 277; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ecaron.glyph000066400000000000000000000007001472355150100301550ustar00rootroot00000000000000{ glyphname = ecaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = caroncomb; } ); width = 600; } ); unicode = 283; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ecircumflex.glyph000066400000000000000000000007241472355150100312220ustar00rootroot00000000000000{ glyphname = ecircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 234; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ecircumflexacute.glyph000066400000000000000000000007701472355150100322450ustar00rootroot00000000000000{ glyphname = ecircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; } ); unicode = 7871; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ecircumflexdotbelow.glyph000066400000000000000000000011251472355150100327560ustar00rootroot00000000000000{ glyphname = ecircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 7879; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ecircumflexgrave.glyph000066400000000000000000000007701472355150100322500ustar00rootroot00000000000000{ glyphname = ecircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; } ); unicode = 7873; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ecircumflexhookabove.glyph000066400000000000000000000010101472355150100331050ustar00rootroot00000000000000{ glyphname = ecircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; } ); unicode = 7875; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ecircumflextilde.glyph000066400000000000000000000007701472355150100322450ustar00rootroot00000000000000{ glyphname = ecircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; } ); unicode = 7877; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/edieresis.glyph000066400000000000000000000007141472355150100306670ustar00rootroot00000000000000{ glyphname = edieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 235; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/edotaccent.glyph000066400000000000000000000007201472355150100310210ustar00rootroot00000000000000{ glyphname = edotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 279; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/edotbelow.glyph000066400000000000000000000007751472355150100307060ustar00rootroot00000000000000{ glyphname = edotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7865; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ef-cy.glyph000066400000000000000000000050371472355150100277210ustar00rootroot00000000000000{ glyphname = "ef-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (169,118,o), (142,151,o), (151,207,cs), (172,344,ls), (181,400,o), (219,433,o), (271,433,c), (221,118,l) ); }, { closed = 1; nodes = ( (379,433,l), (431,433,o), (457,400,o), (448,344,cs), (427,207,ls), (418,151,o), (381,118,o), (329,118,c) ); }, { closed = 1; nodes = ( (188,-45,o), (169,-60,o), (141,-60,cs), (-3,-60,l), (-23,-180,l), (98,-180,ls), (215,-180,o), (298,-120,o), (313,-25,cs), (317,0,l), (443,0,o), (534,79,o), (554,207,cs), (575,344,ls), (594,470,o), (531,550,o), (404,550,c), (407,569,ls), (411,595,o), (430,610,o), (458,610,cs), (602,610,l), (622,730,l), (501,730,ls), (384,730,o), (301,670,o), (286,575,cs), (282,550,l), (156,550,o), (64,471,o), (45,344,cs), (24,207,ls), (4,79,o), (68,0,o), (195,0,c), (192,-19,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (151,71,o), (113,120,o), (126,202,cs), (149,350,ls), (162,431,o), (216,479,o), (294,479,c), (229,71,l) ); }, { closed = 1; nodes = ( (370,479,l), (448,479,o), (486,431,o), (473,350,cs), (450,202,ls), (437,120,o), (383,71,o), (305,71,c) ); }, { closed = 1; nodes = ( (207,-74,o), (174,-101,o), (119,-101,cs), (4,-101,l), (-9,-180,l), (105,-180,ls), (213,-180,o), (283,-119,o), (293,-20,cs), (296,0,l), (424,0,o), (514,77,o), (534,202,cs), (557,350,ls), (577,474,o), (511,550,o), (383,550,c), (386,570,ls), (394,624,o), (426,651,o), (480,651,cs), (595,651,l), (608,730,l), (494,730,ls), (386,730,o), (321,669,o), (306,570,cs), (303,550,l), (176,550,o), (85,474,o), (65,350,cs), (42,202,ls), (22,77,o), (88,0,o), (216,0,c), (213,-20,ls) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (139,43,o), (88,102,o), (104,202,cs), (127,350,ls), (142,449,o), (212,507,o), (312,507,c), (239,43,l) ); }, { closed = 1; nodes = ( (360,507,l), (460,507,o), (510,449,o), (495,350,cs), (472,202,ls), (456,102,o), (387,43,o), (287,43,c) ); }, { closed = 1; nodes = ( (215,-106,o), (181,-135,o), (130,-135,cs), (17,-135,l), (9,-180,l), (122,-180,ls), (203,-180,o), (261,-133,o), (272,-55,cs), (280,0,l), (408,0,o), (501,77,o), (520,202,cs), (543,350,ls), (562,474,o), (495,550,o), (367,550,c), (376,605,ls), (384,656,o), (418,685,o), (469,685,cs), (585,685,l), (593,730,l), (477,730,ls), (396,730,o), (338,683,o), (327,605,cs), (319,550,l), (191,550,o), (98,474,o), (79,350,cs), (56,202,ls), (37,77,o), (104,0,o), (232,0,c), (223,-55,ls) ); } ); width = 600; } ); unicode = 1092; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/egrave.glyph000066400000000000000000000007001472355150100301570ustar00rootroot00000000000000{ glyphname = egrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 232; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ehookabove.glyph000066400000000000000000000007211472355150100310330ustar00rootroot00000000000000{ glyphname = ehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7867; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eight.glyph000066400000000000000000000047431472355150100300210ustar00rootroot00000000000000{ glyphname = eight; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (481,61,o), (499,176,cs), (513,261,o), (473,317,o), (369,374,cs), (287,419,ls), (219,456,o), (189,501,o), (199,563,cs), (212,644,o), (280,695,o), (367,695,cs), (457,695,o), (515,641,o), (503,563,cs), (493,504,o), (449,458,o), (361,418,cs), (263,374,ls), (142,320,o), (83,261,o), (69,176,cs), (51,61,o), (126,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (164,35,o), (106,89,o), (119,174,cs), (130,244,o), (186,300,o), (275,340,cs), (372,383,ls), (477,429,o), (542,492,o), (553,566,cs), (569,664,o), (487,740,o), (374,740,cs), (263,740,o), (165,666,o), (149,566,cs), (137,490,o), (179,429,o), (263,384,cs), (345,340,ls), (422,299,o), (460,242,o), (449,173,cs), (436,88,o), (360,35,o), (262,35,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (395,-10,o), (501,69,o), (519,183,cs), (533,272,o), (480,354,o), (386,391,cs), (294,427,ls), (238,449,o), (204,496,o), (213,551,cs), (223,615,o), (283,661,o), (360,661,cs), (437,661,o), (483,616,o), (473,551,cs), (464,498,o), (414,450,o), (348,426,cs), (245,389,ls), (141,352,o), (65,271,o), (51,183,cs), (33,69,o), (113,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (179,70,o), (129,120,o), (140,195,cs), (149,252,o), (194,303,o), (262,328,cs), (363,365,ls), (482,408,o), (549,478,o), (561,554,cs), (579,663,o), (499,741,o), (373,741,cs), (247,741,o), (143,663,o), (125,554,cs), (113,477,o), (157,408,o), (261,366,cs), (351,329,ls), (412,304,o), (442,254,o), (432,195,cs), (421,120,o), (355,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (407,-10,o), (521,68,o), (541,192,cs), (554,276,o), (514,338,o), (418,384,cs), (305,438,ls), (266,457,o), (242,492,o), (248,534,cs), (256,582,o), (299,616,o), (354,616,cs), (408,616,o), (440,582,o), (432,534,cs), (425,491,o), (391,455,o), (347,437,cs), (216,384,ls), (117,344,o), (47,282,o), (33,192,cs), (14,71,o), (103,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (215,114,o), (173,153,o), (181,205,cs), (187,245,o), (231,287,o), (277,306,cs), (424,367,ls), (507,402,o), (566,459,o), (580,544,cs), (597,654,o), (519,740,o), (374,740,cs), (228,740,o), (121,654,o), (104,544,cs), (91,462,o), (132,403,o), (207,367,cs), (333,306,ls), (373,287,o), (403,244,o), (397,204,cs), (389,153,o), (335,114,o), (275,114,cs) ); } ); width = 600; } ); unicode = 56; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eightinferior.glyph000066400000000000000000000007341472355150100315530ustar00rootroot00000000000000{ glyphname = eightinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-83,-525); ref = eightsuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-83,-525); ref = eightsuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-83,-525); ref = eightsuperior; } ); width = 600; } ); metricLeft = eight; metricRight = eight; unicode = 8328; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eightsuperior.glyph000066400000000000000000000050051472355150100316020ustar00rootroot00000000000000{ glyphname = eightsuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (407,395,o), (465,436,o), (476,505,cs), (483,550,o), (455,593,o), (401,621,cs), (320,664,ls), (294,678,o), (283,704,o), (287,735,cs), (294,776,o), (330,800,o), (383,800,cs), (436,800,o), (464,776,o), (457,735,cs), (453,704,o), (431,678,o), (400,664,cs), (302,620,ls), (243,593,o), (203,550,o), (196,505,cs), (185,436,o), (231,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (265,435,o), (234,461,o), (241,504,cs), (247,540,o), (273,572,o), (310,589,cs), (408,632,ls), (461,655,o), (496,694,o), (503,737,cs), (513,802,o), (471,840,o), (389,840,cs), (307,840,o), (253,802,o), (243,737,cs), (236,695,o), (258,657,o), (301,634,cs), (383,590,ls), (418,571,o), (436,539,o), (431,504,cs), (424,461,o), (385,435,o), (325,435,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (411,395,o), (476,440,o), (487,511,cs), (495,561,o), (464,607,o), (407,631,cs), (338,660,ls), (309,672,o), (294,696,o), (298,721,cs), (304,757,o), (335,780,o), (379,780,cs), (424,780,o), (449,758,o), (443,722,cs), (439,695,o), (418,671,o), (389,660,cs), (306,629,ls), (241,605,o), (195,559,o), (187,511,cs), (176,440,o), (227,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (279,457,o), (252,481,o), (258,520,cs), (263,549,o), (284,574,o), (314,586,cs), (396,618,ls), (462,644,o), (508,688,o), (515,733,cs), (526,799,o), (477,840,o), (389,840,cs), (302,840,o), (241,799,o), (230,733,cs), (223,689,o), (255,644,o), (314,617,cs), (382,586,ls), (409,574,o), (423,548,o), (418,519,cs), (412,481,o), (377,457,o), (328,457,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (418,395,o), (491,443,o), (503,515,cs), (510,560,o), (486,612,o), (416,634,cs), (347,656,ls), (315,666,o), (300,692,o), (303,715,cs), (308,742,o), (337,762,o), (377,762,cs), (416,762,o), (439,742,o), (434,715,cs), (431,692,o), (407,666,o), (373,656,cs), (296,634,ls), (221,612,o), (180,561,o), (173,515,cs), (161,443,o), (220,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (288,473,o), (263,494,o), (268,524,cs), (272,548,o), (297,577,o), (333,588,cs), (417,614,ls), (486,635,o), (520,682,o), (527,724,cs), (538,793,o), (482,840,o), (389,840,cs), (294,840,o), (224,793,o), (213,724,cs), (206,682,o), (227,635,o), (289,614,cs), (365,588,ls), (397,577,o), (415,548,o), (411,524,cs), (406,494,o), (374,473,o), (331,473,cs) ); } ); width = 600; } ); unicode = 8312; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/el-cy.glyph000066400000000000000000000017161472355150100277270ustar00rootroot00000000000000{ glyphname = "el-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (16,-5,ls), (134,-5,o), (227,77,o), (249,200,cs), (286,410,l), (405,410,l), (340,0,l), (490,0,l), (577,550,l), (161,550,l), (101,210,ls), (93,162,o), (63,130,o), (28,130,cs), (-2,130,l), (-24,-5,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (3,-5,ls), (120,-5,o), (179,65,o), (211,240,cs), (252,468,l), (446,468,l), (372,0,l), (462,0,l), (549,550,l), (176,550,l), (122,244,ls), (100,120,o), (73,79,o), (12,79,cs), (-6,79,l), (-20,-5,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (15,-5,ls), (98,-5,o), (160,64,o), (179,169,cs), (241,505,l), (476,505,l), (396,0,l), (446,0,l), (533,550,l), (198,550,l), (130,169,ls), (116,96,o), (74,45,o), (23,45,cs), (-2,45,l), (-10,-5,l) ); } ); width = 600; } ); unicode = 1083; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/element.glyph000066400000000000000000000024471472355150100303510ustar00rootroot00000000000000{ glyphname = element; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,60,l), (561,190,l), (256,190,ls), (194,190,o), (162,228,o), (172,290,c), (173,299,l), (578,299,l), (598,420,l), (193,420,l), (194,430,l), (204,492,o), (248,530,o), (310,530,cs), (615,530,l), (636,660,l), (331,660,ls), (180,660,o), (72,573,o), (49,432,cs), (27,288,ls), (4,146,o), (84,60,o), (236,60,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (537,70,l), (550,150,l), (245,150,ls), (166,150,o), (115,216,o), (127,290,cs), (132,320,l), (577,320,l), (589,400,l), (144,400,l), (149,430,ls), (161,504,o), (232,570,o), (311,570,cs), (616,570,l), (629,650,l), (324,650,ls), (199,650,o), (79,556,o), (59,432,cs), (37,288,ls), (17,164,o), (107,70,o), (232,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (524,85,l), (532,130,l), (242,130,ls), (141,130,o), (91,187,o), (106,285,cs), (115,338,l), (565,338,l), (572,382,l), (122,382,l), (130,435,ls), (145,533,o), (213,590,o), (314,590,cs), (604,590,l), (612,635,l), (322,635,ls), (192,635,o), (100,560,o), (80,437,cs), (56,283,ls), (36,160,o), (104,85,o), (234,85,cs) ); } ); width = 600; } ); unicode = 8712; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ellipsis.glyph000066400000000000000000000042141472355150100305360ustar00rootroot00000000000000{ glyphname = ellipsis; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (483,-10,o), (514,16,o), (520,55,cs), (529,115,ls), (535,154,o), (514,180,o), (474,180,cs), (436,180,o), (405,154,o), (399,115,cs), (390,55,ls), (384,16,o), (405,-10,o), (443,-10,cs) ); }, { closed = 1; nodes = ( (103,-10,o), (134,16,o), (140,55,cs), (149,115,ls), (155,154,o), (134,180,o), (94,180,cs), (56,180,o), (25,154,o), (19,115,cs), (10,55,ls), (4,16,o), (25,-10,o), (63,-10,cs) ); }, { closed = 1; nodes = ( (293,-10,o), (324,16,o), (330,55,cs), (339,115,ls), (345,154,o), (324,180,o), (284,180,cs), (246,180,o), (215,154,o), (209,115,cs), (200,55,ls), (194,16,o), (215,-10,o), (253,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (474,-10,o), (498,12,o), (503,45,cs), (514,115,ls), (519,148,o), (503,170,o), (473,170,cs), (443,170,o), (419,148,o), (414,115,cs), (403,45,ls), (398,12,o), (414,-10,o), (444,-10,cs) ); }, { closed = 1; nodes = ( (94,-10,o), (118,12,o), (123,45,cs), (134,115,ls), (139,148,o), (123,170,o), (93,170,cs), (63,170,o), (39,148,o), (34,115,cs), (23,45,ls), (18,12,o), (34,-10,o), (64,-10,cs) ); }, { closed = 1; nodes = ( (284,-10,o), (308,12,o), (313,45,cs), (324,115,ls), (329,148,o), (313,170,o), (283,170,cs), (253,170,o), (229,148,o), (224,115,cs), (213,45,ls), (208,12,o), (224,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (474,-10,o), (498,12,o), (503,45,cs), (514,115,ls), (519,148,o), (503,170,o), (473,170,cs), (443,170,o), (419,148,o), (414,115,cs), (403,45,ls), (398,12,o), (414,-10,o), (444,-10,cs) ); }, { closed = 1; nodes = ( (94,-10,o), (118,12,o), (123,45,cs), (134,115,ls), (139,148,o), (123,170,o), (93,170,cs), (63,170,o), (39,148,o), (34,115,cs), (23,45,ls), (18,12,o), (34,-10,o), (64,-10,cs) ); }, { closed = 1; nodes = ( (284,-10,o), (308,12,o), (313,45,cs), (324,115,ls), (329,148,o), (313,170,o), (283,170,cs), (253,170,o), (229,148,o), (224,115,cs), (213,45,ls), (208,12,o), (224,-10,o), (254,-10,cs) ); } ); width = 600; } ); unicode = 8230; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ellipsisvertical.glyph000066400000000000000000000037041472355150100322730ustar00rootroot00000000000000{ glyphname = ellipsisvertical; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (336,527,o), (359,550,o), (359,585,cs), (359,620,o), (336,643,o), (301,643,cs), (265,643,o), (242,620,o), (242,585,cs), (242,550,o), (265,527,o), (301,527,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (336,25,o), (359,48,o), (359,83,cs), (359,118,o), (336,141,o), (301,141,cs), (265,141,o), (242,118,o), (242,83,cs), (242,48,o), (265,25,o), (301,25,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (343,503,o), (371,531,o), (371,573,cs), (371,615,o), (343,643,o), (301,643,cs), (258,643,o), (230,615,o), (230,573,cs), (230,531,o), (258,503,o), (301,503,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (343,25,o), (371,53,o), (371,95,cs), (371,137,o), (343,165,o), (301,165,cs), (258,165,o), (230,137,o), (230,95,cs), (230,53,o), (258,25,o), (301,25,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (348,479,o), (382,512,o), (382,560,cs), (382,608,o), (348,641,o), (300,641,cs), (252,641,o), (218,608,o), (218,560,cs), (218,512,o), (252,479,o), (300,479,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (348,27,o), (382,60,o), (382,108,cs), (382,156,o), (348,189,o), (300,189,cs), (252,189,o), (218,156,o), (218,108,cs), (218,60,o), (252,27,o), (300,27,cs) ); } ); width = 600; } ); unicode = 8942; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/em-cy.glyph000066400000000000000000000024741472355150100277320ustar00rootroot00000000000000{ glyphname = "em-cy"; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (119,0,l), (132,85,ls), (152,216,o), (175,385,o), (186,476,c), (236,165,l), (331,165,l), (479,478,l), (459,380,o), (424,205,o), (406,85,cs), (393,0,l), (480,0,l), (567,550,l), (443,550,l), (342,340,ls), (321,296,o), (302,250,o), (293,227,c), (291,250,o), (286,296,o), (278,339,cs), (239,550,l), (119,550,l), (32,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (97,0,l), (138,260,ls), (154,362,o), (169,471,o), (174,525,c), (256,165,l), (309,165,l), (503,525,l), (493,471,o), (472,362,o), (456,260,cs), (415,0,l), (464,0,l), (551,550,l), (475,550,l), (333,290,ls), (316,260,o), (297,221,o), (287,199,c), (283,221,o), (276,261,o), (269,290,cs), (208,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (135,0,l), (151,100,ls), (166,195,o), (178,338,o), (183,420,c), (218,155,l), (345,155,l), (460,420,l), (439,334,o), (407,188,o), (393,100,cs), (377,0,l), (514,0,l), (601,550,l), (430,550,l), (334,345,ls), (312,298,o), (300,257,o), (295,239,c), (296,257,o), (293,298,o), (285,345,cs), (252,550,l), (85,550,l), (-2,0,l) ); } ); width = 600; } ); unicode = 1084; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/emacron.glyph000066400000000000000000000007041472355150100303360ustar00rootroot00000000000000{ glyphname = emacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 275; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/emdash.glyph000066400000000000000000000010231472355150100301460ustar00rootroot00000000000000{ glyphname = emdash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (598,260,l), (620,400,l), (20,400,l), (-2,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (602,290,l), (615,370,l), (15,370,l), (2,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (605,309,l), (612,354,l), (13,354,l), (6,309,l) ); } ); width = 600; } ); unicode = 8212; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/emptyset.glyph000066400000000000000000000031271472355150100305660ustar00rootroot00000000000000{ glyphname = emptyset; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,50,o), (624,183,o), (624,360,cs), (624,537,o), (491,670,o), (314,670,cs), (137,670,o), (4,537,o), (4,360,cs), (4,183,o), (137,50,o), (314,50,cs) ); }, { closed = 1; nodes = ( (166,95,o), (54,209,o), (54,360,cs), (54,511,o), (166,625,o), (314,625,cs), (462,625,o), (574,511,o), (574,360,cs), (574,209,o), (462,95,o), (314,95,cs) ); }, { closed = 1; nodes = ( (88,0,l), (594,730,l), (540,730,l), (34,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (491,50,o), (624,183,o), (624,360,cs), (624,537,o), (491,670,o), (314,670,cs), (137,670,o), (4,537,o), (4,360,cs), (4,183,o), (137,50,o), (314,50,cs) ); }, { closed = 1; nodes = ( (189,130,o), (94,229,o), (94,360,cs), (94,491,o), (189,590,o), (314,590,cs), (439,590,o), (534,491,o), (534,360,cs), (534,229,o), (439,130,o), (314,130,cs) ); }, { closed = 1; nodes = ( (105,0,l), (594,730,l), (523,730,l), (34,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (491,50,o), (624,183,o), (624,360,cs), (624,537,o), (491,670,o), (314,670,cs), (137,670,o), (4,537,o), (4,360,cs), (4,183,o), (137,50,o), (314,50,cs) ); }, { closed = 1; nodes = ( (217,180,o), (144,257,o), (144,360,cs), (144,463,o), (217,540,o), (314,540,cs), (411,540,o), (484,463,o), (484,360,cs), (484,257,o), (411,180,o), (314,180,cs) ); }, { closed = 1; nodes = ( (136,0,l), (594,730,l), (492,730,l), (34,0,l) ); } ); width = 600; } ); unicode = 8709; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/en-cy.glyph000066400000000000000000000014711472355150100277270ustar00rootroot00000000000000{ glyphname = "en-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (205,209,l), (373,209,l), (340,0,l), (490,0,l), (577,550,l), (427,550,l), (395,349,l), (227,349,l), (259,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (140,0,l), (178,239,l), (410,239,l), (372,0,l), (462,0,l), (549,550,l), (459,550,l), (423,321,l), (191,321,l), (227,550,l), (137,550,l), (50,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (157,259,l), (436,259,l), (395,0,l), (446,0,l), (533,550,l), (482,550,l), (443,304,l), (164,304,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; } ); unicode = 1085; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/endO_fM_edium-control.glyph000066400000000000000000000013141472355150100330600ustar00rootroot00000000000000{ glyphname = "endOfMedium-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = M; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = M; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = M; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9241; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/endO_fT_ext-control.glyph000066400000000000000000000016261472355150100325720ustar00rootroot00000000000000{ glyphname = "endOfText-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9219; } endO_fT_ransmission-control.glyph000066400000000000000000000016361472355150100342610ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "endOfTransmission-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = T; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9220; } endO_fT_ransmissionB_lock-control.glyph000066400000000000000000000016431472355150100353710ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "endOfTransmissionBlock-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9239; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/endash.glyph000066400000000000000000000010251472355150100301510ustar00rootroot00000000000000{ glyphname = endash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (517,260,l), (539,400,l), (99,400,l), (77,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (522,290,l), (535,370,l), (95,370,l), (82,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (526,310,l), (533,355,l), (93,355,l), (86,310,l) ); } ); width = 600; } ); unicode = 8211; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/endescender-cy.glyph000066400000000000000000000023251472355150100316030ustar00rootroot00000000000000{ glyphname = "endescender-cy"; layers = ( { anchors = ( { name = "stick-cy"; pos = (446,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (114,0,l), (155,259,l), (434,259,l), (393,0,l), (444,0,l), (531,550,l), (480,550,l), (441,304,l), (162,304,l), (201,550,l), (151,550,l), (64,0,l) ); }, { closed = 1; nodes = ( (469,-140,l), (498,45,l), (448,45,l), (419,-140,l) ); } ); width = 600; }, { anchors = ( { name = "stick-cy"; pos = (462,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (137,0,l), (175,239,l), (407,239,l), (369,0,l), (459,0,l), (546,550,l), (456,550,l), (420,321,l), (188,321,l), (224,550,l), (134,550,l), (47,0,l) ); }, { closed = 1; nodes = ( (484,-140,l), (519,80,l), (439,80,l), (404,-140,l) ); } ); width = 600; }, { anchors = ( { name = "stick-cy"; pos = (490,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (162,0,l), (195,209,l), (363,209,l), (330,0,l), (480,0,l), (567,550,l), (417,550,l), (385,349,l), (217,349,l), (249,550,l), (99,550,l), (12,0,l) ); }, { closed = 1; nodes = ( (523,-140,l), (567,140,l), (437,140,l), (393,-140,l) ); } ); width = 600; } ); unicode = 1187; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/endofproof.glyph000066400000000000000000000010231472355150100310460ustar00rootroot00000000000000{ glyphname = endofproof; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,0,l), (480,510,l), (120,510,l), (120,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,0,l), (480,510,l), (120,510,l), (120,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (480,0,l), (480,510,l), (120,510,l), (120,0,l) ); } ); width = 600; } ); unicode = 8718; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eng.glyph000066400000000000000000000030401472355150100274570ustar00rootroot00000000000000{ glyphname = eng; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (223,-180,ls), (364,-180,o), (477,-96,o), (496,25,cs), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (254,550,l), (109,550,l), (22,0,l), (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (348,41,ls), (341,-7,o), (307,-35,o), (256,-35,cs), (196,-35,l), (173,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (230,-180,ls), (354,-180,o), (448,-103,o), (466,15,cs), (523,370,ls), (541,487,o), (484,560,o), (374,560,cs), (282,560,o), (221,510,o), (207,424,c), (229,445,l), (210,445,l), (227,550,l), (137,550,l), (50,0,l), (140,0,l), (195,350,ls), (209,435,o), (261,484,o), (336,484,cs), (408,484,o), (443,438,o), (431,360,cs), (376,15,ls), (365,-55,o), (314,-98,o), (243,-98,cs), (180,-98,l), (167,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (213,-180,ls), (338,-180,o), (432,-104,o), (450,15,cs), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (260,560,o), (188,499,o), (173,404,c), (211,455,l), (188,455,l), (203,550,l), (153,550,l), (66,0,l), (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (400,15,ls), (386,-78,o), (317,-135,o), (221,-135,cs), (180,-135,l), (172,-180,l) ); } ); width = 600; } ); unicode = 331; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/enquiry-control.glyph000066400000000000000000000016241472355150100320660ustar00rootroot00000000000000{ glyphname = "enquiry-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = Q; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = Q; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = Q; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9221; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eogonek.glyph000066400000000000000000000051641472355150100303460ustar00rootroot00000000000000{ glyphname = eogonek; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (388,-225,l), (405,-120,l), (336,-120,ls), (307,-120,o), (293,-103,o), (296,-83,cs), (299,-66,o), (317,-42,o), (347,-18,cs), (406,29,l), (454,58,o), (494,99,o), (515,150,c), (368,150,l), (354,122,o), (323,105,o), (276,105,cs), (209,105,o), (181,141,o), (192,210,cs), (197,240,l), (534,240,l), (550,340,ls), (571,472,o), (492,560,o), (346,560,cs), (199,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (108,-10,o), (255,-10,cs), (290,-10,o), (316,9,o), (320,29,c), (225,-19,o), (174,-68,o), (167,-115,cs), (156,-180,o), (199,-225,o), (280,-225,cs) ); }, { closed = 1; nodes = ( (415,327,l), (210,325,l), (213,340,ls), (224,408,o), (262,447,o), (328,447,cs), (393,447,o), (418,410,o), (407,342,cs), (403,317,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (375,-203,l), (384,-143,l), (324,-143,ls), (290,-143,o), (273,-122,o), (277,-93,cs), (282,-65,o), (305,-36,o), (356,1,cs), (374,14,l), (430,39,o), (472,83,o), (488,140,c), (398,140,l), (380,91,o), (335,66,o), (266,66,cs), (184,66,o), (150,113,o), (164,200,cs), (172,253,l), (508,253,l), (523,350,ls), (544,477,o), (475,560,o), (345,560,cs), (215,560,o), (120,477,o), (99,350,cs), (76,200,ls), (56,73,o), (124,-10,o), (254,-10,cs), (257,-10,o), (261,-10,o), (264,-10,c), (220,-45,o), (194,-80,o), (190,-110,cs), (181,-164,o), (223,-203,o), (297,-203,cs) ); }, { closed = 1; nodes = ( (471,321,l), (183,321,l), (187,350,ls), (201,437,o), (251,485,o), (333,485,cs), (415,485,o), (449,437,o), (435,350,cs), (425,281,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (374,-195,l), (381,-153,l), (317,-153,ls), (285,-153,o), (269,-134,o), (274,-103,cs), (278,-75,o), (307,-36,o), (351,0,cs), (382,24,l), (423,50,o), (453,88,o), (471,135,c), (421,135,l), (392,72,o), (336,34,o), (262,34,cs), (169,34,o), (126,94,o), (141,190,cs), (153,265,l), (493,265,l), (508,360,ls), (527,481,o), (467,560,o), (346,560,cs), (224,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (132,-10,o), (255,-10,cs), (272,-10,o), (290,-8,o), (305,-5,c), (253,-48,o), (230,-84,o), (225,-115,cs), (217,-165,o), (246,-195,o), (301,-195,cs) ); }, { closed = 1; nodes = ( (472,308,l), (160,308,l), (168,360,ls), (183,457,o), (245,516,o), (339,516,cs), (431,516,o), (473,456,o), (458,360,cs), (446,286,l) ); } ); width = 600; } ); unicode = 281; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/epsilon.glyph000066400000000000000000000042041472355150100303620ustar00rootroot00000000000000{ glyphname = epsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (461,41,o), (491,125,c), (441,125,l), (416,71,o), (367,35,o), (289,35,cs), (233,35,ls), (161,35,o), (115,85,o), (125,146,cs), (135,210,o), (191,261,o), (263,261,cs), (391,261,l), (398,306,l), (270,306,ls), (204,306,o), (167,348,o), (176,406,cs), (185,464,o), (248,515,o), (314,515,cs), (370,515,ls), (448,515,o), (476,479,o), (483,425,c), (533,425,l), (531,509,o), (488,560,o), (377,560,cs), (321,560,ls), (222,560,o), (140,495,o), (127,410,cs), (116,339,o), (144,287,o), (207,283,c), (206,279,l), (136,274,o), (86,217,o), (75,146,cs), (61,55,o), (120,-10,o), (225,-10,cs), (281,-10,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (398,-7,o), (485,46,o), (513,130,c), (418,130,l), (403,96,o), (357,73,o), (295,73,cs), (248,73,ls), (184,73,o), (149,105,o), (157,159,cs), (166,212,o), (211,246,o), (275,246,cs), (386,246,l), (398,324,l), (285,324,ls), (227,324,o), (196,354,o), (204,401,cs), (211,448,o), (253,477,o), (312,477,cs), (362,477,ls), (418,477,o), (450,453,o), (451,415,c), (546,415,l), (547,503,o), (483,557,o), (374,557,cs), (324,557,ls), (206,557,o), (124,500,o), (110,413,cs), (99,342,o), (140,298,o), (218,293,c), (218,289,l), (133,283,o), (74,231,o), (61,152,cs), (46,54,o), (112,-7,o), (235,-7,cs), (282,-7,ls) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (407,-7,o), (504,57,o), (537,160,c), (392,160,l), (378,129,o), (343,110,o), (302,110,cs), (245,110,ls), (201,110,o), (178,132,o), (184,168,cs), (189,203,o), (219,224,o), (263,224,cs), (392,224,l), (411,338,l), (288,338,ls), (247,338,o), (226,357,o), (231,389,cs), (236,422,o), (262,440,o), (304,440,cs), (350,440,ls), (391,440,o), (418,421,o), (422,390,c), (567,390,l), (566,493,o), (491,557,o), (368,557,cs), (322,557,ls), (191,557,o), (99,499,o), (84,407,cs), (73,333,o), (125,284,o), (216,284,c), (218,294,l), (120,294,o), (45,239,o), (32,157,cs), (16,57,o), (92,-7,o), (227,-7,cs), (284,-7,ls) ); } ); width = 600; } ); unicode = 949; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/epsilontonos.glyph000066400000000000000000000010511472355150100314420ustar00rootroot00000000000000{ glyphname = epsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = epsilon; }, { alignment = -1; pos = (11,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = epsilon; }, { alignment = -1; pos = (14,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = epsilon; }, { alignment = -1; pos = (13,0); ref = tonos; } ); width = 600; } ); unicode = 941; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal.glyph000066400000000000000000000014041472355150100300170ustar00rootroot00000000000000{ glyphname = equal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (119,525,l), (97,385,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (80,275,l), (57,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (536,410,l), (549,490,l), (119,490,l), (106,410,l) ); }, { closed = 1; nodes = ( (498,170,l), (511,250,l), (81,250,l), (68,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (528,421,l), (535,466,l), (125,466,l), (118,421,l) ); }, { closed = 1; nodes = ( (492,195,l), (499,240,l), (89,240,l), (82,195,l) ); } ); width = 600; } ); unicode = 61; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_colon.liga.glyph000066400000000000000000000035721472355150100321340ustar00rootroot00000000000000{ glyphname = equal_colon.liga; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-472,240,l), (-479,195,l), (71,195,l), (78,240,l) ); }, { closed = 1; nodes = ( (354,550,o), (318,521,o), (311,480,cs), (305,439,o), (332,410,o), (375,410,cs), (419,410,o), (456,439,o), (462,480,cs), (469,521,o), (442,550,o), (398,550,cs) ); }, { closed = 1; nodes = ( (306,250,o), (270,221,o), (264,180,cs), (257,139,o), (285,110,o), (328,110,cs), (372,110,o), (408,139,o), (415,180,cs), (421,221,o), (394,250,o), (350,250,cs) ); }, { closed = 1; nodes = ( (-436,465,l), (-443,420,l), (107,420,l), (114,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-464,250,l), (-477,170,l), (73,170,l), (86,250,l) ); }, { closed = 1; nodes = ( (357,560,o), (320,528,o), (312,479,cs), (305,431,o), (332,400,o), (380,400,cs), (428,400,o), (465,431,o), (472,479,cs), (480,528,o), (453,560,o), (405,560,cs) ); }, { closed = 1; nodes = ( (310,260,o), (273,229,o), (265,180,cs), (257,132,o), (284,100,o), (332,100,cs), (380,100,o), (417,132,o), (425,180,cs), (433,229,o), (406,260,o), (358,260,cs) ); }, { closed = 1; nodes = ( (-426,490,l), (-439,410,l), (111,410,l), (124,490,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-450,275,l), (-472,135,l), (78,135,l), (100,275,l) ); }, { closed = 1; nodes = ( (358,575,o), (312,537,o), (302,480,cs), (293,419,o), (326,379,o), (386,379,cs), (446,379,o), (493,419,o), (502,480,cs), (512,537,o), (478,575,o), (418,575,cs) ); }, { closed = 1; nodes = ( (311,281,o), (265,243,o), (256,186,cs), (246,125,o), (280,85,o), (340,85,cs), (400,85,o), (446,125,o), (456,186,cs), (465,243,o), (431,281,o), (371,281,cs) ); }, { closed = 1; nodes = ( (-410,525,l), (-433,385,l), (117,385,l), (140,525,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_colon_equal.liga.glyph000066400000000000000000000047041472355150100333210ustar00rootroot00000000000000{ glyphname = equal_colon_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (-11,525,l), (-33,385,l) ); }, { closed = 1; nodes = ( (-573,135,l), (-550,275,l), (-1120,275,l), (-1143,135,l) ); }, { closed = 1; nodes = ( (-533,385,l), (-511,525,l), (-1081,525,l), (-1103,385,l) ); }, { closed = 1; nodes = ( (-271,85,o), (-225,123,o), (-215,180,cs), (-206,241,o), (-239,281,o), (-299,281,cs), (-359,281,o), (-406,241,o), (-415,180,cs), (-425,123,o), (-391,85,o), (-331,85,cs) ); }, { closed = 1; nodes = ( (-224,379,o), (-178,417,o), (-169,474,cs), (-159,535,o), (-193,575,o), (-253,575,cs), (-313,575,o), (-359,535,o), (-369,474,cs), (-378,417,o), (-344,379,o), (-284,379,cs) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (-50,275,l), (-73,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,410,l), (554,490,l), (9,490,l), (-4,410,l) ); }, { closed = 1; nodes = ( (-592,170,l), (-579,250,l), (-1124,250,l), (-1137,170,l) ); }, { closed = 1; nodes = ( (-554,410,l), (-541,490,l), (-1086,490,l), (-1099,410,l) ); }, { closed = 1; nodes = ( (-280,100,o), (-243,132,o), (-235,180,cs), (-228,229,o), (-255,260,o), (-303,260,cs), (-351,260,o), (-388,229,o), (-395,180,cs), (-403,132,o), (-376,100,o), (-328,100,cs) ); }, { closed = 1; nodes = ( (-233,400,o), (-196,431,o), (-188,480,cs), (-180,528,o), (-207,560,o), (-255,560,cs), (-303,560,o), (-340,528,o), (-348,480,cs), (-356,431,o), (-329,400,o), (-281,400,cs) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (-29,250,l), (-42,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (540,405,l), (548,455,l), (8,455,l), (0,405,l) ); }, { closed = 1; nodes = ( (-591,210,l), (-583,260,l), (-1123,260,l), (-1131,210,l) ); }, { closed = 1; nodes = ( (-560,405,l), (-552,455,l), (-1092,455,l), (-1100,405,l) ); }, { closed = 1; nodes = ( (-283,110,o), (-247,139,o), (-240,180,cs), (-234,221,o), (-261,250,o), (-304,250,cs), (-348,250,o), (-385,221,o), (-391,180,cs), (-398,139,o), (-371,110,o), (-327,110,cs) ); }, { closed = 1; nodes = ( (-235,410,o), (-199,439,o), (-193,480,cs), (-186,521,o), (-214,550,o), (-257,550,cs), (-301,550,o), (-337,521,o), (-344,480,cs), (-350,439,o), (-323,410,o), (-279,410,cs) ); }, { closed = 1; nodes = ( (509,210,l), (517,260,l), (-23,260,l), (-31,210,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_equal.liga.glyph000066400000000000000000000014241472355150100321230ustar00rootroot00000000000000{ glyphname = equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (-481,525,l), (-503,385,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (-520,275,l), (-543,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,410,l), (554,490,l), (-486,490,l), (-499,410,l) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (-524,250,l), (-537,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (543,421,l), (550,466,l), (-490,466,l), (-497,421,l) ); }, { closed = 1; nodes = ( (507,195,l), (514,240,l), (-526,240,l), (-533,195,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_equal_equal.liga.glyph000066400000000000000000000020371472355150100333130ustar00rootroot00000000000000{ glyphname = equal_equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (560,530,l), (581,660,l), (-1059,660,l), (-1080,530,l) ); }, { closed = 1; nodes = ( (476,0,l), (497,130,l), (-1143,130,l), (-1164,0,l) ); }, { closed = 1; nodes = ( (518,265,l), (539,395,l), (-1101,395,l), (-1122,265,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (551,508,l), (563,584,l), (-1067,584,l), (-1079,508,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (-1135,152,l), (-1147,76,l) ); }, { closed = 1; nodes = ( (517,292,l), (529,368,l), (-1101,368,l), (-1113,292,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (541,502,l), (547,546,l), (-1063,546,l), (-1069,502,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,158,l), (-1124,158,l), (-1131,114,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,352,l), (-1093,352,l), (-1100,308,l) ); } ); width = 600; } ); } equal_equal_equal.liga.old.glyph000066400000000000000000000020571472355150100340130ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ export = 0; glyphname = equal_equal_equal.liga.old; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (552,480,l), (568,580,l), (-1072,580,l), (-1088,480,l) ); }, { closed = 1; nodes = ( (486,60,l), (502,160,l), (-1138,160,l), (-1154,60,l) ); }, { closed = 1; nodes = ( (519,270,l), (535,370,l), (-1105,370,l), (-1121,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (554,491,l), (565,561,l), (-1075,561,l), (-1086,491,l) ); }, { closed = 1; nodes = ( (489,79,l), (500,149,l), (-1140,149,l), (-1151,79,l) ); }, { closed = 1; nodes = ( (521,285,l), (533,355,l), (-1107,355,l), (-1119,285,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (557,517,l), (565,562,l), (-1075,562,l), (-1083,517,l) ); }, { closed = 1; nodes = ( (487,75,l), (495,120,l), (-1145,120,l), (-1153,75,l) ); }, { closed = 1; nodes = ( (522,296,l), (530,341,l), (-1110,341,l), (-1118,296,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_equal_greater.liga.glyph000066400000000000000000000016641472355150100336420ustar00rootroot00000000000000{ glyphname = equal_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-1081,525,l), (-1103,385,l), (333,385,l), (366,333,l), (311,275,l), (-1120,275,l), (-1143,135,l), (183,135,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-1081,490,l), (-1094,410,l), (383,410,l), (433,335,l), (351,250,l), (-1119,250,l), (-1132,170,l), (274,170,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-1075,466,l), (-1082,421,l), (405,421,l), (465,334,l), (372,240,l), (-1111,240,l), (-1118,195,l), (327,195,l), (170,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_exclam_equal.liga.glyph000066400000000000000000000026541472355150100334620ustar00rootroot00000000000000{ glyphname = equal_exclam_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (-11,525,l), (-33,385,l) ); }, { closed = 1; nodes = ( (-573,135,l), (-550,275,l), (-1120,275,l), (-1143,135,l) ); }, { closed = 1; nodes = ( (-533,385,l), (-511,525,l), (-1081,525,l), (-1103,385,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (-50,275,l), (-73,135,l) ); }, { alignment = -1; pos = (-600,0); ref = exclam; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,410,l), (554,490,l), (9,490,l), (-4,410,l) ); }, { closed = 1; nodes = ( (-592,170,l), (-579,250,l), (-1124,250,l), (-1137,170,l) ); }, { closed = 1; nodes = ( (-554,410,l), (-541,490,l), (-1086,490,l), (-1099,410,l) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (-29,250,l), (-42,170,l) ); }, { alignment = -1; pos = (-600,0); ref = exclam; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (543,420,l), (550,465,l), (5,465,l), (-2,420,l) ); }, { closed = 1; nodes = ( (-588,195,l), (-581,240,l), (-1126,240,l), (-1133,195,l) ); }, { closed = 1; nodes = ( (-552,420,l), (-545,465,l), (-1090,465,l), (-1097,420,l) ); }, { closed = 1; nodes = ( (507,195,l), (514,240,l), (-31,240,l), (-38,195,l) ); }, { alignment = -1; pos = (-600,0); ref = exclam; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_greater.liga.glyph000066400000000000000000000016421472355150100324470ustar00rootroot00000000000000{ glyphname = equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-481,525,l), (-503,385,l), (333,385,l), (364,332,l), (309,275,l), (-520,275,l), (-543,135,l), (181,135,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-481,490,l), (-494,410,l), (383,410,l), (433,333,l), (351,250,l), (-519,250,l), (-532,170,l), (274,170,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-475,466,l), (-482,421,l), (405,421,l), (465,333,l), (373,240,l), (-511,240,l), (-518,195,l), (328,195,l), (170,35,l) ); } ); width = 600; } ); } equal_greater_greater.liga.glyph000066400000000000000000000023531472355150100341010ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = equal_greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-49,35,l), (218,330,l), (45,625,l), (-127,625,l), (-69,525,l), (-1081,525,l), (-1103,385,l), (13,385,l), (46,334,l), (-10,275,l), (-1120,275,l), (-1143,135,l), (-138,135,l), (-230,35,l) ); }, { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (366,334,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-45,35,l), (233,330,l), (49,625,l), (-52,625,l), (33,490,l), (-1081,490,l), (-1094,410,l), (83,410,l), (135,334,l), (51,250,l), (-1119,250,l), (-1132,170,l), (-26,170,l), (-155,35,l) ); }, { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (434,335,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-48,35,l), (243,331,l), (46,625,l), (-11,625,l), (95,466,l), (-1075,466,l), (-1082,421,l), (125,421,l), (185,333,l), (92,240,l), (-1111,240,l), (-1118,195,l), (47,195,l), (-110,35,l) ); }, { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (464,334,l), (170,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_less_less.liga.glyph000066400000000000000000000023501472355150100330070ustar00rootroot00000000000000{ glyphname = equal_less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (147,35,l), (-23,326,l), (250,625,l), (69,625,l), (-22,525,l), (-1081,525,l), (-1103,385,l), (-149,385,l), (-199,330,l), (-166,275,l), (-1120,275,l), (-1143,135,l), (-85,135,l), (-25,35,l) ); }, { closed = 1; nodes = ( (467,35,l), (297,326,l), (570,625,l), (389,625,l), (121,330,l), (295,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (177,35,l), (-7,328,l), (280,625,l), (170,625,l), (43,490,l), (-1081,490,l), (-1094,410,l), (-33,410,l), (-109,330,l), (-58,250,l), (-1119,250,l), (-1132,170,l), (-9,170,l), (76,35,l) ); }, { closed = 1; nodes = ( (457,35,l), (273,328,l), (560,625,l), (450,625,l), (171,330,l), (356,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (173,35,l), (-25,327,l), (274,625,l), (211,625,l), (54,466,l), (-1075,466,l), (-1082,421,l), (10,421,l), (-81,330,l), (-21,240,l), (-1111,240,l), (-1118,195,l), (10,195,l), (117,35,l) ); }, { closed = 1; nodes = ( (453,35,l), (255,327,l), (554,625,l), (491,625,l), (199,330,l), (397,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equal_slash_equal.liga.glyph000066400000000000000000000022621472355150100333160ustar00rootroot00000000000000{ glyphname = equal_slash_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-503,0,l), (-395,135,l), (497,135,l), (520,275,l), (-281,275,l), (-193,385,l), (537,385,l), (559,525,l), (-81,525,l), (32,665,l), (-118,665,l), (-231,525,l), (-1121,525,l), (-1143,385,l), (-343,385,l), (-431,275,l), (-1160,275,l), (-1183,135,l), (-545,135,l), (-653,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-534,0,l), (-397,170,l), (483,170,l), (496,250,l), (-332,250,l), (-204,410,l), (521,410,l), (534,490,l), (-139,490,l), (1,665,l), (-89,665,l), (-229,490,l), (-1106,490,l), (-1119,410,l), (-294,410,l), (-422,250,l), (-1144,250,l), (-1157,170,l), (-487,170,l), (-624,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-549,0,l), (-396,190,l), (486,190,l), (494,240,l), (-356,240,l), (-210,420,l), (523,420,l), (530,470,l), (-171,470,l), (-14,665,l), (-74,665,l), (-231,470,l), (-1110,470,l), (-1117,420,l), (-270,420,l), (-416,240,l), (-1146,240,l), (-1154,190,l), (-456,190,l), (-609,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/equivalence.glyph000066400000000000000000000017701472355150100312170ustar00rootroot00000000000000{ glyphname = equivalence; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (550,470,l), (566,570,l), (126,570,l), (110,470,l) ); }, { closed = 1; nodes = ( (490,90,l), (506,190,l), (66,190,l), (50,90,l) ); }, { closed = 1; nodes = ( (520,280,l), (536,380,l), (96,380,l), (80,280,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (552,480,l), (563,550,l), (123,550,l), (112,480,l) ); }, { closed = 1; nodes = ( (493,110,l), (505,180,l), (65,180,l), (53,110,l) ); }, { closed = 1; nodes = ( (523,295,l), (534,365,l), (94,365,l), (83,295,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (554,490,l), (561,535,l), (121,535,l), (114,490,l) ); }, { closed = 1; nodes = ( (496,125,l), (503,170,l), (63,170,l), (56,125,l) ); }, { closed = 1; nodes = ( (525,309,l), (532,354,l), (92,354,l), (85,309,l) ); } ); width = 600; } ); unicode = 8801; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/er-cy.glyph000066400000000000000000000006031472355150100277270ustar00rootroot00000000000000{ glyphname = "er-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = p; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = p; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = p; } ); width = 600; } ); unicode = 1088; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ereversed-cy.glyph000066400000000000000000000031501472355150100313050ustar00rootroot00000000000000{ glyphname = "ereversed-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (398,-10,o), (508,77,o), (529,210,cs), (550,340,ls), (571,473,o), (489,560,o), (342,560,cs), (197,560,o), (91,482,o), (66,355,c), (216,355,l), (228,402,o), (267,430,o), (321,430,cs), (381,430,o), (409,398,o), (400,340,cs), (399,334,l), (242,334,l), (224,220,l), (381,220,l), (379,210,ls), (370,152,o), (332,120,o), (272,120,cs), (217,120,o), (187,147,o), (191,195,c), (41,195,l), (26,68,o), (106,-10,o), (251,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (477,69,o), (498,200,cs), (521,350,ls), (542,481,o), (474,560,o), (341,560,cs), (214,560,o), (121,487,o), (99,370,c), (189,370,l), (204,440,o), (254,480,o), (328,480,cs), (407,480,o), (445,433,o), (432,351,cs), (427,320,l), (232,320,l), (219,240,l), (414,240,l), (408,200,ls), (395,117,o), (342,70,o), (263,70,cs), (189,70,o), (151,110,o), (159,180,c), (69,180,l), (54,63,o), (123,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (343,560,cs), (222,560,o), (133,486,o), (115,370,c), (165,370,l), (179,460,o), (244,516,o), (336,516,cs), (427,516,o), (473,457,o), (458,360,cs), (449,300,l), (239,300,l), (231,250,l), (441,250,l), (431,190,ls), (416,94,o), (350,34,o), (259,34,cs), (167,34,o), (120,90,o), (135,180,c), (85,180,l), (66,64,o), (131,-10,o), (252,-10,cs) ); } ); width = 600; } ); unicode = 1101; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/es-cy.glyph000066400000000000000000000006371472355150100277370ustar00rootroot00000000000000{ glyphname = "es-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = c; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-2,0); ref = c; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-2,0); ref = c; } ); width = 600; } ); unicode = 1089; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/escape-control.glyph000066400000000000000000000016231472355150100316310ustar00rootroot00000000000000{ glyphname = "escape-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = C; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = C; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = C; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9243; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/estimated.glyph000066400000000000000000000032551472355150100306750ustar00rootroot00000000000000{ glyphname = estimated; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (60,95,o), (157,-10,o), (300,-10,cs), (404,-10,o), (495,52,o), (527,145,c), (472,145,l), (444,79,o), (375,35,o), (300,35,cs), (226,35,o), (176,72,o), (160,100,c), (160,359,l), (540,359,l), (540,480,ls), (540,637,o), (445,740,o), (300,740,cs), (157,740,o), (60,635,o), (60,480,cs), (60,250,ls) ); }, { closed = 1; nodes = ( (160,630,l), (176,658,o), (226,695,o), (300,695,cs), (374,695,o), (424,658,o), (440,630,c), (440,409,l), (160,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (60,95,o), (157,-10,o), (300,-10,cs), (404,-10,o), (495,52,o), (527,145,c), (477,145,l), (450,79,o), (379,35,o), (300,35,cs), (226,35,o), (176,72,o), (160,100,c), (160,359,l), (540,359,l), (540,480,ls), (540,637,o), (445,740,o), (300,740,cs), (157,740,o), (60,635,o), (60,480,cs), (60,250,ls) ); }, { closed = 1; nodes = ( (160,630,l), (176,658,o), (226,695,o), (300,695,cs), (374,695,o), (424,658,o), (440,630,c), (440,409,l), (160,409,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (60,95,o), (157,-10,o), (300,-10,cs), (404,-10,o), (495,52,o), (527,145,c), (477,145,l), (450,79,o), (379,35,o), (300,35,cs), (226,35,o), (176,72,o), (160,100,c), (160,359,l), (540,359,l), (540,480,ls), (540,637,o), (445,740,o), (300,740,cs), (157,740,o), (60,635,o), (60,480,cs), (60,250,ls) ); }, { closed = 1; nodes = ( (160,630,l), (176,658,o), (226,695,o), (300,695,cs), (374,695,o), (424,658,o), (440,630,c), (440,409,l), (160,409,l) ); } ); width = 600; } ); unicode = 8494; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eta.glyph000066400000000000000000000023331472355150100274630ustar00rootroot00000000000000{ glyphname = eta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (369,-180,l), (419,-180,l), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (260,560,o), (188,499,o), (173,404,c), (211,455,l), (188,455,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (193,350,ls), (207,435,o), (261,484,o), (336,484,cs), (408,484,o), (445,438,o), (433,360,cs), (347,-180,l), (437,-180,l), (525,370,ls), (543,487,o), (484,560,o), (374,560,cs), (282,560,o), (219,510,o), (205,424,c), (227,445,l), (208,445,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (313,-180,l), (463,-180,l), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (254,550,l), (109,550,l), (22,0,l) ); } ); width = 600; } ); unicode = 951; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/etatonos.glyph000066400000000000000000000010311472355150100305400ustar00rootroot00000000000000{ glyphname = etatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = eta; }, { alignment = -1; pos = (45,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = eta; }, { alignment = -1; pos = (35,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = eta; }, { alignment = -1; pos = (35,0); ref = tonos; } ); width = 600; } ); unicode = 942; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/eth.glyph000066400000000000000000000040721472355150100274740ustar00rootroot00000000000000{ glyphname = eth; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (415,0,o), (531,96,o), (556,251,cs), (569,337,o), (546,429,o), (480,537,cs), (439,604,l), (552,641,l), (567,747,l), (386,687,l), (361,730,l), (208,730,l), (261,642,l), (158,608,l), (143,501,l), (313,558,l), (354,489,ls), (400,412,o), (408,380,o), (406,375,c), (400,375,l), (386,410,o), (340,456,o), (271,456,cs), (150,456,o), (54,368,o), (33,236,cs), (11,94,o), (99,0,o), (256,0,cs) ); }, { closed = 1; nodes = ( (209,125,o), (173,168,o), (183,235,cs), (194,302,o), (244,345,o), (311,345,cs), (377,345,o), (414,301,o), (403,235,cs), (393,168,o), (343,125,o), (276,125,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (499,83,o), (521,223,cs), (535,308,o), (515,410,o), (466,493,cs), (401,604,l), (521,653,l), (533,735,l), (366,668,l), (332,730,l), (237,730,l), (292,633,l), (164,577,l), (151,496,l), (327,569,l), (377,480,ls), (405,430,o), (421,393,o), (425,380,c), (411,380,l), (400,404,o), (364,436,o), (306,436,cs), (179,436,o), (81,348,o), (60,215,cs), (39,80,o), (116,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (183,70,o), (136,128,o), (150,215,cs), (164,302,o), (229,360,o), (312,360,cs), (397,360,o), (444,302,o), (430,215,cs), (416,128,o), (351,70,o), (266,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (388,-10,o), (488,78,o), (510,213,cs), (524,302,o), (499,403,o), (433,517,cs), (379,610,l), (524,673,l), (530,717,l), (360,644,l), (314,730,l), (264,730,l), (323,628,l), (161,557,l), (155,513,l), (342,594,l), (398,491,ls), (437,419,o), (453,366,o), (456,347,c), (453,347,l), (437,385,o), (388,436,o), (315,436,cs), (186,436,o), (91,350,o), (70,215,cs), (49,79,o), (121,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (161,40,o), (108,108,o), (125,215,cs), (142,322,o), (217,390,o), (318,390,cs), (413,390,o), (471,318,o), (455,216,cs), (438,109,o), (362,40,o), (262,40,cs) ); } ); width = 600; } ); unicode = 240; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/etilde.glyph000066400000000000000000000007611472355150100301630ustar00rootroot00000000000000{ glyphname = etilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 7869; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/euro.glyph000066400000000000000000000040451472355150100276660ustar00rootroot00000000000000{ glyphname = euro; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (424,-10,o), (539,80,o), (560,215,c), (410,215,l), (401,158,o), (358,125,o), (295,125,cs), (231,125,o), (199,158,o), (208,215,cs), (210,225,l), (357,225,l), (372,320,l), (225,320,l), (237,400,l), (384,400,l), (399,495,l), (252,495,l), (254,505,ls), (263,562,o), (306,595,o), (370,595,cs), (433,595,o), (465,562,o), (456,505,c), (606,505,l), (627,640,o), (542,730,o), (392,730,cs), (241,730,o), (125,640,o), (104,505,cs), (102,495,l), (44,495,l), (29,400,l), (87,400,l), (75,320,l), (17,320,l), (2,225,l), (60,225,l), (58,215,ls), (37,80,o), (122,-10,o), (273,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (398,-10,o), (492,63,o), (525,185,c), (435,185,l), (416,113,o), (360,70,o), (287,70,cs), (206,70,o), (165,121,o), (178,205,cs), (185,245,l), (350,245,l), (360,310,l), (195,310,l), (211,410,l), (376,410,l), (386,475,l), (221,475,l), (228,515,ls), (241,599,o), (299,650,o), (379,650,cs), (452,650,o), (494,607,o), (491,535,c), (581,535,l), (586,657,o), (516,730,o), (392,730,cs), (257,730,o), (158,646,o), (138,515,cs), (131,475,l), (50,475,l), (40,410,l), (121,410,l), (105,310,l), (24,310,l), (14,245,l), (95,245,l), (88,205,ls), (68,74,o), (139,-10,o), (274,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (394,-10,o), (487,72,o), (508,200,c), (458,200,l), (442,98,o), (374,35,o), (278,35,cs), (184,35,o), (136,94,o), (151,190,cs), (163,263,l), (343,263,l), (349,303,l), (169,303,l), (187,417,l), (367,417,l), (373,457,l), (193,457,l), (207,540,ls), (222,636,o), (289,695,o), (382,695,cs), (477,695,o), (526,632,o), (510,530,c), (560,530,l), (580,658,o), (513,740,o), (389,740,cs), (267,740,o), (176,662,o), (157,540,cs), (143,457,l), (58,457,l), (52,417,l), (137,417,l), (119,303,l), (34,303,l), (28,263,l), (113,263,l), (101,190,ls), (82,69,o), (148,-10,o), (270,-10,cs) ); } ); width = 600; } ); unicode = 8364; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/excess.glyph000066400000000000000000000031771472355150100302130ustar00rootroot00000000000000{ glyphname = excess; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (361,310,l), (368,355,l), (18,355,l), (11,310,l) ); }, { closed = 1; nodes = ( (538,110,o), (574,139,o), (581,180,cs), (587,221,o), (560,250,o), (517,250,cs), (473,250,o), (436,221,o), (430,180,cs), (423,139,o), (450,110,o), (494,110,cs) ); }, { closed = 1; nodes = ( (586,410,o), (622,439,o), (628,480,cs), (635,521,o), (607,550,o), (564,550,cs), (520,550,o), (484,521,o), (477,480,cs), (471,439,o), (498,410,o), (542,410,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (357,290,l), (370,370,l), (20,370,l), (7,290,l) ); }, { closed = 1; nodes = ( (546,105,o), (582,135,o), (590,180,cs), (597,225,o), (569,255,o), (521,255,cs), (473,255,o), (437,225,o), (430,180,cs), (422,135,o), (450,105,o), (498,105,cs) ); }, { closed = 1; nodes = ( (593,405,o), (630,435,o), (637,480,cs), (644,525,o), (617,555,o), (569,555,cs), (521,555,o), (484,525,o), (477,480,cs), (470,435,o), (497,405,o), (545,405,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (343,260,l), (365,400,l), (15,400,l), (-7,260,l) ); }, { closed = 1; nodes = ( (537,93,o), (582,127,o), (591,180,cs), (599,236,o), (565,273,o), (505,273,cs), (445,273,o), (399,236,o), (391,180,cs), (382,127,o), (417,93,o), (477,93,cs) ); }, { closed = 1; nodes = ( (583,387,o), (629,421,o), (637,474,cs), (646,530,o), (612,567,o), (552,567,cs), (492,567,o), (446,530,o), (437,474,cs), (429,421,o), (463,387,o), (523,387,cs) ); } ); width = 600; } ); unicode = 8761; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/exclam.glyph000066400000000000000000000023261472355150100301650ustar00rootroot00000000000000{ glyphname = exclam; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (351,245,l), (427,580,l), (451,730,l), (293,730,l), (269,580,l), (239,245,l) ); }, { closed = 1; nodes = ( (269,-5,ls), (315,-5,o), (349,22,o), (356,65,cs), (363,107,o), (337,135,o), (292,135,cs), (262,135,ls), (217,135,o), (183,107,o), (176,65,cs), (170,23,o), (195,-5,o), (240,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (322,215,l), (406,610,l), (425,730,l), (319,730,l), (300,610,l), (258,215,l) ); }, { closed = 1; nodes = ( (270,-5,ls), (305,-5,o), (334,21,o), (340,56,cs), (345,90,o), (327,115,o), (289,115,cs), (259,115,ls), (224,115,o), (195,90,o), (190,55,cs), (184,20,o), (205,-5,o), (240,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (303,205,l), (377,570,l), (403,730,l), (341,730,l), (315,570,l), (273,205,l) ); }, { closed = 1; nodes = ( (261,-5,ls), (294,-5,o), (320,17,o), (325,50,cs), (330,83,o), (312,105,o), (279,105,cs), (274,105,ls), (241,105,o), (215,83,o), (210,50,cs), (205,17,o), (223,-5,o), (256,-5,cs) ); } ); width = 600; } ); unicode = 33; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/exclam_equal.liga.glyph000066400000000000000000000022131472355150100322620ustar00rootroot00000000000000{ glyphname = exclam_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-188,0,l), (-80,135,l), (497,135,l), (520,275,l), (34,275,l), (122,385,l), (537,385,l), (559,525,l), (234,525,l), (347,665,l), (197,665,l), (84,525,l), (-481,525,l), (-503,385,l), (-28,385,l), (-116,275,l), (-520,275,l), (-543,135,l), (-230,135,l), (-338,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-214,0,l), (-77,170,l), (503,170,l), (516,250,l), (-12,250,l), (116,410,l), (541,410,l), (554,490,l), (181,490,l), (321,665,l), (231,665,l), (91,490,l), (-486,490,l), (-499,410,l), (26,410,l), (-102,250,l), (-524,250,l), (-537,170,l), (-167,170,l), (-304,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-233,0,l), (-76,195,l), (507,195,l), (514,240,l), (-41,240,l), (105,421,l), (543,421,l), (550,466,l), (141,466,l), (300,665,l), (248,665,l), (89,466,l), (-490,466,l), (-497,421,l), (53,421,l), (-93,240,l), (-526,240,l), (-533,195,l), (-128,195,l), (-285,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/exclam_equal_equal.liga.glyph000066400000000000000000000024311472355150100334530ustar00rootroot00000000000000{ glyphname = exclam_equal_equal.liga; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-544,-50,l), (41,710,l), (-40,710,l), (-626,-50,l) ); }, { closed = 1; nodes = ( (551,508,l), (563,584,l), (-1067,584,l), (-1079,508,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (-1135,152,l), (-1147,76,l) ); }, { closed = 1; nodes = ( (517,292,l), (529,368,l), (-1101,368,l), (-1113,292,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-569,-110,l), (106,770,l), (-16,770,l), (-691,-110,l) ); }, { closed = 1; nodes = ( (560,530,l), (581,660,l), (-1059,660,l), (-1080,530,l) ); }, { closed = 1; nodes = ( (476,0,l), (497,130,l), (-1143,130,l), (-1164,0,l) ); }, { closed = 1; nodes = ( (518,265,l), (539,395,l), (-1101,395,l), (-1122,265,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-560,-50,l), (26,710,l), (-26,710,l), (-612,-50,l) ); }, { closed = 1; nodes = ( (541,502,l), (547,546,l), (-1063,546,l), (-1069,502,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,158,l), (-1124,158,l), (-1131,114,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,352,l), (-1093,352,l), (-1100,308,l) ); } ); width = 600; } ); } exclam_equal_equal.liga.old.glyph000066400000000000000000000030201472355150100341440ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ export = 0; glyphname = exclam_equal_equal.liga.old; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-544,-50,l), (-434,90,l), (490,90,l), (501,160,l), (-379,160,l), (-280,285,l), (521,285,l), (532,355,l), (-226,355,l), (-127,480,l), (552,480,l), (563,550,l), (-72,550,l), (38,690,l), (-43,690,l), (-153,550,l), (-1077,550,l), (-1088,480,l), (-208,480,l), (-307,355,l), (-1108,355,l), (-1119,285,l), (-362,285,l), (-461,160,l), (-1139,160,l), (-1150,90,l), (-516,90,l), (-626,-50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-560,-50,l), (-450,90,l), (490,90,l), (497,135,l), (-415,135,l), (-287,296,l), (523,296,l), (530,341,l), (-252,341,l), (-124,502,l), (556,502,l), (563,547,l), (-89,547,l), (23,690,l), (-29,690,l), (-141,547,l), (-1077,547,l), (-1084,502,l), (-176,502,l), (-304,341,l), (-1110,341,l), (-1117,296,l), (-339,296,l), (-467,135,l), (-1143,135,l), (-1150,90,l), (-502,90,l), (-612,-50,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-530,-60,l), (-428,70,l), (487,70,l), (503,170,l), (-350,170,l), (-272,270,l), (519,270,l), (535,370,l), (-193,370,l), (-116,470,l), (550,470,l), (566,570,l), (-38,570,l), (64,700,l), (-58,700,l), (-160,570,l), (-1074,570,l), (-1090,470,l), (-238,470,l), (-315,370,l), (-1105,370,l), (-1121,270,l), (-394,270,l), (-472,170,l), (-1137,170,l), (-1153,70,l), (-550,70,l), (-652,-60,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/exclam_exclam.liga.glyph000066400000000000000000000011231472355150100324230ustar00rootroot00000000000000{ glyphname = exclam_exclam.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-540,0); ref = exclam; }, { alignment = -1; pos = (-60,0); ref = exclam; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-540,0); ref = exclam; }, { alignment = -1; pos = (-60,0); ref = exclam; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-542,0); ref = exclam; }, { alignment = -1; pos = (-60,0); ref = exclam; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/exclamdown.glyph000066400000000000000000000023751472355150100310610ustar00rootroot00000000000000{ glyphname = exclamdown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,-180,l), (332,-20,l), (360,305,l), (248,305,l), (174,-20,l), (148,-180,l) ); }, { closed = 1; nodes = ( (337,415,ls), (382,415,o), (416,443,o), (423,485,cs), (429,527,o), (404,555,o), (359,555,cs), (330,555,ls), (284,555,o), (250,528,o), (243,486,cs), (236,443,o), (262,415,o), (307,415,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (280,-180,l), (300,-55,l), (341,336,l), (277,336,l), (194,-55,l), (174,-180,l) ); }, { closed = 1; nodes = ( (335,436,ls), (374,436,o), (404,461,o), (410,498,cs), (416,534,o), (393,556,o), (354,556,cs), (334,556,ls), (295,556,o), (265,533,o), (260,497,cs), (254,461,o), (276,436,o), (315,436,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (261,-180,l), (287,-20,l), (329,345,l), (299,345,l), (225,-20,l), (199,-180,l) ); }, { closed = 1; nodes = ( (328,445,ls), (361,445,o), (387,467,o), (392,500,cs), (397,533,o), (379,555,o), (346,555,cs), (341,555,ls), (308,555,o), (282,533,o), (277,500,cs), (272,467,o), (290,445,o), (323,445,cs) ); } ); width = 600; } ); unicode = 161; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/existential.glyph000066400000000000000000000015021472355150100312400ustar00rootroot00000000000000{ glyphname = existential; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (476,0,l), (592,730,l), (142,730,l), (121,600,l), (421,600,l), (396,439,l), (131,439,l), (110,309,l), (375,309,l), (347,130,l), (47,130,l), (26,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (456,0,l), (572,730,l), (152,730,l), (139,648,l), (469,648,l), (433,422,l), (138,422,l), (125,340,l), (420,340,l), (379,82,l), (49,82,l), (36,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (436,0,l), (552,730,l), (162,730,l), (154,685,l), (494,685,l), (450,403,l), (145,403,l), (138,358,l), (443,358,l), (393,45,l), (53,45,l), (46,0,l) ); } ); width = 600; } ); unicode = 8707; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/f.glyph000066400000000000000000000027171472355150100271450ustar00rootroot00000000000000{ glyphname = f; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (73,-180,ls), (181,-180,o), (255,-119,o), (271,-20,cs), (342,413,l), (556,413,l), (569,495,l), (355,495,l), (367,570,ls), (375,623,o), (405,648,o), (461,648,cs), (587,648,l), (600,730,l), (475,730,ls), (367,730,o), (293,669,o), (277,570,cs), (265,495,l), (94,495,l), (81,413,l), (252,413,l), (181,-20,ls), (172,-73,o), (143,-98,o), (87,-98,cs), (13,-98,l), (0,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (98,-180,ls), (179,-180,o), (235,-133,o), (248,-55,cs), (331,449,l), (550,449,l), (557,494,l), (338,494,l), (356,605,ls), (364,656,o), (397,685,o), (448,685,cs), (587,685,l), (595,730,l), (456,730,ls), (375,730,o), (319,683,o), (306,605,cs), (288,494,l), (104,494,l), (97,449,l), (281,449,l), (198,-55,ls), (190,-106,o), (157,-135,o), (106,-135,cs), (8,-135,l), (0,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (48,-180,ls), (189,-180,o), (289,-106,o), (308,14,cs), (362,350,l), (557,350,l), (579,485,l), (384,485,l), (395,555,ls), (399,582,o), (420,600,o), (447,600,cs), (579,600,l), (600,730,l), (463,730,ls), (349,730,o), (262,662,o), (246,560,cs), (234,485,l), (82,485,l), (60,350,l), (212,350,l), (159,19,ls), (151,-31,o), (115,-60,o), (62,-60,cs), (19,-60,l), (0,-180,l) ); } ); width = 600; } ); unicode = 102; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/fileS_eparator-control.glyph000066400000000000000000000013161472355150100333270ustar00rootroot00000000000000{ glyphname = "fileSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9244; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/firsttonechinese.glyph000066400000000000000000000006431472355150100322700ustar00rootroot00000000000000{ glyphname = firsttonechinese; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 713; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/five.glyph000066400000000000000000000033231472355150100276430ustar00rootroot00000000000000{ glyphname = five; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (404,-10,o), (507,71,o), (528,205,cs), (540,276,ls), (560,404,o), (503,479,o), (384,479,cs), (302,479,o), (246,441,o), (236,380,c), (272,405,l), (241,405,l), (273,595,l), (563,595,l), (585,730,l), (154,730,l), (85,330,l), (230,330,l), (248,350,o), (276,360,o), (312,360,cs), (372,360,o), (398,330,o), (390,276,cs), (378,205,ls), (370,151,o), (333,120,o), (274,120,cs), (219,120,o), (191,146,o), (196,190,c), (46,190,l), (30,67,o), (108,-10,o), (253,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (483,71,o), (503,200,cs), (514,271,ls), (534,403,o), (477,481,o), (359,480,cs), (275,480,o), (215,441,o), (205,379,c), (237,405,l), (209,405,l), (251,648,l), (548,648,l), (561,730,l), (177,730,l), (108,326,l), (198,326,l), (222,371,o), (268,401,o), (320,401,cs), (403,401,o), (437,354,o), (424,271,cs), (413,200,ls), (400,117,o), (350,70,o), (266,70,cs), (192,70,o), (154,103,o), (156,160,c), (66,160,l), (63,56,o), (133,-10,o), (252,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (468,73,o), (488,204,cs), (499,270,ls), (520,404,o), (468,480,o), (352,480,cs), (256,480,o), (185,427,o), (172,347,c), (202,380,l), (181,380,l), (232,685,l), (544,685,l), (552,730,l), (192,730,l), (123,326,l), (173,326,l), (201,395,o), (255,435,o), (325,435,cs), (421,435,o), (465,374,o), (449,270,cs), (438,204,ls), (421,97,o), (357,35,o), (262,35,cs), (171,35,o), (124,84,o), (132,166,c), (82,166,l), (73,57,o), (137,-10,o), (254,-10,cs) ); } ); width = 600; } ); unicode = 53; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/fiveinferior.glyph000066400000000000000000000007261472355150100314050ustar00rootroot00000000000000{ glyphname = fiveinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = fivesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = fivesuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = fivesuperior; } ); width = 600; } ); metricLeft = five; metricRight = five; unicode = 8325; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/fivesuperior.glyph000066400000000000000000000031671472355150100314420ustar00rootroot00000000000000{ glyphname = fivesuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (390,395,o), (452,450,o), (466,534,cs), (479,617,o), (436,672,o), (356,672,cs), (309,672,o), (269,648,o), (252,612,c), (264,612,l), (292,790,l), (487,790,l), (493,830,l), (253,830,l), (216,593,l), (261,593,l), (275,617,o), (307,633,o), (343,633,cs), (398,633,o), (430,596,o), (421,534,cs), (411,474,o), (368,435,o), (312,435,cs), (260,435,o), (228,470,o), (232,524,c), (187,524,l), (180,446,o), (227,395,o), (306,395,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (396,395,o), (462,450,o), (476,538,cs), (489,620,o), (449,672,o), (373,672,cs), (322,672,o), (280,644,o), (264,599,c), (276,604,l), (301,766,l), (493,766,l), (503,830,l), (241,830,l), (203,588,l), (268,588,l), (283,606,o), (310,618,o), (337,618,cs), (386,618,o), (412,587,o), (404,538,cs), (396,489,o), (362,458,o), (314,458,cs), (272,458,o), (245,480,o), (245,515,c), (175,515,l), (172,441,o), (222,395,o), (304,395,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,395,o), (473,452,o), (486,539,cs), (500,622,o), (456,675,o), (381,675,cs), (325,675,o), (285,644,o), (273,596,c), (286,596,l), (310,745,l), (500,745,l), (513,830,l), (228,830,l), (189,582,l), (284,582,l), (298,597,o), (318,606,o), (339,606,cs), (376,606,o), (398,580,o), (391,539,cs), (385,498,o), (355,472,o), (314,472,cs), (277,472,o), (253,489,o), (254,515,c), (159,515,l), (155,442,o), (212,395,o), (302,395,cs) ); } ); width = 600; } ); unicode = 8309; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/flat-musical.glyph000066400000000000000000000056641472355150100313050ustar00rootroot00000000000000{ glyphname = "flat-musical"; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (132,0,l), (319,72,ls), (428,114,o), (495,191,o), (495,275,cs), (495,340,ls), (495,452,o), (444,525,o), (365,525,cs), (300,525,o), (255,476,o), (255,400,c), (266,427,l), (255,427,l), (255,730,l), (105,730,l), (105,0,l) ); }, { closed = 1; nodes = ( (255,340,ls), (255,375,o), (271,395,o), (300,395,cs), (329,395,o), (345,375,o), (345,340,cs), (345,275,ls), (345,235,o), (318,200,o), (274,184,cs), (255,177,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (361,72,ls), (470,114,o), (537,191,o), (537,275,cs), (537,340,ls), (537,452,o), (486,525,o), (407,525,cs), (342,525,o), (297,476,o), (297,400,c), (308,427,l), (297,427,l), (297,730,l), (147,730,l), (147,-10,l) ); }, { closed = 1; nodes = ( (297,340,ls), (297,375,o), (313,395,o), (342,395,cs), (371,395,o), (387,375,o), (387,340,cs), (387,275,ls), (387,235,o), (360,200,o), (316,184,cs), (297,177,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (230,341,ls), (230,387,o), (256,414,o), (300,414,cs), (344,414,o), (370,387,o), (370,341,cs), (370,256,ls), (370,198,o), (338,154,o), (283,133,cs), (230,113,l) ); }, { closed = 1; nodes = ( (311,55,ls), (404,90,o), (460,166,o), (460,256,cs), (460,341,ls), (460,435,o), (409,496,o), (332,496,cs), (270,496,o), (230,454,o), (230,390,c), (250,410,l), (230,410,l), (230,730,l), (140,730,l), (140,0,l), (167,0,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (353,55,ls), (446,90,o), (502,166,o), (502,256,cs), (502,341,ls), (502,435,o), (451,496,o), (374,496,cs), (312,496,o), (272,454,o), (272,390,c), (292,410,l), (272,410,l), (272,730,l), (182,730,l), (182,-10,l) ); }, { closed = 1; nodes = ( (272,341,ls), (272,387,o), (298,414,o), (342,414,cs), (386,414,o), (412,387,o), (412,341,cs), (412,256,ls), (412,198,o), (380,154,o), (325,133,cs), (272,113,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (182,0,l), (315,50,ls), (398,81,o), (445,142,o), (445,213,cs), (445,318,ls), (445,406,o), (393,463,o), (313,463,cs), (245,463,o), (200,419,o), (200,352,c), (215,399,l), (205,399,l), (205,730,l), (155,730,l), (155,0,l) ); }, { closed = 1; nodes = ( (205,318,ls), (205,378,o), (243,418,o), (300,418,cs), (357,418,o), (395,378,o), (395,318,cs), (395,213,ls), (395,158,o), (360,112,o), (300,90,cs), (205,55,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (357,50,ls), (440,81,o), (487,142,o), (487,213,cs), (487,318,ls), (487,406,o), (435,463,o), (355,463,cs), (287,463,o), (242,419,o), (242,352,c), (257,399,l), (247,399,l), (247,730,l), (197,730,l), (197,-10,l) ); }, { closed = 1; nodes = ( (247,318,ls), (247,378,o), (285,418,o), (342,418,cs), (399,418,o), (437,378,o), (437,318,cs), (437,213,ls), (437,158,o), (402,112,o), (342,90,cs), (247,55,l) ); } ); width = 600; } ); unicode = 9837; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/florin.glyph000066400000000000000000000027241472355150100302070ustar00rootroot00000000000000{ glyphname = florin; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (42,-180,ls), (183,-180,o), (296,-96,o), (315,25,cs), (356,285,l), (561,285,l), (582,415,l), (377,415,l), (399,555,ls), (403,583,o), (424,600,o), (451,600,cs), (606,600,l), (627,730,l), (452,730,ls), (346,730,o), (266,661,o), (249,555,cs), (227,415,l), (72,415,l), (51,285,l), (206,285,l), (167,41,ls), (160,-7,o), (126,-35,o), (75,-35,cs), (-50,-35,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,-180,ls), (156,-180,o), (250,-103,o), (268,15,cs), (316,313,l), (541,313,l), (554,395,l), (329,395,l), (359,590,ls), (366,630,o), (390,650,o), (433,650,cs), (594,650,l), (607,730,l), (446,730,ls), (349,730,o), (284,679,o), (270,591,cs), (239,395,l), (79,395,l), (66,313,l), (226,313,l), (178,15,ls), (167,-55,o), (116,-98,o), (45,-98,cs), (-60,-98,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (23,-180,ls), (141,-180,o), (228,-113,o), (246,0,cs), (299,332,l), (532,332,l), (539,377,l), (306,377,l), (342,605,ls), (350,656,o), (383,685,o), (434,685,cs), (587,685,l), (595,730,l), (442,730,ls), (361,730,o), (304,683,o), (292,605,cs), (256,377,l), (86,377,l), (79,332,l), (249,332,l), (198,10,ls), (183,-84,o), (125,-135,o), (31,-135,cs), (-65,-135,l), (-73,-180,l) ); } ); width = 600; } ); unicode = 402; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/formF_eed-control.glyph000066400000000000000000000013111472355150100322510ustar00rootroot00000000000000{ glyphname = "formFeed-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9228; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/four-gujarati.glyph000066400000000000000000000030401472355150100314650ustar00rootroot00000000000000{ glyphname = "four-gujarati"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (419,-10,o), (500,67,o), (500,174,cs), (500,230,o), (471,286,o), (431,332,cs), (155,650,l), (96,650,l), (393,305,ls), (426,267,o), (450,223,o), (450,177,cs), (450,96,o), (389,34,o), (300,34,cs), (211,34,o), (150,96,o), (150,177,cs), (150,224,o), (168,260,o), (205,303,cs), (504,650,l), (447,650,l), (171,332,ls), (125,279,o), (100,225,o), (100,174,cs), (100,67,o), (181,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (435,-10,o), (520,73,o), (520,178,cs), (520,237,o), (492,289,o), (445,344,cs), (180,650,l), (76,650,l), (382,295,ls), (413,260,o), (430,223,o), (430,186,cs), (430,122,o), (380,70,o), (300,70,cs), (220,70,o), (170,122,o), (170,186,cs), (170,225,o), (188,262,o), (217,295,cs), (524,650,l), (422,650,l), (157,345,ls), (111,292,o), (80,239,o), (80,178,cs), (80,73,o), (165,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (442,-10,o), (540,67,o), (540,182,cs), (540,235,o), (520,288,o), (481,335,cs), (224,650,l), (56,650,l), (361,278,ls), (381,254,o), (390,232,o), (390,207,cs), (390,155,o), (353,120,o), (300,120,cs), (247,120,o), (210,155,o), (210,207,cs), (210,229,o), (217,252,o), (237,277,cs), (544,650,l), (381,650,l), (127,342,ls), (82,287,o), (60,238,o), (60,182,cs), (60,67,o), (158,-10,o), (300,-10,cs) ); } ); width = 600; } ); unicode = 2794; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/four.glyph000066400000000000000000000014751472355150100276730ustar00rootroot00000000000000{ glyphname = four; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (476,0,l), (543,420,l), (393,420,l), (368,264,l), (188,264,l), (193,298,l), (561,730,l), (396,730,l), (60,343,l), (27,134,l), (347,134,l), (326,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (446,0,l), (513,420,l), (423,420,l), (394,242,l), (154,242,l), (160,280,l), (507,730,l), (408,730,l), (74,301,l), (51,160,l), (381,160,l), (356,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (426,0,l), (493,420,l), (443,420,l), (410,215,l), (125,215,l), (132,255,l), (499,729,l), (443,729,l), (84,270,l), (68,170,l), (403,170,l), (376,0,l) ); } ); width = 600; } ); unicode = 52; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/fourinferior.glyph000066400000000000000000000006571472355150100314320ustar00rootroot00000000000000{ glyphname = fourinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = foursuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = foursuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = foursuperior; } ); width = 600; } ); unicode = 8324; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/foursuperior.glyph000066400000000000000000000015311472355150100314550ustar00rootroot00000000000000{ glyphname = foursuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (460,405,l), (501,660,l), (406,660,l), (391,570,l), (276,570,l), (279,586,l), (489,830,l), (386,830,l), (186,601,l), (169,490,l), (379,490,l), (365,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (448,405,l), (489,665,l), (419,665,l), (403,561,l), (261,561,l), (263,575,l), (484,831,l), (404,831,l), (195,590,l), (181,497,l), (393,497,l), (378,405,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (435,405,l), (475,656,l), (430,656,l), (413,550,l), (248,550,l), (251,566,l), (471,830,l), (419,830,l), (208,580,l), (197,510,l), (407,510,l), (390,405,l) ); } ); width = 600; } ); unicode = 8308; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/fraction.glyph000066400000000000000000000010161472355150100305140ustar00rootroot00000000000000{ glyphname = fraction; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (114,0,l), (602,730,l), (514,730,l), (26,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (112,0,l), (582,730,l), (516,730,l), (46,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (105,0,l), (572,730,l), (523,730,l), (56,0,l) ); } ); width = 600; } ); unicode = 8260; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/fullB_lock.glyph000066400000000000000000000010361472355150100307650ustar00rootroot00000000000000{ glyphname = fullBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9608; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/g.glyph000066400000000000000000000045241472355150100271440ustar00rootroot00000000000000{ glyphname = g; layers = ( { anchors = ( { name = top; pos = (340,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,-180,ls), (372,-180,o), (446,-119,o), (462,-20,cs), (552,550,l), (463,550,l), (446,445,l), (429,445,l), (444,430,l), (457,510,o), (407,560,o), (318,560,cs), (205,560,o), (122,481,o), (102,356,cs), (84,240,ls), (64,114,o), (122,35,o), (235,35,cs), (324,35,o), (389,85,o), (402,165,c), (383,150,l), (401,150,l), (383,50,l), (372,-20,ls), (363,-73,o), (334,-98,o), (278,-98,cs), (103,-98,l), (90,-180,l) ); }, { closed = 1; nodes = ( (198,113,o), (161,160,o), (175,245,cs), (191,350,ls), (205,435,o), (256,482,o), (332,482,cs), (406,482,o), (445,433,o), (431,350,cs), (415,245,ls), (402,162,o), (348,113,o), (274,113,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (340,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (246,-180,ls), (358,-180,o), (427,-124,o), (444,-15,cs), (533,550,l), (483,550,l), (468,455,l), (455,455,l), (468,410,l), (482,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,480,o), (118,360,cs), (99,239,ls), (80,119,o), (139,40,o), (249,40,cs), (345,40,o), (419,99,o), (433,190,c), (401,145,l), (419,145,l), (401,30,l), (394,-15,ls), (382,-94,o), (333,-135,o), (254,-135,cs), (109,-135,l), (101,-180,l) ); }, { closed = 1; nodes = ( (177,83,o), (134,141,o), (149,239,cs), (168,360,ls), (183,458,o), (246,517,o), (335,517,cs), (426,517,o), (468,458,o), (453,360,cs), (434,239,ls), (419,141,o), (356,83,o), (266,83,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (340,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (232,-180,ls), (373,-180,o), (473,-106,o), (492,14,cs), (577,550,l), (427,550,l), (415,445,l), (380,445,l), (410,410,l), (425,505,o), (379,560,o), (288,560,cs), (177,560,o), (91,476,o), (71,345,cs), (55,245,ls), (34,113,o), (93,30,o), (204,30,cs), (295,30,o), (358,85,o), (374,180,c), (333,145,l), (368,145,l), (349,40,l), (346,19,ls), (338,-31,o), (302,-60,o), (246,-60,cs), (91,-60,l), (72,-180,l) ); }, { closed = 1; nodes = ( (222,160,o), (196,192,o), (206,250,cs), (220,340,ls), (229,397,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (380,250,ls), (370,192,o), (333,160,o), (278,160,cs) ); } ); width = 600; } ); unicode = 103; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gacute.glyph000066400000000000000000000007601472355150100301640ustar00rootroot00000000000000{ glyphname = gacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (609,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (608,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (618,0); ref = acutecomb; } ); width = 600; } ); unicode = 501; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gamma.glyph000066400000000000000000000024351472355150100277770ustar00rootroot00000000000000{ glyphname = gamma; layers = ( { hints = ( { horizontal = 1; place = (-43,21); target = up; type = BottomGhost; }, { horizontal = 1; place = (507,-20); target = down; type = TopGhost; } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (253,-180,l), (282,0,l), (568,550,l), (514,550,l), (310,150,ls), (295,123,o), (282,86,o), (266,52,c), (262,86,o), (254,123,o), (249,150,cs), (170,550,l), (120,550,l), (232,0,l), (203,-180,l) ); } ); width = 600; }, { hints = ( { place = (212,47); type = Stem; }, { horizontal = 1; place = (677,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (-43,21); target = up; type = BottomGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (273,-180,l), (302,0,l), (584,550,l), (489,550,l), (310,185,ls), (288,139,o), (281,103,o), (274,81,c), (273,103,o), (271,139,o), (262,185,cs), (196,550,l), (104,550,l), (212,0,l), (183,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (304,-180,l), (333,0,l), (617,550,l), (461,550,l), (318,240,ls), (301,204,o), (288,154,o), (279,127,c), (277,154,o), (277,204,o), (271,241,cs), (223,550,l), (71,550,l), (183,0,l), (154,-180,l) ); } ); width = 600; } ); unicode = 947; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gbreve.glyph000066400000000000000000000007601472355150100301660ustar00rootroot00000000000000{ glyphname = gbreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = brevecomb; } ); width = 600; } ); unicode = 287; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gcaron.glyph000066400000000000000000000007601472355150100301650ustar00rootroot00000000000000{ glyphname = gcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = caroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = caroncomb; } ); width = 600; } ); unicode = 487; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gcircumflex.glyph000066400000000000000000000010041472355150100312140ustar00rootroot00000000000000{ glyphname = gcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 285; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gcommaaccent.glyph000066400000000000000000000007471472355150100313420ustar00rootroot00000000000000{ glyphname = gcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = g; }, { pos = (597,0); ref = commaturnedabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = g; }, { pos = (597,0); ref = commaturnedabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = g; }, { pos = (597,0); ref = commaturnedabovecomb; } ); width = 600; } ); unicode = 291; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gdotaccent.glyph000066400000000000000000000010001472355150100310130ustar00rootroot00000000000000{ glyphname = gdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 289; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ge-cy.glyph000066400000000000000000000045001472355150100277140ustar00rootroot00000000000000{ glyphname = "ge-cy"; layers = ( { anchors = ( { name = bottom; pos = (266,0); }, { name = top; pos = (373,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-10,o), (516,58,o), (532,160,c), (382,160,l), (377,128,o), (342,107,o), (296,107,cs), (252,107,ls), (197,107,o), (172,128,o), (177,164,cs), (183,197,o), (210,214,o), (264,221,cs), (330,229,ls), (469,246,o), (536,290,o), (552,392,cs), (569,499,o), (504,560,o), (363,560,cs), (325,560,ls), (191,560,o), (93,496,o), (78,398,c), (228,398,l), (233,425,o), (263,443,o), (306,443,cs), (344,443,ls), (394,443,o), (413,426,o), (408,393,cs), (403,362,o), (381,347,o), (334,341,cs), (263,332,ls), (122,314,o), (49,267,o), (32,164,cs), (15,52,o), (84,-10,o), (234,-10,cs), (278,-10,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (266,0); }, { name = top; pos = (373,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (390,-10,o), (469,47,o), (493,135,c), (403,135,l), (389,96,o), (348,70,o), (289,70,cs), (247,70,ls), (176,70,o), (148,103,o), (155,151,cs), (163,198,o), (199,226,o), (261,236,cs), (337,248,ls), (447,265,o), (507,310,o), (522,403,cs), (538,501,o), (484,560,o), (359,560,cs), (321,560,ls), (216,560,o), (140,505,o), (114,421,c), (204,421,l), (218,456,o), (254,480,o), (308,480,cs), (346,480,ls), (414,480,o), (439,452,o), (432,402,cs), (424,357,o), (396,337,o), (337,328,cs), (262,316,ls), (141,297,o), (81,251,o), (65,155,cs), (50,53,o), (105,-10,o), (235,-10,cs), (277,-10,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (266,0); }, { name = top; pos = (373,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (462,50,o), (485,135,c), (435,135,l), (416,77,o), (358,35,o), (289,35,cs), (222,35,ls), (149,35,o), (110,76,o), (121,140,cs), (130,197,o), (174,241,o), (233,249,cs), (342,264,ls), (438,277,o), (500,329,o), (513,411,cs), (527,502,o), (469,560,o), (363,560,cs), (321,560,ls), (221,560,o), (145,506,o), (123,425,c), (173,425,l), (188,477,o), (243,515,o), (313,515,cs), (355,515,ls), (430,515,o), (473,475,o), (463,412,cs), (453,357,o), (411,323,o), (341,313,cs), (235,298,ls), (149,286,o), (85,228,o), (73,147,cs), (58,52,o), (114,-10,o), (216,-10,cs), (283,-10,ls) ); } ); width = 600; } ); unicode = 1075; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/germandbls.calt.glyph000066400000000000000000000005461472355150100317560ustar00rootroot00000000000000{ glyphname = germandbls.calt; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Germandbls; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Germandbls; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Germandbls; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/germandbls.glyph000066400000000000000000000043561472355150100310370ustar00rootroot00000000000000{ glyphname = germandbls; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-107,-180,ls), (34,-180,o), (134,-106,o), (153,14,cs), (233,516,ls), (243,577,o), (287,615,o), (348,615,cs), (410,615,o), (443,577,o), (434,517,cs), (425,462,o), (385,428,o), (329,428,cs), (284,428,l), (266,318,l), (313,318,ls), (376,318,o), (410,281,o), (400,221,cs), (390,161,o), (347,125,o), (283,125,cs), (236,125,l), (216,0,l), (268,0,ls), (417,0,o), (529,84,o), (549,209,cs), (567,322,o), (494,397,o), (369,395,c), (366,380,l), (491,380,o), (573,440,o), (589,545,cs), (608,662,o), (520,740,o), (381,740,cs), (227,740,o), (119,650,o), (98,516,cs), (19,19,ls), (11,-29,o), (-32,-60,o), (-93,-60,cs), (-113,-60,l), (-132,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-63,-180,ls), (45,-180,o), (119,-119,o), (135,-20,cs), (223,534,ls), (235,611,o), (289,658,o), (363,658,cs), (436,658,o), (475,613,o), (463,536,cs), (452,465,o), (398,413,o), (324,413,cs), (282,413,l), (270,335,l), (314,335,ls), (395,335,o), (437,288,o), (424,211,cs), (412,134,o), (354,82,o), (274,82,cs), (218,82,l), (205,0,l), (271,0,ls), (400,0,o), (500,86,o), (519,208,cs), (537,325,o), (474,400,o), (359,398,c), (357,383,l), (463,381,o), (544,453,o), (560,554,cs), (579,674,o), (504,740,o), (376,740,cs), (248,740,o), (153,658,o), (133,534,cs), (45,-20,ls), (37,-73,o), (7,-98,o), (-49,-98,cs), (-119,-98,l), (-132,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-43,-180,ls), (38,-180,o), (95,-133,o), (107,-55,cs), (202,543,ls), (217,635,o), (283,695,o), (371,695,cs), (463,695,o), (507,637,o), (492,545,cs), (478,457,o), (413,397,o), (324,397,cs), (284,397,l), (277,352,l), (317,352,ls), (422,352,o), (468,297,o), (453,200,cs), (437,102,o), (373,45,o), (268,45,cs), (206,45,l), (199,0,l), (261,0,ls), (393,0,o), (484,80,o), (504,208,cs), (521,314,o), (464,380,o), (356,380,c), (355,370,l), (449,370,o), (526,444,o), (543,550,cs), (561,666,o), (500,740,o), (378,740,cs), (261,740,o), (171,661,o), (152,543,cs), (57,-55,ls), (49,-106,o), (16,-135,o), (-35,-135,cs), (-124,-135,l), (-132,-180,l) ); } ); width = 600; } ); unicode = 223; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ghestroke-cy.glyph000066400000000000000000000020461472355150100313170ustar00rootroot00000000000000{ glyphname = "ghestroke-cy"; layers = ( { anchors = ( { name = top; pos = (383,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (166,0,l), (208,265,l), (398,265,l), (405,310,l), (215,310,l), (246,505,l), (571,505,l), (578,550,l), (203,550,l), (165,310,l), (65,310,l), (58,265,l), (158,265,l), (116,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (378,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (191,0,l), (229,242,l), (409,242,l), (420,310,l), (240,310,l), (265,468,l), (570,468,l), (583,550,l), (188,550,l), (150,310,l), (60,310,l), (49,242,l), (139,242,l), (101,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (373,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (236,0,l), (265,185,l), (410,185,l), (430,310,l), (285,310,l), (301,410,l), (571,410,l), (593,550,l), (173,550,l), (135,310,l), (50,310,l), (30,185,l), (115,185,l), (86,0,l) ); } ); width = 600; } ); unicode = 1171; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gheupturn-cy.glyph000066400000000000000000000012611472355150100313430ustar00rootroot00000000000000{ glyphname = "gheupturn-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (221,0,l), (286,410,l), (556,410,l), (595,655,l), (450,655,l), (433,550,l), (158,550,l), (71,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (176,0,l), (250,468,l), (555,468,l), (585,655,l), (500,655,l), (483,550,l), (173,550,l), (86,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (151,0,l), (231,505,l), (556,505,l), (580,655,l), (530,655,l), (513,550,l), (188,550,l), (101,0,l) ); } ); width = 600; } ); unicode = 1169; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gje-cy.glyph000066400000000000000000000010051472355150100300630ustar00rootroot00000000000000{ glyphname = "gje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ge-cy"; }, { pos = (642,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ge-cy"; }, { pos = (641,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ge-cy"; }, { pos = (651,0); ref = acutecomb; } ); width = 600; } ); unicode = 1107; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/grave.case.glyph000066400000000000000000000007121472355150100307270ustar00rootroot00000000000000{ glyphname = grave.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = gravecomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/grave.glyph000066400000000000000000000006241472355150100300170ustar00rootroot00000000000000{ glyphname = grave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = gravecomb; } ); width = 600; } ); unicode = 96; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gravecomb.case.glyph000066400000000000000000000014301472355150100315660ustar00rootroot00000000000000{ glyphname = gravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-215,730); }, { name = top; pos = (-227,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-167,810,l), (-251,950,l), (-309,950,l), (-219,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-214,730); }, { name = top; pos = (-223,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-143,810,l), (-231,950,l), (-325,950,l), (-232,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-214,730); }, { name = top; pos = (-225,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-115,810,l), (-198,950,l), (-357,950,l), (-262,810,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/gravecomb.glyph000066400000000000000000000014421472355150100306570ustar00rootroot00000000000000{ glyphname = gravecomb; layers = ( { anchors = ( { name = _top; pos = (-245,550); }, { name = top; pos = (-253,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-193,645,l), (-277,785,l), (-335,785,l), (-245,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-243,550); }, { name = top; pos = (-249,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-169,645,l), (-257,785,l), (-351,785,l), (-258,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-243,550); }, { name = top; pos = (-251,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-141,645,l), (-224,785,l), (-383,785,l), (-288,645,l) ); } ); width = 0; } ); unicode = 768; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greater.glyph000066400000000000000000000015661472355150100303520ustar00rootroot00000000000000{ glyphname = greater; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (527,258,l), (550,401,l), (122,609,l), (101,476,l), (358,355,ls), (383,343,o), (415,336,o), (431,333,c), (414,330,o), (379,322,o), (350,310,cs), (55,189,l), (34,49,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (515,280,l), (531,380,l), (135,595,l), (121,509,l), (407,356,ls), (428,344,o), (451,335,o), (463,332,c), (451,329,o), (426,320,o), (399,308,cs), (65,156,l), (51,65,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (515,307,l), (522,353,l), (138,580,l), (129,529,l), (396,373,ls), (421,358,o), (454,340,o), (471,331,c), (451,322,o), (413,304,o), (382,289,cs), (67,135,l), (59,80,l) ); } ); width = 600; } ); unicode = 62; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greater_bracketright.liga.glyph000066400000000000000000000011621472355150100340060ustar00rootroot00000000000000{ glyphname = greater_bracketright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-485,15); ref = greater; }, { alignment = -1; pos = (-25,0); ref = bracketright; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-500,15); ref = greater; }, { alignment = -1; pos = (-50,0); ref = bracketright; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-500,15); ref = greater; }, { alignment = -1; pos = (-50,0); ref = bracketright; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greater_colon.liga.glyph000066400000000000000000000011201472355150100324410ustar00rootroot00000000000000{ glyphname = greater_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-460,0); ref = greater; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-460,0); ref = greater; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-460,0); ref = greater; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greater_equal.liga.glyph000066400000000000000000000022451472355150100324470ustar00rootroot00000000000000{ glyphname = greater_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (317,351,l), (340,498,l), (-238,700,l), (-260,568,l), (147,444,ls), (173,436,o), (214,434,o), (236,435,c), (235,425,l), (212,425,o), (171,421,o), (142,413,cs), (-304,291,l), (-325,150,l) ); }, { closed = 1; nodes = ( (280,121,l), (300,248,l), (-342,47,l), (-362,-80,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,375,l), (336,475,l), (-238,700,l), (-252,617,l), (211,446,ls), (233,438,o), (254,434,o), (264,433,c), (263,426,l), (253,425,o), (230,421,o), (206,413,cs), (-311,245,l), (-325,150,l) ); }, { closed = 1; nodes = ( (285,151,l), (299,237,l), (-346,12,l), (-361,-74,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,398,l), (313,453,l), (-212,676,l), (-221,622,l), (184,457,ls), (210,446,o), (242,436,o), (259,431,c), (258,426,l), (239,421,o), (205,410,o), (175,399,cs), (-283,231,l), (-291,174,l) ); }, { closed = 1; nodes = ( (271,187,l), (279,240,l), (-316,20,l), (-324,-33,l) ); } ); width = 600; } ); } greater_equal_greater.liga.glyph000066400000000000000000000023771472355150100341070ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = greater_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-969,35,l), (-879,135,l), (182,135,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-816,525,l), (-875,625,l), (-1047,625,l), (-882,333,l), (-1150,35,l) ); }, { closed = 1; nodes = ( (-702,330,l), (-734,385,l), (333,385,l), (363,333,l), (309,275,l), (-751,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1034,35,l), (-907,170,l), (273,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (334,490,l), (-855,490,l), (-940,625,l), (-1041,625,l), (-859,333,l), (-1144,35,l) ); }, { closed = 1; nodes = ( (-756,330,l), (-806,410,l), (384,410,l), (434,333,l), (350,250,l), (-831,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1073,35,l), (-916,195,l), (327,195,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-872,466,l), (-979,625,l), (-1036,625,l), (-844,334,l), (-1135,35,l) ); }, { closed = 1; nodes = ( (-782,331,l), (-842,421,l), (405,421,l), (464,333,l), (372,240,l), (-871,240,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greater_greater.liga.glyph000066400000000000000000000011351472355150100327660ustar00rootroot00000000000000{ glyphname = greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-44,0); ref = greater; }, { alignment = -1; pos = (-555,-1); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-44,0); ref = greater; }, { alignment = -1; pos = (-555,-1); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-44,0); ref = greater; }, { alignment = -1; pos = (-555,0); ref = greater; } ); width = 600; } ); } greater_greater_equal.liga.glyph000066400000000000000000000024221472355150100340760ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = greater_greater_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-669,35,l), (-579,135,l), (497,135,l), (520,275,l), (-451,275,l), (-402,330,l), (-434,385,l), (537,385,l), (559,525,l), (-516,525,l), (-575,625,l), (-747,625,l), (-581,333,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-969,35,l), (-702,330,l), (-875,625,l), (-1047,625,l), (-881,333,l), (-1150,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-734,35,l), (-607,170,l), (498,170,l), (511,250,l), (-531,250,l), (-456,330,l), (-506,410,l), (536,410,l), (549,490,l), (-555,490,l), (-640,625,l), (-741,625,l), (-564,336,l), (-844,35,l) ); }, { closed = 1; nodes = ( (-1034,35,l), (-756,330,l), (-940,625,l), (-1041,625,l), (-864,336,l), (-1144,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-788,35,l), (-631,195,l), (493,195,l), (500,240,l), (-586,240,l), (-497,331,l), (-557,421,l), (529,421,l), (536,466,l), (-587,466,l), (-694,625,l), (-751,625,l), (-560,333,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-1068,35,l), (-777,331,l), (-974,625,l), (-1031,625,l), (-840,333,l), (-1130,35,l) ); } ); width = 600; } ); } greater_greater_greater.liga.glyph000066400000000000000000000013251472355150100344210ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = greater_greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1000,0); ref = greater; }, { alignment = -1; pos = (-500,0); ref = greater; }, { alignment = -1; ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1000,0); ref = greater; }, { alignment = -1; pos = (-500,0); ref = greater; }, { alignment = -1; ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1000,0); ref = greater; }, { alignment = -1; pos = (-500,0); ref = greater; }, { alignment = -1; ref = greater; } ); width = 600; } ); } greater_greater_hyphen.liga.glyph000066400000000000000000000021071472355150100342620ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = greater_greater_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-669,35,l), (-465,260,l), (517,260,l), (539,400,l), (-443,400,l), (-575,625,l), (-747,625,l), (-582,334,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-969,35,l), (-702,330,l), (-875,625,l), (-1047,625,l), (-882,334,l), (-1150,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-734,35,l), (-493,290,l), (517,290,l), (530,370,l), (-480,370,l), (-640,625,l), (-741,625,l), (-561,337,l), (-844,35,l) ); }, { closed = 1; nodes = ( (-1034,35,l), (-756,330,l), (-940,625,l), (-1041,625,l), (-861,337,l), (-1144,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-788,35,l), (-519,308,l), (510,308,l), (517,353,l), (-511,353,l), (-694,625,l), (-751,625,l), (-559,334,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-1068,35,l), (-777,331,l), (-974,625,l), (-1031,625,l), (-839,334,l), (-1130,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greater_hyphen.liga.glyph000066400000000000000000000013521472355150100326310ustar00rootroot00000000000000{ glyphname = greater_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-414,35,l), (-210,260,l), (517,260,l), (539,400,l), (-188,400,l), (-320,625,l), (-492,625,l), (-324,334,l), (-595,34,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-433,35,l), (-192,290,l), (517,290,l), (530,370,l), (-179,370,l), (-339,625,l), (-440,625,l), (-259,337,l), (-543,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-474,35,l), (-205,308,l), (510,308,l), (517,353,l), (-197,353,l), (-380,625,l), (-437,625,l), (-242,334,l), (-536,35,l) ); } ); width = 600; } ); } greater_hyphen_greater.liga.glyph000066400000000000000000000016661472355150100342730ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = greater_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-969,35,l), (-765,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (323,400,l), (-743,400,l), (-875,625,l), (-1047,625,l), (-878,333,l), (-1150,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1034,35,l), (-793,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (410,370,l), (-780,370,l), (-940,625,l), (-1041,625,l), (-858,337,l), (-1144,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1073,35,l), (-804,308,l), (440,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (451,353,l), (-796,353,l), (-979,625,l), (-1036,625,l), (-842,335,l), (-1135,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greaterequal.glyph000066400000000000000000000012471472355150100313760ustar00rootroot00000000000000{ glyphname = greaterequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (508,140,l), (48,140,l), (26,0,l) ); }, { alignment = -1; pos = (20,125); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (471,0,l), (484,80,l), (54,80,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (471,0,l), (479,50,l), (49,50,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = greater; } ); width = 600; } ); unicode = 8805; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/greaterorequivalent.glyph000066400000000000000000000025651472355150100330110ustar00rootroot00000000000000{ glyphname = greaterorequivalent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,0,l), (90,18,ls), (96,58,o), (125,83,o), (165,83,cs), (238,83,o), (276,0,o), (362,0,cs), (424,0,o), (479,44,o), (489,110,cs), (492,125,l), (447,125,l), (444,107,ls), (438,67,o), (409,42,o), (369,42,cs), (296,42,o), (263,125,o), (172,125,cs), (106,125,o), (55,81,o), (44,15,cs), (42,0,l) ); }, { pos = (21,125); ref = greater; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (142,0,l), (144,15,ls), (148,41,o), (165,55,o), (191,55,cs), (240,55,o), (251,-5,o), (336,-5,cs), (430,-5,o), (501,56,o), (516,150,cs), (518,165,l), (398,165,l), (396,150,ls), (391,124,o), (375,110,o), (349,110,cs), (300,110,o), (289,170,o), (204,170,cs), (110,170,o), (39,109,o), (24,15,cs), (22,0,l) ); }, { pos = (20,125); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (122,0,l), (126,28,ls), (131,57,o), (152,75,o), (181,75,cs), (238,75,o), (253,-5,o), (346,-5,cs), (425,-5,o), (484,46,o), (497,125,cs), (500,145,l), (415,145,l), (410,117,ls), (406,88,o), (385,70,o), (356,70,cs), (298,70,o), (283,150,o), (191,150,cs), (112,150,o), (52,99,o), (40,20,cs), (37,0,l) ); }, { pos = (21,125); ref = greater; } ); width = 600; } ); unicode = 8819; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/groupS_eparator-control.glyph000066400000000000000000000013171472355150100335450ustar00rootroot00000000000000{ glyphname = "groupSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = G; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = G; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = G; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9245; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/guillemetleft.glyph000066400000000000000000000016411472355150100315550ustar00rootroot00000000000000{ glyphname = guillemetleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (542,40,l), (418,274,l), (628,520,l), (468,520,l), (265,280,l), (390,40,l) ); }, { closed = 1; nodes = ( (292,40,l), (168,274,l), (378,520,l), (218,520,l), (15,280,l), (140,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (528,40,l), (365,277,l), (612,520,l), (502,520,l), (263,280,l), (427,40,l) ); }, { closed = 1; nodes = ( (295,40,l), (132,277,l), (379,520,l), (269,520,l), (30,280,l), (194,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (512,40,l), (341,279,l), (588,520,l), (526,520,l), (280,280,l), (453,40,l) ); }, { closed = 1; nodes = ( (282,40,l), (111,279,l), (358,520,l), (296,520,l), (50,280,l), (223,40,l) ); } ); width = 600; } ); unicode = 171; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/guillemetright.glyph000066400000000000000000000016371472355150100317450ustar00rootroot00000000000000{ glyphname = guillemetright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (382,40,l), (585,280,l), (460,520,l), (308,520,l), (430,287,l), (222,40,l) ); }, { closed = 1; nodes = ( (132,40,l), (335,280,l), (210,520,l), (58,520,l), (180,287,l), (-28,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (331,40,l), (570,280,l), (406,520,l), (305,520,l), (467,286,l), (222,40,l) ); }, { closed = 1; nodes = ( (98,40,l), (337,280,l), (173,520,l), (72,520,l), (234,286,l), (-11,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,40,l), (550,280,l), (377,520,l), (318,520,l), (488,284,l), (242,40,l) ); }, { closed = 1; nodes = ( (74,40,l), (320,280,l), (147,520,l), (88,520,l), (258,284,l), (12,40,l) ); } ); width = 600; } ); unicode = 187; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/guilsinglleft.glyph000066400000000000000000000011521472355150100315600ustar00rootroot00000000000000{ glyphname = guilsinglleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (422,40,l), (290,274,l), (503,520,l), (348,520,l), (135,280,l), (272,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (412,40,l), (248,278,l), (493,520,l), (387,520,l), (147,280,l), (311,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (390,40,l), (230,277,l), (465,520,l), (406,520,l), (170,280,l), (333,40,l) ); } ); width = 600; } ); unicode = 8249; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/guilsinglright.glyph000066400000000000000000000011521472355150100317430ustar00rootroot00000000000000{ glyphname = guilsinglright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (252,40,l), (465,280,l), (328,520,l), (178,520,l), (311,284,l), (97,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,40,l), (454,280,l), (290,520,l), (189,520,l), (354,282,l), (108,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (194,40,l), (430,280,l), (267,520,l), (210,520,l), (370,283,l), (135,40,l) ); } ); width = 600; } ); unicode = 8250; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/h.glyph000066400000000000000000000023561472355150100271460ustar00rootroot00000000000000{ glyphname = h; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (342,0,l), (492,0,l), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (259,550,l), (288,730,l), (138,730,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (193,350,ls), (207,435,o), (261,484,o), (336,484,cs), (408,484,o), (445,438,o), (433,360,cs), (376,0,l), (466,0,l), (525,370,ls), (543,487,o), (484,560,o), (374,560,cs), (282,560,o), (219,510,o), (205,424,c), (227,445,l), (208,445,l), (225,550,l), (254,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (398,0,l), (448,0,l), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (262,560,o), (188,501,o), (174,410,c), (213,470,l), (190,470,l), (208,580,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 104; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ha-cy.glyph000066400000000000000000000006031472355150100277110ustar00rootroot00000000000000{ glyphname = "ha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = x; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = x; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = x; } ); width = 600; } ); unicode = 1093; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hardsign-cy.glyph000066400000000000000000000024441472355150100311250ustar00rootroot00000000000000{ glyphname = "hardsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (441,0,o), (538,73,o), (556,191,cs), (575,312,o), (504,385,o), (366,385,cs), (287,385,l), (313,550,l), (43,550,l), (21,410,l), (141,410,l), (76,0,l) ); }, { closed = 1; nodes = ( (266,255,l), (336,255,ls), (386,255,o), (412,232,o), (406,193,cs), (399,153,o), (367,130,o), (317,130,cs), (247,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (429,0,o), (517,67,o), (534,174,cs), (551,282,o), (485,348,o), (361,348,cs), (241,348,l), (273,550,l), (43,550,l), (30,470,l), (170,470,l), (96,0,l) ); }, { closed = 1; nodes = ( (228,266,l), (348,266,ls), (417,266,o), (450,234,o), (441,174,cs), (431,114,o), (388,82,o), (319,82,cs), (199,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (296,0,ls), (414,0,o), (502,68,o), (519,174,cs), (536,281,o), (471,348,o), (351,348,cs), (201,348,l), (233,550,l), (53,550,l), (45,500,l), (170,500,l), (91,0,l) ); }, { closed = 1; nodes = ( (193,298,l), (343,298,ls), (429,298,o), (476,251,o), (464,174,cs), (452,98,o), (390,50,o), (304,50,cs), (154,50,l) ); } ); width = 600; } ); unicode = 1098; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hbar.glyph000066400000000000000000000006271472355150100276320ustar00rootroot00000000000000{ glyphname = hbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "tshe-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "tshe-cy"; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "tshe-cy"; } ); width = 600; } ); unicode = 295; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hcircumflex.glyph000066400000000000000000000010521472355150100312200ustar00rootroot00000000000000{ glyphname = hcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = h; }, { pos = (450,160); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = h; }, { alignment = -1; pos = (450,160); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = h; }, { alignment = -1; pos = (450,160); ref = circumflexcomb; } ); width = 600; } ); unicode = 293; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/heavyC_ircle.glyph000066400000000000000000000026121472355150100313070ustar00rootroot00000000000000{ glyphname = heavyCircle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); } ); width = 600; } ); unicode = 11096; } heavyleftpointinganglebracketornament.glyph000066400000000000000000000011751472355150100365040ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = heavyleftpointinganglebracketornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (495,0,l), (362,365,l), (495,730,l), (243,730,l), (110,363,l), (243,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (495,0,l), (362,365,l), (495,730,l), (243,730,l), (110,363,l), (243,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,0,l), (362,365,l), (495,730,l), (243,730,l), (110,363,l), (243,0,l) ); } ); width = 600; } ); unicode = 10096; } heavyleftpointinganglequotationmarkornament.glyph000066400000000000000000000012031472355150100377570ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = heavyleftpointinganglequotationmarkornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (453,0,l), (318,365,l), (453,730,l), (285,730,l), (150,363,l), (285,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (453,0,l), (318,365,l), (453,730,l), (285,730,l), (150,363,l), (285,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (453,0,l), (318,365,l), (453,730,l), (285,730,l), (150,363,l), (285,0,l) ); } ); width = 600; } ); unicode = 10094; } heavyrightpointinganglebracketornament.glyph000066400000000000000000000010741472355150100366650ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = heavyrightpointinganglebracketornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglebracketornament; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglebracketornament; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglebracketornament; scale = (-1,1); } ); width = 600; } ); unicode = 10097; } heavyrightpointinganglequotationmarkornament.glyph000066400000000000000000000011241472355150100401440ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = heavyrightpointinganglequotationmarkornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglequotationmarkornament; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglequotationmarkornament; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglequotationmarkornament; scale = (-1,1); } ); width = 600; } ); unicode = 10095; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/highV_oltageS_ign.glyph000066400000000000000000000011571472355150100322750ustar00rootroot00000000000000{ glyphname = highVoltageSign; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (20,310,l), (295,310,l), (50,-110,l), (580,440,l), (290,440,l), (470,840,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (20,310,l), (295,310,l), (50,-110,l), (580,440,l), (290,440,l), (470,840,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (19,310,l), (294,310,l), (49,-110,l), (579,440,l), (289,440,l), (469,840,l) ); } ); width = 600; } ); unicode = 9889; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hookabovecomb.case.glyph000066400000000000000000000025661472355150100324520ustar00rootroot00000000000000{ glyphname = hookabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,985); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-165,796,l), (-123,838,ls), (-106,855,o), (-95,877,o), (-92,899,cs), (-83,951,o), (-120,985,o), (-183,985,cs), (-288,985,l), (-301,900,l), (-227,900,ls), (-208,900,o), (-201,896,o), (-203,883,cs), (-204,875,o), (-210,867,o), (-223,854,cs), (-281,796,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-184,980); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-175,800,l), (-127,852,ls), (-114,867,o), (-104,886,o), (-101,906,cs), (-94,952,o), (-123,980,o), (-174,980,cs), (-279,980,l), (-290,915,l), (-212,915,ls), (-194,915,o), (-185,908,o), (-187,895,cs), (-188,887,o), (-195,875,o), (-206,863,cs), (-266,800,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-186,975); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-194,800,l), (-139,863,ls), (-124,880,o), (-115,900,o), (-112,916,cs), (-107,952,o), (-133,975,o), (-180,975,cs), (-268,975,l), (-274,940,l), (-186,940,ls), (-163,940,o), (-151,929,o), (-154,912,cs), (-155,904,o), (-166,890,o), (-178,876,cs), (-246,800,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hookabovecomb.glyph000066400000000000000000000026041472355150100315310ustar00rootroot00000000000000{ glyphname = hookabovecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-207,834); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-189,645,l), (-147,687,ls), (-130,704,o), (-119,726,o), (-116,748,cs), (-107,800,o), (-144,834,o), (-207,834,cs), (-312,834,l), (-325,749,l), (-251,749,ls), (-232,749,o), (-225,745,o), (-227,732,cs), (-228,724,o), (-234,716,o), (-247,703,cs), (-305,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-208,825); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-199,645,l), (-151,697,ls), (-138,712,o), (-128,731,o), (-125,751,cs), (-118,797,o), (-147,825,o), (-198,825,cs), (-303,825,l), (-314,760,l), (-236,760,ls), (-218,760,o), (-209,753,o), (-211,740,cs), (-212,732,o), (-219,720,o), (-230,708,cs), (-290,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-210,820); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-218,645,l), (-163,708,ls), (-148,725,o), (-139,745,o), (-136,761,cs), (-131,797,o), (-157,820,o), (-204,820,cs), (-292,820,l), (-298,785,l), (-210,785,ls), (-187,785,o), (-175,774,o), (-178,757,cs), (-179,749,o), (-190,735,o), (-202,721,cs), (-270,645,l) ); } ); width = 0; } ); unicode = 777; } horizontalT_abulation-control.glyph000066400000000000000000000013251472355150100346640ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "horizontalTabulation-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = H; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = H; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = H; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9225; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/horncomb.case.glyph000066400000000000000000000023371472355150100314370ustar00rootroot00000000000000{ glyphname = horncomb.case; layers = ( { anchors = ( { name = _horn; pos = (-248,730); }, { name = _topright; pos = (-188,730); }, { name = topright; pos = (10,840); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-119,695,ls), (-68,695,o), (-29,729,o), (-20,780,cs), (-11,840,l), (-51,840,l), (-60,780,ls), (-65,750,o), (-86,730,o), (-113,730,cs), (-168,730,l), (-174,695,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-228,730); }, { name = _topright; pos = (-178,730); }, { name = topright; pos = (19,840); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-134,665,ls), (-70,665,o), (-23,702,o), (-14,760,cs), (-1,840,l), (-76,840,l), (-88,765,ls), (-91,744,o), (-107,730,o), (-128,730,cs), (-157,730,l), (-168,665,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-224,730); }, { name = _topright; pos = (-173,730); }, { name = topright; pos = (79,840); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-119,630,ls), (-32,630,o), (34,684,o), (47,765,cs), (59,840,l), (-61,840,l), (-73,765,ls), (-76,743,o), (-91,730,o), (-113,730,cs), (-153,730,l), (-169,630,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/horncomb.glyph000066400000000000000000000023641472355150100305250ustar00rootroot00000000000000{ glyphname = horncomb; layers = ( { anchors = ( { name = _horn; pos = (-267,550); }, { name = _topright; pos = (-237,550); }, { name = topright; pos = (36,660); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-163,450,ls), (-76,450,o), (-9,504,o), (4,585,cs), (16,660,l), (-104,660,l), (-116,585,ls), (-120,563,o), (-135,550,o), (-157,550,cs), (-217,550,l), (-233,450,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-233,550); }, { name = _topright; pos = (-209,550); }, { name = topright; pos = (-15,660); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-168,485,ls), (-105,485,o), (-57,523,o), (-48,580,cs), (-35,660,l), (-110,660,l), (-122,585,ls), (-126,562,o), (-140,550,o), (-163,550,cs), (-189,550,l), (-199,485,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-247,550); }, { name = _topright; pos = (-217,550); }, { name = topright; pos = (-19,660); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-147,515,ls), (-96,515,o), (-57,549,o), (-49,600,cs), (-39,660,l), (-79,660,l), (-89,600,ls), (-94,570,o), (-115,550,o), (-142,550,cs), (-197,550,l), (-202,515,l) ); } ); width = 0; } ); unicode = 795; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/house.glyph000066400000000000000000000015031472355150100300330ustar00rootroot00000000000000{ glyphname = house; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (519,0,l), (519,347,l), (300,560,l), (81,347,l), (81,0,l) ); }, { closed = 1; nodes = ( (131,323,l), (300,488,l), (469,323,l), (469,50,l), (131,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (519,0,l), (519,347,l), (300,560,l), (81,347,l), (81,0,l) ); }, { closed = 1; nodes = ( (131,323,l), (300,488,l), (469,323,l), (469,50,l), (131,50,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (519,0,l), (519,347,l), (300,560,l), (81,347,l), (81,0,l) ); }, { closed = 1; nodes = ( (131,323,l), (300,488,l), (469,323,l), (469,50,l), (131,50,l) ); } ); width = 600; } ); unicode = 8962; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hungarumlaut.case.glyph000066400000000000000000000007461472355150100323460ustar00rootroot00000000000000{ glyphname = hungarumlaut.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hungarumlaut.glyph000066400000000000000000000006611472355150100314300ustar00rootroot00000000000000{ glyphname = hungarumlaut; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; } ); unicode = 733; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hungarumlautcomb.case.glyph000066400000000000000000000020231472355150100331750ustar00rootroot00000000000000{ glyphname = hungarumlautcomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-156,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-127,810,l), (7,950,l), (-55,950,l), (-183,810,l) ); }, { closed = 1; nodes = ( (-286,810,l), (-152,950,l), (-214,950,l), (-342,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-156,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-100,810,l), (37,950,l), (-58,950,l), (-190,810,l) ); }, { closed = 1; nodes = ( (-282,810,l), (-145,950,l), (-240,950,l), (-372,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-156,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-58,810,l), (79,950,l), (-67,950,l), (-194,810,l) ); }, { closed = 1; nodes = ( (-278,810,l), (-141,950,l), (-287,950,l), (-414,810,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hungarumlautcomb.glyph000066400000000000000000000020371472355150100322700ustar00rootroot00000000000000{ glyphname = hungarumlautcomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-182,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-153,645,l), (-19,785,l), (-81,785,l), (-209,645,l) ); }, { closed = 1; nodes = ( (-312,645,l), (-178,785,l), (-240,785,l), (-368,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-182,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-127,645,l), (10,785,l), (-84,785,l), (-216,645,l) ); }, { closed = 1; nodes = ( (-308,645,l), (-171,785,l), (-265,785,l), (-397,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-182,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-84,645,l), (53,785,l), (-93,785,l), (-220,645,l) ); }, { closed = 1; nodes = ( (-304,645,l), (-167,785,l), (-313,785,l), (-440,645,l) ); } ); width = 0; } ); unicode = 779; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen.glyph000066400000000000000000000010311472355150100301770ustar00rootroot00000000000000{ glyphname = hyphen; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (472,260,l), (494,400,l), (144,400,l), (122,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,290,l), (475,370,l), (155,370,l), (142,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (465,308,l), (472,353,l), (152,353,l), (145,308,l) ); } ); width = 600; } ); unicode = 45; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen_asciitilde.liga.glyph000066400000000000000000000025251472355150100333150ustar00rootroot00000000000000{ glyphname = hyphen_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (212,195,o), (256,350,o), (346,350,cs), (379,350,o), (398,329,o), (393,295,cs), (383,235,l), (503,235,l), (515,310,ls), (529,397,o), (469,465,o), (370,465,cs), (210,465,o), (165,310,o), (76,310,cs), (40,310,o), (24,334,o), (30,375,cs), (34,400,l), (-491,400,l), (-513,260,l), (-76,260,l), (-52,220,o), (-7,195,o), (52,195,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (228,220,o), (264,365,o), (354,365,cs), (396,365,o), (419,337,o), (413,295,cs), (403,235,l), (488,235,l), (498,295,ls), (512,382,o), (459,440,o), (366,440,cs), (226,440,o), (191,295,o), (103,295,cs), (61,295,o), (37,320,o), (44,365,cs), (45,370,l), (-480,370,l), (-493,290,l), (-35,290,l), (-17,245,o), (28,220,o), (91,220,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (225,245,o), (303,393,o), (388,393,cs), (426,393,o), (444,368,o), (437,325,cs), (426,250,l), (471,250,l), (482,325,ls), (493,393,o), (460,435,o), (395,435,cs), (280,435,o), (201,287,o), (101,287,cs), (55,287,o), (25,312,o), (31,350,cs), (32,355,l), (-483,355,l), (-490,310,l), (-12,310,l), (-1,270,o), (39,245,o), (95,245,cs) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen_bar.liga.glyph000066400000000000000000000012661472355150100317500ustar00rootroot00000000000000{ glyphname = hyphen_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (313,-85,l), (445,750,l), (295,750,l), (239,400,l), (-401,400,l), (-423,260,l), (217,260,l), (163,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (288,-85,l), (420,750,l), (330,750,l), (270,370,l), (-405,370,l), (-418,290,l), (257,290,l), (198,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (268,-85,l), (400,750,l), (350,750,l), (287,355,l), (-408,355,l), (-415,310,l), (280,310,l), (218,-85,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen_greater.liga.glyph000066400000000000000000000013321472355150100326270ustar00rootroot00000000000000{ glyphname = hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (323,400,l), (-501,400,l), (-523,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (411,370,l), (-500,370,l), (-513,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (451,353,l), (-493,353,l), (-500,308,l), (440,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l) ); } ); width = 600; } ); } hyphen_greater_greater.liga.glyph000066400000000000000000000020411472355150100342570ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = hyphen_greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-49,35,l), (218,330,l), (45,625,l), (-127,625,l), (3,400,l), (-1101,400,l), (-1123,260,l), (-27,260,l), (-230,35,l) ); }, { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (364,334,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-45,35,l), (233,330,l), (49,625,l), (-52,625,l), (111,370,l), (-1100,370,l), (-1113,290,l), (88,290,l), (-155,35,l) ); }, { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (431,337,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-48,35,l), (243,331,l), (46,625,l), (-11,625,l), (171,353,l), (-1093,353,l), (-1100,308,l), (160,308,l), (-110,35,l) ); }, { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (463,335,l), (170,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen_hyphen.liga.glyph000066400000000000000000000014121472355150100324700ustar00rootroot00000000000000{ glyphname = hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,260,l), (479,400,l), (64,400,l), (42,260,l) ); }, { closed = 1; nodes = ( (-48,260,l), (-26,400,l), (-441,400,l), (-463,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,290,l), (475,370,l), (60,370,l), (47,290,l) ); }, { closed = 1; nodes = ( (-43,290,l), (-30,370,l), (-445,370,l), (-458,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (465,310,l), (472,355,l), (57,355,l), (50,310,l) ); }, { closed = 1; nodes = ( (-40,310,l), (-33,355,l), (-448,355,l), (-455,310,l) ); } ); width = 600; } ); } hyphen_hyphen_greater.liga.glyph000066400000000000000000000013471472355150100341310ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = hyphen_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (326,400,l), (-1101,400,l), (-1123,260,l), (296,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (414,370,l), (-1099,370,l), (-1112,290,l), (391,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (453,353,l), (-1093,353,l), (-1100,308,l), (442,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (268,625,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen_hyphen_hyphen.liga.glyph000066400000000000000000000020261472355150100340450ustar00rootroot00000000000000{ glyphname = hyphen_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,260,l), (479,400,l), (34,400,l), (12,260,l) ); }, { closed = 1; nodes = ( (-618,260,l), (-596,400,l), (-1041,400,l), (-1063,260,l) ); }, { closed = 1; nodes = ( (-83,260,l), (-61,400,l), (-501,400,l), (-523,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,290,l), (475,370,l), (30,370,l), (17,290,l) ); }, { closed = 1; nodes = ( (-613,290,l), (-600,370,l), (-1045,370,l), (-1058,290,l) ); }, { closed = 1; nodes = ( (-78,290,l), (-65,370,l), (-505,370,l), (-518,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (465,310,l), (472,355,l), (27,355,l), (20,310,l) ); }, { closed = 1; nodes = ( (-610,310,l), (-603,355,l), (-1048,355,l), (-1055,310,l) ); }, { closed = 1; nodes = ( (-75,310,l), (-68,355,l), (-508,355,l), (-515,310,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen_less.liga.glyph000066400000000000000000000013301472355150100321420ustar00rootroot00000000000000{ glyphname = hyphen_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (468,35,l), (298,324,l), (570,625,l), (389,625,l), (184,400,l), (-501,400,l), (-523,260,l), (162,260,l), (295,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (457,35,l), (277,323,l), (560,625,l), (450,625,l), (209,370,l), (-500,370,l), (-513,290,l), (196,290,l), (356,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (455,35,l), (258,328,l), (551,625,l), (491,625,l), (222,353,l), (-493,353,l), (-500,308,l), (214,308,l), (397,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphen_less_less.liga.glyph000066400000000000000000000020371472355150100331750ustar00rootroot00000000000000{ glyphname = hyphen_less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (124,35,l), (-45,324,l), (227,625,l), (46,625,l), (-159,400,l), (-1101,400,l), (-1123,260,l), (-181,260,l), (-48,35,l) ); }, { closed = 1; nodes = ( (467,35,l), (298,324,l), (570,625,l), (389,625,l), (121,330,l), (295,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (157,35,l), (-27,325,l), (260,625,l), (150,625,l), (-91,370,l), (-1100,370,l), (-1113,290,l), (-104,290,l), (56,35,l) ); }, { closed = 1; nodes = ( (457,35,l), (272,325,l), (560,625,l), (450,625,l), (171,330,l), (356,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (173,35,l), (-25,327,l), (273,625,l), (211,625,l), (-58,353,l), (-1093,353,l), (-1100,308,l), (-66,308,l), (117,35,l) ); }, { closed = 1; nodes = ( (453,35,l), (258,327,l), (554,625,l), (491,625,l), (199,330,l), (397,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/hyphentwo.glyph000066400000000000000000000006241472355150100307400ustar00rootroot00000000000000{ glyphname = hyphentwo; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; } ); unicode = 8208; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/i-cy.glyph000066400000000000000000000007421472355150100275550ustar00rootroot00000000000000{ glyphname = "i-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 1110; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/i.glyph000066400000000000000000000007341472355150100271450ustar00rootroot00000000000000{ glyphname = i; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 105; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ia-cy.glyph000066400000000000000000000025541472355150100277210ustar00rootroot00000000000000{ glyphname = "ia-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (163,0,l), (303,174,l), (369,174,l), (341,0,l), (490,0,l), (577,550,l), (330,550,ls), (186,550,o), (89,478,o), (70,357,cs), (54,262,o), (107,193,o), (207,181,c), (206,245,l), (6,0,l) ); }, { closed = 1; nodes = ( (241,288,o), (212,314,o), (219,359,cs), (226,404,o), (264,431,o), (320,431,cs), (410,431,l), (388,288,l), (298,288,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,0,l), (283,205,l), (404,205,l), (372,0,l), (462,0,l), (549,550,l), (312,550,ls), (188,550,o), (102,485,o), (85,377,cs), (69,280,o), (120,218,o), (223,206,c), (220,243,l), (16,0,l) ); }, { closed = 1; nodes = ( (203,285,o), (168,320,o), (177,377,cs), (186,435,o), (232,470,o), (299,470,cs), (446,470,l), (417,285,l), (270,285,ls) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (100,0,l), (263,208,l), (429,208,l), (396,0,l), (446,0,l), (533,550,l), (323,550,ls), (204,550,o), (118,484,o), (101,379,cs), (86,285,o), (135,223,o), (230,211,c), (227,233,l), (43,0,l) ); }, { closed = 1; nodes = ( (188,254,o), (139,303,o), (151,379,cs), (163,454,o), (229,505,o), (316,505,cs), (476,505,l), (436,254,l), (276,254,ls) ); } ); width = 600; } ); unicode = 1103; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iacute.glyph000066400000000000000000000007251472355150100301670ustar00rootroot00000000000000{ glyphname = iacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (636,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (626,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (632,0); ref = acutecomb; } ); width = 600; } ); unicode = 237; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ibreve.glyph000066400000000000000000000010051472355150100301610ustar00rootroot00000000000000{ glyphname = ibreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (619,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (614,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (614,0); ref = brevecomb; } ); width = 600; } ); unicode = 301; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/icircumflex.glyph000066400000000000000000000007511472355150100312260ustar00rootroot00000000000000{ glyphname = icircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (619,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 238; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/idieresis.glyph000066400000000000000000000007411472355150100306730ustar00rootroot00000000000000{ glyphname = idieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (619,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 239; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/idotaccent.glyph000066400000000000000000000007261472355150100310330ustar00rootroot00000000000000{ glyphname = idotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/idotbelow.glyph000066400000000000000000000011351472355150100307010ustar00rootroot00000000000000{ glyphname = idotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; }, { pos = (619,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; }, { pos = (614,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; }, { pos = (614,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7883; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/idotless.glyph000066400000000000000000000021161472355150100305370ustar00rootroot00000000000000{ glyphname = idotless; layers = ( { anchors = ( { name = bottom; pos = (276,0); }, { name = ogonek; pos = (290,0); }, { name = top; pos = (363,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,136,l), (378,136,l), (443,550,l), (138,550,l), (117,415,l), (282,415,l), (238,136,l), (48,136,l), (26,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (271,0); }, { name = ogonek; pos = (290,0); }, { name = top; pos = (358,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (334,82,l), (408,550,l), (148,550,l), (135,468,l), (305,468,l), (244,82,l), (49,82,l), (36,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (271,0); }, { name = ogonek; pos = (290,0); }, { name = top; pos = (358,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,0,l), (498,45,l), (309,45,l), (389,550,l), (163,550,l), (156,505,l), (332,505,l), (259,45,l), (58,45,l), (51,0,l) ); } ); width = 600; } ); unicode = 305; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ie-cy.glyph000066400000000000000000000006031472355150100277160ustar00rootroot00000000000000{ glyphname = "ie-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; } ); width = 600; } ); unicode = 1077; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/igrave.glyph000066400000000000000000000007251472355150100301720ustar00rootroot00000000000000{ glyphname = igrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (603,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (601,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (606,0); ref = gravecomb; } ); width = 600; } ); unicode = 236; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ihookabove.glyph000066400000000000000000000007461472355150100310460ustar00rootroot00000000000000{ glyphname = ihookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7881; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ii-cy.glyph000066400000000000000000000027161472355150100277310ustar00rootroot00000000000000{ glyphname = "ii-cy"; layers = ( { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (344,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (287,-10,o), (353,47,o), (368,140,c), (319,105,l), (363,105,l), (346,0,l), (491,0,l), (578,550,l), (428,550,l), (374,210,ls), (365,153,o), (329,120,o), (276,120,cs), (222,120,o), (195,153,o), (204,210,cs), (258,550,l), (108,550,l), (52,195,ls), (32,71,o), (89,-10,o), (196,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (318,-10,o), (381,40,o), (395,126,c), (373,105,l), (392,105,l), (375,0,l), (465,0,l), (552,550,l), (462,550,l), (407,200,ls), (393,115,o), (339,66,o), (264,66,cs), (192,66,o), (155,112,o), (167,190,cs), (224,550,l), (134,550,l), (75,180,ls), (57,63,o), (116,-10,o), (226,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (344,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (340,-10,o), (412,51,o), (427,146,c), (389,95,l), (412,95,l), (397,0,l), (447,0,l), (534,550,l), (484,550,l), (427,190,ls), (412,93,o), (347,33,o), (259,33,cs), (173,33,o), (129,91,o), (145,190,cs), (202,550,l), (152,550,l), (94,183,ls), (75,65,o), (134,-10,o), (242,-10,cs) ); } ); width = 600; } ); unicode = 1080; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iishort-cy.glyph000066400000000000000000000010111472355150100307740ustar00rootroot00000000000000{ glyphname = "iishort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ii-cy"; }, { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ii-cy"; }, { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ii-cy"; }, { pos = (600,0); ref = brevecomb; } ); width = 600; } ); unicode = 1081; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/imacron.glyph000066400000000000000000000007311472355150100303420ustar00rootroot00000000000000{ glyphname = imacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = macroncomb; } ); width = 600; } ); unicode = 299; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/infinity.glyph000066400000000000000000000053321472355150100305450ustar00rootroot00000000000000{ glyphname = infinity; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (214,160,o), (259,216,o), (271,259,c), (276,259,l), (291,196,o), (339,160,o), (409,160,cs), (500,160,o), (571,219,o), (584,300,cs), (594,365,ls), (607,449,o), (562,505,o), (480,505,cs), (403,505,o), (358,449,o), (346,406,c), (341,406,l), (326,469,o), (278,505,o), (208,505,cs), (117,505,o), (47,446,o), (34,365,cs), (24,300,ls), (10,216,o), (55,160,o), (137,160,cs) ); }, { closed = 1; nodes = ( (137,245,o), (118,267,o), (124,300,cs), (134,365,ls), (139,398,o), (165,420,o), (198,420,cs), (225,420,o), (245,404,o), (252,375,cs), (265,314,l), (253,284,o), (220,245,o), (170,245,cs) ); }, { closed = 1; nodes = ( (393,245,o), (371,260,o), (365,290,cs), (353,351,l), (364,381,o), (398,420,o), (448,420,cs), (481,420,o), (499,398,o), (494,365,cs), (484,300,ls), (478,267,o), (453,245,o), (420,245,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (220,160,o), (268,216,o), (284,259,c), (287,259,l), (300,195,o), (341,160,o), (409,160,cs), (491,160,o), (555,214,o), (568,295,cs), (580,370,ls), (592,451,o), (549,505,o), (470,505,cs), (397,505,o), (349,449,o), (333,406,c), (330,406,l), (317,470,o), (276,505,o), (208,505,cs), (126,505,o), (62,451,o), (50,370,cs), (38,295,ls), (25,214,o), (68,160,o), (147,160,cs) ); }, { closed = 1; nodes = ( (124,220,o), (101,250,o), (108,295,cs), (120,370,ls), (127,415,o), (159,445,o), (201,445,cs), (230,445,o), (250,428,o), (259,393,c), (277,309,l), (272,294,o), (242,220,o), (166,220,cs) ); }, { closed = 1; nodes = ( (387,220,o), (368,237,o), (358,272,c), (340,356,l), (346,371,o), (375,445,o), (451,445,cs), (493,445,o), (517,415,o), (510,370,cs), (498,295,ls), (491,250,o), (458,220,o), (416,220,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (220,160,o), (278,222,o), (302,269,c), (305,269,l), (317,205,o), (341,160,o), (409,160,cs), (488,160,o), (544,211,o), (558,295,cs), (570,370,ls), (583,454,o), (545,505,o), (470,505,cs), (397,505,o), (342,443,o), (321,396,c), (318,396,l), (305,460,o), (276,505,o), (208,505,cs), (129,505,o), (73,454,o), (60,370,cs), (48,295,ls), (34,211,o), (72,160,o), (147,160,cs) ); }, { closed = 1; nodes = ( (112,200,o), (84,238,o), (93,295,cs), (105,370,ls), (114,427,o), (154,465,o), (205,465,cs), (241,465,o), (264,441,o), (276,393,cs), (295,319,l), (269,248,o), (217,200,o), (163,200,cs) ); }, { closed = 1; nodes = ( (378,200,o), (353,225,o), (341,272,cs), (323,346,l), (348,417,o), (401,465,o), (455,465,cs), (506,465,o), (534,427,o), (525,370,cs), (513,295,ls), (504,238,o), (464,200,o), (413,200,cs) ); } ); width = 600; } ); unicode = 8734; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/integral.glyph000066400000000000000000000022311472355150100305140ustar00rootroot00000000000000{ glyphname = integral; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (42,-180,ls), (183,-180,o), (296,-96,o), (315,25,c), (399,555,l), (403,583,o), (424,600,o), (451,600,cs), (606,600,l), (627,730,l), (452,730,ls), (346,730,o), (266,661,o), (249,555,c), (167,41,l), (160,-7,o), (126,-35,o), (75,-35,cs), (-50,-35,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,-180,ls), (156,-180,o), (250,-103,o), (268,15,c), (359,590,l), (366,630,o), (390,650,o), (433,650,cs), (594,650,l), (607,730,l), (446,730,ls), (349,730,o), (284,679,o), (270,591,c), (178,15,l), (167,-55,o), (116,-98,o), (45,-98,cs), (-60,-98,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (23,-180,ls), (141,-180,o), (228,-113,o), (246,0,c), (342,605,l), (350,656,o), (383,685,o), (434,685,cs), (587,685,l), (595,730,l), (442,730,ls), (361,730,o), (304,683,o), (292,605,c), (198,10,l), (183,-84,o), (125,-135,o), (31,-135,cs), (-65,-135,l), (-73,-180,l) ); } ); width = 600; } ); unicode = 8747; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/intersection.glyph000066400000000000000000000007011472355150100314150ustar00rootroot00000000000000{ glyphname = intersection; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,730); ref = union; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,730); ref = union; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,730); ref = union; scale = (1,-1); } ); width = 600; } ); unicode = 8745; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/io-cy.glyph000066400000000000000000000007731472355150100277400ustar00rootroot00000000000000{ glyphname = "io-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = e; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = e; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = e; } ); width = 600; } ); unicode = 1105; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iogonek.glyph000066400000000000000000000023571472355150100303530ustar00rootroot00000000000000{ glyphname = iogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (315,-195,l), (322,-153,l), (258,-153,ls), (226,-153,o), (210,-134,o), (215,-103,cs), (219,-75,o), (248,-36,o), (292,0,cs), (305,10,l), (268,10,l), (211,-27,o), (172,-74,o), (166,-115,cs), (158,-165,o), (187,-195,o), (242,-195,c) ); }, { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (324,-203,l), (333,-143,l), (273,-143,ls), (239,-143,o), (222,-122,o), (226,-93,cs), (231,-65,o), (254,-36,o), (305,1,c), (318,10,l), (243,10,l), (173,-34,o), (145,-72,o), (139,-110,cs), (130,-164,o), (172,-203,o), (246,-203,cs) ); }, { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (344,-225,l), (361,-120,l), (292,-120,ls), (263,-120,o), (249,-103,o), (252,-83,cs), (255,-66,o), (273,-42,o), (303,-18,cs), (340,11,l), (254,11,l), (181,-19,o), (130,-68,o), (123,-115,cs), (112,-180,o), (155,-225,o), (236,-225,cs) ); }, { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 303; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iota.glyph000066400000000000000000000020321472355150100276420ustar00rootroot00000000000000{ glyphname = iota; layers = ( { anchors = ( { name = top; pos = (344,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (496,0,l), (503,45,l), (381,45,ls), (322,45,o), (296,76,o), (305,135,cs), (371,550,l), (113,550,l), (106,505,l), (314,505,l), (255,135,ls), (242,48,o), (284,0,o), (374,0,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (384,82,ls), (341,82,o), (318,110,o), (326,155,cs), (388,550,l), (98,550,l), (85,468,l), (285,468,l), (236,155,ls), (221,61,o), (274,0,o), (371,0,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (344,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (537,135,l), (411,135,ls), (375,135,o), (355,159,o), (361,195,cs), (417,550,l), (83,550,l), (62,415,l), (246,415,l), (211,195,ls), (192,78,o), (258,0,o), (375,0,cs) ); } ); width = 600; } ); unicode = 953; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iotadieresis.glyph000066400000000000000000000007301472355150100313750ustar00rootroot00000000000000{ glyphname = iotadieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = iota; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = iota; }, { pos = (601,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = iota; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 970; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iotadieresistonos.glyph000066400000000000000000000010231472355150100324540ustar00rootroot00000000000000{ glyphname = iotadieresistonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = iota; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = iota; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = iota; }, { alignment = -1; ref = dieresistonos; } ); width = 600; } ); unicode = 912; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iotatonos.glyph000066400000000000000000000006751472355150100307400ustar00rootroot00000000000000{ glyphname = iotatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = iota; }, { pos = (41,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = iota; }, { pos = (31,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = iota; }, { pos = (31,0); ref = tonos; } ); width = 600; } ); unicode = 943; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/itilde.glyph000066400000000000000000000010051472355150100301570ustar00rootroot00000000000000{ glyphname = itilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (620,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (615,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (615,0); ref = tildecomb; } ); width = 600; } ); unicode = 297; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/iu-cy.glyph000066400000000000000000000035271472355150100277460ustar00rootroot00000000000000{ glyphname = "iu-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (451,-10,o), (535,56,o), (551,156,cs), (589,395,ls), (604,495,o), (543,560,o), (437,560,cs), (332,560,o), (262,494,o), (247,395,cs), (235,325,l), (160,325,l), (196,550,l), (73,550,l), (-14,0,l), (109,0,l), (145,230,l), (220,230,l), (209,156,ls), (193,56,o), (241,-10,o), (346,-10,cs) ); }, { closed = 1; nodes = ( (332,100,o), (312,123,o), (318,156,cs), (356,395,ls), (361,427,o), (387,450,o), (419,450,cs), (451,450,o), (471,427,o), (466,395,cs), (428,156,ls), (422,123,o), (396,100,o), (364,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (439,-10,o), (515,58,o), (531,160,cs), (568,390,ls), (584,492,o), (530,560,o), (431,560,cs), (338,560,o), (267,493,o), (251,390,cs), (239,315,l), (151,315,l), (188,550,l), (105,550,l), (18,0,l), (101,0,l), (139,243,l), (227,243,l), (214,160,ls), (198,58,o), (248,-10,o), (340,-10,cs) ); }, { closed = 1; nodes = ( (302,60,o), (278,97,o), (288,160,cs), (325,390,ls), (335,453,o), (370,490,o), (420,490,cs), (471,490,o), (495,453,o), (485,390,cs), (448,160,ls), (438,97,o), (403,60,o), (352,60,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (435,-10,o), (502,53,o), (519,160,cs), (556,390,ls), (573,497,o), (526,560,o), (431,560,cs), (337,560,o), (270,497,o), (253,390,cs), (238,299,l), (127,299,l), (167,550,l), (119,550,l), (32,0,l), (80,0,l), (121,259,l), (232,259,l), (216,160,ls), (199,53,o), (246,-10,o), (340,-10,cs) ); }, { closed = 1; nodes = ( (284,35,o), (251,83,o), (263,160,cs), (300,390,ls), (312,467,o), (360,515,o), (424,515,cs), (488,515,o), (520,467,o), (508,390,cs), (471,160,ls), (459,83,o), (412,35,o), (348,35,cs) ); } ); width = 600; } ); unicode = 1102; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/j.glyph000066400000000000000000000007341472355150100271460ustar00rootroot00000000000000{ glyphname = j; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = jdotless; }, { pos = (695,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = jdotless; }, { pos = (685,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = jdotless; }, { pos = (693,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 106; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/jcircumflex.glyph000066400000000000000000000010311472355150100312170ustar00rootroot00000000000000{ glyphname = jcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = jdotless; }, { pos = (694,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = jdotless; }, { pos = (684,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = jdotless; }, { pos = (693,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 309; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/jdotless.glyph000066400000000000000000000020751472355150100305440ustar00rootroot00000000000000{ glyphname = jdotless; layers = ( { anchors = ( { name = top; pos = (438,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (178,-180,ls), (316,-180,o), (416,-96,o), (437,40,cs), (518,550,l), (153,550,l), (131,410,l), (346,410,l), (288,45,ls), (280,-9,o), (244,-40,o), (190,-40,cs), (30,-40,l), (7,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (428,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,-180,ls), (276,-180,o), (375,-98,o), (396,31,cs), (478,550,l), (158,550,l), (145,468,l), (375,468,l), (306,31,ls), (293,-51,o), (238,-97,o), (155,-97,cs), (26,-97,l), (12,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (437,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (157,-180,ls), (279,-180,o), (363,-109,o), (382,10,cs), (467,550,l), (167,550,l), (160,505,l), (410,505,l), (332,10,ls), (317,-84,o), (259,-135,o), (165,-135,cs), (30,-135,l), (22,-180,l) ); } ); width = 600; } ); unicode = 567; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/je-cy.glyph000066400000000000000000000007431472355150100277240ustar00rootroot00000000000000{ glyphname = "je-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = jdotless; }, { pos = (695,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = jdotless; }, { pos = (685,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = jdotless; }, { pos = (693,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 1112; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/k.glyph000066400000000000000000000021221472355150100271400ustar00rootroot00000000000000{ glyphname = k; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (180,245,l), (279,245,l), (400,0,l), (503,0,l), (361,285,l), (587,550,l), (482,550,l), (286,323,l), (192,323,l), (257,730,l), (167,730,l), (51,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (161,264,l), (294,264,l), (429,0,l), (487,0,l), (339,283,l), (570,550,l), (509,550,l), (299,309,l), (168,309,l), (235,730,l), (185,730,l), (69,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (209,216,l), (287,216,l), (371,0,l), (534,0,l), (420,274,l), (618,550,l), (448,550,l), (300,342,l), (229,342,l), (291,730,l), (141,730,l), (25,0,l) ); } ); width = 600; } ); unicode = 107; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/k.ss00.glyph000066400000000000000000000021241472355150100277260ustar00rootroot00000000000000{ export = 0; glyphname = k.ss00; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (163,279,l), (179,279,l), (419,0,l), (484,0,l), (237,285,l), (565,550,l), (496,550,l), (182,299,l), (166,299,l), (235,730,l), (185,730,l), (69,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (185,276,l), (204,276,l), (399,0,l), (509,0,l), (306,285,l), (591,550,l), (477,550,l), (207,302,l), (189,302,l), (257,730,l), (167,730,l), (51,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (219,276,l), (225,276,l), (365,0,l), (534,0,l), (386,281,l), (617,550,l), (449,550,l), (230,302,l), (223,302,l), (291,730,l), (141,730,l), (25,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ka-cy.glyph000066400000000000000000000017601472355150100277210ustar00rootroot00000000000000{ glyphname = "ka-cy"; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (209,216,l), (286,216,l), (368,0,l), (534,0,l), (421,276,l), (618,550,l), (448,550,l), (300,342,l), (229,342,l), (262,550,l), (112,550,l), (25,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (143,0,l), (182,245,l), (279,245,l), (400,0,l), (503,0,l), (361,285,l), (587,550,l), (482,550,l), (286,323,l), (194,323,l), (230,550,l), (140,550,l), (53,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (161,264,l), (295,264,l), (429,0,l), (487,0,l), (343,284,l), (570,550,l), (508,550,l), (298,309,l), (168,309,l), (206,550,l), (156,550,l), (69,0,l) ); } ); width = 600; } ); unicode = 1082; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ka-cy.ss00.glyph000066400000000000000000000017611472355150100305060ustar00rootroot00000000000000{ export = 0; glyphname = "ka-cy.ss00"; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (218,269,l), (224,269,l), (363,0,l), (534,0,l), (385,272,l), (617,550,l), (449,550,l), (229,295,l), (222,295,l), (262,550,l), (112,550,l), (25,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (162,272,l), (178,272,l), (419,0,l), (484,0,l), (235,279,l), (565,550,l), (496,550,l), (181,292,l), (165,292,l), (206,550,l), (156,550,l), (69,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (184,269,l), (203,269,l), (397,0,l), (509,0,l), (304,278,l), (591,550,l), (477,550,l), (206,295,l), (188,295,l), (228,550,l), (138,550,l), (51,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kadescender-cy.glyph000066400000000000000000000020071472355150100315710ustar00rootroot00000000000000{ glyphname = "kadescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (158,264,l), (291,264,l), (425,0,l), (451,0,l), (429,-140,l), (479,-140,l), (508,45,l), (462,45,l), (339,284,l), (567,550,l), (507,550,l), (297,309,l), (165,309,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (177,245,l), (278,245,l), (399,0,l), (446,0,l), (424,-140,l), (504,-140,l), (539,80,l), (463,80,l), (359,282,l), (586,550,l), (483,550,l), (287,323,l), (189,323,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (206,216,l), (284,216,l), (366,0,l), (416,0,l), (394,-140,l), (524,-140,l), (568,140,l), (479,140,l), (420,275,l), (618,550,l), (451,550,l), (303,342,l), (226,342,l), (259,550,l), (109,550,l), (22,0,l) ); } ); width = 600; } ); unicode = 1179; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kadescender-cy.ss00.glyph000066400000000000000000000020101472355150100323470ustar00rootroot00000000000000{ export = 0; glyphname = "kadescender-cy.ss00"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (158,264,l), (290,264,l), (424,0,l), (451,0,l), (429,-140,l), (479,-140,l), (508,45,l), (462,45,l), (341,289,l), (567,550,l), (507,550,l), (297,309,l), (165,309,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (177,245,l), (276,245,l), (397,0,l), (446,0,l), (424,-140,l), (504,-140,l), (539,80,l), (463,80,l), (360,288,l), (586,550,l), (483,550,l), (287,323,l), (189,323,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (206,216,l), (282,216,l), (364,0,l), (416,0,l), (394,-140,l), (524,-140,l), (568,140,l), (479,140,l), (423,281,l), (618,550,l), (451,550,l), (303,342,l), (226,342,l), (259,550,l), (109,550,l), (22,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kaiS_ymbol.glyph000066400000000000000000000027021472355150100310030ustar00rootroot00000000000000{ glyphname = kaiSymbol; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (297,-180,ls), (394,-180,o), (456,-129,o), (470,-35,cs), (484,51,l), (454,51,l), (533,550,l), (465,550,l), (119,45,l), (127,82,o), (140,149,o), (148,200,cs), (203,550,l), (153,550,l), (66,0,l), (133,0,l), (480,505,l), (472,468,o), (460,401,o), (451,350,cs), (396,0,l), (426,0,l), (420,-35,ls), (410,-99,o), (369,-135,o), (305,-135,cs), (260,-135,l), (252,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (290,-180,ls), (412,-180,o), (487,-117,o), (506,0,cs), (517,71,l), (473,71,l), (549,550,l), (434,550,l), (138,80,l), (149,119,o), (166,192,o), (176,250,cs), (223,550,l), (137,550,l), (50,0,l), (165,0,l), (462,471,l), (450,432,o), (433,358,o), (424,300,cs), (376,0,l), (420,0,l), (420,-2,ls), (410,-62,o), (363,-101,o), (303,-101,cs), (274,-101,l), (261,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (330,-180,ls), (445,-180,o), (517,-120,o), (534,-10,cs), (552,100,l), (506,100,l), (577,550,l), (395,550,l), (149,95,l), (167,153,o), (193,249,o), (202,300,cs), (241,550,l), (109,550,l), (22,0,l), (204,0,l), (445,435,l), (429,386,o), (406,301,o), (398,250,cs), (358,0,l), (404,0,l), (404,-1,ls), (398,-38,o), (377,-55,o), (340,-55,cs), (283,-55,l), (263,-180,l) ); } ); width = 600; } ); unicode = 983; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kappa.glyph000066400000000000000000000005421472355150100300060ustar00rootroot00000000000000{ glyphname = kappa; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "ka-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "ka-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "ka-cy"; } ); width = 600; } ); unicode = 954; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kappa.ss00.glyph000066400000000000000000000005631472355150100305750ustar00rootroot00000000000000{ export = 0; glyphname = kappa.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "ka-cy.ss00"; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kcommaaccent.glyph000066400000000000000000000007301472355150100313360ustar00rootroot00000000000000{ glyphname = kcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = k; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = k; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = k; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 311; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kcommaaccent.ss00.glyph000066400000000000000000000007511472355150100321250ustar00rootroot00000000000000{ export = 0; glyphname = kcommaaccent.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = commaaccentcomb; }, { ref = k.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = commaaccentcomb; }, { ref = k.ss00; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = commaaccentcomb; }, { ref = k.ss00; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kgreenlandic.glyph000066400000000000000000000006311472355150100313370ustar00rootroot00000000000000{ glyphname = kgreenlandic; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy"; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy"; } ); width = 600; } ); unicode = 312; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kgreenlandic.ss00.glyph000066400000000000000000000006521472355150100321260ustar00rootroot00000000000000{ export = 0; glyphname = kgreenlandic.ss00; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kje-cy.glyph000066400000000000000000000010051472355150100300670ustar00rootroot00000000000000{ glyphname = "kje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy"; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy"; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy"; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 1116; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/kje-cy.ss00.glyph000066400000000000000000000010251472355150100306550ustar00rootroot00000000000000{ export = 0; glyphname = "kje-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/l.glyph000066400000000000000000000022011472355150100271370ustar00rootroot00000000000000{ glyphname = l; layers = ( { anchors = ( { name = bottom; pos = (280,0); }, { name = top; pos = (342,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (521,0,l), (542,135,l), (382,135,ls), (346,135,o), (326,159,o), (332,195,cs), (417,730,l), (97,730,l), (75,595,l), (245,595,l), (182,195,ls), (164,78,o), (229,0,o), (346,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (240,0); }, { name = top; pos = (312,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (334,82,ls), (291,82,o), (269,110,o), (276,155,cs), (367,730,l), (112,730,l), (99,648,l), (264,648,l), (186,155,ls), (171,61,o), (224,0,o), (321,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (240,0); }, { name = top; pos = (312,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (496,0,l), (503,45,l), (328,45,ls), (269,45,o), (243,76,o), (252,135,cs), (347,730,l), (122,730,l), (114,685,l), (289,685,l), (202,135,ls), (188,48,o), (231,0,o), (321,0,cs) ); } ); width = 600; } ); unicode = 108; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/l.ss01.glyph000066400000000000000000000017371472355150100277410ustar00rootroot00000000000000{ export = 0; glyphname = l.ss01; layers = ( { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (322,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (511,0,l), (524,82,l), (319,82,l), (422,730,l), (162,730,l), (149,648,l), (319,648,l), (229,82,l), (14,82,l), (1,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (322,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (496,0,l), (503,45,l), (294,45,l), (403,730,l), (177,730,l), (169,685,l), (345,685,l), (244,45,l), (23,45,l), (16,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (342,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,136,l), (353,136,l), (447,730,l), (152,730,l), (130,595,l), (285,595,l), (213,136,l), (18,136,l), (-4,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lacute.glyph000066400000000000000000000007171472355150100301730ustar00rootroot00000000000000{ glyphname = lacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l; }, { pos = (551,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l; }, { pos = (551,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l; }, { pos = (582,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 314; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lacute.ss01.glyph000066400000000000000000000007401472355150100307540ustar00rootroot00000000000000{ export = 0; glyphname = lacute.ss01; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l.ss01; }, { pos = (561,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l.ss01; }, { pos = (561,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l.ss01; }, { pos = (582,0); ref = acutecomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lambda.glyph000066400000000000000000000016121472355150100301310ustar00rootroot00000000000000{ glyphname = lambda; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,0,l), (291,297,ls), (306,329,o), (322,376,o), (329,403,c), (329,376,o), (330,328,o), (335,297,cs), (379,0,l), (532,0,l), (391,730,l), (234,730,l), (279,545,l), (-18,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (108,0,l), (290,357,ls), (313,403,o), (321,441,o), (323,461,c), (327,441,o), (330,403,o), (340,357,cs), (414,0,l), (507,0,l), (349,730,l), (253,730,l), (297,541,l), (7,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,0,l), (279,357,ls), (303,401,o), (328,455,o), (341,483,c), (346,455,o), (357,401,o), (366,357,cs), (437,0,l), (489,0,l), (339,730,l), (282,730,l), (326,539,l), (25,0,l) ); } ); width = 600; } ); unicode = 955; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lambdastroke.glyph000066400000000000000000000011311472355150100313550ustar00rootroot00000000000000{ glyphname = lambdastroke; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (534,692,l), (542,740,l), (132,550,l), (124,502,l) ); }, { ref = lambda; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (529,660,l), (542,740,l), (132,550,l), (119,470,l) ); }, { ref = lambda; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (525,635,l), (542,740,l), (132,550,l), (115,445,l) ); }, { ref = lambda; } ); width = 600; } ); unicode = 411; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/largeC_ircle.glyph000066400000000000000000000026111472355150100312640ustar00rootroot00000000000000{ glyphname = largeCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; } ); unicode = 9711; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lcaron.glyph000066400000000000000000000007141472355150100301710ustar00rootroot00000000000000{ glyphname = lcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l; }, { pos = (590,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l; }, { pos = (590,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l; }, { pos = (620,0); ref = caroncomb.alt; } ); width = 600; } ); unicode = 318; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lcaron.ss01.glyph000066400000000000000000000007351472355150100307610ustar00rootroot00000000000000{ export = 0; glyphname = lcaron.ss01; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = caroncomb.alt; }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = caroncomb.alt; }, { ref = l.ss01; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (620,0); ref = caroncomb.alt; }, { ref = l.ss01; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lcommaaccent.glyph000066400000000000000000000007301472355150100313370ustar00rootroot00000000000000{ glyphname = lcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l; }, { pos = (584,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l; }, { pos = (584,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l; }, { pos = (624,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 316; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lcommaaccent.ss01.glyph000066400000000000000000000007511472355150100321270ustar00rootroot00000000000000{ export = 0; glyphname = lcommaaccent.ss01; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (605,0); ref = commaaccentcomb; }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (605,0); ref = commaaccentcomb; }, { ref = l.ss01; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (605,0); ref = commaaccentcomb; }, { ref = l.ss01; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ldot.glyph000066400000000000000000000011101472355150100276440ustar00rootroot00000000000000{ glyphname = ldot; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-20,0); ref = l; }, { alignment = -1; pos = (300,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-20,0); ref = l; }, { alignment = -1; pos = (275,275); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-20,0); ref = l; }, { alignment = -1; pos = (280,275); ref = period; } ); width = 600; } ); unicode = 320; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ldot.ss01.glyph000066400000000000000000000007741472355150100304500ustar00rootroot00000000000000{ export = 0; glyphname = ldot.ss01; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (345,275); ref = period; }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (345,275); ref = period; }, { ref = l.ss01; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (340,275); ref = period; }, { ref = l.ss01; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftA_rrow.glyph000066400000000000000000000024061472355150100310170ustar00rootroot00000000000000{ glyphname = leftArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (377,35,l), (215,239,ls), (198,259,o), (179,278,o), (170,286,c), (170,295,l), (187,293,o), (218,290,o), (240,290,cs), (570,290,l), (570,370,l), (240,370,ls), (218,370,o), (187,368,o), (170,366,c), (170,375,l), (182,384,o), (202,403,o), (215,420,cs), (377,625,l), (271,625,l), (40,330,l), (272,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (377,35,l), (215,239,ls), (198,259,o), (179,278,o), (170,286,c), (170,295,l), (187,293,o), (218,290,o), (240,290,cs), (570,290,l), (570,370,l), (240,370,ls), (218,370,o), (187,368,o), (170,366,c), (170,375,l), (182,384,o), (202,403,o), (215,420,cs), (377,625,l), (271,625,l), (40,330,l), (272,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,35,l), (215,239,ls), (198,259,o), (179,278,o), (170,286,c), (170,295,l), (187,293,o), (218,290,o), (240,290,cs), (570,290,l), (570,370,l), (240,370,ls), (218,370,o), (187,368,o), (170,366,c), (170,375,l), (182,384,o), (202,403,o), (215,420,cs), (377,625,l), (271,625,l), (40,330,l), (272,35,l) ); } ); width = 600; } ); unicode = 8592; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftB_lackP_ointer.glyph000066400000000000000000000007511472355150100324420ustar00rootroot00000000000000{ glyphname = leftBlackPointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightBlackPointer; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightBlackPointer; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightBlackPointer; scale = (-1,1); } ); width = 600; } ); unicode = 9668; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftB_lackS_mallT_riangle.glyph000066400000000000000000000010421472355150100337110ustar00rootroot00000000000000{ glyphname = leftBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { angle = 90; pos = (660,660); ref = upBlackSmallTriangle; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { angle = 90; pos = (660,660); ref = upBlackSmallTriangle; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { angle = 90; pos = (660,660); ref = upBlackSmallTriangle; scale = (-1,1); } ); width = 600; } ); unicode = 9666; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftB_lackT_riangle.glyph000066400000000000000000000007741472355150100325740ustar00rootroot00000000000000{ glyphname = leftBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,49,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,49,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,49,l) ); } ); width = 600; } ); unicode = 9664; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftB_lock.glyph000066400000000000000000000010361472355150100307550ustar00rootroot00000000000000{ glyphname = leftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9612; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftC_eiling.glyph000066400000000000000000000011641472355150100312770ustar00rootroot00000000000000{ glyphname = leftCeiling; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (209,-110,l), (350,785,l), (525,785,l), (532,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (234,-110,l), (370,750,l), (525,750,l), (537,830,l), (292,830,l), (144,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (259,-110,l), (385,690,l), (540,690,l), (562,830,l), (257,830,l), (109,-110,l) ); } ); width = 600; } ); unicode = 8968; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftF_iveE_ighthsB_lock.glyph000066400000000000000000000010511472355150100333760ustar00rootroot00000000000000{ glyphname = leftFiveEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9611; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftF_loor.glyph000066400000000000000000000011601472355150100310020ustar00rootroot00000000000000{ glyphname = leftFloor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-110,l), (391,-65,l), (216,-65,l), (357,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-110,l), (401,-30,l), (246,-30,l), (382,830,l), (292,830,l), (144,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-110,l), (436,30,l), (281,30,l), (407,830,l), (257,830,l), (109,-110,l) ); } ); width = 600; } ); unicode = 8970; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftH_alfB_lackS_quare.glyph000066400000000000000000000007651472355150100332210ustar00rootroot00000000000000{ glyphname = leftHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightHalfBlackSquare; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightHalfBlackSquare; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightHalfBlackSquare; scale = (-1,1); } ); width = 600; } ); unicode = 9703; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftL_ongA_rrow.glyph000066400000000000000000000023771472355150100320050ustar00rootroot00000000000000{ glyphname = leftLongArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (272,75,l), (135,239,ls), (118,259,o), (99,278,o), (90,286,c), (90,295,l), (107,293,o), (138,290,o), (160,290,cs), (640,290,l), (640,370,l), (160,370,ls), (138,370,o), (107,368,o), (90,366,c), (90,375,l), (102,384,o), (122,404,o), (135,420,cs), (269,585,l), (166,585,l), (-40,330,l), (167,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (272,75,l), (135,239,ls), (118,259,o), (99,278,o), (90,286,c), (90,295,l), (107,293,o), (138,290,o), (160,290,cs), (640,290,l), (640,370,l), (160,370,ls), (138,370,o), (107,368,o), (90,366,c), (90,375,l), (102,384,o), (122,404,o), (135,420,cs), (269,585,l), (166,585,l), (-40,330,l), (167,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (272,75,l), (135,239,ls), (118,259,o), (99,278,o), (90,286,c), (90,295,l), (107,293,o), (138,290,o), (160,290,cs), (640,290,l), (640,370,l), (160,370,ls), (138,370,o), (107,368,o), (90,366,c), (90,375,l), (102,384,o), (122,404,o), (135,420,cs), (269,585,l), (166,585,l), (-40,330,l), (167,75,l) ); } ); width = 600; } ); unicode = 10229; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftO_neE_ighthB_lock.glyph000066400000000000000000000010411472355150100330420ustar00rootroot00000000000000{ glyphname = leftOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (75,-300,l), (75,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (75,-300,l), (75,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (75,-300,l), (75,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9615; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftO_neQ_uarterB_lock.glyph000066400000000000000000000010501472355150100332550ustar00rootroot00000000000000{ glyphname = leftOneQuarterBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (150,-300,l), (150,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (150,-300,l), (150,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (150,-300,l), (150,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9614; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftR_ightA_rrow.glyph000066400000000000000000000037171472355150100321620ustar00rootroot00000000000000{ glyphname = leftRightArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (257,35,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,257,o), (505,240,cs), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,403,o), (95,420,cs), (257,625,l), (151,625,l), (-80,330,l), (152,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,35,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,257,o), (505,240,cs), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,403,o), (95,420,cs), (257,625,l), (151,625,l), (-80,330,l), (152,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (257,35,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,257,o), (505,240,cs), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,403,o), (95,420,cs), (257,625,l), (151,625,l), (-80,330,l), (152,35,l) ); } ); width = 600; } ); unicode = 8596; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftR_ightD_oubleA_rrow.glyph000066400000000000000000000031511472355150100334440ustar00rootroot00000000000000{ glyphname = leftRightDoubleArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (575,330,l), (343,35,l) ); }, { closed = 1; nodes = ( (257,35,l), (25,330,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (535,170,l), (535,250,l), (70,250,l), (70,170,l) ); }, { closed = 1; nodes = ( (535,410,l), (535,490,l), (70,490,l), (70,410,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (257,35,l), (151,170,l), (449,170,l), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (151,490,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (25,330,l), (88,410,l), (512,410,l), (575,330,l), (512,250,l), (88,250,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,35,l), (151,170,l), (449,170,l), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (151,490,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (25,330,l), (88,410,l), (512,410,l), (575,330,l), (512,250,l), (88,250,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (257,35,l), (151,170,l), (449,170,l), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (151,490,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (25,330,l), (88,410,l), (512,410,l), (575,330,l), (512,250,l), (88,250,l) ); } ); width = 600; } ); unicode = 8660; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftR_ightL_ongA_rrow.glyph000066400000000000000000000037241472355150100331370ustar00rootroot00000000000000{ glyphname = leftRightLongArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,75,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,256,o), (505,240,cs), (371,75,l), (474,75,l), (680,330,l), (473,585,l), (368,585,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,404,o), (95,420,cs), (229,585,l), (126,585,l), (-80,330,l), (127,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (232,75,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,256,o), (505,240,cs), (371,75,l), (474,75,l), (680,330,l), (473,585,l), (368,585,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,404,o), (95,420,cs), (229,585,l), (126,585,l), (-80,330,l), (127,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (232,75,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,256,o), (505,240,cs), (371,75,l), (474,75,l), (680,330,l), (473,585,l), (368,585,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,404,o), (95,420,cs), (229,585,l), (126,585,l), (-80,330,l), (127,75,l) ); } ); width = 600; } ); unicode = 10231; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftR_ightW_aveA_rrow.glyph000066400000000000000000000062241472355150100331400ustar00rootroot00000000000000{ glyphname = leftRightWaveArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (205,150,o), (230,275,o), (300,275,cs), (370,275,o), (395,150,o), (505,150,cs), (615,150,o), (600,235,o), (670,235,c), (675,235,l), (675,315,l), (670,315,l), (560,315,o), (575,230,o), (505,230,cs), (435,230,o), (410,355,o), (300,355,cs), (190,355,o), (165,230,o), (95,230,cs), (25,230,o), (40,315,o), (-70,315,c), (-75,315,l), (-75,235,l), (-70,235,l), (0,235,o), (-15,150,o), (95,150,cs) ); }, { closed = 1; nodes = ( (-21,75,l), (-108,185,ls), (-121,202,o), (-141,221,o), (-153,230,c), (-153,239,l), (-136,237,o), (-105,235,o), (-83,235,cs), (-75,235,l), (-75,315,l), (-83,315,ls), (-105,315,o), (-136,312,o), (-153,310,c), (-153,319,l), (-144,327,o), (-125,344,o), (-108,366,cs), (-21,475,l), (-127,475,l), (-283,275,l), (-127,75,l) ); }, { closed = 1; nodes = ( (727,75,l), (883,275,l), (727,475,l), (621,475,l), (708,366,ls), (725,344,o), (744,327,o), (753,319,c), (753,310,l), (736,312,o), (705,315,o), (683,315,cs), (675,315,l), (675,235,l), (683,235,ls), (705,235,o), (736,237,o), (753,239,c), (753,230,l), (741,221,o), (721,202,o), (708,185,cs), (621,75,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (182,75,l), (95,185,ls), (76,209,o), (52,229,o), (15,248,c), (15,210,l), (149,211,ls), (240,212,o), (245,320,o), (300,320,cs), (355,320,o), (360,212,o), (451,211,cs), (586,210,l), (586,248,l), (548,229,o), (524,209,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (548,312,o), (565,297,o), (586,278,c), (586,290,l), (455,290,ls), (405,290,o), (380,405,o), (300,405,cs), (220,405,o), (195,290,o), (145,290,cs), (15,290,l), (15,278,l), (36,297,o), (52,312,o), (95,366,cs), (182,475,l), (76,475,l), (-80,275,l), (76,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (182,75,l), (95,185,ls), (76,209,o), (52,229,o), (15,248,c), (15,210,l), (149,211,ls), (240,212,o), (245,320,o), (300,320,cs), (355,320,o), (360,212,o), (451,211,cs), (586,210,l), (586,248,l), (548,229,o), (524,209,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (548,312,o), (565,297,o), (586,278,c), (586,290,l), (455,290,ls), (405,290,o), (380,405,o), (300,405,cs), (220,405,o), (195,290,o), (145,290,cs), (15,290,l), (15,278,l), (36,297,o), (52,312,o), (95,366,cs), (182,475,l), (76,475,l), (-80,275,l), (76,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (182,75,l), (95,185,ls), (76,209,o), (52,229,o), (15,248,c), (15,210,l), (149,211,ls), (240,212,o), (245,320,o), (300,320,cs), (355,320,o), (360,212,o), (451,211,cs), (586,210,l), (586,248,l), (548,229,o), (524,209,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (548,312,o), (565,297,o), (586,278,c), (586,290,l), (455,290,ls), (405,290,o), (380,405,o), (300,405,cs), (220,405,o), (195,290,o), (145,290,cs), (15,290,l), (15,278,l), (36,297,o), (52,312,o), (95,366,cs), (182,475,l), (76,475,l), (-80,275,l), (76,75,l) ); } ); width = 600; } ); unicode = 8621; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftS_evenE_ighthsB_lock.glyph000066400000000000000000000010521472355150100335660ustar00rootroot00000000000000{ glyphname = leftSevenEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (525,-300,l), (525,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (525,-300,l), (525,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (525,-300,l), (525,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9609; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftT_hreeE_ighthsB_lock.glyph000066400000000000000000000010521472355150100335550ustar00rootroot00000000000000{ glyphname = leftThreeEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (200,-300,l), (200,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (200,-300,l), (200,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (200,-300,l), (200,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9613; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftT_hreeQ_uartersB_lock.glyph000066400000000000000000000010531472355150100337710ustar00rootroot00000000000000{ glyphname = leftThreeQuartersBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-300,l), (450,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-300,l), (450,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-300,l), (450,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9610; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftT_woheadedA_rrow.glyph000066400000000000000000000007611472355150100330050ustar00rootroot00000000000000{ glyphname = leftTwoheadedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightTwoheadedArrow; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightTwoheadedArrow; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightTwoheadedArrow; scale = (-1,1); } ); width = 600; } ); unicode = 8606; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftW_hiteP_ointer.glyph000066400000000000000000000007511472355150100325060ustar00rootroot00000000000000{ glyphname = leftWhitePointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightWhitePointer; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightWhitePointer; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightWhitePointer; scale = (-1,1); } ); width = 600; } ); unicode = 9669; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftW_hiteS_mallT_riangle.glyph000066400000000000000000000013201472355150100337540ustar00rootroot00000000000000{ glyphname = leftWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,510,l), (140,360,l), (450,210,l) ); }, { closed = 1; nodes = ( (232,360,l), (410,446,l), (410,274,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,510,l), (140,360,l), (450,210,l) ); }, { closed = 1; nodes = ( (232,360,l), (410,446,l), (410,274,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,510,l), (140,360,l), (450,210,l) ); }, { closed = 1; nodes = ( (232,360,l), (410,446,l), (410,274,l) ); } ); width = 600; } ); unicode = 9667; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftW_hiteT_riangle.glyph000066400000000000000000000013101472355150100326230ustar00rootroot00000000000000{ glyphname = leftWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,50,l) ); }, { closed = 1; nodes = ( (102,360,l), (550,587,l), (550,133,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,50,l) ); }, { closed = 1; nodes = ( (102,360,l), (550,587,l), (550,133,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,50,l) ); }, { closed = 1; nodes = ( (102,360,l), (550,587,l), (550,133,l) ); } ); width = 600; } ); unicode = 9665; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftanglebracket-math.glyph000066400000000000000000000012501472355150100331330ustar00rootroot00000000000000{ glyphname = "leftanglebracket-math"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (485,-115,l), (199,348,l), (479,815,l), (377,815,l), (125,412,l), (125,290,l), (377,-115,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (485,-115,l), (199,348,l), (479,815,l), (377,815,l), (125,412,l), (125,290,l), (377,-115,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,-115,l), (199,348,l), (479,815,l), (377,815,l), (125,412,l), (125,290,l), (377,-115,l) ); } ); width = 600; } ); unicode = 10216; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftcurlybracketlowerhook.glyph000066400000000000000000000015661472355150100342200ustar00rootroot00000000000000{ glyphname = leftcurlybracketlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,-110,l), (480,-65,l), (425,-65,ls), (363,-65,o), (325,-25,o), (325,40,cs), (325,1020,l), (275,1020,l), (275,40,ls), (275,-56,o), (329,-110,o), (425,-110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (485,-110,l), (485,-30,l), (440,-30,ls), (377,-30,o), (345,-1,o), (345,56,cs), (345,1020,l), (255,1020,l), (255,56,ls), (255,-49,o), (322,-110,o), (440,-110,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (490,-111,l), (490,29,l), (435,29,ls), (399,29,o), (375,53,o), (375,89,cs), (375,1020,l), (225,1020,l), (225,74,ls), (225,-38,o), (296,-111,o), (405,-111,cs) ); } ); width = 600; } ); unicode = 9129; } leftcurlybracketmiddlepiece.glyph000066400000000000000000000027561472355150100343760ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = leftcurlybracketmiddlepiece; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,237,ls), (325,315,o), (285,364,o), (220,364,c), (220,357,l), (285,357,o), (325,405,o), (325,482,cs), (325,1020,l), (275,1020,l), (275,482,ls), (275,408,o), (257,382,o), (175,382,cs), (65,382,l), (65,336,l), (175,336,ls), (261,336,o), (275,308,o), (275,237,cs), (275,-300,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,220,ls), (345,306,o), (299,363,o), (215,363,c), (215,358,l), (300,358,o), (345,413,o), (345,500,cs), (345,1020,l), (255,1020,l), (255,500,ls), (255,429,o), (242,400,o), (155,400,cs), (45,400,l), (45,320,l), (155,320,ls), (241,320,o), (255,291,o), (255,220,cs), (255,-300,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,239,ls), (375,314,o), (318,364,o), (220,364,c), (220,357,l), (318,357,o), (375,406,o), (375,479,cs), (375,1020,l), (225,1020,l), (225,499,ls), (225,457,o), (197,429,o), (155,429,cs), (30,429,l), (30,289,l), (155,289,ls), (197,289,o), (225,261,o), (225,219,cs), (225,-300,l) ); } ); width = 600; } ); unicode = 9128; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/leftcurlybracketupperhook.glyph000066400000000000000000000015701472355150100342160ustar00rootroot00000000000000{ glyphname = leftcurlybracketupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,680,ls), (325,745,o), (363,785,o), (425,785,cs), (480,785,l), (480,830,l), (425,830,ls), (329,830,o), (275,776,o), (275,680,cs), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,664,ls), (345,721,o), (377,750,o), (440,750,cs), (485,750,l), (485,830,l), (440,830,ls), (322,830,o), (255,769,o), (255,664,cs), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,630,ls), (375,673,o), (397,690,o), (435,690,cs), (490,690,l), (490,830,l), (405,830,ls), (295,830,o), (225,760,o), (225,650,cs), (225,-300,l) ); } ); width = 600; } ); unicode = 9127; } leftdoubleanglebracket-math.glyph000066400000000000000000000022651472355150100342560ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "leftdoubleanglebracket-math"; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (432,-110,l), (146,360,l), (432,830,l), (377,830,l), (125,420,l), (125,300,l), (377,-110,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (428,-110,l), (142,360,l), (428,830,l), (373,830,l), (100,385,l), (100,334,l), (373,-110,l) ); }, { closed = 1; nodes = ( (554,-110,l), (268,360,l), (554,830,l), (499,830,l), (226,385,l), (226,334,l), (499,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (428,-110,l), (142,360,l), (428,830,l), (373,830,l), (100,385,l), (100,334,l), (373,-110,l) ); }, { closed = 1; nodes = ( (554,-110,l), (268,360,l), (554,830,l), (499,830,l), (226,385,l), (226,334,l), (499,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (428,-110,l), (142,360,l), (428,830,l), (373,830,l), (100,385,l), (100,334,l), (373,-110,l) ); }, { closed = 1; nodes = ( (554,-110,l), (268,360,l), (554,830,l), (499,830,l), (226,385,l), (226,334,l), (499,-110,l) ); } ); width = 600; } ); unicode = 10218; } leftsquarebracketextension.glyph000066400000000000000000000010731472355150100342770ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = leftsquarebracketextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,1020,l), (275,1020,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9122; } leftsquarebracketlowercorner.glyph000066400000000000000000000012111472355150100346160ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = leftsquarebracketlowercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (500,-110,l), (500,-65,l), (325,-65,l), (325,1020,l), (275,1020,l), (275,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (500,-110,l), (500,-30,l), (345,-30,l), (345,1020,l), (255,1020,l), (255,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (530,-110,l), (530,30,l), (375,30,l), (375,1020,l), (225,1020,l), (225,-110,l) ); } ); width = 600; } ); unicode = 9123; } leftsquarebracketuppercorner.glyph000066400000000000000000000012051472355150100346240ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = leftsquarebracketuppercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,785,l), (500,785,l), (500,830,l), (275,830,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,750,l), (500,750,l), (500,830,l), (255,830,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,690,l), (530,690,l), (530,830,l), (225,830,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9121; } leftwhitesquarebracket-math.glyph000066400000000000000000000010361472355150100343310ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "leftwhitesquarebracket-math"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = "rightwhitesquarebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = "rightwhitesquarebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = "rightwhitesquarebracket-math"; scale = (-1,1); } ); width = 600; } ); unicode = 10214; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less.glyph000066400000000000000000000015651472355150100276660ustar00rootroot00000000000000{ glyphname = less; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (515,182,l), (259,303,ls), (234,315,o), (202,322,o), (185,325,c), (203,328,o), (237,336,o), (266,348,cs), (561,469,l), (582,609,l), (89,400,l), (67,257,l), (494,49,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (496,149,l), (210,302,ls), (189,314,o), (165,323,o), (154,326,c), (165,329,o), (190,338,o), (217,350,cs), (551,502,l), (565,595,l), (101,380,l), (85,280,l), (481,65,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (487,131,l), (221,287,ls), (195,302,o), (163,320,o), (145,329,c), (166,338,o), (204,356,o), (234,371,cs), (549,525,l), (558,580,l), (102,353,l), (95,307,l), (479,80,l) ); } ); width = 600; } ); unicode = 60; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_asciitilde.liga.glyph000066400000000000000000000037771472355150100330020ustar00rootroot00000000000000{ glyphname = less_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-176,35,l), (-296,246,l), (-214,267,o), (-198,335,o), (-156,335,cs), (-106,335,o), (-120,215,o), (0,215,cs), (120,215,o), (144,335,o), (194,335,cs), (244,335,o), (240,215,o), (360,215,cs), (445,215,o), (518,268,o), (531,350,cs), (539,400,l), (419,400,l), (414,364,ls), (411,339,o), (394,325,o), (372,325,cs), (317,325,o), (331,445,o), (211,445,cs), (91,445,o), (67,325,o), (17,325,cs), (-33,325,o), (-19,445,o), (-139,445,cs), (-273,445,o), (-258,304,o), (-383,366,c), (-386,350,l), (-374,296,l), (-73,625,l), (-254,625,l), (-522,330,l), (-348,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-231,35,l), (-377,265,l), (-294,284,o), (-258,359,o), (-197,359,cs), (-127,359,o), (-138,229,o), (-13,229,cs), (112,229,o), (145,359,o), (215,359,cs), (285,359,o), (267,229,o), (392,229,cs), (470,229,o), (531,283,o), (543,360,cs), (549,400,l), (464,400,l), (458,360,ls), (453,324,o), (432,304,o), (402,304,cs), (334,304,o), (350,434,o), (225,434,cs), (100,434,o), (69,304,o), (-1,304,cs), (-69,304,o), (-60,434,o), (-185,434,cs), (-310,434,o), (-332,330,o), (-402,330,cs), (-408,330,l), (-410,330,l), (-128,625,l), (-238,625,l), (-517,330,l), (-332,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-253,35,l), (-411,268,l), (-308,275,o), (-295,383,o), (-208,383,cs), (-118,383,o), (-136,240,o), (-21,240,cs), (94,240,o), (127,383,o), (212,383,cs), (297,383,o), (279,240,o), (399,240,cs), (466,240,o), (515,283,o), (526,350,cs), (534,400,l), (484,400,l), (476,350,ls), (469,308,o), (447,282,o), (406,282,cs), (317,282,o), (333,425,o), (218,425,cs), (103,425,o), (71,282,o), (-14,282,cs), (-99,282,o), (-82,425,o), (-202,425,cs), (-312,425,o), (-342,308,o), (-411,308,cs), (-437,308,l), (-451,327,l), (-153,625,l), (-215,625,l), (-507,330,l), (-309,35,l) ); } ); width = 600; } ); } less_asciitilde_asciitilde.liga.glyph000066400000000000000000000056421472355150100351060ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = less_asciitilde_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-648,230,o), (-622,330,o), (-567,330,cs), (-512,330,o), (-508,230,o), (-388,230,cs), (-268,230,o), (-232,330,o), (-177,330,cs), (-122,330,o), (-118,230,o), (2,230,cs), (122,230,o), (158,330,o), (213,330,cs), (268,330,o), (272,230,o), (382,230,cs), (466,230,o), (530,280,o), (542,355,cs), (549,400,l), (439,400,l), (434,368,ls), (430,345,o), (415,330,o), (388,330,cs), (333,330,o), (349,430,o), (229,430,cs), (109,430,o), (73,330,o), (18,330,cs), (-37,330,o), (-51,430,o), (-161,430,cs), (-281,430,o), (-317,330,o), (-372,330,cs), (-427,330,o), (-441,430,o), (-551,430,cs), (-671,430,o), (-697,330,o), (-752,330,cs), (-807,330,o), (-811,430,o), (-921,430,cs), (-977,430,l), (-992,330,l), (-937,330,ls), (-882,330,o), (-888,230,o), (-768,230,cs) ); }, { closed = 1; nodes = ( (-776,35,l), (-946,326,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-693,229,o), (-667,359,o), (-597,359,cs), (-527,359,o), (-543,229,o), (-418,229,cs), (-293,229,o), (-267,359,o), (-197,359,cs), (-127,359,o), (-138,229,o), (-13,229,cs), (112,229,o), (145,359,o), (215,359,cs), (285,359,o), (267,229,o), (392,229,cs), (470,229,o), (531,282,o), (543,359,cs), (549,399,l), (464,399,l), (458,359,ls), (453,323,o), (432,304,o), (402,304,cs), (334,304,o), (350,434,o), (225,434,cs), (100,434,o), (69,304,o), (-1,304,cs), (-69,304,o), (-60,434,o), (-185,434,cs), (-310,434,o), (-336,304,o), (-406,304,cs), (-476,304,o), (-460,434,o), (-585,434,cs), (-710,434,o), (-736,304,o), (-806,304,cs), (-876,304,o), (-860,434,o), (-985,434,cs), (-1010,434,l), (-1022,359,l), (-997,359,ls), (-927,359,o), (-943,229,o), (-818,229,cs) ); }, { closed = 1; nodes = ( (-831,35,l), (-1015,327,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-746,240,o), (-723,383,o), (-633,383,cs), (-543,383,o), (-556,240,o), (-441,240,cs), (-326,240,o), (-288,383,o), (-203,383,cs), (-113,383,o), (-126,240,o), (-11,240,cs), (104,240,o), (142,383,o), (227,383,cs), (312,383,o), (299,240,o), (419,240,cs), (482,240,o), (525,281,o), (536,350,cs), (544,400,l), (499,400,l), (491,350,ls), (484,307,o), (461,282,o), (426,282,cs), (337,282,o), (348,425,o), (233,425,cs), (118,425,o), (81,282,o), (-4,282,cs), (-89,282,o), (-77,425,o), (-197,425,cs), (-312,425,o), (-349,282,o), (-434,282,cs), (-519,282,o), (-507,425,o), (-627,425,cs), (-747,425,o), (-769,282,o), (-854,282,cs), (-944,282,o), (-901,397,o), (-1021,397,cs), (-1031,397,l), (-1036,357,l), (-1027,357,ls), (-948,357,o), (-971,240,o), (-861,240,cs) ); }, { closed = 1; nodes = ( (-853,35,l), (-1050,326,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); } less_asciitilde_greater.liga.glyph000066400000000000000000000042061472355150100344200ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = less_asciitilde_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-270,215,o), (-265,335,o), (-215,335,cs), (-165,335,o), (-150,215,o), (-15,215,cs), (72,215,o), (130,269,o), (130,350,cs), (130,400,l), (10,400,l), (10,364,ls), (10,341,o), (-6,325,o), (-30,325,cs), (-90,325,o), (-95,445,o), (-215,445,cs), (-335,445,o), (-340,325,o), (-390,325,cs), (-440,325,o), (-445,445,o), (-585,445,cs), (-673,445,o), (-730,392,o), (-730,310,cs), (-730,260,l), (-610,260,l), (-610,296,ls), (-610,319,o), (-594,335,o), (-571,335,cs), (-515,335,o), (-510,215,o), (-390,215,cs) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-278,229,o), (-255,359,o), (-185,359,cs), (-115,359,o), (-133,229,o), (-8,229,cs), (70,229,o), (131,282,o), (143,359,cs), (149,399,l), (64,399,l), (58,359,ls), (52,323,o), (32,304,o), (2,304,cs), (-66,304,o), (-50,434,o), (-175,434,cs), (-300,434,o), (-323,304,o), (-393,304,cs), (-463,304,o), (-446,434,o), (-570,434,cs), (-648,434,o), (-708,382,o), (-721,304,cs), (-727,264,l), (-642,264,l), (-636,304,ls), (-630,340,o), (-610,359,o), (-580,359,cs), (-512,359,o), (-528,229,o), (-403,229,cs) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-296,240,o), (-263,383,o), (-178,383,cs), (-93,383,o), (-111,240,o), (9,240,cs), (76,240,o), (126,283,o), (136,350,cs), (144,400,l), (99,400,l), (91,350,ls), (85,308,o), (57,282,o), (16,282,cs), (-73,282,o), (-57,425,o), (-172,425,cs), (-287,425,o), (-319,282,o), (-404,282,cs), (-489,282,o), (-472,425,o), (-592,425,cs), (-659,425,o), (-708,382,o), (-719,315,cs), (-727,265,l), (-682,265,l), (-674,315,ls), (-667,357,o), (-639,383,o), (-598,383,cs), (-508,383,o), (-526,240,o), (-411,240,cs) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_asterisk.liga.glyph000066400000000000000000000046671472355150100325140ustar00rootroot00000000000000{ glyphname = less_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (187,127,ls), (228,175,o), (265,257,o), (282,299,c), (288,299,l), (293,257,o), (304,174,o), (329,127,cs), (369,52,l), (487,126,l), (448,202,l), (422,248,o), (363,297,o), (331,322,c), (334,326,l), (379,326,o), (459,330,o), (514,348,cs), (601,377,l), (575,499,l), (488,470,ls), (434,452,o), (362,401,o), (323,372,c), (319,375,l), (341,416,o), (382,497,o), (391,555,cs), (404,640,l), (274,640,l), (261,555,ls), (252,497,o), (267,416,o), (275,375,c), (270,371,l), (240,400,o), (185,452,o), (135,470,cs), (58,499,l), (-5,377,l), (71,348,ls), (120,329,o), (201,326,o), (246,326,c), (247,323,l), (206,298,o), (131,248,o), (92,201,cs), (29,126,l), (123,52,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (203,172,ls), (234,209,o), (266,264,o), (284,300,c), (292,300,l), (298,264,o), (312,208,o), (331,172,cs), (389,64,l), (469,114,l), (411,222,ls), (392,258,o), (354,297,o), (328,322,c), (333,331,l), (372,334,o), (430,341,o), (473,355,cs), (599,397,l), (582,480,l), (456,438,ls), (412,423,o), (357,390,o), (322,368,c), (318,371,l), (335,408,o), (359,469,o), (367,515,cs), (386,640,l), (298,640,l), (279,515,ls), (271,469,o), (277,408,o), (281,371,c), (275,367,l), (248,390,o), (203,423,o), (163,438,cs), (51,480,l), (8,397,l), (120,355,ls), (159,341,o), (216,333,o), (253,330,c), (255,323,l), (221,299,o), (170,259,o), (139,222,cs), (48,114,l), (112,64,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (208,207,ls), (254,259,o), (263,287,o), (279,310,c), (290,310,l), (297,286,o), (299,259,o), (329,207,cs), (394,93,l), (443,124,l), (378,238,ls), (349,289,o), (329,305,o), (314,323,c), (320,336,l), (345,339,o), (373,340,o), (430,362,cs), (570,416,l), (560,466,l), (419,413,ls), (364,392,o), (340,376,o), (317,364,c), (309,371,l), (318,395,o), (330,421,o), (339,480,cs), (363,630,l), (309,630,l), (285,480,ls), (276,421,o), (281,395,o), (281,371,c), (271,364,l), (252,376,o), (232,392,o), (182,414,cs), (60,467,l), (33,417,l), (155,363,ls), (206,341,o), (234,341,o), (257,338,c), (259,324,l), (238,306,o), (215,289,o), (169,238,cs), (68,125,l), (108,94,l) ); }, { alignment = -1; pos = (-610,0); ref = less; } ); width = 600; } ); } less_asterisk_greater.liga.glyph000066400000000000000000000053571472355150100341430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = less_asterisk_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-395,127,ls), (-354,175,o), (-317,257,o), (-300,299,c), (-294,299,l), (-289,257,o), (-278,174,o), (-253,127,cs), (-213,52,l), (-95,126,l), (-134,202,l), (-160,248,o), (-219,297,o), (-251,322,c), (-248,326,l), (-203,326,o), (-123,330,o), (-68,348,cs), (19,377,l), (-7,499,l), (-94,470,ls), (-148,452,o), (-220,401,o), (-259,372,c), (-263,375,l), (-241,416,o), (-200,497,o), (-191,555,cs), (-178,640,l), (-308,640,l), (-321,555,ls), (-330,497,o), (-315,416,o), (-307,375,c), (-312,371,l), (-342,400,o), (-397,452,o), (-447,470,cs), (-524,499,l), (-587,377,l), (-511,348,ls), (-462,329,o), (-381,326,o), (-336,326,c), (-335,323,l), (-401,282,o), (-462,235,o), (-490,201,cs), (-553,126,l), (-459,52,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-382,172,ls), (-351,209,o), (-319,264,o), (-301,300,c), (-293,300,l), (-287,264,o), (-273,208,o), (-254,172,cs), (-196,64,l), (-116,114,l), (-174,222,ls), (-193,258,o), (-231,297,o), (-257,322,c), (-252,331,l), (-213,334,o), (-155,341,o), (-112,355,cs), (14,397,l), (-3,480,l), (-129,438,ls), (-173,423,o), (-228,390,o), (-263,368,c), (-267,371,l), (-250,408,o), (-226,469,o), (-218,515,cs), (-199,640,l), (-287,640,l), (-306,515,ls), (-314,469,o), (-308,408,o), (-304,371,c), (-310,367,l), (-337,390,o), (-382,423,o), (-422,438,cs), (-534,480,l), (-577,397,l), (-465,355,ls), (-426,341,o), (-369,333,o), (-332,330,c), (-330,323,l), (-364,299,o), (-415,259,o), (-446,222,cs), (-537,114,l), (-473,64,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-372,207,ls), (-326,259,o), (-317,287,o), (-301,310,c), (-290,310,l), (-283,286,o), (-281,259,o), (-251,207,cs), (-186,93,l), (-137,124,l), (-202,238,ls), (-231,289,o), (-251,305,o), (-266,323,c), (-260,336,l), (-235,339,o), (-207,340,o), (-150,362,cs), (-10,416,l), (-20,466,l), (-161,413,ls), (-216,392,o), (-240,376,o), (-263,364,c), (-271,371,l), (-262,395,o), (-250,421,o), (-241,480,cs), (-217,630,l), (-271,630,l), (-295,480,ls), (-304,421,o), (-299,395,o), (-299,371,c), (-309,364,l), (-328,376,o), (-348,392,o), (-398,414,cs), (-520,467,l), (-547,417,l), (-425,363,ls), (-374,341,o), (-346,341,o), (-323,338,c), (-321,324,l), (-342,306,o), (-365,289,o), (-411,238,cs), (-512,125,l), (-472,94,l) ); }, { alignment = -1; pos = (-1172,0); ref = less; }, { alignment = -1; pos = (-2,0); ref = greater; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_bar.liga.glyph000066400000000000000000000014631472355150100314220ustar00rootroot00000000000000{ glyphname = less_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (283,-85,l), (415,750,l), (265,750,l), (-365,402,l), (-388,258,l), (133,-85,l) ); }, { closed = 1; nodes = ( (-245,333,l), (236,587,l), (156,81,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (268,-85,l), (400,750,l), (310,750,l), (-344,380,l), (-360,280,l), (178,-85,l) ); }, { closed = 1; nodes = ( (-276,328,l), (290,643,l), (191,19,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (248,-85,l), (380,750,l), (330,750,l), (-328,356,l), (-336,302,l), (198,-85,l) ); }, { closed = 1; nodes = ( (-290,328,l), (320,689,l), (207,-29,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_bar_bar.liga.glyph000066400000000000000000000013011472355150100322350ustar00rootroot00000000000000{ glyphname = less_bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (183,-85,l), (315,750,l), (165,750,l), (33,-85,l) ); }, { alignment = -1; pos = (-545,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (153,-85,l), (285,750,l), (195,750,l), (63,-85,l) ); }, { alignment = -1; pos = (-545,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (133,-85,l), (265,750,l), (215,750,l), (83,-85,l) ); }, { alignment = -1; pos = (-545,0); ref = less_bar.liga; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_bar_bar_bar.liga.glyph000066400000000000000000000017051472355150100330710ustar00rootroot00000000000000{ glyphname = less_bar_bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (108,-85,l), (240,750,l), (90,750,l), (-42,-85,l) ); }, { closed = 1; nodes = ( (-322,-85,l), (-190,750,l), (-340,750,l), (-472,-85,l) ); }, { alignment = -1; pos = (-1050,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (78,-85,l), (210,750,l), (120,750,l), (-12,-85,l) ); }, { closed = 1; nodes = ( (-352,-85,l), (-220,750,l), (-310,750,l), (-442,-85,l) ); }, { alignment = -1; pos = (-1050,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (58,-85,l), (190,750,l), (140,750,l), (8,-85,l) ); }, { closed = 1; nodes = ( (-372,-85,l), (-240,750,l), (-290,750,l), (-422,-85,l) ); }, { alignment = -1; pos = (-1050,0); ref = less_bar.liga; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_bar_greater.liga.glyph000066400000000000000000000024311472355150100331270ustar00rootroot00000000000000{ glyphname = less_bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,258,l), (480,402,l), (-40,750,l), (-65,595,l), (335,341,l), (-146,89,l), (-172,-85,l) ); }, { closed = 1; nodes = ( (-517,76,l), (-918,326,l), (-437,582,l), (-410,750,l), (-1040,402,l), (-1063,258,l), (-542,-85,l) ); }, { closed = 1; nodes = ( (-286,-110,l), (-145,780,l), (-295,780,l), (-436,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,280,l), (466,380,l), (-70,750,l), (-87,652,l), (377,335,l), (-186,26,l), (-203,-86,l) ); }, { closed = 1; nodes = ( (-496,14,l), (-961,325,l), (-397,641,l), (-380,750,l), (-1034,380,l), (-1050,280,l), (-513,-87,l) ); }, { closed = 1; nodes = ( (-316,-110,l), (-175,780,l), (-265,780,l), (-406,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,306,l), (453,360,l), (-80,750,l), (-90,691,l), (396,336,l), (-203,-23,l), (-213,-86,l) ); }, { closed = 1; nodes = ( (-492,-27,l), (-979,328,l), (-380,687,l), (-370,750,l), (-1027,357,l), (-1036,304,l), (-503,-86,l) ); }, { closed = 1; nodes = ( (-336,-110,l), (-195,780,l), (-245,780,l), (-386,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_colon.liga.glyph000066400000000000000000000011041472355150100317600ustar00rootroot00000000000000{ glyphname = less_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-465,0); ref = less; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-460,0); ref = less; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-460,0); ref = less; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_dollar.liga.glyph000066400000000000000000000053151472355150100321330ustar00rootroot00000000000000{ glyphname = less_dollar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (238,-140,l), (259,-9,l), (396,2,o), (497,86,o), (516,206,cs), (533,317,o), (472,400,o), (353,429,cs), (328,435,l), (356,606,l), (394,597,o), (412,572,o), (406,535,c), (556,535,l), (574,651,o), (505,728,o), (377,739,c), (398,870,l), (333,870,l), (312,739,l), (181,727,o), (89,647,o), (71,529,cs), (54,418,o), (111,337,o), (232,305,cs), (243,302,l), (214,121,l), (157,123,o), (110,125,o), (83,136,c), (-415,325,l), (-39,469,l), (-18,609,l), (-511,400,l), (-533,257,l), (16,24,ls), (58,6,o), (123,-6,o), (194,-9,c), (173,-140,l) ); }, { closed = 1; nodes = ( (316,351,l), (248,290,l), (330,298,o), (374,257,o), (365,199,cs), (358,157,o), (326,129,o), (279,122,c) ); }, { closed = 1; nodes = ( (320,444,l), (249,441,o), (212,475,o), (222,535,cs), (228,573,o), (253,598,o), (291,607,c), (256,387,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (254,-140,l), (275,-9,l), (393,3,o), (482,80,o), (499,190,cs), (515,287,o), (468,365,o), (379,395,cs), (341,408,l), (380,658,l), (439,648,o), (466,607,o), (456,545,c), (546,545,l), (562,654,o), (502,728,o), (393,739,c), (414,870,l), (354,870,l), (333,738,l), (219,727,o), (136,653,o), (119,546,cs), (104,449,o), (151,372,o), (243,344,cs), (269,336,l), (227,71,l), (155,73,o), (97,82,o), (42,108,c), (-436,327,l), (-39,503,l), (-25,595,l), (-489,380,l), (-505,280,l), (-3,42,ls), (62,11,o), (134,-6,o), (215,-9,c), (194,-140,l) ); }, { closed = 1; nodes = ( (326,317,l), (337,313,ls), (391,293,o), (418,248,o), (409,188,cs), (399,124,o), (354,82,o), (287,72,c) ); }, { closed = 1; nodes = ( (300,418,l), (232,433,o), (198,482,o), (210,550,cs), (219,610,o), (260,650,o), (320,658,c), (278,387,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (239,-140,l), (260,-9,l), (379,1,o), (462,70,o), (479,177,cs), (495,274,o), (447,351,o), (351,382,cs), (323,391,l), (371,694,l), (452,686,o), (491,632,o), (478,548,c), (528,548,l), (546,658,o), (486,732,o), (378,739,c), (399,870,l), (359,870,l), (338,739,l), (226,732,o), (146,664,o), (130,559,cs), (115,469,o), (163,393,o), (252,366,cs), (278,358,l), (227,35,l), (171,37,o), (111,48,o), (58,75,cs), (-449,330,l), (-46,525,l), (-37,580,l), (-493,353,l), (-500,307,l), (36,34,ls), (91,6,o), (158,-8,o), (219,-10,c), (199,-140,l) ); }, { closed = 1; nodes = ( (316,346,l), (333,341,ls), (406,320,o), (442,259,o), (429,177,cs), (417,101,o), (353,47,o), (267,37,c) ); }, { closed = 1; nodes = ( (271,408,ls), (201,434,o), (169,488,o), (180,563,cs), (192,639,o), (249,687,o), (331,694,c), (285,403,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_dollar_greater.liga.glyph000066400000000000000000000060751472355150100336500ustar00rootroot00000000000000{ glyphname = less_dollar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-331,-140,l), (-310,-9,l), (-173,2,o), (-72,86,o), (-53,206,cs), (-35,324,o), (-90,398,o), (-215,428,cs), (-240,434,l), (-213,608,l), (-183,605,o), (-157,602,o), (-131,589,c), (401,334,l), (25,190,l), (4,49,l), (497,258,l), (520,401,l), (-62,694,ls), (-106,716,o), (-153,732,o), (-192,737,c), (-171,870,l), (-236,870,l), (-257,739,l), (-388,727,o), (-480,647,o), (-498,529,cs), (-516,414,o), (-457,338,o), (-338,306,cs), (-327,303,l), (-355,121,l), (-412,123,o), (-459,124,o), (-486,135,c), (-985,324,l), (-609,468,l), (-588,609,l), (-1081,400,l), (-1103,257,l), (-553,24,ls), (-511,6,o), (-446,-6,o), (-375,-9,c), (-396,-140,l) ); }, { closed = 1; nodes = ( (-258,324,l), (-322,291,l), (-240,299,o), (-195,257,o), (-204,199,cs), (-211,157,o), (-243,129,o), (-290,122,c) ); }, { closed = 1; nodes = ( (-248,443,l), (-320,440,o), (-356,480,o), (-347,535,cs), (-341,573,o), (-316,598,o), (-278,607,c), (-308,414,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-331,-140,l), (-310,-9,l), (-192,3,o), (-103,80,o), (-86,190,cs), (-71,285,o), (-118,365,o), (-206,395,cs), (-244,408,l), (-205,658,l), (-172,653,o), (-136,645,o), (-96,623,c), (438,333,l), (40,157,l), (26,65,l), (490,280,l), (506,380,l), (-48,689,ls), (-94,715,o), (-147,732,o), (-192,737,c), (-171,870,l), (-231,870,l), (-252,737,l), (-366,726,o), (-449,653,o), (-466,546,cs), (-481,449,o), (-434,372,o), (-342,344,cs), (-316,336,l), (-358,71,l), (-430,73,o), (-488,82,o), (-543,108,c), (-1021,327,l), (-624,503,l), (-610,595,l), (-1074,380,l), (-1090,280,l), (-588,42,ls), (-523,11,o), (-451,-6,o), (-370,-9,c), (-391,-140,l) ); }, { closed = 1; nodes = ( (-259,317,l), (-248,313,ls), (-192,293,o), (-167,249,o), (-176,188,cs), (-186,124,o), (-231,82,o), (-298,72,c) ); }, { closed = 1; nodes = ( (-275,416,l), (-346,427,o), (-385,479,o), (-375,550,cs), (-366,607,o), (-323,649,o), (-265,658,c), (-307,389,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-346,-140,l), (-325,-9,l), (-203,-1,o), (-118,68,o), (-101,177,cs), (-86,271,o), (-134,348,o), (-229,382,cs), (-261,393,l), (-214,693,l), (-179,690,o), (-146,681,o), (-114,662,cs), (446,332,l), (42,136,l), (34,80,l), (490,307,l), (497,353,l), (-84,699,ls), (-123,722,o), (-164,736,o), (-207,739,c), (-186,870,l), (-226,870,l), (-247,739,l), (-355,731,o), (-434,662,o), (-450,559,cs), (-465,468,o), (-420,396,o), (-328,366,cs), (-307,359,l), (-358,35,l), (-413,37,o), (-471,48,o), (-522,74,cs), (-1030,328,l), (-626,524,l), (-617,580,l), (-1073,353,l), (-1080,307,l), (-544,34,ls), (-491,7,o), (-425,-8,o), (-366,-10,c), (-386,-140,l) ); }, { closed = 1; nodes = ( (-268,348,l), (-247,341,ls), (-175,317,o), (-139,256,o), (-151,177,cs), (-163,99,o), (-229,45,o), (-318,36,c) ); }, { closed = 1; nodes = ( (-309,408,ls), (-378,428,o), (-412,486,o), (-400,563,cs), (-388,637,o), (-332,686,o), (-254,693,c), (-299,405,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_equal.liga.glyph000066400000000000000000000022621472355150100317630ustar00rootroot00000000000000{ glyphname = less_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,283,l), (-99,411,ls), (-126,419,o), (-166,421,o), (-189,420,c), (-187,430,l), (-165,429,o), (-124,430,o), (-95,438,cs), (350,560,l), (372,700,l), (-270,498,l), (-293,351,l), (285,150,l) ); }, { closed = 1; nodes = ( (268,47,l), (-310,248,l), (-330,121,l), (248,-80,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (299,240,l), (-164,411,ls), (-186,419,o), (-207,423,o), (-217,423,c), (-216,430,l), (-206,431,o), (-183,435,o), (-159,443,cs), (358,611,l), (372,700,l), (-274,475,l), (-290,375,l), (285,150,l) ); }, { closed = 1; nodes = ( (263,11,l), (-311,237,l), (-325,152,l), (249,-74,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (277,226,l), (-127,394,ls), (-153,405,o), (-185,416,o), (-202,421,c), (-201,426,l), (-182,431,o), (-148,441,o), (-118,452,cs), (339,617,l), (348,676,l), (-247,453,l), (-256,398,l), (269,174,l) ); }, { closed = 1; nodes = ( (244,19,l), (-281,239,l), (-289,187,l), (236,-33,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_equal_bar.liga.glyph000066400000000000000000000022501472355150100326040ustar00rootroot00000000000000{ glyphname = less_equal_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-777,35,l), (-835,135,l), (307,135,l), (292,35,l), (442,35,l), (535,625,l), (385,625,l), (369,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); }, { closed = 1; nodes = ( (-944,327,l), (-891,385,l), (347,385,l), (330,275,l), (-916,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-916,170,l), (363,170,l), (342,35,l), (432,35,l), (525,625,l), (435,625,l), (414,490,l), (-857,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); }, { closed = 1; nodes = ( (-1013,326,l), (-934,410,l), (401,410,l), (376,250,l), (-966,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-962,195,l), (397,195,l), (372,35,l), (422,35,l), (515,625,l), (465,625,l), (440,466,l), (-910,466,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); }, { closed = 1; nodes = ( (-1049,328,l), (-955,421,l), (433,421,l), (404,240,l), (-992,240,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_equal_equal.liga.glyph000066400000000000000000000016751472355150100331610ustar00rootroot00000000000000{ glyphname = less_equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-776,35,l), (-834,135,l), (497,135,l), (520,275,l), (-914,275,l), (-942,326,l), (-890,385,l), (537,385,l), (559,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-916,170,l), (498,170,l), (511,250,l), (-966,250,l), (-1013,326,l), (-934,410,l), (536,410,l), (549,490,l), (-857,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-961,195,l), (492,195,l), (499,240,l), (-991,240,l), (-1050,327,l), (-956,421,l), (528,421,l), (535,466,l), (-911,466,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); } less_equal_equal_greater.liga.glyph000066400000000000000000000024301472355150100346010ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = less_equal_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1377,35,l), (-1436,135,l), (181,135,l), (89,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-1364,525,l), (-1273,625,l), (-1454,625,l), (-1722,330,l), (-1548,35,l) ); }, { closed = 1; nodes = ( (-1543,326,l), (-1490,385,l), (332,385,l), (362,333,l), (308,275,l), (-1516,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1431,35,l), (-1516,170,l), (274,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-1457,490,l), (-1328,625,l), (-1438,625,l), (-1717,330,l), (-1532,35,l) ); }, { closed = 1; nodes = ( (-1611,326,l), (-1534,410,l), (383,410,l), (431,334,l), (351,250,l), (-1566,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1443,35,l), (-1551,195,l), (328,195,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-1501,466,l), (-1343,625,l), (-1405,625,l), (-1697,330,l), (-1499,35,l) ); }, { closed = 1; nodes = ( (-1638,327,l), (-1546,421,l), (405,421,l), (462,333,l), (373,240,l), (-1581,240,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_equal_greater.liga.glyph000066400000000000000000000023711472355150100334750ustar00rootroot00000000000000{ glyphname = less_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-777,35,l), (-835,135,l), (181,135,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); }, { closed = 1; nodes = ( (-943,326,l), (-890,385,l), (333,385,l), (363,333,l), (308,275,l), (-915,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-917,170,l), (274,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-856,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); }, { closed = 1; nodes = ( (-1014,325,l), (-933,410,l), (383,410,l), (431,333,l), (351,250,l), (-967,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-960,195,l), (327,195,l), (169,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (374,466,l), (-910,466,l), (-752,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); }, { closed = 1; nodes = ( (-1048,326,l), (-955,421,l), (404,421,l), (460,333,l), (371,240,l), (-990,240,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_equal_less.liga.glyph000066400000000000000000000023671472355150100330170ustar00rootroot00000000000000{ glyphname = less_equal_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-777,35,l), (-836,135,l), (235,135,l), (295,35,l), (466,35,l), (299,326,l), (570,625,l), (389,625,l), (298,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); }, { closed = 1; nodes = ( (-945,326,l), (-891,385,l), (171,385,l), (121,330,l), (154,275,l), (-917,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-916,170,l), (271,170,l), (356,35,l), (457,35,l), (276,326,l), (560,625,l), (450,625,l), (323,490,l), (-857,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); }, { closed = 1; nodes = ( (-1013,327,l), (-934,410,l), (247,410,l), (171,330,l), (222,250,l), (-966,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-961,195,l), (290,195,l), (397,35,l), (453,35,l), (259,326,l), (553,625,l), (491,625,l), (334,466,l), (-911,466,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); }, { closed = 1; nodes = ( (-1049,326,l), (-956,421,l), (290,421,l), (199,330,l), (259,240,l), (-991,240,l) ); } ); width = 600; } ); } less_exclam_hyphen_hyphen.liga.glyph000066400000000000000000000031031472355150100347670ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = less_exclam_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1371,35,l), (-1494,246,ls), (-1526,301,o), (-1542,327,o), (-1546,331,c), (-1542,335,o), (-1518,361,o), (-1468,415,cs), (-1278,625,l), (-1454,625,l), (-1722,330,l), (-1548,35,l) ); }, { closed = 1; nodes = ( (-1113,260,l), (-1091,400,l), (-1581,400,l), (-1603,260,l) ); }, { closed = 1; nodes = ( (517,260,l), (539,400,l), (-671,400,l), (-693,260,l) ); }, { alignment = -1; pos = (-1244,0); ref = exclam; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1426,35,l), (-1575,270,ls), (-1598,304,o), (-1612,325,o), (-1616,331,c), (-1610,337,o), (-1591,355,o), (-1561,386,cs), (-1333,625,l), (-1438,625,l), (-1717,330,l), (-1532,35,l) ); }, { closed = 1; nodes = ( (-1098,290,l), (-1085,370,l), (-1630,370,l), (-1643,290,l) ); }, { closed = 1; nodes = ( (517,290,l), (530,370,l), (-685,370,l), (-698,290,l) ); }, { alignment = -1; pos = (-1244,0); ref = exclam; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1440,35,l), (-1600,271,ls), (-1623,305,o), (-1638,324,o), (-1642,330,c), (-1634,336,o), (-1613,356,o), (-1582,387,cs), (-1346,625,l), (-1405,625,l), (-1697,330,l), (-1499,35,l) ); }, { closed = 1; nodes = ( (-1095,308,l), (-1088,353,l), (-1658,353,l), (-1665,308,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,353,l), (-688,353,l), (-695,308,l) ); }, { alignment = -1; pos = (-1244,0); ref = exclam; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_greater.liga.glyph000066400000000000000000000025101472355150100323010ustar00rootroot00000000000000{ glyphname = less_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,258,l), (480,401,l), (57,640,l), (-440,401,l), (-463,258,l), (-41,20,l) ); }, { closed = 1; nodes = ( (-273,304,ls), (-297,318,o), (-325,327,o), (-339,330,c), (-324,331,o), (-293,339,o), (-265,353,cs), (38,504,l), (289,355,ls), (313,341,o), (341,333,o), (356,331,c), (341,330,o), (311,323,o), (281,308,cs), (-25,157,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (460,280,l), (476,380,l), (54,620,l), (-444,380,l), (-460,280,l), (-38,40,l) ); }, { closed = 1; nodes = ( (-326,306,ls), (-348,319,o), (-365,326,o), (-371,328,c), (-364,330,o), (-345,338,o), (-319,350,cs), (46,526,l), (352,354,ls), (374,341,o), (388,335,o), (394,333,c), (389,330,o), (371,322,o), (343,309,cs), (-27,135,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (454,300,l), (463,360,l), (54,620,l), (-437,360,l), (-446,300,l), (-38,40,l) ); }, { closed = 1; nodes = ( (-354,302,ls), (-375,315,o), (-394,325,o), (-403,328,c), (-393,332,o), (-370,343,o), (-345,356,cs), (49,564,l), (373,361,ls), (394,348,o), (414,336,o), (423,331,c), (413,326,o), (389,314,o), (361,300,cs), (-30,97,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_hyphen.liga.glyph000066400000000000000000000013461472355150100321510ustar00rootroot00000000000000{ glyphname = less_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-176,35,l), (-307,260,l), (497,260,l), (519,400,l), (-277,400,l), (-73,625,l), (-254,625,l), (-522,330,l), (-348,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-231,35,l), (-393,290,l), (502,290,l), (515,370,l), (-371,370,l), (-128,625,l), (-238,625,l), (-517,330,l), (-332,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-253,35,l), (-437,307,l), (510,307,l), (517,352,l), (-424,352,l), (-153,625,l), (-215,625,l), (-507,330,l), (-309,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_hyphen_bar.liga.glyph000066400000000000000000000016061472355150100327740ustar00rootroot00000000000000{ glyphname = less_hyphen_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-882,400,l), (-678,625,l), (-854,625,l), (-1122,330,l), (-948,35,l), (-771,35,l), (-902,260,l), (327,260,l), (292,35,l), (442,35,l), (535,625,l), (385,625,l), (349,400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-976,370,l), (-733,625,l), (-838,625,l), (-1117,330,l), (-932,35,l), (-826,35,l), (-988,290,l), (382,290,l), (342,35,l), (432,35,l), (525,625,l), (435,625,l), (395,370,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1026,353,l), (-756,625,l), (-815,625,l), (-1107,330,l), (-909,35,l), (-850,35,l), (-1035,308,l), (415,308,l), (372,35,l), (422,35,l), (515,625,l), (465,625,l), (422,353,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_hyphen_greater.liga.glyph000066400000000000000000000016601472355150100336610ustar00rootroot00000000000000{ glyphname = less_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-776,35,l), (-907,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (194,625,l), (324,400,l), (-876,400,l), (-672,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-993,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (411,370,l), (-971,370,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-1038,308,l), (440,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (451,353,l), (-1023,353,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_hyphen_hyphen.liga.glyph000066400000000000000000000017711472355150100335260ustar00rootroot00000000000000{ glyphname = less_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-771,35,l), (-894,246,ls), (-897,251,o), (-899,256,o), (-902,260,c), (517,260,l), (539,400,l), (-882,400,l), (-878,405,o), (-873,410,o), (-868,415,cs), (-678,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-826,35,l), (-975,270,ls), (-982,279,o), (-987,288,o), (-992,295,c), (518,295,l), (530,370,l), (-976,370,l), (-972,375,o), (-966,381,o), (-961,386,c), (-733,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-850,35,l), (-1010,271,ls), (-1021,286,o), (-1029,299,o), (-1035,308,c), (510,308,l), (517,353,l), (-1026,353,l), (-1017,362,o), (-1005,373,o), (-992,387,cs), (-756,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_hyphen_less.liga.glyph000066400000000000000000000016561472355150100332030ustar00rootroot00000000000000{ glyphname = less_hyphen_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-776,35,l), (-907,260,l), (162,260,l), (295,35,l), (467,35,l), (304,324,l), (570,625,l), (389,625,l), (184,400,l), (-877,400,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-993,290,l), (196,290,l), (356,35,l), (457,35,l), (281,326,l), (560,625,l), (450,625,l), (209,370,l), (-971,370,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-1038,308,l), (214,308,l), (397,35,l), (453,35,l), (259,326,l), (553,625,l), (491,625,l), (222,353,l), (-1023,353,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_less.liga.glyph000066400000000000000000000011031472355150100316130ustar00rootroot00000000000000{ glyphname = less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-526,0); ref = less; }, { alignment = -1; pos = (-45,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-526,0); ref = less; }, { alignment = -1; pos = (-45,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-526,0); ref = less; }, { alignment = -1; pos = (-45,0); ref = less; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_less_asciitilde.liga.glyph000066400000000000000000000052061472355150100340150ustar00rootroot00000000000000{ glyphname = less_less_asciitilde.liga; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-572,35,l), (-769,328,l), (-714,383,l), (-633,383,ls), (-543,383,o), (-555,240,o), (-440,240,cs), (-325,240,o), (-288,383,o), (-203,383,cs), (-113,383,o), (-125,240,o), (-10,240,cs), (105,240,o), (142,383,o), (227,383,cs), (312,383,o), (300,240,o), (420,240,cs), (483,240,o), (526,281,o), (537,350,cs), (545,400,l), (500,400,l), (492,350,ls), (485,307,o), (461,282,o), (426,282,cs), (337,282,o), (349,425,o), (234,425,cs), (119,425,o), (81,282,o), (-4,282,cs), (-89,282,o), (-76,425,o), (-196,425,cs), (-311,425,o), (-349,282,o), (-434,282,cs), (-519,282,o), (-506,425,o), (-626,425,cs), (-672,425,l), (-473,625,l), (-534,625,l), (-826,330,l), (-629,35,l) ); }, { closed = 1; nodes = ( (-852,35,l), (-1048,328,l), (-753,625,l), (-814,625,l), (-1106,330,l), (-909,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-530,35,l), (-715,327,l), (-684,359,l), (-597,359,ls), (-527,359,o), (-543,229,o), (-418,229,cs), (-293,229,o), (-267,359,o), (-197,359,cs), (-127,359,o), (-138,229,o), (-13,229,cs), (112,229,o), (145,359,o), (215,359,cs), (285,359,o), (267,229,o), (392,229,cs), (470,229,o), (531,282,o), (543,359,cs), (549,399,l), (464,399,l), (458,359,ls), (453,323,o), (432,304,o), (402,304,cs), (334,304,o), (349,434,o), (224,434,cs), (99,434,o), (69,304,o), (-1,304,cs), (-69,304,o), (-61,434,o), (-186,434,cs), (-311,434,o), (-336,304,o), (-406,304,cs), (-476,304,o), (-461,434,o), (-586,434,cs), (-613,434,l), (-430,625,l), (-538,625,l), (-817,330,l), (-633,35,l) ); }, { closed = 1; nodes = ( (-830,35,l), (-1014,327,l), (-730,625,l), (-838,625,l), (-1117,330,l), (-933,35,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-455,35,l), (-627,325,l), (-622,331,l), (-566,330,ls), (-511,330,o), (-507,230,o), (-387,230,cs), (-267,230,o), (-231,330,o), (-176,330,cs), (-121,330,o), (-117,230,o), (3,230,cs), (123,230,o), (159,330,o), (214,330,cs), (269,330,o), (273,230,o), (383,230,cs), (467,230,o), (531,280,o), (543,355,cs), (550,400,l), (440,400,l), (435,368,ls), (431,345,o), (416,330,o), (389,330,cs), (334,330,o), (350,430,o), (230,430,cs), (110,430,o), (74,330,o), (19,330,cs), (-36,330,o), (-50,430,o), (-160,430,cs), (-280,430,o), (-316,330,o), (-371,330,cs), (-435,330,o), (-443,465,o), (-611,421,c), (-578,379,l), (-353,625,l), (-533,625,l), (-801,330,l), (-628,35,l) ); }, { closed = 1; nodes = ( (-775,35,l), (-945,325,l), (-673,625,l), (-853,625,l), (-1121,330,l), (-948,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_less_equal.liga.glyph000066400000000000000000000024111472355150100330050ustar00rootroot00000000000000{ glyphname = less_less_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-456,35,l), (-515,135,l), (497,135,l), (520,275,l), (-596,275,l), (-626,326,l), (-571,385,l), (537,385,l), (559,525,l), (-444,525,l), (-353,625,l), (-534,625,l), (-802,330,l), (-628,35,l) ); }, { closed = 1; nodes = ( (-776,35,l), (-944,326,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-531,35,l), (-618,170,l), (458,170,l), (471,250,l), (-668,250,l), (-713,326,l), (-632,410,l), (496,410,l), (509,490,l), (-555,490,l), (-428,625,l), (-538,625,l), (-817,330,l), (-632,35,l) ); }, { closed = 1; nodes = ( (-831,35,l), (-1012,326,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-574,35,l), (-682,195,l), (492,195,l), (499,240,l), (-712,240,l), (-769,326,l), (-676,421,l), (528,421,l), (535,466,l), (-631,466,l), (-473,625,l), (-532,625,l), (-827,330,l), (-629,35,l) ); }, { closed = 1; nodes = ( (-853,35,l), (-1048,326,l), (-752,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_less_hyphen.liga.glyph000066400000000000000000000020761472355150100332000ustar00rootroot00000000000000{ glyphname = less_less_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-456,35,l), (-587,260,l), (517,260,l), (539,400,l), (-557,400,l), (-353,625,l), (-534,625,l), (-802,330,l), (-628,35,l) ); }, { closed = 1; nodes = ( (-776,35,l), (-944,325,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-531,35,l), (-697,295,l), (518,295,l), (530,370,l), (-671,370,l), (-428,625,l), (-538,625,l), (-817,330,l), (-632,35,l) ); }, { closed = 1; nodes = ( (-831,35,l), (-1015,326,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-573,35,l), (-758,308,l), (510,308,l), (517,353,l), (-743,353,l), (-473,625,l), (-535,625,l), (-827,330,l), (-629,35,l) ); }, { closed = 1; nodes = ( (-853,35,l), (-1049,327,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_less_less.liga.glyph000066400000000000000000000013361472355150100326510ustar00rootroot00000000000000{ glyphname = less_less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1120,0); ref = less; }, { alignment = -1; pos = (-595,0); ref = less; }, { alignment = -1; pos = (-70,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1120,0); ref = less; }, { alignment = -1; pos = (-595,0); ref = less; }, { alignment = -1; pos = (-70,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1120,0); ref = less; }, { alignment = -1; pos = (-595,0); ref = less; }, { alignment = -1; pos = (-70,0); ref = less; } ); width = 600; } ); } less_numbersign_hyphen_hyphen.liga.glyph000066400000000000000000000022731472355150100356760ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = less_numbersign_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1376,35,l), (-1507,260,l), (-1233,260,l), (-1211,400,l), (-1477,400,l), (-1273,625,l), (-1454,625,l), (-1722,330,l), (-1548,35,l) ); }, { closed = 1; nodes = ( (517,260,l), (539,400,l), (-541,400,l), (-563,260,l) ); }, { alignment = -1; pos = (-1200,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1430,35,l), (-1592,290,l), (-1228,290,l), (-1215,370,l), (-1572,370,l), (-1329,625,l), (-1438,625,l), (-1717,330,l), (-1532,35,l) ); }, { closed = 1; nodes = ( (517,290,l), (530,370,l), (-545,370,l), (-558,290,l) ); }, { alignment = -1; pos = (-1200,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1443,35,l), (-1628,308,l), (-1225,308,l), (-1218,353,l), (-1613,353,l), (-1343,625,l), (-1405,625,l), (-1697,330,l), (-1499,35,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,353,l), (-548,353,l), (-555,308,l) ); }, { alignment = -1; pos = (-1200,0); ref = numbersign; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_plus.liga.glyph000066400000000000000000000017251472355150100316420ustar00rootroot00000000000000{ glyphname = less_plus.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (303,45,l), (337,260,l), (547,260,l), (569,400,l), (359,400,l), (393,615,l), (243,615,l), (209,400,l), (-1,400,l), (-23,260,l), (187,260,l), (153,45,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (272,45,l), (311,290,l), (552,290,l), (565,370,l), (324,370,l), (362,615,l), (274,615,l), (236,370,l), (-5,370,l), (-18,290,l), (223,290,l), (184,45,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (236,60,l), (275,310,l), (515,310,l), (522,355,l), (282,355,l), (322,605,l), (272,605,l), (232,355,l), (-8,355,l), (-15,310,l), (225,310,l), (186,60,l) ); }, { alignment = -1; pos = (-610,0); ref = less; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_plus_greater.liga.glyph000066400000000000000000000022261472355150100333500ustar00rootroot00000000000000{ glyphname = less_plus_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-252,45,l), (-218,260,l), (-8,260,l), (14,400,l), (-196,400,l), (-162,615,l), (-312,615,l), (-346,400,l), (-556,400,l), (-578,260,l), (-368,260,l), (-402,45,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-293,45,l), (-254,290,l), (-13,290,l), (0,370,l), (-241,370,l), (-203,615,l), (-291,615,l), (-329,370,l), (-570,370,l), (-583,290,l), (-342,290,l), (-381,45,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-309,60,l), (-270,310,l), (-30,310,l), (-23,355,l), (-263,355,l), (-223,605,l), (-273,605,l), (-313,355,l), (-553,355,l), (-560,310,l), (-320,310,l), (-359,60,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_slash.liga.glyph000066400000000000000000000014361472355150100317700ustar00rootroot00000000000000{ glyphname = less_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (107,-110,l), (597,830,l), (439,830,l), (70,125,l), (-367,326,l), (7,469,l), (28,609,l), (-465,400,l), (-487,257,l), (13,12,l), (-51,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (74,-110,l), (577,830,l), (482,830,l), (77,73,l), (-393,327,l), (-4,500,l), (10,595,l), (-454,380,l), (-470,280,l), (39,3,l), (-21,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (55,-110,l), (559,830,l), (501,830,l), (79,43,l), (-414,328,l), (-11,524,l), (-2,580,l), (-458,353,l), (-465,307,l), (57,3,l), (-3,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/less_slash_greater.liga.glyph000066400000000000000000000021341472355150100334750ustar00rootroot00000000000000{ glyphname = less_slash_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-454,-110,l), (-111,546,l), (347,333,l), (-25,189,l), (-46,49,l), (447,258,l), (470,401,l), (-52,660,l), (37,830,l), (-120,830,l), (-489,125,l), (-932,325,l), (-559,469,l), (-538,609,l), (-1031,400,l), (-1053,257,l), (-547,12,l), (-611,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,-110,l), (-114,597,l), (384,333,l), (-15,157,l), (-29,65,l), (435,280,l), (451,380,l), (-74,667,l), (12,830,l), (-83,830,l), (-488,73,l), (-958,327,l), (-569,500,l), (-555,595,l), (-1019,380,l), (-1035,280,l), (-526,3,l), (-586,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-510,-110,l), (-115,628,l), (390,332,l), (-13,136,l), (-21,80,l), (435,307,l), (442,353,l), (-92,668,l), (-6,830,l), (-64,830,l), (-486,43,l), (-974,328,l), (-571,524,l), (-562,580,l), (-1018,353,l), (-1025,307,l), (-508,3,l), (-568,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lessequal.glyph000066400000000000000000000012331472355150100307060ustar00rootroot00000000000000{ glyphname = lessequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (508,140,l), (48,140,l), (26,0,l) ); }, { alignment = -1; pos = (20,125); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (471,0,l), (484,80,l), (54,80,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (471,0,l), (479,50,l), (49,50,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = less; } ); width = 600; } ); unicode = 8804; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lessorequivalent.glyph000066400000000000000000000025451472355150100323240ustar00rootroot00000000000000{ glyphname = lessorequivalent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,0,l), (90,18,ls), (96,58,o), (125,83,o), (165,83,cs), (238,83,o), (276,0,o), (362,0,cs), (424,0,o), (479,44,o), (489,110,cs), (492,125,l), (447,125,l), (444,107,ls), (438,67,o), (409,42,o), (369,42,cs), (296,42,o), (263,125,o), (172,125,cs), (106,125,o), (55,81,o), (44,15,cs), (42,0,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (107,0,l), (111,23,ls), (115,52,o), (136,70,o), (165,70,cs), (222,70,o), (269,0,o), (362,0,cs), (441,0,o), (500,51,o), (513,130,cs), (515,145,l), (430,145,l), (426,122,ls), (422,93,o), (401,75,o), (372,75,cs), (314,75,o), (267,145,o), (175,145,cs), (96,145,o), (37,94,o), (24,15,cs), (22,0,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (142,0,l), (144,15,ls), (148,41,o), (165,55,o), (191,55,cs), (240,55,o), (251,-5,o), (336,-5,cs), (430,-5,o), (501,56,o), (516,150,cs), (518,165,l), (398,165,l), (396,150,ls), (391,124,o), (375,110,o), (349,110,cs), (300,110,o), (289,170,o), (204,170,cs), (110,170,o), (39,109,o), (24,15,cs), (22,0,l) ); }, { pos = (20,125); ref = less; } ); width = 600; } ); unicode = 8818; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lineF_eed-control.glyph000066400000000000000000000013111472355150100322350ustar00rootroot00000000000000{ glyphname = "lineFeed-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9226; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/literS_ign.glyph000066400000000000000000000035251472355150100310150ustar00rootroot00000000000000{ glyphname = literSign; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (467,49,o), (496,93,c), (396,170,l), (383,151,o), (353,125,o), (321,125,cs), (287,125,o), (269,146,o), (275,180,cs), (334,555,ls), (339,590,o), (359,610,o), (388,610,cs), (417,610,o), (429,590,o), (424,555,cs), (414,490,ls), (407,450,o), (376,417,o), (328,399,cs), (38,295,l), (62,181,l), (355,287,ls), (464,326,o), (540,404,o), (554,490,cs), (564,555,ls), (581,666,o), (519,740,o), (408,740,cs), (291,740,o), (201,666,o), (184,555,cs), (125,180,ls), (106,62,o), (181,-10,o), (299,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (379,0,o), (446,58,o), (472,101,c), (411,143,l), (392,117,o), (351,82,o), (306,82,cs), (258,82,o), (234,111,o), (241,160,cs), (309,585,ls), (316,631,o), (346,658,o), (390,658,cs), (435,658,o), (456,632,o), (449,585,cs), (435,500,ls), (426,442,o), (388,398,o), (329,377,cs), (72,288,l), (89,207,l), (344,299,ls), (443,334,o), (511,410,o), (525,500,cs), (539,585,ls), (554,679,o), (500,740,o), (403,740,cs), (307,740,o), (233,678,o), (219,585,cs), (151,160,ls), (136,62,o), (190,0,o), (293,0,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (369,0,o), (436,61,o), (461,107,c), (424,126,l), (405,91,o), (357,45,o), (291,45,cs), (233,45,o), (205,90,o), (216,155,cs), (285,595,ls), (295,657,o), (337,695,o), (396,695,cs), (455,695,o), (485,658,o), (475,595,cs), (459,490,ls), (450,435,o), (408,389,o), (344,367,cs), (73,273,l), (83,231,l), (353,327,ls), (441,358,o), (497,419,o), (509,490,cs), (525,595,ls), (539,685,o), (493,740,o), (403,740,cs), (313,740,o), (249,685,o), (235,595,cs), (166,155,ls), (150,58,o), (192,0,o), (284,0,cs) ); } ); width = 600; } ); unicode = 8467; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lje-cy.glyph000066400000000000000000000033561472355150100301030ustar00rootroot00000000000000{ glyphname = "lje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-21,-5,ls), (83,-5,o), (163,75,o), (185,200,cs), (226,440,l), (304,440,l), (234,0,l), (384,0,ls), (484,0,o), (560,59,o), (575,150,cs), (585,216,ls), (601,313,o), (542,375,o), (442,375,cs), (407,375,l), (435,550,l), (122,550,l), (62,205,ls), (52,145,o), (24,110,o), (-13,110,cs), (-33,110,l), (-51,-5,l) ); }, { closed = 1; nodes = ( (390,264,l), (425,264,ls), (452,264,o), (467,245,o), (462,217,cs), (452,151,ls), (448,126,o), (427,110,o), (400,110,cs), (365,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-25,-5,ls), (61,-5,o), (126,73,o), (146,194,cs), (193,473,l), (316,473,l), (241,0,l), (381,0,ls), (477,0,o), (551,62,o), (565,154,cs), (572,196,ls), (587,288,o), (532,350,o), (436,350,cs), (376,350,l), (408,550,l), (126,550,l), (66,194,ls), (54,125,o), (25,80,o), (-8,80,cs), (-26,80,l), (-40,-5,l) ); }, { closed = 1; nodes = ( (365,276,l), (425,276,ls), (473,276,o), (500,244,o), (492,196,cs), (485,154,ls), (478,106,o), (441,74,o), (393,74,cs), (333,74,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-20,-5,ls), (53,-5,o), (107,59,o), (127,169,cs), (187,505,l), (339,505,l), (259,0,l), (366,0,ls), (462,0,o), (530,57,o), (545,150,cs), (551,190,ls), (566,283,o), (516,340,o), (420,340,cs), (361,340,l), (394,550,l), (146,550,l), (80,169,ls), (65,90,o), (32,45,o), (-12,45,cs), (-32,45,l), (-40,-5,l) ); }, { closed = 1; nodes = ( (354,295,l), (413,295,ls), (480,295,o), (514,256,o), (503,190,cs), (497,150,ls), (486,84,o), (440,45,o), (373,45,cs), (314,45,l) ); } ); width = 600; } ); unicode = 1113; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/logicaland.glyph000066400000000000000000000012041472355150100310030ustar00rootroot00000000000000{ glyphname = logicaland; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,50,l), (322,424,l), (386,50,l), (537,50,l), (436,550,l), (248,550,l), (-9,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,50,l), (332,481,l), (415,50,l), (504,50,l), (404,550,l), (282,550,l), (24,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (94,50,l), (339,509,l), (438,50,l), (488,50,l), (374,550,l), (312,550,l), (40,50,l) ); } ); width = 600; } ); unicode = 8743; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/logicalnot.glyph000066400000000000000000000011461472355150100310460ustar00rootroot00000000000000{ glyphname = logicalnot; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (514,175,l), (557,450,l), (97,450,l), (75,310,l), (385,310,l), (364,175,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (518,205,l), (552,415,l), (92,415,l), (79,335,l), (454,335,l), (433,205,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (520,215,l), (549,400,l), (89,400,l), (82,355,l), (492,355,l), (470,215,l) ); } ); width = 600; } ); unicode = 172; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/logicalor.glyph000066400000000000000000000012131472355150100306610ustar00rootroot00000000000000{ glyphname = logicalor; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (359,50,l), (616,550,l), (460,550,l), (286,177,l), (222,550,l), (70,550,l), (171,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (325,50,l), (583,550,l), (489,550,l), (275,119,l), (192,550,l), (103,550,l), (203,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (295,50,l), (567,550,l), (514,550,l), (271,94,l), (169,550,l), (119,550,l), (233,50,l) ); } ); width = 600; } ); unicode = 8744; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/longs.glyph000066400000000000000000000022351472355150100300350ustar00rootroot00000000000000{ glyphname = longs; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (43,-180,ls), (184,-180,o), (284,-106,o), (303,14,c), (389,555,l), (393,582,o), (414,600,o), (441,600,cs), (597,600,l), (618,730,l), (457,730,ls), (343,730,o), (256,662,o), (240,560,c), (154,19,l), (146,-31,o), (110,-60,o), (57,-60,cs), (-41,-60,l), (-60,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (65,-180,ls), (173,-180,o), (248,-119,o), (263,-20,c), (356,570,l), (364,623,o), (394,648,o), (450,648,cs), (625,648,l), (638,730,l), (464,730,ls), (356,730,o), (281,669,o), (266,570,c), (173,-20,l), (165,-73,o), (135,-98,o), (79,-98,cs), (-34,-98,l), (-47,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,ls), (168,-180,o), (225,-133,o), (237,-55,c), (342,605,l), (350,656,o), (383,685,o), (434,685,cs), (587,685,l), (595,730,l), (442,730,ls), (361,730,o), (305,683,o), (292,605,c), (187,-55,l), (179,-106,o), (146,-135,o), (95,-135,cs), (-18,-135,l), (-26,-180,l) ); } ); width = 600; } ); unicode = 383; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerF_iveE_ighthsB_lock.glyph000066400000000000000000000010441472355150100335760ustar00rootroot00000000000000{ glyphname = lowerFiveEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,525,l), (0,525,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,525,l), (0,525,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,525,l), (0,525,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9605; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerH_alfB_lock.glyph000066400000000000000000000010351472355150100321040ustar00rootroot00000000000000{ glyphname = lowerHalfBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9604; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerL_eftB_lock.glyph000066400000000000000000000010351472355150100321240ustar00rootroot00000000000000{ glyphname = lowerLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9622; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerO_neE_ighthB_lock.glyph000066400000000000000000000010501472355150100332400ustar00rootroot00000000000000{ glyphname = lowerOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,-135,l), (0,-135,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,-135,l), (0,-135,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,-135,l), (0,-135,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9601; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerO_neQ_uarterB_lock.glyph000066400000000000000000000010351472355150100334560ustar00rootroot00000000000000{ glyphname = lowerOneQuarterBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,30,l), (0,30,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,30,l), (0,30,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,30,l), (0,30,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9602; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerR_ightB_lock.glyph000066400000000000000000000010521472355150100323060ustar00rootroot00000000000000{ glyphname = lowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9623; } lowerR_ightD_iagonalH_alfB_lackS_quare.glyph000066400000000000000000000013521472355150100362640ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = lowerRightDiagonalHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (0,660,l), (0,60,l), (600,60,l), (600,660,l) ); }, { closed = 1; nodes = ( (50,110,l), (50,610,l), (550,610,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (0,660,l), (0,60,l), (600,60,l), (600,660,l) ); }, { closed = 1; nodes = ( (50,110,l), (50,610,l), (550,610,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (0,660,l), (0,60,l), (600,60,l), (600,660,l) ); }, { closed = 1; nodes = ( (50,110,l), (50,610,l), (550,610,l) ); } ); width = 600; } ); unicode = 9706; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerS_evenE_ighthsB_lock.glyph000066400000000000000000000010451472355150100337660ustar00rootroot00000000000000{ glyphname = lowerSevenEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,855,l), (0,855,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,855,l), (0,855,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,855,l), (0,855,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9607; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowerT_hreeE_ighthsB_lock.glyph000066400000000000000000000010451472355150100337550ustar00rootroot00000000000000{ glyphname = lowerThreeEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,195,l), (0,195,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,195,l), (0,195,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,195,l), (0,195,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9603; } lowerT_hreeQ_uartersB_lock.glyph000066400000000000000000000010461472355150100341120ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = lowerThreeQuartersBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,690,l), (0,690,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,690,l), (0,690,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,690,l), (0,690,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9606; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowernumeral-greek.glyph000066400000000000000000000005531472355150100325230ustar00rootroot00000000000000{ glyphname = "lowernumeral-greek"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = comma; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = comma; } ); width = 600; } ); unicode = 885; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowringmod.glyph000066400000000000000000000007061472355150100310750ustar00rootroot00000000000000{ glyphname = lowringmod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ringbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = ringbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = ringbelowcomb; } ); width = 600; } ); unicode = 755; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lowtildemod.glyph000066400000000000000000000030221472355150100312310ustar00rootroot00000000000000{ glyphname = lowtildemod; layers = ( { anchors = ( { name = _top; pos = (300,-310); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (436,-240,o), (480,-189,o), (480,-120,cs), (480,-85,l), (395,-85,l), (395,-112,ls), (395,-129,o), (383,-140,o), (365,-140,cs), (325,-140,o), (315,-80,o), (230,-80,cs), (164,-80,o), (120,-131,o), (120,-200,cs), (120,-235,l), (205,-235,l), (205,-213,ls), (205,-193,o), (217,-180,o), (235,-180,cs), (275,-180,o), (285,-240,o), (370,-240,cs) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (300,-295); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (424,-210,o), (460,-175,o), (460,-115,cs), (460,-85,l), (395,-85,l), (395,-115,ls), (395,-139,o), (383,-150,o), (365,-150,cs), (320,-150,o), (310,-80,o), (230,-80,cs), (176,-80,o), (140,-115,o), (140,-175,cs), (140,-205,l), (205,-205,l), (205,-175,ls), (205,-151,o), (217,-140,o), (235,-140,cs), (280,-140,o), (290,-210,o), (370,-210,cs) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (300,-295); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (428,-210,o), (460,-176,o), (460,-120,cs), (460,-85,l), (420,-85,l), (420,-120,ls), (420,-151,o), (403,-171,o), (375,-171,cs), (326,-171,o), (305,-80,o), (230,-80,cs), (174,-80,o), (140,-114,o), (140,-170,cs), (140,-205,l), (180,-205,l), (180,-170,ls), (180,-139,o), (199,-119,o), (230,-119,cs), (279,-119,o), (300,-210,o), (375,-210,cs) ); } ); width = 600; } ); unicode = 759; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lozenge.glyph000066400000000000000000000030131472355150100303510ustar00rootroot00000000000000{ glyphname = lozenge; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,0,l), (560,303,l), (560,417,l), (402,720,l), (202,720,l), (40,417,l), (40,300,l), (202,0,l) ); }, { closed = 1; nodes = ( (286,113,o), (268,154,o), (254,181,cs), (190,303,l), (190,417,l), (254,539,ls), (268,566,o), (286,607,o), (296,630,c), (302,630,l), (310,608,o), (327,568,o), (343,539,cs), (410,417,l), (410,303,l), (343,181,ls), (327,152,o), (310,112,o), (302,90,c), (296,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (366,0,l), (540,324,l), (540,395,l), (366,720,l), (240,720,l), (60,395,l), (60,324,l), (240,0,l) ); }, { closed = 1; nodes = ( (290,78,o), (270,117,o), (249,157,cs), (150,344,l), (150,375,l), (249,563,ls), (269,602,o), (290,641,o), (299,660,c), (303,660,l), (312,641,o), (332,602,o), (352,563,cs), (450,375,l), (450,344,l), (352,157,ls), (332,118,o), (312,78,o), (303,60,c), (299,60,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (366,0,l), (540,324,l), (540,395,l), (366,720,l), (240,720,l), (60,395,l), (60,324,l), (240,0,l) ); }, { closed = 1; nodes = ( (290,78,o), (270,117,o), (249,157,cs), (150,344,l), (150,375,l), (249,563,ls), (269,602,o), (290,641,o), (299,660,c), (303,660,l), (312,641,o), (332,602,o), (352,563,cs), (450,375,l), (450,344,l), (352,157,ls), (332,118,o), (312,78,o), (303,60,c), (299,60,l) ); } ); width = 600; } ); unicode = 9674; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lslash.glyph000066400000000000000000000011641472355150100302010ustar00rootroot00000000000000{ glyphname = lslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (480,420,l), (480,560,l), (100,370,l), (100,230,l) ); }, { alignment = -1; ref = l; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (470,480,l), (470,560,l), (100,310,l), (100,230,l) ); }, { alignment = -1; ref = l; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (470,495,l), (470,550,l), (100,295,l), (100,240,l) ); }, { alignment = -1; ref = l; } ); width = 600; } ); unicode = 322; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/lslash.ss01.glyph000066400000000000000000000011251472355150100307630ustar00rootroot00000000000000{ export = 0; glyphname = lslash.ss01; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,416,l), (533,560,l), (123,370,l), (100,226,l) ); }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (514,475,l), (528,560,l), (119,310,l), (105,225,l) ); }, { ref = l.ss01; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (520,492,l), (530,550,l), (119,295,l), (109,237,l) ); }, { ref = l.ss01; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/m.glyph000066400000000000000000000036031472355150100271470ustar00rootroot00000000000000{ glyphname = m; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (127,0,l), (190,403,ls), (195,434,o), (212,451,o), (237,451,cs), (262,451,o), (273,434,o), (268,403,cs), (205,0,l), (308,0,l), (371,403,ls), (376,434,o), (393,451,o), (418,451,cs), (443,451,o), (454,434,o), (449,403,cs), (386,0,l), (515,0,l), (581,420,ls), (594,502,o), (556,560,o), (491,560,cs), (435,560,o), (389,517,o), (379,456,c), (390,470,l), (362,470,l), (375,440,l), (386,510,o), (355,560,o), (299,560,cs), (246,560,o), (203,517,o), (193,456,c), (214,470,l), (190,470,l), (203,550,l), (85,550,l), (-2,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (105,0,l), (171,420,ls), (178,465,o), (201,491,o), (238,491,cs), (275,491,o), (293,465,o), (286,419,cs), (220,0,l), (292,0,l), (358,420,ls), (365,465,o), (391,491,o), (427,491,cs), (464,491,o), (480,464,o), (473,419,cs), (407,0,l), (490,0,l), (556,418,ls), (569,503,o), (538,560,o), (469,560,cs), (413,560,o), (370,521,o), (361,460,c), (383,484,l), (341,484,l), (360,430,l), (373,513,o), (345,560,o), (284,560,cs), (228,560,o), (187,521,o), (178,460,c), (195,484,l), (177,484,l), (188,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,0,l), (151,425,ls), (163,482,o), (199,518,o), (243,518,cs), (287,518,o), (308,482,o), (299,425,cs), (232,0,l), (280,0,l), (347,425,ls), (356,481,o), (392,518,o), (439,518,cs), (483,518,o), (504,482,o), (495,425,cs), (428,0,l), (477,0,l), (545,431,ls), (558,511,o), (527,560,o), (461,560,cs), (402,560,o), (361,521,o), (353,461,c), (357,475,l), (349,475,l), (351,461,l), (353,524,o), (322,560,o), (265,560,cs), (206,560,o), (164,521,o), (156,461,c), (160,475,l), (154,475,l), (166,550,l), (122,550,l), (35,0,l) ); } ); width = 600; } ); unicode = 109; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/macron.case.glyph000066400000000000000000000007161472355150100311060ustar00rootroot00000000000000{ glyphname = macron.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/macron.glyph000066400000000000000000000006311472355150100301700ustar00rootroot00000000000000{ glyphname = macron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 175; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/macronbelowcomb.case.glyph000066400000000000000000000014711472355150100327770ustar00rootroot00000000000000{ glyphname = macronbelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-371,-170); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-231,-170,l), (-224,-127,l), (-504,-127,l), (-511,-170,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-375,-195); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-215,-195,l), (-203,-120,l), (-523,-120,l), (-535,-195,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-379,-220); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-199,-220,l), (-181,-110,l), (-541,-110,l), (-559,-220,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/macroncomb.case.glyph000066400000000000000000000014231472355150100317430ustar00rootroot00000000000000{ glyphname = macroncomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-201,897); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-68,854,l), (-61,897,l), (-341,897,l), (-348,854,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-199,915); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-51,840,l), (-39,915,l), (-359,915,l), (-371,840,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-197,930); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-34,820,l), (-17,930,l), (-377,930,l), (-394,820,l) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/macroncomb.glyph000066400000000000000000000014351472355150100310340ustar00rootroot00000000000000{ glyphname = macroncomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-228,727); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-95,684,l), (-88,727,l), (-368,727,l), (-375,684,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-226,745); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-78,670,l), (-66,745,l), (-386,745,l), (-398,670,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-223,765); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-60,655,l), (-43,765,l), (-403,765,l), (-420,655,l) ); } ); width = 0; } ); unicode = 772; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/micro.glyph000066400000000000000000000005231472355150100300220ustar00rootroot00000000000000{ glyphname = micro; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = mu; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = mu; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = mu; } ); width = 600; } ); unicode = 181; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/midlinehorizontalellipsis.glyph000066400000000000000000000050421472355150100342120ustar00rootroot00000000000000{ glyphname = midlinehorizontalellipsis; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (587,276,o), (610,299,o), (610,334,cs), (610,369,o), (587,392,o), (552,392,cs), (516,392,o), (493,369,o), (493,334,cs), (493,299,o), (516,276,o), (552,276,cs) ); }, { closed = 1; nodes = ( (84,276,o), (107,299,o), (107,334,cs), (107,369,o), (84,392,o), (49,392,cs), (13,392,o), (-10,369,o), (-10,334,cs), (-10,299,o), (13,276,o), (49,276,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,276,o), (107,299,o), (107,334,cs), (107,369,o), (84,392,o), (49,392,cs), (13,392,o), (-10,369,o), (-10,334,cs), (-10,299,o), (13,276,o), (49,276,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (587,276,o), (610,299,o), (610,334,cs), (610,369,o), (587,392,o), (552,392,cs), (516,392,o), (493,369,o), (493,334,cs), (493,299,o), (516,276,o), (552,276,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (103,264,o), (131,292,o), (131,334,cs), (131,376,o), (103,404,o), (61,404,cs), (18,404,o), (-10,376,o), (-10,334,cs), (-10,292,o), (18,264,o), (61,264,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (582,264,o), (610,292,o), (610,334,cs), (610,376,o), (582,404,o), (540,404,cs), (497,404,o), (469,376,o), (469,334,cs), (469,292,o), (497,264,o), (540,264,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (120,253,o), (154,286,o), (154,334,cs), (154,382,o), (120,415,o), (72,415,cs), (24,415,o), (-10,382,o), (-10,334,cs), (-10,286,o), (24,253,o), (72,253,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (576,253,o), (610,286,o), (610,334,cs), (610,382,o), (576,415,o), (528,415,cs), (480,415,o), (446,382,o), (446,334,cs), (446,286,o), (480,253,o), (528,253,cs) ); } ); width = 600; } ); unicode = 8943; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/minus.circled.glyph000066400000000000000000000034541472355150100314560ustar00rootroot00000000000000{ glyphname = minus.circled; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (585,308,l), (585,353,l), (15,353,l), (15,308,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (48,0); ref = minus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (585,290,l), (585,370,l), (15,370,l), (15,290,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (47,0); ref = minus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (521,260,l), (521,400,l), (86,400,l), (86,260,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (47,0); ref = minus; } ); width = 600; } ); unicode = 8854; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/minus.glyph000066400000000000000000000006201472355150100300420ustar00rootroot00000000000000{ glyphname = minus; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; } ); unicode = 8722; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/minute.glyph000066400000000000000000000010331472355150100302070ustar00rootroot00000000000000{ glyphname = minute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,465,l), (479,776,l), (299,776,l), (170,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (275,465,l), (454,776,l), (324,776,l), (195,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (260,465,l), (434,776,l), (344,776,l), (220,465,l) ); } ); width = 600; } ); unicode = 8242; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/mu.glyph000066400000000000000000000026041472355150100273340ustar00rootroot00000000000000{ glyphname = mu; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (144,-180,l), (168,-30,l), (185,105,l), (220,105,l), (190,140,l), (175,47,o), (201,-10,o), (258,-10,cs), (315,-10,o), (359,47,o), (374,140,c), (334,105,l), (369,105,l), (347,0,l), (497,0,l), (584,550,l), (434,550,l), (380,210,ls), (371,153,o), (334,120,o), (279,120,cs), (224,120,o), (197,153,o), (206,210,cs), (260,550,l), (110,550,l), (-6,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,-180,l), (137,-20,l), (155,105,l), (175,105,l), (160,126,l), (147,43,o), (162,-10,o), (252,-10,cs), (342,-10,o), (381,43,o), (394,126,c), (373,105,l), (393,105,l), (376,0,l), (464,0,l), (551,550,l), (461,550,l), (406,200,ls), (393,117,o), (340,68,o), (266,68,cs), (192,68,o), (159,117,o), (172,200,cs), (227,550,l), (137,550,l), (21,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (88,-180,l), (117,0,l), (129,75,l), (147,75,l), (129,140,l), (115,50,o), (166,-10,o), (257,-10,cs), (349,-10,o), (420,50,o), (434,140,c), (396,75,l), (414,75,l), (402,0,l), (452,0,l), (539,550,l), (489,550,l), (432,190,ls), (416,91,o), (354,33,o), (264,33,cs), (174,33,o), (131,91,o), (147,190,c), (204,550,l), (154,550,l), (38,-180,l) ); } ); width = 600; } ); unicode = 956; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/multimap.glyph000066400000000000000000000032051472355150100305410ustar00rootroot00000000000000{ glyphname = multimap; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (549,235,o), (590,276,o), (590,330,cs), (590,384,o), (549,425,o), (495,425,cs), (441,425,o), (400,384,o), (400,330,cs), (400,276,o), (441,235,o), (495,235,cs) ); }, { closed = 1; nodes = ( (425,309,l), (425,351,l), (20,351,l), (20,309,l) ); }, { closed = 1; nodes = ( (463,275,o), (440,298,o), (440,330,cs), (440,362,o), (463,385,o), (495,385,cs), (527,385,o), (550,362,o), (550,330,cs), (550,298,o), (527,275,o), (495,275,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (549,235,o), (590,276,o), (590,330,cs), (590,384,o), (549,425,o), (495,425,cs), (441,425,o), (400,384,o), (400,330,cs), (400,276,o), (441,235,o), (495,235,cs) ); }, { closed = 1; nodes = ( (425,309,l), (425,351,l), (20,351,l), (20,309,l) ); }, { closed = 1; nodes = ( (463,275,o), (440,298,o), (440,330,cs), (440,362,o), (463,385,o), (495,385,cs), (527,385,o), (550,362,o), (550,330,cs), (550,298,o), (527,275,o), (495,275,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (549,235,o), (590,276,o), (590,330,cs), (590,384,o), (549,425,o), (495,425,cs), (441,425,o), (400,384,o), (400,330,cs), (400,276,o), (441,235,o), (495,235,cs) ); }, { closed = 1; nodes = ( (425,309,l), (425,351,l), (20,351,l), (20,309,l) ); }, { closed = 1; nodes = ( (463,275,o), (440,298,o), (440,330,cs), (440,362,o), (463,385,o), (495,385,cs), (527,385,o), (550,362,o), (550,330,cs), (550,298,o), (527,275,o), (495,275,cs) ); } ); width = 600; } ); unicode = 8888; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/multiplicationX_.glyph000066400000000000000000000015251472355150100322400ustar00rootroot00000000000000{ glyphname = multiplicationX; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (298,300,l), (487,111,l), (521,145,l), (332,334,l), (521,523,l), (489,555,l), (300,366,l), (111,555,l), (77,521,l), (266,332,l), (79,145,l), (111,113,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (299,277,l), (476,100,l), (534,158,l), (357,335,l), (533,511,l), (477,567,l), (301,391,l), (124,568,l), (66,510,l), (243,333,l), (67,157,l), (123,101,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (299,233,l), (454,78,l), (556,180,l), (401,335,l), (555,489,l), (455,589,l), (301,435,l), (146,590,l), (44,488,l), (199,333,l), (45,179,l), (145,79,l) ); } ); width = 600; } ); unicode = 10005; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/multiply.circled.glyph000066400000000000000000000027561472355150100322060ustar00rootroot00000000000000{ glyphname = multiply.circled; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,0); ref = multiply; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,0); ref = multiply; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,5); ref = multiply; } ); width = 600; } ); unicode = 8855; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/multiply.glyph000066400000000000000000000015211472355150100305670ustar00rootroot00000000000000{ glyphname = multiply; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (292,221,l), (394,100,l), (511,201,l), (410,323,l), (549,441,l), (460,546,l), (322,426,l), (220,546,l), (103,445,l), (203,323,l), (65,205,l), (154,100,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,278,l), (418,137,l), (476,187,l), (357,327,l), (526,473,l), (481,527,l), (312,381,l), (194,521,l), (137,472,l), (254,331,l), (90,189,l), (135,135,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,294,l), (431,143,l), (471,177,l), (344,328,l), (520,481,l), (488,518,l), (312,365,l), (185,516,l), (145,482,l), (272,331,l), (95,179,l), (127,142,l) ); } ); width = 600; } ); unicode = 215; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/multisetunion.glyph000066400000000000000000000036521472355150100316360ustar00rootroot00000000000000{ glyphname = multisetunion; layers = ( { background = { shapes = ( { ref = union; }, { pos = (0,-220); ref = plussuperior; } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (320,85,l), (320,206,l), (440,206,l), (440,244,l), (320,244,l), (320,365,l), (280,365,l), (280,244,l), (160,244,l), (160,206,l), (280,206,l), (280,85,l) ); }, { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; }, { background = { shapes = ( { ref = union; }, { pos = (0,-198); ref = plussuperior; } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,85,l), (320,206,l), (440,206,l), (440,244,l), (320,244,l), (320,365,l), (280,365,l), (280,244,l), (160,244,l), (160,206,l), (280,206,l), (280,85,l) ); }, { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; }, { background = { shapes = ( { ref = union; }, { pos = (0,-165); ref = plussuperior; } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (320,85,l), (320,206,l), (440,206,l), (440,244,l), (320,244,l), (320,365,l), (280,365,l), (280,244,l), (160,244,l), (160,206,l), (280,206,l), (280,85,l) ); }, { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; } ); unicode = 8846; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/n.glyph000066400000000000000000000027001472355150100271450ustar00rootroot00000000000000{ glyphname = n; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (344,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (342,0,l), (492,0,l), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (254,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (344,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (398,0,l), (448,0,l), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (260,560,o), (188,499,o), (173,404,c), (211,455,l), (188,455,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (193,350,ls), (207,435,o), (261,484,o), (336,484,cs), (408,484,o), (445,438,o), (433,360,cs), (376,0,l), (466,0,l), (525,370,ls), (543,487,o), (484,560,o), (374,560,cs), (282,560,o), (219,510,o), (205,424,c), (227,445,l), (208,445,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; } ); unicode = 110; } nA_ryC_ircledD_otO_perator.glyph000066400000000000000000000037141472355150100340150ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = nAryCircledDotOperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (268,304,o), (244,328,o), (244,360,cs), (244,392,o), (268,416,o), (300,416,cs), (332,416,o), (356,392,o), (356,360,cs), (356,328,o), (332,304,o), (300,304,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (268,304,o), (244,328,o), (244,360,cs), (244,392,o), (268,416,o), (300,416,cs), (332,416,o), (356,392,o), (356,360,cs), (356,328,o), (332,304,o), (300,304,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (268,304,o), (244,328,o), (244,360,cs), (244,392,o), (268,416,o), (300,416,cs), (332,416,o), (356,392,o), (356,360,cs), (356,328,o), (332,304,o), (300,304,cs) ); } ); width = 600; } ); unicode = 10752; } nA_ryS_quareU_nionO_perator.glyph000066400000000000000000000012611472355150100342450ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = nArySquareUnionOperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (530,0,l), (530,730,l), (480,730,l), (480,45,l), (120,45,l), (120,730,l), (70,730,l), (70,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (557,0,l), (557,730,l), (467,730,l), (467,82,l), (133,82,l), (133,730,l), (43,730,l), (43,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,0,l), (600,730,l), (450,730,l), (450,140,l), (150,140,l), (150,730,l), (0,730,l), (0,0,l) ); } ); width = 600; } ); unicode = 10758; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/nacute.glyph000066400000000000000000000007001472355150100301650ustar00rootroot00000000000000{ glyphname = nacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (622,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (613,0); ref = acutecomb; } ); width = 600; } ); unicode = 324; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/napostrophe.glyph000066400000000000000000000010751472355150100312560ustar00rootroot00000000000000{ glyphname = napostrophe; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = n; }, { alignment = -1; pos = (530,885); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = n; }, { alignment = -1; pos = (530,885); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = n; }, { alignment = -1; pos = (530,885); ref = commaaccentcomb; } ); width = 600; } ); unicode = 329; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/nbspace.glyph000066400000000000000000000004261472355150100303260ustar00rootroot00000000000000{ glyphname = nbspace; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; } ); metricWidth = space; unicode = 160; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ncaron.glyph000066400000000000000000000007001472355150100301660ustar00rootroot00000000000000{ glyphname = ncaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (601,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (601,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (601,0); ref = caroncomb; } ); width = 600; } ); unicode = 328; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ncommaaccent.glyph000066400000000000000000000007301472355150100313410ustar00rootroot00000000000000{ glyphname = ncommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 326; } negativeA_cknowledge-control.glyph000066400000000000000000000016401472355150100344160ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "negativeAcknowledge-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = K; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = K; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = K; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9237; } neitherapproximatelynoractuallyequalto.glyph000066400000000000000000000022071472355150100367610ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = neitherapproximatelynoractuallyequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (113,-100,l), (552,780,l), (506,780,l), (67,-100,l) ); }, { closed = 1; nodes = ( (484,114,l), (491,158,l), (71,158,l), (64,114,l) ); }, { closed = 1; nodes = ( (515,308,l), (522,352,l), (102,352,l), (95,308,l) ); }, { pos = (20,185); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (123,-100,l), (560,780,l), (497,780,l), (60,-100,l) ); }, { closed = 1; nodes = ( (498,76,l), (510,152,l), (50,152,l), (38,76,l) ); }, { closed = 1; nodes = ( (532,292,l), (544,368,l), (84,368,l), (72,292,l) ); }, { pos = (32,215); ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (136,-100,l), (575,780,l), (484,780,l), (45,-100,l) ); }, { closed = 1; nodes = ( (511,0,l), (532,130,l), (22,130,l), (1,0,l) ); }, { closed = 1; nodes = ( (553,265,l), (574,395,l), (64,395,l), (43,265,l) ); }, { pos = (37,245); ref = asciitilde; } ); width = 600; } ); unicode = 8775; } neitherasubsetofnorequalto.glyph000066400000000000000000000031771472355150100343260ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = neitherasubsetofnorequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,-100,l), (558,780,l), (512,780,l), (73,-100,l) ); }, { closed = 1; nodes = ( (492,0,l), (499,45,l), (14,45,l), (7,0,l) ); }, { closed = 1; nodes = ( (330,210,ls), (460,210,o), (553,285,o), (572,408,cs), (582,472,ls), (601,595,o), (533,670,o), (403,670,cs), (113,670,l), (106,625,l), (396,625,ls), (497,625,o), (546,568,o), (531,470,cs), (522,410,ls), (507,312,o), (438,255,o), (337,255,cs), (47,255,l), (40,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (126,-100,l), (563,780,l), (500,780,l), (63,-100,l) ); }, { closed = 1; nodes = ( (509,0,l), (522,82,l), (2,82,l), (-11,0,l) ); }, { closed = 1; nodes = ( (326,200,ls), (464,200,o), (569,287,o), (590,418,cs), (597,462,ls), (618,593,o), (540,680,o), (402,680,cs), (97,680,l), (84,598,l), (389,598,ls), (478,598,o), (521,548,o), (507,460,cs), (501,420,ls), (487,332,o), (428,282,o), (339,282,cs), (34,282,l), (21,200,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (137,-100,l), (576,780,l), (485,780,l), (46,-100,l) ); }, { closed = 1; nodes = ( (517,0,l), (539,140,l), (4,140,l), (-18,0,l) ); }, { closed = 1; nodes = ( (311,185,ls), (461,185,o), (576,278,o), (598,418,cs), (605,462,ls), (627,602,o), (542,695,o), (392,695,cs), (92,695,l), (70,555,l), (366,555,ls), (430,555,o), (464,519,o), (455,460,cs), (449,420,ls), (440,361,o), (394,325,o), (329,325,cs), (33,325,l), (11,185,l) ); } ); width = 600; } ); unicode = 8840; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/newline-control.glyph000066400000000000000000000013101472355150100320230ustar00rootroot00000000000000{ glyphname = "newline-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9252; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/nine.glyph000066400000000000000000000032271472355150100276460ustar00rootroot00000000000000{ glyphname = nine; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (292,0,l), (486,275,ls), (545,359,o), (580,430,o), (590,492,cs), (613,637,o), (523,740,o), (374,740,cs), (225,740,o), (104,641,o), (81,501,cs), (61,371,o), (125,278,o), (237,278,cs), (294,278,o), (326,303,o), (362,346,c), (368,342,l), (112,0,l) ); }, { closed = 1; nodes = ( (255,389,o), (217,436,o), (228,503,cs), (238,568,o), (290,615,o), (354,615,cs), (418,615,o), (456,568,o), (446,503,cs), (435,436,o), (383,389,o), (319,389,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (258,0,l), (477,303,ls), (530,376,o), (563,443,o), (573,507,cs), (595,646,o), (515,740,o), (373,740,cs), (232,740,o), (123,645,o), (101,503,cs), (80,370,o), (147,281,o), (267,281,cs), (324,281,o), (370,304,o), (400,340,c), (403,337,l), (154,0,l) ); }, { closed = 1; nodes = ( (225,350,o), (176,412,o), (191,505,cs), (206,598,o), (275,660,o), (362,660,cs), (449,660,o), (498,598,o), (483,505,cs), (468,412,o), (399,350,o), (312,350,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (226,0,l), (468,324,ls), (514,386,o), (542,448,o), (552,510,cs), (574,648,o), (502,740,o), (373,740,cs), (245,740,o), (144,647,o), (122,510,cs), (101,382,o), (174,294,o), (282,294,cs), (349,294,o), (406,322,o), (430,346,c), (433,343,l), (170,0,l) ); }, { closed = 1; nodes = ( (210,334,o), (155,405,o), (172,510,cs), (190,622,o), (267,695,o), (366,695,cs), (468,695,o), (523,622,o), (503,511,cs), (484,404,o), (407,334,o), (309,334,cs) ); } ); width = 600; } ); unicode = 57; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/nineinferior.glyph000066400000000000000000000007261472355150100314050ustar00rootroot00000000000000{ glyphname = nineinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = ninesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = ninesuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = ninesuperior; } ); width = 600; } ); metricLeft = nine; metricRight = nine; unicode = 8329; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ninesuperior.glyph000066400000000000000000000033271472355150100314400ustar00rootroot00000000000000{ glyphname = ninesuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (313,405,l), (448,577,ls), (476,612,o), (504,658,o), (511,702,cs), (524,786,o), (476,840,o), (388,840,cs), (301,840,o), (236,786,o), (223,702,cs), (210,621,o), (253,568,o), (332,568,cs), (372,568,o), (410,588,o), (429,619,c), (398,609,l), (426,609,l), (265,405,l) ); }, { closed = 1; nodes = ( (292,604,o), (259,642,o), (268,702,cs), (278,762,o), (323,800,o), (383,800,cs), (443,800,o), (476,762,o), (466,702,cs), (457,642,o), (412,604,o), (352,604,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (329,405,l), (461,569,ls), (492,607,o), (516,658,o), (522,697,cs), (536,784,o), (484,840,o), (389,840,cs), (295,840,o), (226,784,o), (212,697,cs), (200,616,o), (238,564,o), (311,564,cs), (358,564,o), (399,585,o), (415,618,c), (375,598,l), (409,598,l), (252,405,l) ); }, { closed = 1; nodes = ( (303,616,o), (275,647,o), (283,697,cs), (291,747,o), (328,778,o), (380,778,cs), (431,778,o), (459,747,o), (451,697,cs), (443,647,o), (406,616,o), (355,616,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (335,405,l), (469,567,ls), (501,607,o), (527,658,o), (533,695,cs), (547,782,o), (489,840,o), (389,840,cs), (288,840,o), (213,782,o), (199,695,cs), (186,614,o), (231,560,o), (310,560,cs), (346,560,o), (383,581,o), (403,612,c), (354,592,l), (392,592,l), (237,405,l) ); }, { closed = 1; nodes = ( (312,632,o), (286,657,o), (292,695,cs), (298,733,o), (332,758,o), (377,758,cs), (421,758,o), (446,733,o), (440,695,cs), (434,657,o), (401,632,o), (357,632,cs) ); } ); width = 600; } ); unicode = 8313; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/nje-cy.glyph000066400000000000000000000031251472355150100300770ustar00rootroot00000000000000{ glyphname = "nje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (119,0,l), (160,260,l), (275,260,l), (234,0,l), (384,0,ls), (482,0,o), (561,60,o), (575,150,cs), (584,211,ls), (600,308,o), (542,370,o), (442,370,cs), (407,370,l), (435,550,l), (321,550,l), (293,370,l), (178,370,l), (206,550,l), (83,550,l), (-4,0,l) ); }, { closed = 1; nodes = ( (389,260,l), (424,260,ls), (451,260,o), (466,241,o), (462,213,cs), (452,151,ls), (448,126,o), (427,110,o), (400,110,cs), (365,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (103,0,l), (147,275,l), (284,275,l), (240,0,l), (374,0,ls), (470,0,o), (544,62,o), (559,155,cs), (565,195,ls), (580,288,o), (525,350,o), (429,350,cs), (368,350,l), (400,550,l), (327,550,l), (295,350,l), (158,350,l), (190,550,l), (107,550,l), (20,0,l) ); }, { closed = 1; nodes = ( (357,275,l), (418,275,ls), (466,275,o), (489,243,o), (482,195,cs), (476,155,ls), (468,107,o), (434,75,o), (386,75,cs), (325,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (79,0,l), (126,297,l), (306,297,l), (259,0,l), (366,0,ls), (462,0,o), (530,57,o), (545,150,cs), (551,190,ls), (566,283,o), (515,340,o), (420,340,cs), (361,340,l), (394,550,l), (346,550,l), (313,340,l), (133,340,l), (166,550,l), (118,550,l), (31,0,l) ); }, { closed = 1; nodes = ( (354,297,l), (413,297,ls), (480,297,o), (514,257,o), (503,190,cs), (497,150,ls), (486,83,o), (440,44,o), (373,44,cs), (314,44,l) ); } ); width = 600; } ); unicode = 1114; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/northE_astA_rrow.glyph000066400000000000000000000024131472355150100321710ustar00rootroot00000000000000{ glyphname = northEastArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (424,434,ls), (443,453,o), (464,478,o), (474,492,c), (481,490,l), (478,472,o), (475,437,o), (475,404,cs), (475,205,l), (555,205,l), (555,620,l), (140,620,l), (140,542,l), (335,542,ls), (368,542,o), (400,545,o), (415,547,c), (416,540,l), (404,531,o), (381,512,o), (363,494,cs), (10,138,l), (69,76,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (424,434,ls), (443,453,o), (464,478,o), (474,492,c), (481,490,l), (478,472,o), (475,437,o), (475,404,cs), (475,205,l), (555,205,l), (555,620,l), (140,620,l), (140,542,l), (335,542,ls), (368,542,o), (400,545,o), (415,547,c), (416,540,l), (404,531,o), (381,512,o), (363,494,cs), (10,138,l), (69,76,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (424,434,ls), (443,453,o), (464,478,o), (474,492,c), (481,490,l), (478,472,o), (475,437,o), (475,404,cs), (475,205,l), (555,205,l), (555,620,l), (140,620,l), (140,542,l), (335,542,ls), (368,542,o), (400,545,o), (415,547,c), (416,540,l), (404,531,o), (381,512,o), (363,494,cs), (10,138,l), (69,76,l) ); } ); width = 600; } ); unicode = 8599; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/northW_estA_rrow.glyph000066400000000000000000000024131472355150100322170ustar00rootroot00000000000000{ glyphname = northWestArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,138,l), (237,494,ls), (219,512,o), (196,531,o), (184,540,c), (185,547,l), (200,545,o), (232,542,o), (265,542,cs), (460,542,l), (460,620,l), (45,620,l), (45,205,l), (125,205,l), (125,404,ls), (125,437,o), (120,472,o), (117,489,c), (124,491,l), (134,477,o), (155,452,o), (174,433,cs), (529,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,138,l), (237,494,ls), (219,512,o), (196,531,o), (184,540,c), (185,547,l), (200,545,o), (232,542,o), (265,542,cs), (460,542,l), (460,620,l), (45,620,l), (45,205,l), (125,205,l), (125,404,ls), (125,437,o), (120,472,o), (117,489,c), (124,491,l), (134,477,o), (155,452,o), (174,433,cs), (529,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,138,l), (237,494,ls), (219,512,o), (196,531,o), (184,540,c), (185,547,l), (200,545,o), (232,542,o), (265,542,cs), (460,542,l), (460,620,l), (45,620,l), (45,205,l), (125,205,l), (125,404,ls), (125,437,o), (120,472,o), (117,489,c), (124,491,l), (134,477,o), (155,452,o), (174,433,cs), (529,75,l) ); } ); width = 600; } ); unicode = 8598; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notalmostequalto.glyph000066400000000000000000000015611472355150100323270ustar00rootroot00000000000000{ glyphname = notalmostequalto; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; pos = (18,110); ref = asciitilde; }, { alignment = -1; pos = (-24,-155); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; pos = (16,100); ref = asciitilde; }, { alignment = -1; pos = (-22,-145); ref = asciitilde; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; pos = (15,95); ref = asciitilde; }, { alignment = -1; pos = (-22,-140); ref = asciitilde; } ); width = 600; } ); unicode = 8777; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notcontains.glyph000066400000000000000000000012141472355150100312460ustar00rootroot00000000000000{ glyphname = notcontains; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = suchthat; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = suchthat; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = suchthat; } ); width = 600; } ); unicode = 8716; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notelement.glyph000066400000000000000000000012101472355150100310550ustar00rootroot00000000000000{ glyphname = notelement; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = element; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = element; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = element; } ); width = 600; } ); unicode = 8713; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notequal.glyph000066400000000000000000000012001472355150100305320ustar00rootroot00000000000000{ glyphname = notequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = equal; } ); width = 600; } ); unicode = 8800; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notgreater.glyph000066400000000000000000000011301472355150100310560ustar00rootroot00000000000000{ glyphname = notgreater; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (127,-70,l), (532,730,l), (484,730,l), (79,-70,l) ); }, { ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (135,-70,l), (539,730,l), (474,730,l), (70,-70,l) ); }, { ref = greater; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,-69,l), (550,730,l), (459,730,l), (57,-69,l) ); }, { ref = greater; } ); width = 600; } ); unicode = 8815; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notgreaternorequal.glyph000066400000000000000000000015611472355150100326350ustar00rootroot00000000000000{ glyphname = notgreaternorequal; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (83,-110,l), (522,780,l), (474,780,l), (35,-110,l) ); }, { closed = 1; nodes = ( (466,0,l), (473,45,l), (53,45,l), (46,0,l) ); }, { pos = (20,126); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (91,-110,l), (529,780,l), (464,780,l), (26,-110,l) ); }, { closed = 1; nodes = ( (471,0,l), (484,82,l), (54,82,l), (41,0,l) ); }, { pos = (21,126); ref = greater; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (101,-110,l), (541,780,l), (450,780,l), (10,-110,l) ); }, { closed = 1; nodes = ( (487,0,l), (509,140,l), (49,140,l), (27,0,l) ); }, { pos = (21,126); ref = greater; } ); width = 600; } ); unicode = 8817; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notidentical.glyph000066400000000000000000000011651472355150100313710ustar00rootroot00000000000000{ glyphname = notidentical; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,-50,l), (520,720,l), (472,720,l), (98,-50,l) ); }, { ref = equivalence; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (149,-60,l), (531,729,l), (466,729,l), (84,-60,l) ); }, { ref = equivalence; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (146,-110,l), (564,770,l), (473,770,l), (55,-110,l) ); }, { pos = (1,0); ref = equivalence; } ); width = 600; } ); unicode = 8802; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notless.glyph000066400000000000000000000011141472355150100303750ustar00rootroot00000000000000{ glyphname = notless; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (127,-70,l), (532,730,l), (484,730,l), (79,-70,l) ); }, { ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (135,-70,l), (539,730,l), (474,730,l), (70,-70,l) ); }, { ref = less; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,-69,l), (550,730,l), (459,730,l), (57,-69,l) ); }, { ref = less; } ); width = 600; } ); unicode = 8814; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notlessnorequal.glyph000066400000000000000000000015471472355150100321560ustar00rootroot00000000000000{ glyphname = notlessnorequal; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (466,0,l), (474,45,l), (54,45,l), (46,0,l) ); }, { closed = 1; nodes = ( (113,-110,l), (552,780,l), (504,780,l), (65,-110,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (470,0,l), (483,82,l), (53,82,l), (40,0,l) ); }, { closed = 1; nodes = ( (121,-110,l), (559,780,l), (494,780,l), (56,-110,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (508,140,l), (48,140,l), (26,0,l) ); }, { closed = 1; nodes = ( (152,-110,l), (592,780,l), (501,780,l), (61,-110,l) ); }, { pos = (20,125); ref = less; } ); width = 600; } ); unicode = 8816; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notsubset.glyph000066400000000000000000000012041472355150100307340ustar00rootroot00000000000000{ glyphname = notsubset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = subset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = subset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = subset; } ); width = 600; } ); unicode = 8836; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/notsuperset.glyph000066400000000000000000000012141472355150100313020ustar00rootroot00000000000000{ glyphname = notsuperset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = superset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = superset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = superset; } ); width = 600; } ); unicode = 8837; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ntilde.glyph000066400000000000000000000007001472355150100301650ustar00rootroot00000000000000{ glyphname = ntilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (601,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (601,0); ref = tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (601,0); ref = tildecomb; } ); width = 600; } ); unicode = 241; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/nu.glyph000066400000000000000000000005151472355150100273340ustar00rootroot00000000000000{ glyphname = nu; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = v; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = v; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = v; } ); width = 600; } ); unicode = 957; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/null-control.glyph000066400000000000000000000016211472355150100313410ustar00rootroot00000000000000{ glyphname = "null-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9216; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numbersign.glyph000066400000000000000000000032221472355150100310610ustar00rootroot00000000000000{ glyphname = numbersign; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (131,0,l), (187,170,l), (312,170,l), (256,0,l), (361,0,l), (417,170,l), (533,170,l), (549,270,l), (450,270,l), (513,460,l), (609,460,l), (625,560,l), (546,560,l), (602,730,l), (497,730,l), (441,560,l), (316,560,l), (372,730,l), (267,730,l), (211,560,l), (95,560,l), (79,460,l), (178,460,l), (115,270,l), (19,270,l), (3,170,l), (82,170,l), (26,0,l) ); }, { closed = 1; nodes = ( (283,460,l), (408,460,l), (345,270,l), (220,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,0,l), (180,200,l), (336,200,l), (267,0,l), (340,0,l), (409,200,l), (518,200,l), (528,265,l), (431,265,l), (499,465,l), (595,465,l), (605,530,l), (521,530,l), (590,730,l), (517,730,l), (448,530,l), (292,530,l), (361,730,l), (288,730,l), (219,530,l), (110,530,l), (100,465,l), (197,465,l), (129,265,l), (33,265,l), (23,200,l), (107,200,l), (38,0,l) ); }, { closed = 1; nodes = ( (270,465,l), (426,465,l), (358,265,l), (202,265,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (96,0,l), (169,210,l), (349,210,l), (276,0,l), (327,0,l), (400,210,l), (519,210,l), (526,254,l), (416,254,l), (493,476,l), (596,476,l), (603,520,l), (509,520,l), (586,730,l), (532,730,l), (458,520,l), (278,520,l), (352,730,l), (301,730,l), (227,520,l), (108,520,l), (101,476,l), (211,476,l), (134,254,l), (31,254,l), (24,210,l), (118,210,l), (45,0,l) ); }, { closed = 1; nodes = ( (262,476,l), (442,476,l), (365,254,l), (185,254,l) ); } ); width = 600; } ); unicode = 35; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numbersign_braceleft.liga.glyph000066400000000000000000000064651472355150100340170ustar00rootroot00000000000000{ glyphname = numbersign_braceleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-472,0,l), (-414,175,l), (-284,175,l), (-342,0,l), (-242,0,l), (-184,175,l), (348,175,l), (364,275,l), (-151,275,l), (-94,455,l), (392,455,l), (408,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-487,555,l), (-503,455,l), (-424,455,l), (-481,275,l), (-566,275,l), (-582,175,l), (-514,175,l), (-572,0,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); }, { closed = 1; nodes = ( (463,-111,l), (486,29,l), (431,29,ls), (395,29,o), (372,53,o), (380,89,cs), (415,244,ls), (432,319,o), (376,361,o), (299,364,c), (299,369,l), (377,372,o), (446,409,o), (453,484,cs), (466,630,ls), (470,673,o), (497,690,o), (535,690,cs), (590,690,l), (612,830,l), (527,830,ls), (417,830,o), (328,760,o), (319,650,cs), (306,504,ls), (302,462,o), (267,435,o), (225,435,cs), (125,435,l), (103,295,l), (203,295,ls), (245,295,o), (271,266,o), (261,224,cs), (228,74,ls), (203,-38,o), (269,-111,o), (378,-111,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (334,210,l), (345,275,l), (-167,275,l), (-105,455,l), (373,455,l), (383,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { closed = 1; nodes = ( (454,-110,l), (466,-30,l), (421,-30,ls), (358,-30,o), (328,-1,o), (340,56,cs), (377,225,ls), (392,298,o), (363,361,o), (284,364,c), (284,369,l), (364,372,o), (414,432,o), (421,505,cs), (436,664,ls), (441,721,o), (482,750,o), (545,750,cs), (590,750,l), (602,830,l), (557,830,ls), (439,830,o), (356,769,o), (346,664,cs), (331,505,ls), (324,434,o), (301,405,o), (215,405,cs), (140,405,l), (127,325,l), (202,325,ls), (289,325,o), (302,296,o), (287,225,cs), (250,56,ls), (227,-49,o), (291,-110,o), (409,-110,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-507,0,l), (-427,230,l), (-241,230,l), (-321,0,l), (-276,0,l), (-196,230,l), (322,230,l), (329,270,l), (-181,270,l), (-115,460,l), (359,460,l), (365,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-495,500,l), (-501,460,l), (-391,460,l), (-457,270,l), (-566,270,l), (-573,230,l), (-472,230,l), (-552,0,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); }, { closed = 1; nodes = ( (444,-110,l), (451,-65,l), (401,-65,ls), (339,-65,o), (304,-25,o), (317,40,cs), (359,243,ls), (375,318,o), (343,363,o), (285,366,c), (285,369,l), (345,372,o), (391,415,o), (398,488,cs), (419,680,ls), (426,745,o), (473,785,o), (535,785,cs), (585,785,l), (592,830,l), (542,830,ls), (446,830,o), (379,775,o), (369,680,cs), (348,488,ls), (341,414,o), (314,388,o), (232,388,cs), (152,388,l), (145,342,l), (225,342,ls), (311,342,o), (324,314,o), (309,243,cs), (267,40,ls), (247,-55,o), (298,-110,o), (394,-110,cs) ); } ); width = 600; } ); } numbersign_bracketleft.liga.glyph000066400000000000000000000035431472355150100342710ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = numbersign_bracketleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-468,0,l), (-410,175,l), (-280,175,l), (-338,0,l), (-238,0,l), (-180,175,l), (252,175,l), (268,275,l), (-147,275,l), (-90,455,l), (296,455,l), (312,555,l), (-57,555,l), (2,730,l), (-98,730,l), (-157,555,l), (-287,555,l), (-228,730,l), (-328,730,l), (-387,555,l), (-483,555,l), (-499,455,l), (-420,455,l), (-477,275,l), (-562,275,l), (-578,175,l), (-510,175,l), (-568,0,l) ); }, { closed = 1; nodes = ( (-320,455,l), (-190,455,l), (-247,275,l), (-377,275,l) ); }, { alignment = -1; ref = bracketleft; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (254,210,l), (265,275,l), (-167,275,l), (-105,455,l), (293,455,l), (303,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { alignment = -1; ref = bracketleft; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-503,0,l), (-423,230,l), (-237,230,l), (-317,0,l), (-272,0,l), (-192,230,l), (236,230,l), (243,270,l), (-177,270,l), (-111,460,l), (273,460,l), (279,500,l), (-97,500,l), (-16,730,l), (-61,730,l), (-142,500,l), (-328,500,l), (-247,730,l), (-292,730,l), (-373,500,l), (-491,500,l), (-497,460,l), (-387,460,l), (-453,270,l), (-562,270,l), (-569,230,l), (-468,230,l), (-548,0,l) ); }, { closed = 1; nodes = ( (-342,460,l), (-156,460,l), (-222,270,l), (-408,270,l) ); }, { alignment = -1; ref = bracketleft; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numbersign_colon.liga.glyph000066400000000000000000000030721472355150100331710ustar00rootroot00000000000000{ glyphname = numbersign_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (381,409,o), (427,447,o), (436,504,cs), (445,565,o), (412,605,o), (352,605,cs), (292,605,o), (245,565,o), (236,504,cs), (227,447,o), (261,409,o), (321,409,cs) ); }, { closed = 1; nodes = ( (334,115,o), (380,153,o), (389,210,cs), (399,271,o), (365,311,o), (305,311,cs), (245,311,o), (199,271,o), (189,210,cs), (180,153,o), (214,115,o), (274,115,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (372,430,o), (409,461,o), (417,510,cs), (424,558,o), (397,590,o), (349,590,cs), (301,590,o), (264,558,o), (257,510,cs), (249,461,o), (276,430,o), (324,430,cs) ); }, { closed = 1; nodes = ( (325,130,o), (362,162,o), (369,211,cs), (377,259,o), (350,290,o), (302,290,cs), (254,290,o), (217,259,o), (209,211,cs), (202,162,o), (229,130,o), (277,130,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (370,440,o), (405,469,o), (412,510,cs), (418,551,o), (391,580,o), (348,580,cs), (304,580,o), (267,551,o), (261,510,cs), (254,469,o), (282,440,o), (326,440,cs) ); }, { closed = 1; nodes = ( (322,140,o), (358,169,o), (364,210,cs), (371,251,o), (343,280,o), (300,280,cs), (256,280,o), (220,251,o), (213,210,cs), (207,169,o), (234,140,o), (278,140,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numbersign_equal.liga.glyph000066400000000000000000000016541472355150100331720ustar00rootroot00000000000000{ glyphname = numbersign_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (543,420,l), (565,560,l), (125,560,l), (103,420,l) ); }, { closed = 1; nodes = ( (503,170,l), (525,310,l), (85,310,l), (63,170,l) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (547,450,l), (560,530,l), (120,530,l), (107,450,l) ); }, { closed = 1; nodes = ( (508,200,l), (520,280,l), (80,280,l), (68,200,l) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (551,475,l), (558,520,l), (118,520,l), (111,475,l) ); }, { closed = 1; nodes = ( (509,210,l), (516,255,l), (76,255,l), (69,210,l) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numbersign_exclam.liga.glyph000066400000000000000000000025711472355150100333330ustar00rootroot00000000000000{ glyphname = numbersign_exclam.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (299,245,l), (440,580,l), (493,730,l), (335,730,l), (282,580,l), (187,245,l) ); }, { closed = 1; nodes = ( (168,-5,ls), (214,-5,o), (253,22,o), (269,65,cs), (284,107,o), (263,135,o), (218,135,cs), (188,135,ls), (143,135,o), (104,107,o), (89,65,cs), (74,23,o), (94,-5,o), (139,-5,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,215,l), (425,610,l), (467,730,l), (361,730,l), (319,610,l), (200,215,l) ); }, { closed = 1; nodes = ( (169,-5,ls), (204,-5,o), (238,21,o), (251,56,cs), (263,90,o), (249,115,o), (211,115,cs), (181,115,ls), (147,115,o), (112,90,o), (101,55,cs), (88,20,o), (104,-5,o), (139,-5,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (238,205,l), (383,570,l), (440,730,l), (378,730,l), (321,570,l), (208,205,l) ); }, { closed = 1; nodes = ( (155,-5,ls), (188,-5,o), (218,17,o), (230,50,cs), (241,83,o), (227,105,o), (194,105,cs), (189,105,ls), (156,105,o), (126,83,o), (115,50,cs), (103,17,o), (117,-5,o), (150,-5,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; } ); } numbersign_numbersign.liga.glyph000066400000000000000000000054321472355150100341530ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = numbersign_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-442,0,l), (-384,175,l), (-254,175,l), (-312,0,l), (-212,0,l), (-154,175,l), (56,175,l), (-2,0,l), (98,0,l), (156,175,l), (286,175,l), (228,0,l), (328,0,l), (386,175,l), (483,175,l), (499,275,l), (419,275,l), (476,455,l), (562,455,l), (578,555,l), (509,555,l), (568,730,l), (468,730,l), (409,555,l), (279,555,l), (338,730,l), (238,730,l), (179,555,l), (-31,555,l), (28,730,l), (-72,730,l), (-131,555,l), (-261,555,l), (-202,730,l), (-302,730,l), (-361,555,l), (-457,555,l), (-473,455,l), (-394,455,l), (-451,275,l), (-536,275,l), (-552,175,l), (-484,175,l), (-542,0,l) ); }, { closed = 1; nodes = ( (-294,455,l), (-164,455,l), (-221,275,l), (-351,275,l) ); }, { closed = 1; nodes = ( (-64,455,l), (146,455,l), (89,275,l), (-121,275,l) ); }, { closed = 1; nodes = ( (246,455,l), (376,455,l), (319,275,l), (189,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-461,0,l), (-389,210,l), (-229,210,l), (-301,0,l), (-231,0,l), (-159,210,l), (81,210,l), (9,0,l), (79,0,l), (151,210,l), (311,210,l), (239,0,l), (309,0,l), (381,210,l), (489,210,l), (500,275,l), (403,275,l), (465,455,l), (563,455,l), (573,520,l), (486,520,l), (559,730,l), (489,730,l), (416,520,l), (256,520,l), (329,730,l), (259,730,l), (186,520,l), (-54,520,l), (19,730,l), (-51,730,l), (-124,520,l), (-284,520,l), (-211,730,l), (-281,730,l), (-354,520,l), (-462,520,l), (-472,455,l), (-375,455,l), (-437,275,l), (-535,275,l), (-546,210,l), (-459,210,l), (-531,0,l) ); }, { closed = 1; nodes = ( (-305,455,l), (-145,455,l), (-207,275,l), (-367,275,l) ); }, { closed = 1; nodes = ( (-75,455,l), (165,455,l), (103,275,l), (-137,275,l) ); }, { closed = 1; nodes = ( (235,455,l), (395,455,l), (333,275,l), (173,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-477,0,l), (-397,230,l), (-211,230,l), (-291,0,l), (-246,0,l), (-166,230,l), (98,230,l), (18,0,l), (63,0,l), (143,230,l), (329,230,l), (249,0,l), (294,0,l), (374,230,l), (492,230,l), (499,270,l), (389,270,l), (455,460,l), (564,460,l), (570,500,l), (469,500,l), (550,730,l), (505,730,l), (424,500,l), (238,500,l), (319,730,l), (274,730,l), (193,500,l), (-71,500,l), (10,730,l), (-35,730,l), (-116,500,l), (-302,500,l), (-221,730,l), (-266,730,l), (-347,500,l), (-465,500,l), (-471,460,l), (-361,460,l), (-427,270,l), (-536,270,l), (-543,230,l), (-442,230,l), (-522,0,l) ); }, { closed = 1; nodes = ( (-316,460,l), (-130,460,l), (-196,270,l), (-382,270,l) ); }, { closed = 1; nodes = ( (-85,460,l), (179,460,l), (113,270,l), (-151,270,l) ); }, { closed = 1; nodes = ( (224,460,l), (410,460,l), (344,270,l), (158,270,l) ); } ); width = 600; } ); } numbersign_numbersign_numbersign.liga.glyph000066400000000000000000000077111472355150100364060ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = numbersign_numbersign_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1042,0,l), (-984,175,l), (-854,175,l), (-912,0,l), (-812,0,l), (-754,175,l), (-514,175,l), (-572,0,l), (-472,0,l), (-414,175,l), (-284,175,l), (-342,0,l), (-242,0,l), (-184,175,l), (56,175,l), (-2,0,l), (98,0,l), (156,175,l), (286,175,l), (228,0,l), (328,0,l), (386,175,l), (483,175,l), (499,275,l), (419,275,l), (476,455,l), (562,455,l), (578,555,l), (509,555,l), (568,730,l), (468,730,l), (409,555,l), (279,555,l), (338,730,l), (238,730,l), (179,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-631,555,l), (-572,730,l), (-672,730,l), (-731,555,l), (-861,555,l), (-802,730,l), (-902,730,l), (-961,555,l), (-1057,555,l), (-1073,455,l), (-994,455,l), (-1051,275,l), (-1136,275,l), (-1152,175,l), (-1084,175,l), (-1142,0,l) ); }, { closed = 1; nodes = ( (-894,455,l), (-764,455,l), (-821,275,l), (-951,275,l) ); }, { closed = 1; nodes = ( (-664,455,l), (-424,455,l), (-481,275,l), (-721,275,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); }, { closed = 1; nodes = ( (-94,455,l), (146,455,l), (89,275,l), (-151,275,l) ); }, { closed = 1; nodes = ( (246,455,l), (376,455,l), (319,275,l), (189,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1061,0,l), (-989,210,l), (-829,210,l), (-901,0,l), (-831,0,l), (-759,210,l), (-489,210,l), (-561,0,l), (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (81,210,l), (9,0,l), (79,0,l), (151,210,l), (311,210,l), (239,0,l), (309,0,l), (381,210,l), (489,210,l), (500,275,l), (403,275,l), (465,455,l), (563,455,l), (573,520,l), (486,520,l), (559,730,l), (489,730,l), (416,520,l), (256,520,l), (329,730,l), (259,730,l), (186,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-654,520,l), (-581,730,l), (-651,730,l), (-724,520,l), (-884,520,l), (-811,730,l), (-881,730,l), (-954,520,l), (-1062,520,l), (-1072,455,l), (-975,455,l), (-1037,275,l), (-1135,275,l), (-1146,210,l), (-1059,210,l), (-1131,0,l) ); }, { closed = 1; nodes = ( (-905,455,l), (-745,455,l), (-807,275,l), (-967,275,l) ); }, { closed = 1; nodes = ( (-675,455,l), (-405,455,l), (-467,275,l), (-737,275,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { closed = 1; nodes = ( (-105,455,l), (165,455,l), (103,275,l), (-167,275,l) ); }, { closed = 1; nodes = ( (235,455,l), (395,455,l), (333,275,l), (173,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1077,0,l), (-997,230,l), (-811,230,l), (-891,0,l), (-846,0,l), (-766,230,l), (-472,230,l), (-552,0,l), (-507,0,l), (-427,230,l), (-241,230,l), (-321,0,l), (-276,0,l), (-196,230,l), (98,230,l), (18,0,l), (63,0,l), (143,230,l), (329,230,l), (249,0,l), (294,0,l), (374,230,l), (492,230,l), (499,270,l), (389,270,l), (455,460,l), (564,460,l), (570,500,l), (469,500,l), (550,730,l), (505,730,l), (424,500,l), (238,500,l), (319,730,l), (274,730,l), (193,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-671,500,l), (-590,730,l), (-635,730,l), (-716,500,l), (-902,500,l), (-821,730,l), (-866,730,l), (-947,500,l), (-1065,500,l), (-1071,460,l), (-961,460,l), (-1027,270,l), (-1136,270,l), (-1143,230,l), (-1042,230,l), (-1122,0,l) ); }, { closed = 1; nodes = ( (-916,460,l), (-730,460,l), (-796,270,l), (-982,270,l) ); }, { closed = 1; nodes = ( (-685,460,l), (-391,460,l), (-457,270,l), (-751,270,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); }, { closed = 1; nodes = ( (-115,460,l), (179,460,l), (113,270,l), (-181,270,l) ); }, { closed = 1; nodes = ( (224,460,l), (410,460,l), (344,270,l), (158,270,l) ); } ); width = 600; } ); } numbersign_numbersign_numbersign_numbersign.liga.glyph000066400000000000000000000122451472355150100406350ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = numbersign_numbersign_numbersign_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1622,0,l), (-1564,175,l), (-1434,175,l), (-1492,0,l), (-1392,0,l), (-1334,175,l), (-1083,175,l), (-1141,0,l), (-1041,0,l), (-983,175,l), (-853,175,l), (-911,0,l), (-811,0,l), (-753,175,l), (-514,175,l), (-572,0,l), (-472,0,l), (-414,175,l), (-284,175,l), (-342,0,l), (-242,0,l), (-184,175,l), (56,175,l), (-2,0,l), (98,0,l), (156,175,l), (286,175,l), (228,0,l), (328,0,l), (386,175,l), (483,175,l), (499,275,l), (419,275,l), (476,455,l), (562,455,l), (578,555,l), (509,555,l), (568,730,l), (468,730,l), (409,555,l), (279,555,l), (338,730,l), (238,730,l), (179,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-630,555,l), (-571,730,l), (-671,730,l), (-730,555,l), (-860,555,l), (-801,730,l), (-901,730,l), (-960,555,l), (-1211,555,l), (-1152,730,l), (-1252,730,l), (-1311,555,l), (-1441,555,l), (-1382,730,l), (-1482,730,l), (-1541,555,l), (-1637,555,l), (-1653,455,l), (-1574,455,l), (-1631,275,l), (-1716,275,l), (-1732,175,l), (-1664,175,l), (-1722,0,l) ); }, { closed = 1; nodes = ( (-1474,455,l), (-1344,455,l), (-1401,275,l), (-1531,275,l) ); }, { closed = 1; nodes = ( (-1244,455,l), (-993,455,l), (-1050,275,l), (-1301,275,l) ); }, { closed = 1; nodes = ( (-893,455,l), (-763,455,l), (-820,275,l), (-950,275,l) ); }, { closed = 1; nodes = ( (-663,455,l), (-424,455,l), (-481,275,l), (-720,275,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); }, { closed = 1; nodes = ( (-94,455,l), (146,455,l), (89,275,l), (-151,275,l) ); }, { closed = 1; nodes = ( (246,455,l), (376,455,l), (319,275,l), (189,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1661,0,l), (-1589,210,l), (-1429,210,l), (-1501,0,l), (-1431,0,l), (-1359,210,l), (-1079,210,l), (-1151,0,l), (-1081,0,l), (-1009,210,l), (-849,210,l), (-921,0,l), (-851,0,l), (-779,210,l), (-499,210,l), (-571,0,l), (-501,0,l), (-429,210,l), (-269,210,l), (-341,0,l), (-271,0,l), (-199,210,l), (81,210,l), (9,0,l), (79,0,l), (151,210,l), (311,210,l), (239,0,l), (309,0,l), (381,210,l), (489,210,l), (500,275,l), (403,275,l), (465,455,l), (563,455,l), (573,520,l), (486,520,l), (559,730,l), (489,730,l), (416,520,l), (256,520,l), (329,730,l), (259,730,l), (186,520,l), (-94,520,l), (-21,730,l), (-91,730,l), (-164,520,l), (-324,520,l), (-251,730,l), (-321,730,l), (-394,520,l), (-674,520,l), (-601,730,l), (-671,730,l), (-744,520,l), (-904,520,l), (-831,730,l), (-901,730,l), (-974,520,l), (-1254,520,l), (-1181,730,l), (-1251,730,l), (-1324,520,l), (-1484,520,l), (-1411,730,l), (-1481,730,l), (-1554,520,l), (-1662,520,l), (-1672,455,l), (-1575,455,l), (-1637,275,l), (-1735,275,l), (-1746,210,l), (-1659,210,l), (-1731,0,l) ); }, { closed = 1; nodes = ( (-1505,455,l), (-1345,455,l), (-1407,275,l), (-1567,275,l) ); }, { closed = 1; nodes = ( (-1275,455,l), (-995,455,l), (-1057,275,l), (-1337,275,l) ); }, { closed = 1; nodes = ( (-925,455,l), (-765,455,l), (-827,275,l), (-987,275,l) ); }, { closed = 1; nodes = ( (-695,455,l), (-415,455,l), (-477,275,l), (-757,275,l) ); }, { closed = 1; nodes = ( (-345,455,l), (-185,455,l), (-247,275,l), (-407,275,l) ); }, { closed = 1; nodes = ( (-115,455,l), (165,455,l), (103,275,l), (-177,275,l) ); }, { closed = 1; nodes = ( (235,455,l), (395,455,l), (333,275,l), (173,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1677,0,l), (-1597,230,l), (-1411,230,l), (-1491,0,l), (-1446,0,l), (-1366,230,l), (-1062,230,l), (-1142,0,l), (-1097,0,l), (-1017,230,l), (-831,230,l), (-911,0,l), (-866,0,l), (-786,230,l), (-482,230,l), (-562,0,l), (-517,0,l), (-437,230,l), (-251,230,l), (-331,0,l), (-286,0,l), (-206,230,l), (98,230,l), (18,0,l), (63,0,l), (143,230,l), (329,230,l), (249,0,l), (294,0,l), (374,230,l), (492,230,l), (499,270,l), (389,270,l), (455,460,l), (564,460,l), (570,500,l), (469,500,l), (550,730,l), (505,730,l), (424,500,l), (238,500,l), (319,730,l), (274,730,l), (193,500,l), (-111,500,l), (-30,730,l), (-75,730,l), (-156,500,l), (-342,500,l), (-261,730,l), (-306,730,l), (-387,500,l), (-691,500,l), (-610,730,l), (-655,730,l), (-736,500,l), (-922,500,l), (-841,730,l), (-886,730,l), (-967,500,l), (-1271,500,l), (-1190,730,l), (-1235,730,l), (-1316,500,l), (-1502,500,l), (-1421,730,l), (-1466,730,l), (-1547,500,l), (-1665,500,l), (-1671,460,l), (-1561,460,l), (-1627,270,l), (-1736,270,l), (-1743,230,l), (-1642,230,l), (-1722,0,l) ); }, { closed = 1; nodes = ( (-1516,460,l), (-1330,460,l), (-1396,270,l), (-1582,270,l) ); }, { closed = 1; nodes = ( (-1285,460,l), (-981,460,l), (-1047,270,l), (-1351,270,l) ); }, { closed = 1; nodes = ( (-936,460,l), (-750,460,l), (-816,270,l), (-1002,270,l) ); }, { closed = 1; nodes = ( (-705,460,l), (-401,460,l), (-467,270,l), (-771,270,l) ); }, { closed = 1; nodes = ( (-356,460,l), (-170,460,l), (-236,270,l), (-422,270,l) ); }, { closed = 1; nodes = ( (-125,460,l), (179,460,l), (113,270,l), (-191,270,l) ); }, { closed = 1; nodes = ( (224,460,l), (410,460,l), (344,270,l), (158,270,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numbersign_parenleft.liga.glyph000066400000000000000000000035371472355150100340450ustar00rootroot00000000000000{ glyphname = numbersign_parenleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-471,0,l), (-413,175,l), (-283,175,l), (-341,0,l), (-241,0,l), (-183,175,l), (249,175,l), (265,275,l), (-150,275,l), (-93,455,l), (293,455,l), (309,555,l), (-60,555,l), (-1,730,l), (-101,730,l), (-160,555,l), (-290,555,l), (-231,730,l), (-331,730,l), (-390,555,l), (-486,555,l), (-502,455,l), (-423,455,l), (-480,275,l), (-565,275,l), (-581,175,l), (-513,175,l), (-571,0,l) ); }, { closed = 1; nodes = ( (-323,455,l), (-193,455,l), (-250,275,l), (-380,275,l) ); }, { alignment = -1; ref = parenleft; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (224,210,l), (235,275,l), (-167,275,l), (-105,455,l), (263,455,l), (273,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { alignment = -1; ref = parenleft; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-463,0,l), (-419,230,l), (-233,230,l), (-277,0,l), (-232,0,l), (-188,230,l), (240,230,l), (240,270,l), (-180,270,l), (-144,460,l), (240,460,l), (240,500,l), (-136,500,l), (-92,730,l), (-137,730,l), (-181,500,l), (-367,500,l), (-323,730,l), (-368,730,l), (-412,500,l), (-530,500,l), (-530,460,l), (-420,460,l), (-456,270,l), (-565,270,l), (-565,230,l), (-464,230,l), (-508,0,l) ); }, { closed = 1; nodes = ( (-375,460,l), (-189,460,l), (-225,270,l), (-411,270,l) ); }, { alignment = -1; ref = parenleft; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numbersign_question.liga.glyph000066400000000000000000000063511472355150100337310ustar00rootroot00000000000000{ glyphname = numbersign_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-471,0,l), (-413,175,l), (-283,175,l), (-341,0,l), (-241,0,l), (-183,175,l), (-86,175,l), (-70,275,l), (-150,275,l), (-93,455,l), (178,455,l), (188,520,ls), (197,572,o), (245,600,o), (326,600,cs), (407,600,o), (447,572,o), (438,520,cs), (430,467,o), (384,440,o), (307,440,cs), (237,440,l), (208,225,l), (333,225,l), (345,305,l), (471,305,o), (568,390,o), (588,520,cs), (610,655,o), (517,740,o), (348,740,cs), (177,740,o), (58,654,o), (36,516,c), (119,555,l), (-60,555,l), (-1,730,l), (-101,730,l), (-160,555,l), (-290,555,l), (-231,730,l), (-331,730,l), (-390,555,l), (-486,555,l), (-502,455,l), (-423,455,l), (-480,275,l), (-565,275,l), (-581,175,l), (-513,175,l), (-571,0,l) ); }, { closed = 1; nodes = ( (-323,455,l), (-193,455,l), (-250,275,l), (-380,275,l) ); }, { closed = 1; nodes = ( (243,-5,ls), (289,-5,o), (323,22,o), (330,65,cs), (337,107,o), (311,135,o), (266,135,cs), (236,135,ls), (191,135,o), (157,107,o), (150,65,cs), (144,23,o), (169,-5,o), (214,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (-81,210,l), (-70,275,l), (-167,275,l), (-105,455,l), (158,455,l), (168,520,ls), (182,606,o), (249,660,o), (341,660,cs), (432,660,o), (480,606,o), (466,520,cs), (452,432,o), (393,380,o), (307,380,cs), (257,380,l), (229,205,l), (319,205,l), (335,305,l), (452,313,o), (539,398,o), (558,520,cs), (580,654,o), (499,740,o), (353,740,cs), (211,740,o), (99,651,o), (79,521,cs), (78,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { closed = 1; nodes = ( (250,-5,ls), (289,-5,o), (319,18,o), (325,54,cs), (330,90,o), (308,115,o), (269,115,cs), (249,115,ls), (210,115,o), (180,90,o), (175,54,cs), (169,17,o), (191,-5,o), (230,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-507,0,l), (-427,230,l), (-241,230,l), (-321,0,l), (-276,0,l), (-196,230,l), (-78,230,l), (-71,270,l), (-181,270,l), (-115,460,l), (139,460,l), (150,530,ls), (166,633,o), (240,695,o), (346,695,cs), (452,695,o), (506,633,o), (490,530,cs), (475,433,o), (401,375,o), (296,375,cs), (256,375,l), (229,205,l), (279,205,l), (299,330,l), (427,330,o), (521,408,o), (540,530,cs), (560,659,o), (488,740,o), (353,740,cs), (218,740,o), (120,659,o), (100,530,cs), (95,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-495,500,l), (-501,460,l), (-391,460,l), (-457,270,l), (-566,270,l), (-573,230,l), (-472,230,l), (-552,0,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); }, { closed = 1; nodes = ( (221,-5,ls), (254,-5,o), (280,17,o), (285,50,cs), (290,83,o), (272,105,o), (239,105,cs), (234,105,ls), (201,105,o), (175,83,o), (170,50,cs), (165,17,o), (183,-5,o), (216,-5,cs) ); } ); width = 600; } ); } numbersign_underscore.liga.glyph000066400000000000000000000035021472355150100341470ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = numbersign_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (480,-165,l), (502,-25,l), (-251,-25,l), (-184,175,l), (-87,175,l), (-71,275,l), (-151,275,l), (-94,455,l), (-8,455,l), (8,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-487,555,l), (-503,455,l), (-424,455,l), (-481,275,l), (-566,275,l), (-582,175,l), (-514,175,l), (-572,0,l), (-472,0,l), (-414,175,l), (-284,175,l), (-397,-165,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (-270,-25,l), (-189,210,l), (-81,210,l), (-70,275,l), (-167,275,l), (-105,455,l), (-7,455,l), (3,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l), (-491,0,l), (-419,210,l), (-259,210,l), (-366,-100,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (475,-70,l), (482,-25,l), (-285,-25,l), (-196,230,l), (-78,230,l), (-71,270,l), (-181,270,l), (-115,460,l), (-6,460,l), (0,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-495,500,l), (-501,460,l), (-391,460,l), (-457,270,l), (-566,270,l), (-573,230,l), (-472,230,l), (-552,0,l), (-507,0,l), (-427,230,l), (-241,230,l), (-345,-70,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); } ); width = 600; } ); } numbersign_underscore_parenleft.liga.glyph000066400000000000000000000047241472355150100362160ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = numbersign_underscore_parenleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (415,-165,l), (437,-23,l), (330,4,o), (276,94,o), (295,214,cs), (333,455,ls), (353,578,o), (434,667,o), (551,695,c), (575,845,l), (359,789,o), (213,645,o), (183,455,cs), (145,214,ls), (130,118,o), (155,15,o), (211,-25,c), (-851,-25,l), (-784,175,l), (-687,175,l), (-671,275,l), (-751,275,l), (-694,455,l), (-608,455,l), (-592,555,l), (-661,555,l), (-602,730,l), (-702,730,l), (-761,555,l), (-891,555,l), (-832,730,l), (-932,730,l), (-991,555,l), (-1087,555,l), (-1103,455,l), (-1024,455,l), (-1081,275,l), (-1166,275,l), (-1182,175,l), (-1114,175,l), (-1172,0,l), (-1072,0,l), (-1014,175,l), (-884,175,l), (-997,-165,l) ); }, { closed = 1; nodes = ( (-924,455,l), (-794,455,l), (-851,275,l), (-981,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (411,-100,l), (423,-25,l), (301,7,o), (240,122,o), (265,275,cs), (291,445,ls), (316,602,o), (417,720,o), (550,750,c), (563,835,l), (371,789,o), (232,640,o), (201,445,cs), (175,275,ls), (154,143,o), (190,31,o), (269,-25,c), (-870,-25,l), (-789,210,l), (-681,210,l), (-670,275,l), (-767,275,l), (-705,455,l), (-607,455,l), (-597,520,l), (-684,520,l), (-611,730,l), (-681,730,l), (-754,520,l), (-914,520,l), (-841,730,l), (-911,730,l), (-984,520,l), (-1092,520,l), (-1102,455,l), (-1005,455,l), (-1067,275,l), (-1165,275,l), (-1176,210,l), (-1089,210,l), (-1161,0,l), (-1091,0,l), (-1019,210,l), (-859,210,l), (-966,-100,l) ); }, { closed = 1; nodes = ( (-935,455,l), (-775,455,l), (-837,275,l), (-997,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (430,-70,l), (437,-25,l), (301,11,o), (237,133,o), (264,305,cs), (290,465,ls), (317,640,o), (417,759,o), (567,795,c), (575,845,l), (384,799,o), (267,669,o), (235,465,cs), (209,305,ls), (185,149,o), (225,30,o), (327,-25,c), (-885,-25,l), (-796,230,l), (-678,230,l), (-671,270,l), (-781,270,l), (-715,460,l), (-606,460,l), (-600,500,l), (-701,500,l), (-620,730,l), (-665,730,l), (-746,500,l), (-932,500,l), (-851,730,l), (-896,730,l), (-977,500,l), (-1095,500,l), (-1101,460,l), (-991,460,l), (-1057,270,l), (-1166,270,l), (-1173,230,l), (-1072,230,l), (-1152,0,l), (-1107,0,l), (-1027,230,l), (-841,230,l), (-945,-70,l) ); }, { closed = 1; nodes = ( (-946,460,l), (-760,460,l), (-826,270,l), (-1012,270,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numeral-greek.glyph000066400000000000000000000010431472355150100314450ustar00rootroot00000000000000{ glyphname = "numeral-greek"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (291,409,l), (470,720,l), (290,720,l), (161,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (266,410,l), (445,721,l), (315,721,l), (186,410,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (246,410,l), (420,721,l), (330,721,l), (206,410,l) ); } ); width = 600; } ); unicode = 884; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/numero.glyph000066400000000000000000000047311472355150100302230ustar00rootroot00000000000000{ glyphname = numero; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (96,0,l), (123,170,ls), (137,258,o), (148,484,o), (152,630,c), (154,562,o), (157,451,o), (161,394,cs), (186,0,l), (324,0,l), (440,730,l), (320,730,l), (293,560,ls), (279,472,o), (269,246,o), (266,100,c), (262,173,o), (257,288,o), (254,337,cs), (230,730,l), (92,730,l), (-24,0,l) ); }, { closed = 1; nodes = ( (556,300,o), (600,338,o), (609,395,cs), (648,645,ls), (657,702,o), (625,740,o), (568,740,cs), (511,740,o), (467,702,o), (458,645,cs), (419,395,ls), (410,338,o), (442,300,o), (499,300,cs) ); }, { closed = 1; nodes = ( (498,370,o), (491,378,o), (493,391,cs), (534,649,ls), (536,662,o), (545,670,o), (557,670,cs), (569,670,o), (576,662,o), (574,649,cs), (533,391,ls), (531,378,o), (522,370,o), (510,370,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (56,0,l), (126,440,ls), (135,495,o), (143,590,o), (148,646,c), (152,590,o), (160,499,o), (164,454,cs), (208,0,l), (301,0,l), (417,730,l), (347,730,l), (277,290,ls), (269,239,o), (261,143,o), (256,85,c), (253,143,o), (246,235,o), (242,277,cs), (195,730,l), (102,730,l), (-14,0,l) ); }, { closed = 1; nodes = ( (553,300,o), (600,342,o), (610,405,cs), (647,635,ls), (657,698,o), (622,740,o), (568,740,cs), (514,740,o), (467,698,o), (457,635,cs), (420,405,ls), (410,342,o), (445,300,o), (499,300,cs) ); }, { closed = 1; nodes = ( (489,355,o), (474,365,o), (479,395,cs), (518,645,ls), (522,669,o), (541,685,o), (559,685,cs), (577,685,o), (592,669,o), (588,645,cs), (549,395,ls), (544,365,o), (525,355,o), (507,355,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (43,0,l), (130,550,ls), (137,594,o), (144,644,o), (147,670,c), (150,634,o), (156,571,o), (161,529,cs), (225,0,l), (285,0,l), (401,730,l), (359,730,l), (272,180,ls), (265,136,o), (258,85,o), (256,59,c), (254,90,o), (248,148,o), (243,190,cs), (177,730,l), (117,730,l), (1,0,l) ); }, { closed = 1; nodes = ( (559,300,o), (599,336,o), (608,390,cs), (649,650,ls), (658,704,o), (628,740,o), (573,740,cs), (518,740,o), (478,704,o), (469,650,cs), (428,390,ls), (419,336,o), (449,300,o), (504,300,cs) ); }, { closed = 1; nodes = ( (482,338,o), (465,360,o), (470,390,cs), (511,650,ls), (516,680,o), (539,702,o), (567,702,cs), (595,702,o), (612,680,o), (607,650,cs), (566,390,ls), (561,360,o), (538,338,o), (510,338,cs) ); } ); width = 600; } ); unicode = 8470; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/o-cy.glyph000066400000000000000000000006021472355150100275560ustar00rootroot00000000000000{ glyphname = "o-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = o; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = o; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = o; } ); width = 600; } ); unicode = 1086; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/o.glyph000066400000000000000000000043351472355150100271540ustar00rootroot00000000000000{ glyphname = o; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (300,275); }, { name = horn; pos = (363,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (550,340,ls), (571,472,o), (492,560,o), (345,560,cs), (198,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (266,430,o), (324,430,cs), (382,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (300,275); }, { name = horn; pos = (375,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (524,351,ls), (544,481,o), (476,560,o), (345,560,cs), (214,560,o), (120,481,o), (99,350,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (152,115,o), (166,200,cs), (189,350,ls), (203,435,o), (254,480,o), (332,480,cs), (410,480,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (345,70,o), (267,70,cs) ); } ); visible = 1; width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (300,275); }, { name = horn; pos = (363,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 111; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/oacute.glyph000066400000000000000000000007001472355150100301660ustar00rootroot00000000000000{ glyphname = oacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 243; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/obarred-cy.glyph000066400000000000000000000034411472355150100307420ustar00rootroot00000000000000{ glyphname = "obarred-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (399,-10,o), (508,77,o), (529,210,cs), (550,341,ls), (571,472,o), (489,560,o), (345,560,cs), (201,560,o), (91,472,o), (70,341,cs), (49,210,ls), (28,77,o), (109,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (207,113,o), (174,148,o), (184,210,cs), (187,230,l), (397,230,l), (394,210,ls), (384,148,o), (341,113,o), (274,113,cs) ); }, { closed = 1; nodes = ( (205,341,ls), (215,402,o), (258,437,o), (325,437,cs), (392,437,o), (425,402,o), (415,341,cs), (412,325,l), (202,325,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (382,-10,o), (477,72,o), (498,201,cs), (522,351,ls), (542,478,o), (473,560,o), (345,560,cs), (216,560,o), (122,480,o), (101,350,cs), (78,201,ls), (57,71,o), (125,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,69,o), (152,116,o), (166,201,cs), (172,240,l), (416,240,l), (410,201,ls), (396,116,o), (345,69,o), (267,69,cs) ); }, { closed = 1; nodes = ( (189,350,ls), (203,434,o), (254,481,o), (332,481,cs), (410,481,o), (447,434,o), (433,350,cs), (428,315,l), (184,315,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (152,257,l), (442,257,l), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (449,302,l), (159,302,l) ); } ); width = 600; } ); unicode = 1257; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/obreve.glyph000066400000000000000000000007601472355150100301760ustar00rootroot00000000000000{ glyphname = obreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = o; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = o; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = o; }, { pos = (599,0); ref = brevecomb; } ); width = 600; } ); unicode = 335; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ocircumflex.glyph000066400000000000000000000007241472355150100312340ustar00rootroot00000000000000{ glyphname = ocircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 244; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ocircumflexacute.glyph000066400000000000000000000007701472355150100322570ustar00rootroot00000000000000{ glyphname = ocircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; } ); unicode = 7889; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ocircumflexdotbelow.glyph000066400000000000000000000011251472355150100327700ustar00rootroot00000000000000{ glyphname = ocircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 7897; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ocircumflexgrave.glyph000066400000000000000000000007701472355150100322620ustar00rootroot00000000000000{ glyphname = ocircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; } ); unicode = 7891; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ocircumflexhookabove.glyph000066400000000000000000000010101472355150100331170ustar00rootroot00000000000000{ glyphname = ocircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; } ); unicode = 7893; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ocircumflextilde.glyph000066400000000000000000000007701472355150100322570ustar00rootroot00000000000000{ glyphname = ocircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; } ); unicode = 7895; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/odieresis.glyph000066400000000000000000000007141472355150100307010ustar00rootroot00000000000000{ glyphname = odieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 246; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/odotbelow.glyph000066400000000000000000000007151472355150100307120ustar00rootroot00000000000000{ glyphname = odotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7885; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/oe.glyph000066400000000000000000000055031472355150100273170ustar00rootroot00000000000000{ glyphname = oe; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (208,-10,o), (251,33,o), (262,65,c), (270,65,l), (270,33,o), (297,-10,o), (374,-10,cs), (461,-10,o), (529,50,o), (543,140,c), (428,140,l), (423,106,o), (403,87,o), (374,87,cs), (345,87,o), (330,107,o), (335,140,cs), (353,250,l), (561,250,l), (586,410,ls), (600,500,o), (552,560,o), (465,560,cs), (388,560,o), (347,517,o), (337,485,c), (329,485,l), (328,517,o), (299,560,o), (225,560,cs), (138,560,o), (70,500,o), (56,410,cs), (13,140,ls), (-1,50,o), (47,-10,o), (134,-10,cs) ); }, { closed = 1; nodes = ( (138,87,o), (123,107,o), (128,140,cs), (171,410,ls), (176,443,o), (197,463,o), (226,463,cs), (255,463,o), (269,444,o), (264,410,cs), (221,140,ls), (216,106,o), (196,87,o), (167,87,cs) ); }, { closed = 1; nodes = ( (378,410,ls), (383,443,o), (403,463,o), (433,463,cs), (462,463,o), (476,444,o), (471,410,cs), (458,330,l), (365,330,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,-10,o), (257,36,o), (265,70,c), (269,70,l), (267,36,o), (294,-10,o), (374,-10,cs), (448,-10,o), (512,42,o), (538,125,c), (453,125,l), (441,90,o), (411,67,o), (377,67,cs), (336,67,o), (315,99,o), (323,150,cs), (339,250,l), (561,250,l), (584,400,ls), (600,498,o), (554,560,o), (465,560,cs), (385,560,o), (342,514,o), (334,480,c), (330,480,l), (332,514,o), (305,560,o), (225,560,cs), (136,560,o), (70,498,o), (54,400,cs), (15,150,ls), (-1,52,o), (45,-10,o), (134,-10,cs) ); }, { closed = 1; nodes = ( (114,67,o), (92,99,o), (100,150,cs), (139,400,ls), (147,451,o), (179,483,o), (222,483,cs), (263,483,o), (284,451,o), (276,400,cs), (237,150,ls), (229,99,o), (198,67,o), (157,67,cs) ); }, { closed = 1; nodes = ( (362,400,ls), (370,451,o), (401,483,o), (442,483,cs), (485,483,o), (507,451,o), (499,400,cs), (487,323,l), (350,323,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (209,-10,o), (256,38,o), (269,75,c), (272,75,l), (273,38,o), (303,-10,o), (380,-10,cs), (461,-10,o), (527,43,o), (547,125,c), (497,125,l), (483,71,o), (438,34,o), (384,34,cs), (327,34,o), (295,77,o), (305,140,cs), (324,260,l), (562,260,l), (586,410,ls), (600,501,o), (555,560,o), (468,560,cs), (397,560,o), (350,511,o), (335,474,c), (333,474,l), (332,511,o), (302,560,o), (225,560,cs), (137,560,o), (70,500,o), (56,408,cs), (13,139,ls), (-1,48,o), (43,-10,o), (128,-10,cs) ); }, { closed = 1; nodes = ( (86,34,o), (54,76,o), (64,139,cs), (107,408,ls), (117,473,o), (163,516,o), (221,516,cs), (278,516,o), (309,473,o), (299,410,cs), (256,140,ls), (246,77,o), (201,34,o), (144,34,cs) ); }, { closed = 1; nodes = ( (348,410,ls), (358,473,o), (402,516,o), (458,516,cs), (515,516,o), (546,473,o), (536,410,cs), (520,310,l), (332,310,l) ); } ); width = 600; } ); unicode = 339; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ogonek.glyph000066400000000000000000000006311472355150100301730ustar00rootroot00000000000000{ glyphname = ogonek; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ogonekcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = ogonekcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = ogonekcomb; } ); width = 600; } ); unicode = 731; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ogonekcomb.case.glyph000066400000000000000000000023641472355150100317530ustar00rootroot00000000000000{ glyphname = ogonekcomb.case; layers = ( { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-300,-195,l), (-293,-153,l), (-357,-153,ls), (-389,-153,o), (-405,-134,o), (-400,-103,cs), (-396,-75,o), (-367,-36,o), (-323,0,cs), (-310,10,l), (-347,10,l), (-404,-27,o), (-443,-74,o), (-449,-115,cs), (-457,-165,o), (-428,-195,o), (-373,-195,c) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-291,-203,l), (-282,-143,l), (-342,-143,ls), (-376,-143,o), (-393,-122,o), (-389,-93,cs), (-384,-65,o), (-361,-36,o), (-310,1,c), (-297,10,l), (-372,10,l), (-442,-34,o), (-470,-72,o), (-476,-110,cs), (-485,-164,o), (-443,-203,o), (-369,-203,cs) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-276,-225,l), (-259,-120,l), (-328,-120,ls), (-357,-120,o), (-371,-103,o), (-368,-83,cs), (-365,-66,o), (-347,-42,o), (-317,-18,cs), (-280,11,l), (-366,11,l), (-439,-19,o), (-490,-68,o), (-497,-115,cs), (-508,-180,o), (-465,-225,o), (-384,-225,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ogonekcomb.glyph000066400000000000000000000023761472355150100310440ustar00rootroot00000000000000{ glyphname = ogonekcomb; layers = ( { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-300,-195,l), (-293,-153,l), (-357,-153,ls), (-389,-153,o), (-405,-134,o), (-400,-103,cs), (-396,-75,o), (-367,-36,o), (-323,0,cs), (-310,10,l), (-347,10,l), (-404,-27,o), (-443,-74,o), (-449,-115,cs), (-457,-165,o), (-428,-195,o), (-373,-195,c) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-291,-203,l), (-282,-143,l), (-342,-143,ls), (-376,-143,o), (-393,-122,o), (-389,-93,cs), (-384,-65,o), (-361,-36,o), (-310,1,c), (-297,10,l), (-372,10,l), (-442,-34,o), (-470,-72,o), (-476,-110,cs), (-485,-164,o), (-443,-203,o), (-369,-203,cs) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-276,-225,l), (-259,-120,l), (-328,-120,ls), (-357,-120,o), (-371,-103,o), (-368,-83,cs), (-365,-66,o), (-347,-42,o), (-317,-18,cs), (-280,11,l), (-366,11,l), (-439,-19,o), (-490,-68,o), (-497,-115,cs), (-508,-180,o), (-465,-225,o), (-384,-225,cs) ); } ); width = 0; } ); unicode = 808; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ograve.glyph000066400000000000000000000007001472355150100301710ustar00rootroot00000000000000{ glyphname = ograve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 242; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohookabove.glyph000066400000000000000000000010011472355150100310350ustar00rootroot00000000000000{ glyphname = ohookabove; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = o; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = o; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = o; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7887; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohorn.glyph000066400000000000000000000020271472355150100300370ustar00rootroot00000000000000{ glyphname = ohorn; layers = ( { anchors = ( { name = top; pos = (340,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (475,495,ls), (526,495,o), (565,529,o), (573,580,cs), (583,640,l), (543,640,l), (533,580,ls), (528,550,o), (508,530,o), (481,530,cs), (446,530,l), (440,495,l) ); }, { ref = o; } ); width = 600; }, { anchors = ( { name = top; pos = (333,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (465,465,ls), (528,465,o), (576,503,o), (585,560,cs), (597,640,l), (522,640,l), (510,565,ls), (507,542,o), (493,530,o), (470,530,cs), (436,530,l), (426,465,l) ); }, { ref = o; } ); width = 600; }, { anchors = ( { name = top; pos = (333,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (459,430,ls), (546,430,o), (613,484,o), (625,565,cs), (637,640,l), (517,640,l), (505,565,ls), (502,543,o), (487,530,o), (465,530,cs), (405,530,l), (389,430,l) ); }, { ref = o; } ); width = 600; } ); unicode = 417; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohornacute.glyph000066400000000000000000000010011472355150100310500ustar00rootroot00000000000000{ glyphname = ohornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (602,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (601,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (618,0); ref = acutecomb; } ); width = 600; } ); unicode = 7899; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohorndotbelow.glyph000066400000000000000000000007351472355150100316030ustar00rootroot00000000000000{ glyphname = ohorndotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = ohorn; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = ohorn; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = ohorn; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7907; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohorngrave.glyph000066400000000000000000000010011472355150100310530ustar00rootroot00000000000000{ glyphname = ohorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (576,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (576,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (585,0); ref = gravecomb; } ); width = 600; } ); unicode = 7901; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohornhookabove.glyph000066400000000000000000000007411472355150100317360ustar00rootroot00000000000000{ glyphname = ohornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = ohorn; }, { pos = (597,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = ohorn; }, { pos = (590,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = ohorn; }, { pos = (590,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7903; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohorntilde.glyph000066400000000000000000000010011472355150100310500ustar00rootroot00000000000000{ glyphname = ohorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (590,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (590,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (597,0); ref = tildecomb; } ); width = 600; } ); unicode = 7905; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ohungarumlaut.glyph000066400000000000000000000007341472355150100316100ustar00rootroot00000000000000{ glyphname = ohungarumlaut; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; } ); unicode = 337; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/omacron.glyph000066400000000000000000000007041472355150100303500ustar00rootroot00000000000000{ glyphname = omacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 333; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/omega.glyph000066400000000000000000000053001472355150100277770ustar00rootroot00000000000000{ glyphname = omega; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (216,-10,o), (266,38,o), (278,115,c), (272,115,l), (260,38,o), (294,-10,o), (362,-10,cs), (437,-10,o), (495,48,o), (509,140,cs), (548,382,ls), (563,478,o), (522,544,o), (438,560,c), (430,514,l), (484,497,o), (510,448,o), (500,382,cs), (461,140,ls), (450,70,o), (414,34,o), (364,34,cs), (314,34,o), (291,70,o), (302,140,cs), (341,382,l), (295,382,l), (256,140,ls), (245,70,o), (209,34,o), (159,34,cs), (109,34,o), (86,70,o), (97,140,cs), (136,382,ls), (146,448,o), (188,497,o), (246,514,c), (254,560,l), (164,544,o), (103,478,o), (88,382,cs), (49,140,ls), (35,48,o), (73,-10,o), (148,-10,cs) ); } ); width = 600; }, { hints = ( { place = (-24,-43); type = Stem; }, { place = (-24,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { place = (-28,-43); type = Stem; }, { place = (-28,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (211,-10,o), (266,42,o), (279,126,c), (275,126,l), (262,42,o), (299,-10,o), (374,-10,cs), (452,-10,o), (510,51,o), (526,151,cs), (559,358,ls), (576,466,o), (533,541,o), (445,555,c), (430,460,l), (467,452,o), (482,413,o), (474,358,cs), (441,150,ls), (432,96,o), (405,66,o), (366,66,cs), (327,66,o), (309,96,o), (318,150,cs), (349,345,l), (275,345,l), (244,150,ls), (235,96,o), (207,66,o), (168,66,cs), (129,66,o), (112,96,o), (121,150,cs), (154,358,ls), (163,417,o), (190,458,o), (226,465,c), (241,560,l), (151,546,o), (86,469,o), (69,358,cs), (36,151,ls), (20,51,o), (58,-10,o), (136,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (205,-10,o), (265,46,o), (279,130,c), (277,130,l), (262,46,o), (304,-10,o), (377,-10,cs), (461,-10,o), (527,60,o), (543,165,cs), (570,335,ls), (590,458,o), (533,543,o), (433,560,c), (411,420,l), (439,411,o), (454,377,o), (447,335,cs), (418,152,ls), (413,120,o), (395,102,o), (369,102,cs), (341,102,o), (328,120,o), (333,152,cs), (362,335,l), (258,335,l), (229,152,ls), (224,120,o), (205,102,o), (177,102,cs), (151,102,o), (139,120,o), (144,152,cs), (173,335,ls), (180,377,o), (205,411,o), (237,420,c), (259,560,l), (153,543,o), (70,458,o), (50,335,cs), (23,165,ls), (7,60,o), (49,-10,o), (131,-10,cs) ); } ); width = 600; } ); unicode = 969; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/omegatonos.glyph000066400000000000000000000010411472355150100310600ustar00rootroot00000000000000{ glyphname = omegatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = omega; }, { alignment = -1; pos = (20,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = omega; }, { alignment = -1; pos = (20,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = omega; }, { alignment = -1; pos = (17,0); ref = tonos; } ); width = 600; } ); unicode = 974; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/omicron.glyph000066400000000000000000000005221472355150100303560ustar00rootroot00000000000000{ glyphname = omicron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; } ); width = 600; } ); unicode = 959; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/omicrontonos.glyph000066400000000000000000000006671472355150100314530ustar00rootroot00000000000000{ glyphname = omicrontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (40,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (30,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (30,0); ref = tonos; } ); width = 600; } ); unicode = 972; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/one.glyph000066400000000000000000000014151472355150100274730ustar00rootroot00000000000000{ glyphname = one; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (537,130,l), (391,130,l), (486,730,l), (321,730,l), (131,610,l), (106,455,l), (314,593,l), (241,130,l), (57,130,l), (36,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (496,0,l), (509,82,l), (347,82,l), (450,730,l), (327,730,l), (142,607,l), (126,507,l), (348,655,l), (257,82,l), (59,82,l), (46,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (320,45,l), (429,730,l), (363,730,l), (158,595,l), (149,539,l), (371,685,l), (270,45,l), (63,45,l), (56,0,l) ); } ); width = 600; } ); unicode = 49; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/onedotenleader.glyph000066400000000000000000000006311472355150100317010ustar00rootroot00000000000000{ glyphname = onedotenleader; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = period; } ); width = 600; } ); unicode = 8228; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/onehalf.glyph000066400000000000000000000043201472355150100303240ustar00rootroot00000000000000{ glyphname = onehalf; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,0,l), (553,75,l), (453,75,ls), (435,75,o), (407,72,o), (392,70,c), (394,79,l), (456,110,ls), (528,145,o), (565,180,o), (572,227,cs), (582,289,o), (535,330,o), (456,330,cs), (375,330,o), (311,283,o), (300,216,c), (390,216,l), (394,242,o), (416,260,o), (445,260,cs), (470,260,o), (485,244,o), (481,219,cs), (478,199,o), (464,184,o), (436,169,cs), (280,89,l), (266,0,l) ); }, { closed = 1; nodes = ( (351,405,l), (363,480,l), (273,480,l), (313,730,l), (198,730,l), (114,676,l), (99,578,l), (167,625,ls), (184,637,o), (203,656,o), (213,668,c), (183,480,l), (69,480,l), (57,405,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (526,0,l), (532,40,l), (409,40,ls), (400,40,o), (371,40,o), (351,40,c), (352,44,l), (436,92,ls), (505,132,o), (544,177,o), (552,227,cs), (561,287,o), (523,330,o), (456,330,cs), (385,330,o), (331,284,o), (320,216,c), (365,216,l), (372,260,o), (406,290,o), (450,290,cs), (491,290,o), (513,264,o), (506,224,cs), (501,188,o), (475,158,o), (421,126,cs), (294,51,l), (286,0,l) ); }, { closed = 1; nodes = ( (343,405,l), (349,445,l), (228,445,l), (274,730,l), (204,730,l), (123,669,l), (114,614,l), (186,668,ls), (203,681,o), (217,694,o), (224,700,c), (183,445,l), (64,445,l), (58,405,l) ); }, { alignment = -1; pos = (-44,0); ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (526,0,l), (534,50,l), (425,50,ls), (396,50,o), (364,45,o), (349,42,c), (350,52,l), (451,104,ls), (511,135,o), (549,177,o), (556,218,cs), (566,285,o), (523,330,o), (448,330,cs), (376,330,o), (319,285,o), (305,216,c), (365,216,l), (371,255,o), (401,280,o), (440,280,cs), (479,280,o), (501,255,o), (495,216,cs), (491,187,o), (463,160,o), (412,133,cs), (281,64,l), (271,0,l) ); }, { closed = 1; nodes = ( (335,405,l), (343,455,l), (236,455,l), (280,730,l), (195,730,l), (115,669,l), (104,599,l), (174,653,ls), (191,666,o), (206,682,o), (213,691,c), (176,455,l), (58,455,l), (50,405,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; } ); unicode = 189; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/oneinferior.glyph000066400000000000000000000007251472355150100312340ustar00rootroot00000000000000{ glyphname = oneinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-515); ref = onesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-515); ref = onesuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-515); ref = onesuperior; } ); width = 600; } ); unicode = 8321; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/onequarter.glyph000066400000000000000000000030671472355150100311040ustar00rootroot00000000000000{ glyphname = onequarter; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (351,404,l), (363,479,l), (273,479,l), (312,729,l), (197,729,l), (114,675,l), (98,577,l), (167,624,ls), (184,636,o), (203,655,o), (213,667,c), (183,479,l), (69,479,l), (57,404,l) ); }, { closed = 1; nodes = ( (505,0,l), (537,205,l), (447,205,l), (436,130,l), (361,130,l), (363,146,l), (526,325,l), (427,325,l), (275,160,l), (260,60,l), (425,60,l), (415,0,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (325,405,l), (333,455,l), (236,455,l), (280,730,l), (195,730,l), (115,669,l), (104,599,l), (174,653,ls), (191,666,o), (206,682,o), (213,691,c), (176,455,l), (58,455,l), (50,405,l) ); }, { closed = 1; nodes = ( (496,0,l), (529,209,l), (469,209,l), (455,120,l), (340,120,l), (343,136,l), (507,325,l), (438,325,l), (285,150,l), (272,70,l), (447,70,l), (436,0,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,405,l), (331,445,l), (220,445,l), (266,730,l), (196,730,l), (115,669,l), (106,614,l), (178,668,ls), (195,681,o), (209,694,o), (216,700,c), (175,445,l), (56,445,l), (50,405,l) ); }, { closed = 1; nodes = ( (491,0,l), (525,216,l), (480,216,l), (463,110,l), (328,110,l), (331,126,l), (499,325,l), (449,325,l), (288,140,l), (277,70,l), (457,70,l), (446,0,l) ); }, { alignment = -1; pos = (-44,0); ref = fraction; } ); width = 600; } ); unicode = 188; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/onesuperior.glyph000066400000000000000000000014601472355150100312640ustar00rootroot00000000000000{ glyphname = onesuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,405,l), (509,490,l), (407,490,l), (460,830,l), (340,830,l), (230,756,l), (214,658,l), (352,747,l), (312,490,l), (179,490,l), (165,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,405,l), (490,469,l), (386,469,l), (443,830,l), (348,830,l), (240,759,l), (228,680,l), (363,767,l), (316,469,l), (185,469,l), (175,405,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (470,405,l), (476,445,l), (370,445,l), (431,830,l), (364,830,l), (253,751,l), (245,700,l), (381,795,l), (325,445,l), (196,445,l), (190,405,l) ); } ); width = 600; } ); unicode = 185; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/oogonek.glyph000066400000000000000000000050451472355150100303560ustar00rootroot00000000000000{ glyphname = oogonek; layers = ( { anchors = ( { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (387,-225,l), (404,-120,l), (335,-120,ls), (306,-120,o), (292,-103,o), (295,-83,cs), (298,-66,o), (316,-41,o), (346,-18,cs), (410,31,l), (470,70,o), (517,135,o), (529,210,cs), (550,340,ls), (571,472,o), (492,560,o), (345,560,cs), (198,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs), (275,-10,o), (321,12,o), (324,31,c), (224,-19,o), (173,-68,o), (166,-115,cs), (155,-180,o), (198,-225,o), (279,-225,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (266,430,o), (324,430,cs), (382,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (375,550); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (374,-203,l), (383,-143,l), (323,-143,ls), (289,-143,o), (272,-122,o), (276,-93,cs), (281,-65,o), (304,-36,o), (355,1,cs), (382,21,l), (445,55,o), (487,117,o), (500,200,cs), (524,351,ls), (544,481,o), (476,560,o), (345,560,cs), (214,560,o), (120,481,o), (99,350,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs), (257,-10,o), (260,-10,o), (263,-10,c), (211,-51,o), (193,-81,o), (189,-110,cs), (180,-164,o), (222,-203,o), (296,-203,cs) ); }, { closed = 1; nodes = ( (189,70,o), (152,115,o), (166,200,cs), (189,350,ls), (203,435,o), (254,480,o), (332,480,cs), (410,480,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (345,70,o), (267,70,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (371,-195,l), (378,-153,l), (314,-153,ls), (282,-153,o), (266,-134,o), (271,-103,cs), (275,-75,o), (304,-36,o), (348,0,cs), (379,25,l), (432,59,o), (469,116,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs), (270,-10,o), (287,-9,o), (301,-6,c), (252,-47,o), (227,-83,o), (222,-115,cs), (214,-165,o), (243,-195,o), (298,-195,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 491; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/operator.circled.glyph000066400000000000000000000036631472355150100321600ustar00rootroot00000000000000{ glyphname = operator.circled; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,0,o), (610,133,o), (610,310,cs), (610,487,o), (477,620,o), (300,620,cs), (123,620,o), (-10,487,o), (-10,310,cs), (-10,133,o), (123,0,o), (300,0,cs) ); }, { closed = 1; nodes = ( (152,50,o), (40,162,o), (40,310,cs), (40,458,o), (152,570,o), (300,570,cs), (448,570,o), (560,458,o), (560,310,cs), (560,162,o), (448,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (268,254,o), (244,278,o), (244,310,cs), (244,342,o), (268,366,o), (300,366,cs), (332,366,o), (356,342,o), (356,310,cs), (356,278,o), (332,254,o), (300,254,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,0,o), (610,133,o), (610,310,cs), (610,487,o), (477,620,o), (300,620,cs), (123,620,o), (-10,487,o), (-10,310,cs), (-10,133,o), (123,0,o), (300,0,cs) ); }, { closed = 1; nodes = ( (152,50,o), (40,162,o), (40,310,cs), (40,458,o), (152,570,o), (300,570,cs), (448,570,o), (560,458,o), (560,310,cs), (560,162,o), (448,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (268,254,o), (244,278,o), (244,310,cs), (244,342,o), (268,366,o), (300,366,cs), (332,366,o), (356,342,o), (356,310,cs), (356,278,o), (332,254,o), (300,254,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,0,o), (610,133,o), (610,310,cs), (610,487,o), (477,620,o), (300,620,cs), (123,620,o), (-10,487,o), (-10,310,cs), (-10,133,o), (123,0,o), (300,0,cs) ); }, { closed = 1; nodes = ( (152,50,o), (40,162,o), (40,310,cs), (40,458,o), (152,570,o), (300,570,cs), (448,570,o), (560,458,o), (560,310,cs), (560,162,o), (448,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (268,254,o), (244,278,o), (244,310,cs), (244,342,o), (268,366,o), (300,366,cs), (332,366,o), (356,342,o), (356,310,cs), (356,278,o), (332,254,o), (300,254,cs) ); } ); width = 600; } ); unicode = 8857; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/optionK_ey.glyph000066400000000000000000000016271472355150100310370ustar00rootroot00000000000000{ glyphname = optionKey; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,0,l), (590,45,l), (420,45,l), (215,550,l), (10,550,l), (10,505,l), (180,505,l), (385,0,l) ); }, { closed = 1; nodes = ( (590,505,l), (590,550,l), (386,550,l), (386,505,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,0,l), (590,80,l), (427,80,l), (233,550,l), (10,550,l), (10,470,l), (173,470,l), (367,0,l) ); }, { closed = 1; nodes = ( (590,470,l), (590,550,l), (386,550,l), (386,470,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,0,l), (590,140,l), (440,140,l), (265,550,l), (10,550,l), (10,410,l), (161,410,l), (336,0,l) ); }, { closed = 1; nodes = ( (590,410,l), (590,550,l), (386,550,l), (386,410,l) ); } ); width = 600; } ); unicode = 8997; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ordfeminine.glyph000066400000000000000000000041361472355150100312140ustar00rootroot00000000000000{ glyphname = ordfeminine; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (458,455,l), (489,650,ls), (498,704,o), (453,740,o), (378,740,cs), (313,740,o), (258,706,o), (240,655,c), (320,655,l), (324,670,o), (344,680,o), (369,680,cs), (396,680,o), (412,668,o), (409,650,cs), (387,510,l), (390,510,l), (381,455,l) ); }, { closed = 1; nodes = ( (330,450,o), (366,472,o), (387,510,c), (398,510,l), (405,555,l), (394,555,l), (389,525,o), (360,505,o), (323,505,cs), (299,505,o), (283,520,o), (287,540,cs), (290,562,o), (306,575,o), (327,575,cs), (408,575,l), (416,625,l), (335,625,ls), (266,625,o), (214,590,o), (206,538,cs), (198,485,o), (232,450,o), (291,450,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (448,455,l), (479,650,ls), (488,706,o), (449,740,o), (378,740,cs), (312,740,o), (266,711,o), (251,660,c), (301,660,l), (308,684,o), (337,700,o), (372,700,cs), (412,700,o), (434,681,o), (429,650,cs), (407,510,l), (410,510,l), (401,455,l) ); }, { closed = 1; nodes = ( (347,450,o), (387,473,o), (407,510,c), (418,510,l), (425,555,l), (414,555,l), (407,513,o), (372,488,o), (320,488,cs), (282,488,o), (261,506,o), (266,536,cs), (270,564,o), (293,581,o), (328,581,cs), (429,581,l), (435,621,l), (334,621,ls), (269,621,o), (224,588,o), (216,536,cs), (208,484,o), (241,450,o), (301,450,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (443,455,l), (474,650,ls), (483,704,o), (444,740,o), (378,740,cs), (321,740,o), (272,708,o), (256,660,c), (291,660,l), (301,690,o), (334,710,o), (373,710,cs), (418,710,o), (445,686,o), (439,650,cs), (417,510,l), (420,510,l), (411,455,l) ); }, { closed = 1; nodes = ( (351,450,o), (398,474,o), (417,510,c), (428,510,l), (435,555,l), (424,555,l), (416,508,o), (375,478,o), (319,478,cs), (275,478,o), (250,500,o), (256,535,cs), (261,568,o), (288,590,o), (324,590,cs), (440,590,l), (445,620,l), (329,620,ls), (272,620,o), (229,586,o), (221,535,cs), (212,483,o), (243,450,o), (301,450,cs) ); } ); width = 600; } ); unicode = 170; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ordmasculine.glyph000066400000000000000000000031031472355150100313730ustar00rootroot00000000000000{ glyphname = ordmasculine; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (408,450,o), (471,502,o), (481,571,cs), (489,620,ls), (501,692,o), (454,740,o), (373,740,cs), (292,740,o), (231,692,o), (219,620,cs), (211,571,ls), (201,502,o), (246,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (305,520,o), (287,540,o), (291,571,cs), (299,620,ls), (304,650,o), (329,670,o), (362,670,cs), (395,670,o), (414,650,o), (409,620,cs), (401,571,ls), (397,540,o), (371,520,o), (338,520,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (395,445,o), (448,487,o), (458,550,cs), (471,630,ls), (481,693,o), (441,735,o), (372,735,cs), (303,735,o), (251,693,o), (241,630,cs), (228,550,ls), (218,487,o), (257,445,o), (326,445,cs) ); }, { closed = 1; nodes = ( (294,485,o), (272,511,o), (278,550,cs), (291,630,ls), (297,669,o), (327,695,o), (366,695,cs), (405,695,o), (427,669,o), (421,630,cs), (408,550,ls), (402,511,o), (372,485,o), (333,485,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (391,445,o), (441,483,o), (451,540,cs), (467,645,ls), (476,702,o), (438,740,o), (373,740,cs), (308,740,o), (258,702,o), (249,645,cs), (233,540,ls), (223,483,o), (261,445,o), (326,445,cs) ); }, { closed = 1; nodes = ( (286,475,o), (260,501,o), (267,540,cs), (283,645,ls), (289,684,o), (323,710,o), (368,710,cs), (413,710,o), (439,684,o), (433,645,cs), (417,540,ls), (410,501,o), (376,475,o), (331,475,cs) ); } ); width = 600; } ); unicode = 186; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/oslash.glyph000066400000000000000000000041671472355150100302120ustar00rootroot00000000000000{ glyphname = oslash; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (91,-30,l), (624,590,l), (509,590,l), (-24,-30,l) ); }, { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (550,340,ls), (571,472,o), (492,560,o), (345,560,cs), (198,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (212,120,o), (180,154,o), (189,210,cs), (210,340,ls), (219,396,o), (261,430,o), (324,430,cs), (387,430,o), (419,396,o), (410,340,cs), (389,210,ls), (380,154,o), (338,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (375,550); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (78,-30,l), (614,590,l), (521,590,l), (-14,-30,l) ); }, { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (524,351,ls), (545,481,o), (476,560,o), (345,560,cs), (214,560,o), (119,481,o), (99,350,cs), (76,200,ls), (56,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (187,70,o), (148,118,o), (161,200,cs), (184,350,ls), (197,432,o), (252,480,o), (332,480,cs), (412,480,o), (451,432,o), (438,350,cs), (415,200,ls), (402,118,o), (347,70,o), (267,70,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (61,-30,l), (590,590,l), (539,590,l), (10,-30,l) ); }, { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 248; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/oslashacute.glyph000066400000000000000000000010041472355150100312170ustar00rootroot00000000000000{ glyphname = oslashacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = oslash; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = oslash; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = oslash; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 511; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/otilde.glyph000066400000000000000000000007001472355150100301660ustar00rootroot00000000000000{ glyphname = otilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 245; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/overline.glyph000066400000000000000000000010271472355150100305340ustar00rootroot00000000000000{ glyphname = overline; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (691,785,l), (698,830,l), (78,830,l), (71,785,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (685,750,l), (698,830,l), (78,830,l), (65,750,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (676,690,l), (698,830,l), (78,830,l), (56,690,l) ); } ); width = 600; } ); unicode = 8254; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/p.glyph000066400000000000000000000036011472355150100271500ustar00rootroot00000000000000{ glyphname = p; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (143,-180,l), (167,-30,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs), (422,-10,o), (508,74,o), (528,205,cs), (551,345,ls), (571,476,o), (513,560,o), (402,560,cs), (311,560,o), (247,505,o), (232,410,c), (272,445,l), (237,445,l), (254,550,l), (109,550,l), (-7,-180,l) ); }, { closed = 1; nodes = ( (223,120,o), (196,153,o), (205,210,cs), (226,340,ls), (235,397,o), (272,430,o), (327,430,cs), (383,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (128,75,l), (146,75,l), (128,140,l), (114,50,o), (170,-10,o), (267,-10,cs), (376,-10,o), (462,70,o), (481,190,cs), (508,361,ls), (527,481,o), (468,560,o), (358,560,cs), (260,560,o), (185,500,o), (171,410,c), (219,475,l), (191,475,l), (203,550,l), (153,550,l), (37,-180,l) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,190,cs), (173,361,ls), (189,459,o), (251,517,o), (341,517,cs), (430,517,o), (474,459,o), (458,361,cs), (431,190,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,-180,l), (135,-20,l), (153,105,l), (173,105,l), (158,126,l), (145,43,o), (197,-10,o), (287,-10,cs), (398,-10,o), (479,68,o), (499,195,cs), (524,356,ls), (544,482,o), (488,560,o), (378,560,cs), (287,560,o), (218,508,o), (205,424,c), (226,445,l), (208,445,l), (225,550,l), (135,550,l), (19,-180,l) ); }, { closed = 1; nodes = ( (196,68,o), (157,117,o), (170,200,cs), (193,350,ls), (207,433,o), (261,482,o), (335,482,cs), (411,482,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (346,68,o), (270,68,cs) ); } ); width = 600; } ); unicode = 112; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/paragraph.glyph000066400000000000000000000020611472355150100306550ustar00rootroot00000000000000{ glyphname = paragraph; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (277,-180,l), (422,730,l), (312,730,ls), (198,730,o), (111,662,o), (95,560,cs), (82,480,ls), (66,378,o), (131,310,o), (245,310,c), (167,-180,l) ); }, { closed = 1; nodes = ( (457,-180,l), (602,730,l), (492,730,l), (347,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (262,-180,l), (407,730,l), (327,730,ls), (213,730,o), (126,662,o), (110,560,cs), (97,480,ls), (81,378,o), (146,310,o), (260,310,c), (182,-180,l) ); }, { closed = 1; nodes = ( (432,-180,l), (577,730,l), (497,730,l), (352,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (247,-180,l), (392,730,l), (342,730,ls), (240,730,o), (162,670,o), (148,580,cs), (129,460,ls), (115,370,o), (173,310,o), (275,310,c), (197,-180,l) ); }, { closed = 1; nodes = ( (417,-180,l), (562,730,l), (512,730,l), (367,-180,l) ); } ); width = 600; } ); unicode = 182; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parallel.glyph000066400000000000000000000013671472355150100305140ustar00rootroot00000000000000{ glyphname = parallel; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (441,0,l), (557,730,l), (407,730,l), (291,0,l) ); }, { closed = 1; nodes = ( (221,0,l), (337,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (401,0,l), (517,730,l), (427,730,l), (311,0,l) ); }, { closed = 1; nodes = ( (201,0,l), (317,730,l), (227,730,l), (111,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (381,0,l), (497,730,l), (447,730,l), (331,0,l) ); }, { closed = 1; nodes = ( (181,0,l), (297,730,l), (247,730,l), (131,0,l) ); } ); width = 600; } ); unicode = 8741; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenleft.glyph000066400000000000000000000017701472355150100306760ustar00rootroot00000000000000{ glyphname = parenleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (445,27,l), (338,54,o), (284,144,o), (303,264,cs), (333,455,ls), (353,578,o), (434,667,o), (551,695,c), (575,845,l), (359,789,o), (213,645,o), (183,455,cs), (153,264,ls), (122,71,o), (218,-68,o), (421,-125,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (435,-36,l), (311,-6,o), (248,110,o), (273,265,cs), (303,455,ls), (328,612,o), (429,730,o), (561,760,c), (575,845,l), (383,799,o), (244,650,o), (213,455,cs), (183,265,ls), (151,66,o), (240,-78,o), (421,-125,c) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (429,-76,l), (292,-40,o), (229,84,o), (257,260,cs), (289,460,ls), (317,636,o), (418,756,o), (567,792,c), (574,840,l), (392,797,o), (271,658,o), (239,460,cs), (207,260,ls), (175,62,o), (254,-76,o), (422,-120,c) ); } ); width = 600; } ); unicode = 40; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenleftextension.glyph000066400000000000000000000010631472355150100326260ustar00rootroot00000000000000{ glyphname = parenleftextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,1020,l), (275,1020,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9116; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenleftlowerhook.glyph000066400000000000000000000014321472355150100326230ustar00rootroot00000000000000{ glyphname = parenleftlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (550,-74,l), (407,-38,o), (325,84,o), (325,260,cs), (325,1020,l), (275,1020,l), (275,260,ls), (275,62,o), (375,-77,o), (550,-120,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (555,-32,l), (425,-1,o), (345,114,o), (345,270,cs), (345,1020,l), (255,1020,l), (255,270,ls), (255,75,o), (369,-74,o), (555,-120,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (555,34,l), (447,61,o), (375,183,o), (375,340,cs), (375,1020,l), (225,1020,l), (225,340,ls), (225,117,o), (357,-66,o), (555,-120,c) ); } ); width = 600; } ); unicode = 9117; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenleftupperhook.glyph000066400000000000000000000014351472355150100326310ustar00rootroot00000000000000{ glyphname = parenleftupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,460,ls), (325,636,o), (407,758,o), (550,794,c), (550,840,l), (375,797,o), (275,658,o), (275,460,cs), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,450,ls), (345,606,o), (425,721,o), (555,752,c), (555,840,l), (369,794,o), (255,645,o), (255,450,cs), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,380,ls), (375,537,o), (447,659,o), (555,686,c), (555,840,l), (357,786,o), (225,603,o), (225,380,cs), (225,-300,l) ); } ); width = 600; } ); unicode = 9115; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenright.glyph000066400000000000000000000017631472355150100310630ustar00rootroot00000000000000{ glyphname = parenright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (272,-68,o), (412,71,o), (443,264,cs), (473,455,ls), (503,645,o), (403,789,o), (205,845,c), (181,695,l), (290,667,o), (343,578,o), (323,455,cs), (293,264,ls), (274,144,o), (192,54,o), (75,27,c), (51,-125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (248,-78,o), (381,66,o), (413,265,cs), (443,455,ls), (474,650,o), (383,799,o), (205,845,c), (191,760,l), (315,730,o), (378,612,o), (353,455,cs), (323,265,ls), (298,110,o), (199,-6,o), (65,-36,c), (51,-125,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (235,-76,o), (356,62,o), (388,260,cs), (420,460,ls), (452,658,o), (373,797,o), (205,840,c), (198,796,l), (335,760,o), (398,636,o), (370,460,cs), (338,260,ls), (310,84,o), (209,-36,o), (60,-72,c), (53,-120,l) ); } ); width = 600; } ); unicode = 41; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenrightextension.glyph000066400000000000000000000006221472355150100330110ustar00rootroot00000000000000{ glyphname = parenrightextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = parenleftextension; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = parenleftextension; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = parenleftextension; } ); width = 600; } ); unicode = 9119; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenrightlowerhook.glyph000066400000000000000000000007571472355150100330170ustar00rootroot00000000000000{ glyphname = parenrightlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = parenleftlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = parenleftlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = parenleftlowerhook; scale = (-1,1); } ); width = 600; } ); unicode = 9120; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/parenrightupperhook.glyph000066400000000000000000000007571472355150100330220ustar00rootroot00000000000000{ glyphname = parenrightupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = parenleftupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = parenleftupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = parenleftupperhook; scale = (-1,1); } ); width = 600; } ); unicode = 9118; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/partialdiff.glyph000066400000000000000000000036641472355150100312070ustar00rootroot00000000000000{ glyphname = partialdiff; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-7,o), (508,75,o), (529,210,cs), (557,385,ls), (582,541,o), (483,674,o), (402,730,c), (202,730,l), (302,658,o), (429,526,o), (413,425,cs), (407,385,l), (393,385,l), (403,371,l), (416,446,o), (372,494,o), (278,494,cs), (162,494,o), (82,414,o), (60,279,cs), (49,210,ls), (28,75,o), (108,-13,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (210,279,ls), (219,337,o), (256,369,o), (314,369,cs), (373,369,o), (399,337,o), (390,279,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,205,cs), (530,405,ls), (563,615,o), (368,730,o), (368,730,c), (233,730,l), (336,680,o), (465,560,o), (442,415,cs), (438,390,l), (424,390,l), (435,370,l), (446,449,o), (398,495,o), (308,495,cs), (192,495,o), (112,416,o), (91,285,cs), (78,205,ls), (57,71,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (190,70,o), (155,118,o), (168,205,cs), (181,285,ls), (195,372,o), (246,420,o), (323,420,cs), (401,420,o), (435,373,o), (421,285,cs), (408,205,ls), (395,118,o), (344,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (378,-10,o), (461,66,o), (483,200,cs), (514,395,ls), (537,542,o), (425,672,o), (336,730,c), (259,730,l), (360,667,o), (486,535,o), (465,405,cs), (463,393,l), (449,393,l), (458,358,l), (471,445,o), (422,495,o), (323,495,cs), (204,495,o), (128,421,o), (106,285,cs), (93,200,ls), (71,66,o), (129,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (171,35,o), (126,97,o), (143,200,cs), (156,285,ls), (173,389,o), (237,452,o), (327,452,cs), (421,452,o), (462,385,o), (446,285,cs), (433,200,ls), (416,97,o), (352,35,o), (261,35,cs) ); } ); width = 600; } ); unicode = 8706; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/pe-cy.glyph000066400000000000000000000012351472355150100277270ustar00rootroot00000000000000{ glyphname = "pe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (237,410,l), (405,410,l), (340,0,l), (490,0,l), (577,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (140,0,l), (214,468,l), (446,468,l), (372,0,l), (462,0,l), (549,550,l), (137,550,l), (50,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (196,505,l), (476,505,l), (396,0,l), (446,0,l), (533,550,l), (153,550,l), (66,0,l) ); } ); width = 600; } ); unicode = 1087; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/percent.glyph000066400000000000000000000060131472355150100303510ustar00rootroot00000000000000{ glyphname = percent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (47,0,l), (687,730,l), (582,730,l), (-59,0,l) ); }, { closed = 1; nodes = ( (482,-5,o), (555,49,o), (567,130,cs), (577,195,ls), (589,276,o), (535,330,o), (448,330,cs), (361,330,o), (289,276,o), (277,195,cs), (267,130,ls), (255,49,o), (308,-5,o), (395,-5,cs) ); }, { closed = 1; nodes = ( (376,79,o), (360,94,o), (366,130,cs), (376,195,ls), (382,231,o), (402,247,o), (435,247,cs), (467,247,o), (484,231,o), (478,195,cs), (468,130,ls), (462,94,o), (442,79,o), (409,79,cs) ); }, { closed = 1; nodes = ( (263,400,o), (338,451,o), (351,535,cs), (361,600,ls), (374,684,o), (316,735,o), (232,735,cs), (148,735,o), (74,684,o), (61,600,cs), (51,535,ls), (38,451,o), (95,400,o), (179,400,cs) ); }, { closed = 1; nodes = ( (159,483,o), (144,499,o), (150,535,cs), (160,600,ls), (166,636,o), (186,652,o), (219,652,cs), (252,652,o), (268,636,o), (262,600,cs), (252,535,ls), (246,499,o), (225,483,o), (192,483,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (46,0,l), (658,730,l), (582,730,l), (-30,0,l) ); }, { closed = 1; nodes = ( (484,-5,o), (548,46,o), (561,130,cs), (571,195,ls), (584,279,o), (537,330,o), (453,330,cs), (369,330,o), (306,279,o), (293,195,cs), (283,130,ls), (270,46,o), (316,-5,o), (400,-5,cs) ); }, { closed = 1; nodes = ( (367,64,o), (350,85,o), (357,130,cs), (367,195,ls), (374,240,o), (398,262,o), (442,262,cs), (486,262,o), (504,240,o), (497,195,cs), (487,130,ls), (480,85,o), (455,64,o), (411,64,cs) ); }, { closed = 1; nodes = ( (258,400,o), (322,451,o), (335,535,cs), (345,600,ls), (358,684,o), (311,735,o), (227,735,cs), (143,735,o), (80,684,o), (67,600,cs), (57,535,ls), (44,451,o), (90,400,o), (174,400,cs) ); }, { closed = 1; nodes = ( (142,468,o), (124,490,o), (131,535,cs), (141,600,ls), (148,645,o), (174,667,o), (217,667,cs), (260,667,o), (278,645,o), (271,600,cs), (261,535,ls), (254,490,o), (228,468,o), (185,468,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (25,0,l), (652,730,l), (603,730,l), (-24,0,l) ); }, { closed = 1; nodes = ( (473,-5,o), (529,45,o), (542,125,cs), (554,200,ls), (567,280,o), (526,330,o), (448,330,cs), (370,330,o), (315,280,o), (302,200,cs), (290,125,ls), (277,45,o), (317,-5,o), (395,-5,cs) ); }, { closed = 1; nodes = ( (349,37,o), (325,68,o), (334,125,cs), (346,200,ls), (355,257,o), (389,288,o), (442,288,cs), (495,288,o), (519,257,o), (510,200,cs), (498,125,ls), (489,68,o), (455,37,o), (402,37,cs) ); }, { closed = 1; nodes = ( (257,400,o), (313,450,o), (326,530,cs), (338,605,ls), (351,685,o), (310,735,o), (232,735,cs), (155,735,o), (99,685,o), (86,605,cs), (74,530,ls), (61,450,o), (102,400,o), (179,400,cs) ); }, { closed = 1; nodes = ( (134,442,o), (109,473,o), (118,530,cs), (130,605,ls), (139,662,o), (174,693,o), (226,693,cs), (279,693,o), (303,662,o), (294,605,cs), (282,530,ls), (273,473,o), (239,442,o), (186,442,cs) ); } ); width = 600; } ); unicode = 37; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/period.glyph000066400000000000000000000015361472355150100302000ustar00rootroot00000000000000{ glyphname = period; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (316,-10,o), (362,29,o), (371,91,cs), (381,153,o), (348,192,o), (286,192,cs), (224,192,o), (179,153,o), (169,91,cs), (160,29,o), (192,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (305,-10,o), (342,21,o), (350,71,cs), (358,123,o), (332,156,o), (281,156,cs), (230,156,o), (192,123,o), (184,71,cs), (176,21,o), (203,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (299,-10,o), (332,19,o), (339,65,cs), (346,110,o), (323,138,o), (278,138,cs), (233,138,o), (200,110,o), (193,65,cs), (186,19,o), (209,-10,o), (254,-10,cs) ); } ); visible = 1; width = 600; } ); unicode = 46; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/period_equal.liga.glyph000066400000000000000000000010501472355150100322710ustar00rootroot00000000000000{ glyphname = period_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,-35); ref = bullet; }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,-35); ref = bullet; }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,-35); ref = bullet; }, { alignment = -1; ref = equal; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/period_period.liga.glyph000066400000000000000000000011231472355150100324450ustar00rootroot00000000000000{ glyphname = period_period.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-520,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-518,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-520,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/period_period_less.liga.glyph000066400000000000000000000013611472355150100334770ustar00rootroot00000000000000{ glyphname = period_period_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-190,0); ref = less; }, { alignment = -1; pos = (-1130,0); ref = period; }, { alignment = -1; pos = (-690,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-190,0); ref = less; }, { alignment = -1; pos = (-1129,0); ref = period; }, { alignment = -1; pos = (-691,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-190,0); ref = less; }, { alignment = -1; pos = (-1129,0); ref = period; }, { alignment = -1; pos = (-691,0); ref = period; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/period_period_period.liga.glyph000066400000000000000000000013701472355150100340130ustar00rootroot00000000000000{ glyphname = period_period_period.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1120,0); ref = period; }, { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1098,0); ref = period; }, { alignment = -1; pos = (-599,0); ref = period; }, { alignment = -1; pos = (-100,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1060,0); ref = period; }, { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-140,0); ref = period; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/period_question.liga.glyph000066400000000000000000000011351472355150100330350ustar00rootroot00000000000000{ glyphname = period_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-90,0); ref = question; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-100,0); ref = question; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-100,0); ref = question; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/periodcentered.glyph000066400000000000000000000007051472355150100317070ustar00rootroot00000000000000{ glyphname = periodcentered; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,262); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,270); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,275); ref = period; } ); width = 600; } ); unicode = 183; } periodcentered.loclC_A_T_.case.glyph000066400000000000000000000007141472355150100344570ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = periodcentered.loclCAT.case; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-455,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-448,275); ref = period; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-431,275); ref = period; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/periodcentered.loclC_A_T_.glyph000066400000000000000000000007071472355150100336260ustar00rootroot00000000000000{ glyphname = periodcentered.loclCAT; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-350,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-353,275); ref = period; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-331,275); ref = period; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/perthousand.glyph000066400000000000000000000101221472355150100312410ustar00rootroot00000000000000{ glyphname = perthousand; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-6,0,l), (549,730,l), (475,730,l), (-79,0,l) ); }, { closed = 1; nodes = ( (244,61,o), (231,76,o), (236,105,cs), (248,180,ls), (252,208,o), (270,224,o), (298,224,cs), (327,224,o), (341,209,o), (336,180,cs), (324,105,ls), (320,77,o), (301,61,o), (273,61,cs) ); }, { closed = 1; nodes = ( (311,-5,o), (347,31,o), (356,59,c), (357,31,o), (381,-5,o), (445,-5,cs), (507,-5,o), (562,39,o), (573,105,cs), (585,180,ls), (596,246,o), (554,290,o), (492,290,cs), (428,290,o), (391,254,o), (382,226,c), (381,254,o), (358,290,o), (297,290,cs), (231,290,o), (177,246,o), (166,180,cs), (154,105,ls), (143,35,o), (189,-5,o), (250,-5,cs) ); }, { closed = 1; nodes = ( (411,61,o), (398,77,o), (402,105,cs), (414,180,ls), (418,208,o), (436,224,o), (466,224,cs), (493,224,o), (507,208,o), (503,180,cs), (491,105,ls), (487,77,o), (469,61,o), (441,61,cs) ); }, { closed = 1; nodes = ( (234,440,o), (293,486,o), (304,555,cs), (314,620,ls), (325,689,o), (280,735,o), (202,735,cs), (124,735,o), (65,689,o), (54,620,cs), (44,555,ls), (33,486,o), (78,440,o), (156,440,cs) ); }, { closed = 1; nodes = ( (140,510,o), (125,528,o), (129,555,cs), (139,620,ls), (143,648,o), (164,666,o), (191,666,cs), (218,666,o), (233,648,o), (229,620,cs), (219,555,ls), (215,528,o), (194,510,o), (167,510,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (10,0,l), (521,730,l), (459,730,l), (-52,0,l) ); }, { closed = 1; nodes = ( (253,47,o), (239,67,o), (245,105,cs), (259,195,ls), (265,232,o), (286,253,o), (320,253,cs), (355,253,o), (371,233,o), (365,195,cs), (351,105,ls), (345,67,o), (322,47,o), (287,47,cs) ); }, { closed = 1; nodes = ( (333,-5,o), (365,31,o), (372,59,c), (371,31,o), (390,-5,o), (448,-5,cs), (514,-5,o), (562,37,o), (573,105,cs), (587,195,ls), (598,263,o), (563,305,o), (497,305,cs), (439,305,o), (408,269,o), (400,241,c), (402,269,o), (382,305,o), (324,305,cs), (258,305,o), (211,263,o), (200,195,cs), (186,105,ls), (175,37,o), (209,-5,o), (275,-5,cs) ); }, { closed = 1; nodes = ( (417,47,o), (402,67,o), (408,105,cs), (422,195,ls), (428,233,o), (450,253,o), (485,253,cs), (520,253,o), (534,233,o), (528,195,cs), (514,105,ls), (508,67,o), (486,47,o), (452,47,cs) ); }, { closed = 1; nodes = ( (220,440,o), (273,484,o), (284,555,cs), (294,620,ls), (305,691,o), (266,735,o), (192,735,cs), (118,735,o), (65,691,o), (54,620,cs), (44,555,ls), (33,484,o), (72,440,o), (146,440,cs) ); }, { closed = 1; nodes = ( (118,499,o), (102,518,o), (108,555,cs), (118,620,ls), (124,657,o), (146,676,o), (183,676,cs), (220,676,o), (236,657,o), (230,620,cs), (220,555,ls), (214,518,o), (192,499,o), (155,499,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (3,0,l), (536,730,l), (489,730,l), (-44,0,l) ); }, { closed = 1; nodes = ( (252,36,o), (232,65,o), (238,105,cs), (252,195,ls), (258,235,o), (288,264,o), (321,264,cs), (355,264,o), (374,234,o), (368,195,cs), (354,105,ls), (348,66,o), (319,36,o), (285,36,cs) ); }, { closed = 1; nodes = ( (329,-5,o), (360,31,o), (367,59,c), (366,31,o), (384,-5,o), (439,-5,cs), (504,-5,o), (542,35,o), (553,105,cs), (567,195,ls), (578,265,o), (553,305,o), (488,305,cs), (433,305,o), (403,269,o), (395,241,c), (397,269,o), (378,305,o), (323,305,cs), (258,305,o), (221,265,o), (210,195,cs), (196,105,ls), (185,35,o), (209,-5,o), (274,-5,cs) ); }, { closed = 1; nodes = ( (408,36,o), (388,66,o), (394,105,cs), (408,195,ls), (414,234,o), (444,264,o), (478,264,cs), (511,264,o), (531,235,o), (525,195,cs), (511,105,ls), (505,65,o), (475,36,o), (442,36,cs) ); }, { closed = 1; nodes = ( (232,440,o), (283,486,o), (294,555,cs), (304,620,ls), (315,689,o), (278,735,o), (206,735,cs), (134,735,o), (85,689,o), (74,620,cs), (64,555,ls), (53,486,o), (88,440,o), (160,440,cs) ); }, { closed = 1; nodes = ( (118,478,o), (97,509,o), (104,555,cs), (114,620,ls), (121,668,o), (154,697,o), (200,697,cs), (247,697,o), (271,667,o), (264,620,cs), (254,555,ls), (247,509,o), (214,478,o), (166,478,cs) ); } ); width = 600; } ); unicode = 8240; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/phi.glyph000066400000000000000000000031201472355150100274650ustar00rootroot00000000000000{ glyphname = phi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (252,-180,l), (281,0,l), (412,0,o), (498,75,o), (518,202,cs), (547,382,ls), (563,487,o), (510,550,o), (405,550,cs), (320,550,l), (240,44,l), (138,44,o), (90,103,o), (106,202,cs), (161,550,l), (113,550,l), (58,202,ls), (38,75,o), (100,0,o), (231,0,c), (202,-180,l) ); }, { closed = 1; nodes = ( (359,506,l), (398,506,ls), (473,506,o), (511,460,o), (499,382,cs), (470,202,ls), (454,103,o), (388,44,o), (286,44,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (268,-180,l), (297,0,l), (425,0,o), (513,78,o), (533,202,cs), (563,390,ls), (578,488,o), (521,550,o), (415,550,cs), (307,550,l), (231,71,l), (151,71,o), (113,120,o), (126,202,cs), (181,550,l), (98,550,l), (43,202,ls), (23,78,o), (87,0,o), (215,0,c), (186,-180,l) ); }, { closed = 1; nodes = ( (368,480,l), (404,480,ls), (460,480,o), (489,446,o), (480,390,cs), (450,202,ls), (437,120,o), (382,71,o), (303,71,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-180,l), (317,0,l), (439,0,o), (529,80,o), (549,207,cs), (574,364,ls), (592,478,o), (531,550,o), (417,550,cs), (291,550,l), (222,115,l), (170,115,o), (143,151,o), (152,207,cs), (206,550,l), (83,550,l), (29,207,ls), (9,80,o), (73,0,o), (195,0,c), (166,-180,l) ); }, { closed = 1; nodes = ( (377,435,l), (393,435,ls), (436,435,o), (458,409,o), (451,364,cs), (426,207,ls), (417,149,o), (379,115,o), (326,115,c) ); } ); width = 600; } ); unicode = 966; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/phiS_ymbol.glyph000066400000000000000000000005461472355150100310230ustar00rootroot00000000000000{ glyphname = phiSymbol; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "ef-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "ef-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "ef-cy"; } ); width = 600; } ); unicode = 981; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/pi.glyph000066400000000000000000000025121472355150100273210ustar00rootroot00000000000000{ glyphname = pi; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (531,-5,l), (553,130,l), (529,130,ls), (490,130,o), (469,155,o), (475,195,cs), (511,422,l), (598,422,l), (618,550,l), (54,550,l), (34,422,l), (107,422,l), (40,0,l), (185,0,l), (252,422,l), (366,422,l), (329,190,ls), (310,70,o), (373,-5,o), (493,-5,cs) ); } ); width = 600; }, { hints = ( { place = (57,47); type = Stem; }, { place = (342,47); type = Stem; }, { place = (342,147); type = Stem; }, { horizontal = 1; place = (-48,41); type = Stem; }, { horizontal = 1; place = (425,39); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (511,-5,l), (525,79,l), (501,79,ls), (454,79,o), (429,109,o), (438,164,cs), (486,470,l), (586,470,l), (598,550,l), (69,550,l), (57,470,l), (141,470,l), (66,0,l), (153,0,l), (227,470,l), (400,470,l), (353,170,ls), (336,64,o), (391,-5,o), (492,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (501,-5,l), (508,40,l), (480,40,ls), (434,40,o), (411,73,o), (419,125,cs), (479,505,l), (582,505,l), (589,550,l), (79,550,l), (72,505,l), (162,505,l), (82,0,l), (132,0,l), (212,505,l), (429,505,l), (369,125,ls), (356,45,o), (396,-5,o), (473,-5,cs) ); } ); width = 600; } ); unicode = 960; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/piS_ymbol.glyph000066400000000000000000000075121472355150100306530ustar00rootroot00000000000000{ glyphname = piSymbol; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (261,-10,o), (303,38,o), (303,115,c), (297,115,l), (297,38,o), (339,-10,o), (407,-10,cs), (482,-10,o), (530,48,o), (530,140,cs), (530,382,ls), (530,478,o), (479,544,o), (392,560,c), (392,514,l), (448,497,o), (482,448,o), (482,382,cs), (482,140,ls), (482,70,o), (452,34,o), (402,34,cs), (352,34,o), (323,70,o), (323,140,cs), (323,382,l), (277,382,l), (277,140,ls), (277,70,o), (247,34,o), (197,34,cs), (147,34,o), (118,70,o), (118,140,cs), (118,382,ls), (118,448,o), (152,497,o), (208,514,c), (208,560,l), (121,544,o), (70,478,o), (70,382,cs), (70,140,ls), (70,48,o), (118,-10,o), (193,-10,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (204,-10,o), (249,24,o), (269,81,c), (271,24,o), (304,-10,o), (361,-10,cs), (436,-10,o), (494,48,o), (508,140,cs), (548,393,ls), (561,471,o), (519,522,o), (443,522,c), (486,502,l), (486,505,l), (616,505,l), (623,550,l), (63,550,l), (56,505,l), (185,505,l), (185,502,l), (235,522,l), (159,522,o), (101,471,o), (88,393,cs), (48,140,ls), (34,48,o), (72,-10,o), (147,-10,cs) ); }, { closed = 1; nodes = ( (108,34,o), (85,70,o), (96,140,cs), (137,399,ls), (148,469,o), (183,505,o), (233,505,cs), (438,505,ls), (488,505,o), (512,469,o), (501,399,cs), (460,140,ls), (449,70,o), (413,34,o), (363,34,cs), (313,34,o), (290,70,o), (301,140,cs), (340,382,l), (294,382,l), (255,140,ls), (244,70,o), (208,34,o), (158,34,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (198,-10,o), (254,37,o), (273,109,c), (269,37,o), (309,-10,o), (376,-10,cs), (460,-10,o), (526,60,o), (542,165,cs), (560,275,ls), (576,377,o), (530,440,o), (438,440,c), (487,404,l), (490,422,l), (613,422,l), (633,550,l), (53,550,l), (33,422,l), (156,422,l), (153,402,l), (214,440,l), (122,440,o), (56,377,o), (40,275,cs), (22,165,ls), (6,60,o), (48,-10,o), (130,-10,cs) ); }, { closed = 1; nodes = ( (150,102,o), (138,120,o), (143,152,cs), (178,372,ls), (183,404,o), (201,422,o), (227,422,c), (419,422,l), (445,422,o), (457,404,o), (452,372,cs), (417,152,ls), (412,120,o), (394,102,o), (368,102,cs), (340,102,o), (327,120,o), (332,152,cs), (359,325,l), (255,325,l), (228,152,ls), (223,120,o), (204,102,o), (176,102,cs) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (580,468,l), (580,550,l), (20,550,l), (20,468,l) ); }, { closed = 1; nodes = ( (256,-10,o), (302,42,o), (302,126,c), (298,126,l), (298,42,o), (344,-10,o), (419,-10,cs), (497,-10,o), (545,51,o), (545,151,cs), (545,348,ls), (545,459,o), (487,536,o), (400,550,c), (400,468,l), (435,461,o), (460,420,o), (460,361,cs), (460,150,ls), (460,96,o), (438,66,o), (399,66,cs), (360,66,o), (337,96,o), (337,150,cs), (337,345,l), (263,345,l), (263,150,ls), (263,96,o), (240,66,o), (201,66,cs), (162,66,o), (140,96,o), (140,150,cs), (140,361,ls), (140,420,o), (160,461,o), (195,468,c), (195,550,l), (108,536,o), (55,459,o), (55,348,cs), (55,151,ls), (55,51,o), (103,-10,o), (181,-10,cs) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (202,-10,o), (252,30,o), (272,97,c), (272,30,o), (308,-10,o), (374,-10,cs), (452,-10,o), (510,51,o), (526,151,cs), (556,339,ls), (570,429,o), (520,484,o), (425,484,c), (487,459,l), (488,468,l), (616,468,l), (629,550,l), (59,550,l), (46,468,l), (174,468,l), (173,459,l), (243,484,l), (148,484,o), (80,429,o), (66,339,cs), (36,151,ls), (20,51,o), (58,-10,o), (136,-10,cs) ); }, { closed = 1; nodes = ( (129,66,o), (112,96,o), (121,150,cs), (158,384,ls), (166,438,o), (193,468,o), (232,468,cs), (430,468,ls), (469,468,o), (486,438,o), (478,384,cs), (441,150,ls), (432,96,o), (405,66,o), (366,66,cs), (327,66,o), (309,96,o), (318,150,cs), (349,345,l), (275,345,l), (244,150,ls), (235,96,o), (207,66,o), (168,66,cs) ); } ); width = 600; } ); unicode = 982; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/plus.circled.glyph000066400000000000000000000041331472355150100313010ustar00rootroot00000000000000{ glyphname = plus.circled; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (325,50,l), (325,310,l), (575,310,l), (575,355,l), (325,355,l), (325,615,l), (275,615,l), (275,355,l), (25,355,l), (25,310,l), (275,310,l), (275,50,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,-3); ref = plus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (344,45,l), (344,290,l), (585,290,l), (585,370,l), (344,370,l), (344,615,l), (256,615,l), (256,370,l), (15,370,l), (15,290,l), (256,290,l), (256,45,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (44,0); ref = plus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (375,50,l), (375,260,l), (585,260,l), (585,400,l), (375,400,l), (375,610,l), (225,610,l), (225,400,l), (25,400,l), (25,260,l), (225,260,l), (225,50,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (44,0); ref = plus; } ); width = 600; } ); unicode = 8853; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/plus.glyph000066400000000000000000000015051472355150100276750ustar00rootroot00000000000000{ glyphname = plus; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (345,90,l), (372,260,l), (542,260,l), (564,400,l), (394,400,l), (421,570,l), (271,570,l), (244,400,l), (74,400,l), (52,260,l), (222,260,l), (195,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (315,95,l), (346,290,l), (537,290,l), (550,370,l), (359,370,l), (389,565,l), (301,565,l), (271,370,l), (80,370,l), (67,290,l), (258,290,l), (227,95,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (297,100,l), (330,310,l), (530,310,l), (537,355,l), (337,355,l), (370,565,l), (320,565,l), (287,355,l), (87,355,l), (80,310,l), (280,310,l), (247,100,l) ); } ); width = 600; } ); unicode = 43; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/plus_greater.liga.glyph000066400000000000000000000017661472355150100323320ustar00rootroot00000000000000{ glyphname = plus_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-227,45,l), (-193,260,l), (17,260,l), (39,400,l), (-171,400,l), (-137,615,l), (-287,615,l), (-321,400,l), (-531,400,l), (-553,260,l), (-343,260,l), (-377,45,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-258,45,l), (-219,290,l), (22,290,l), (35,370,l), (-206,370,l), (-168,615,l), (-256,615,l), (-294,370,l), (-535,370,l), (-548,290,l), (-307,290,l), (-346,45,l) ); }, { alignment = -1; pos = (15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-264,60,l), (-225,310,l), (15,310,l), (22,355,l), (-218,355,l), (-178,605,l), (-228,605,l), (-268,355,l), (-508,355,l), (-515,310,l), (-275,310,l), (-314,60,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/plus_plus.liga.glyph000066400000000000000000000022311472355150100316500ustar00rootroot00000000000000{ glyphname = plus_plus.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-200,90,l), (-173,260,l), (167,260,l), (140,90,l), (290,90,l), (317,260,l), (487,260,l), (509,400,l), (339,400,l), (366,570,l), (216,570,l), (189,400,l), (-151,400,l), (-124,570,l), (-274,570,l), (-301,400,l), (-471,400,l), (-493,260,l), (-323,260,l), (-350,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-230,95,l), (-199,290,l), (203,290,l), (172,95,l), (260,95,l), (291,290,l), (482,290,l), (495,370,l), (304,370,l), (334,565,l), (246,565,l), (216,370,l), (-186,370,l), (-156,565,l), (-244,565,l), (-274,370,l), (-465,370,l), (-478,290,l), (-287,290,l), (-318,95,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-243,100,l), (-210,310,l), (220,310,l), (187,100,l), (237,100,l), (270,310,l), (470,310,l), (477,355,l), (277,355,l), (310,565,l), (260,565,l), (227,355,l), (-203,355,l), (-170,565,l), (-220,565,l), (-253,355,l), (-453,355,l), (-460,310,l), (-260,310,l), (-293,100,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/plus_plus_plus.liga.glyph000066400000000000000000000027571472355150100327300ustar00rootroot00000000000000{ glyphname = plus_plus_plus.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-745,90,l), (-718,260,l), (-378,260,l), (-405,90,l), (-255,90,l), (-228,260,l), (112,260,l), (85,90,l), (235,90,l), (262,260,l), (432,260,l), (454,400,l), (284,400,l), (311,570,l), (161,570,l), (134,400,l), (-206,400,l), (-179,570,l), (-329,570,l), (-356,400,l), (-696,400,l), (-669,570,l), (-819,570,l), (-846,400,l), (-1016,400,l), (-1038,260,l), (-868,260,l), (-895,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-775,95,l), (-744,290,l), (-342,290,l), (-373,95,l), (-285,95,l), (-254,290,l), (148,290,l), (117,95,l), (205,95,l), (236,290,l), (427,290,l), (440,370,l), (249,370,l), (279,565,l), (191,565,l), (161,370,l), (-241,370,l), (-211,565,l), (-299,565,l), (-329,370,l), (-731,370,l), (-701,565,l), (-789,565,l), (-819,370,l), (-1010,370,l), (-1023,290,l), (-832,290,l), (-863,95,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-793,100,l), (-760,310,l), (-320,310,l), (-353,100,l), (-303,100,l), (-270,310,l), (170,310,l), (137,100,l), (187,100,l), (220,310,l), (420,310,l), (427,355,l), (227,355,l), (260,565,l), (210,565,l), (177,355,l), (-263,355,l), (-230,565,l), (-280,565,l), (-313,355,l), (-753,355,l), (-720,565,l), (-770,565,l), (-803,355,l), (-1003,355,l), (-1010,310,l), (-810,310,l), (-843,100,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/plusminus.glyph000066400000000000000000000017211472355150100307510ustar00rootroot00000000000000{ glyphname = plusminus; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (491,0,l), (509,111,l), (354,111,l), (377,260,l), (547,260,l), (569,400,l), (399,400,l), (426,570,l), (276,570,l), (249,400,l), (79,400,l), (57,260,l), (227,260,l), (204,111,l), (39,111,l), (21,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (486,0,l), (497,70,l), (311,70,l), (347,295,l), (538,295,l), (550,375,l), (359,375,l), (390,570,l), (302,570,l), (271,375,l), (80,375,l), (68,295,l), (259,295,l), (223,70,l), (37,70,l), (26,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (285,45,l), (328,315,l), (536,315,l), (543,360,l), (335,360,l), (368,570,l), (319,570,l), (286,360,l), (83,360,l), (76,315,l), (279,315,l), (236,45,l), (33,45,l), (26,0,l) ); } ); width = 600; } ); unicode = 177; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/plussuperior.glyph000066400000000000000000000015311472355150100314650ustar00rootroot00000000000000{ glyphname = plussuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (344,305,l), (361,410,l), (461,410,l), (472,480,l), (372,480,l), (389,585,l), (309,585,l), (292,480,l), (192,480,l), (181,410,l), (281,410,l), (264,305,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (344,305,l), (361,410,l), (461,410,l), (472,480,l), (372,480,l), (389,585,l), (309,585,l), (292,480,l), (192,480,l), (181,410,l), (281,410,l), (264,305,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (324,305,l), (343,426,l), (463,426,l), (469,464,l), (348,464,l), (369,585,l), (329,585,l), (309,464,l), (189,464,l), (183,426,l), (303,426,l), (284,305,l) ); } ); width = 600; } ); unicode = 8314; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/powerO_nO_ffS_ymbol.glyph000066400000000000000000000040311472355150100326160ustar00rootroot00000000000000{ glyphname = powerOnOffSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); }, { closed = 1; nodes = ( (330,155,o), (355,182,o), (355,215,cs), (355,395,ls), (355,428,o), (331,455,o), (300,455,cs), (270,455,o), (245,428,o), (245,395,cs), (245,215,ls), (245,182,o), (270,155,o), (300,155,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); }, { closed = 1; nodes = ( (330,155,o), (355,182,o), (355,215,cs), (355,395,ls), (355,428,o), (331,455,o), (300,455,cs), (270,455,o), (245,428,o), (245,395,cs), (245,215,ls), (245,182,o), (270,155,o), (300,155,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); }, { closed = 1; nodes = ( (330,155,o), (355,182,o), (355,215,cs), (355,395,ls), (355,428,o), (331,455,o), (300,455,cs), (270,455,o), (245,428,o), (245,395,cs), (245,215,ls), (245,182,o), (270,155,o), (300,155,cs) ); } ); width = 600; } ); unicode = 9212; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/powerO_nS_ymbol.glyph000066400000000000000000000016451472355150100320340ustar00rootroot00000000000000{ glyphname = powerOnSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (330,-5,o), (355,22,o), (355,55,cs), (355,555,ls), (355,588,o), (330,615,o), (300,615,cs), (270,615,o), (245,588,o), (245,555,cs), (245,55,ls), (245,22,o), (270,-5,o), (300,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (330,-5,o), (355,22,o), (355,55,cs), (355,555,ls), (355,588,o), (330,615,o), (300,615,cs), (270,615,o), (245,588,o), (245,555,cs), (245,55,ls), (245,22,o), (270,-5,o), (300,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (330,-5,o), (355,22,o), (355,55,cs), (355,555,ls), (355,588,o), (330,615,o), (300,615,cs), (270,615,o), (245,588,o), (245,555,cs), (245,55,ls), (245,22,o), (270,-5,o), (300,-5,cs) ); } ); width = 600; } ); unicode = 9213; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/powerS_leepS_ymbol.glyph000066400000000000000000000021151472355150100325210ustar00rootroot00000000000000{ glyphname = powerSleepSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (226,-41,o), (426,-39,o), (553,88,cs), (578,113,o), (599,141,o), (614,170,c), (498,110,o), (336,134,o), (242,228,cs), (150,320,o), (125,484,o), (185,599,c), (156,584,o), (128,563,o), (103,538,cs), (-24,411,o), (-26,210,o), (100,85,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (226,-41,o), (426,-39,o), (553,88,cs), (578,113,o), (599,141,o), (614,170,c), (498,110,o), (336,134,o), (242,228,cs), (150,320,o), (125,484,o), (185,599,c), (156,584,o), (128,563,o), (103,538,cs), (-24,411,o), (-26,210,o), (100,85,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (226,-41,o), (426,-39,o), (553,88,cs), (578,113,o), (599,141,o), (614,170,c), (498,110,o), (336,134,o), (242,228,cs), (150,320,o), (125,484,o), (185,599,c), (156,584,o), (128,563,o), (103,538,cs), (-24,411,o), (-26,210,o), (100,85,cs) ); } ); width = 600; } ); unicode = 9214; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/powerS_ymbol.glyph000066400000000000000000000046241472355150100314000ustar00rootroot00000000000000{ glyphname = powerSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,392,o), (585,471,o), (528,527,c), (500,556,o), (462,561,o), (440,539,cs), (419,518,o), (424,482,o), (451,452,cs), (485,415,o), (505,364,o), (505,305,cs), (505,183,o), (420,95,o), (300,95,cs), (180,95,o), (95,183,o), (95,305,cs), (95,364,o), (115,415,o), (149,452,cs), (176,482,o), (181,518,o), (160,539,cs), (138,561,o), (100,556,o), (72,527,cs), (16,470,o), (-20,392,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (330,225,o), (355,252,o), (355,285,cs), (355,665,ls), (355,698,o), (330,725,o), (300,725,cs), (270,725,o), (245,698,o), (245,665,cs), (245,285,ls), (245,252,o), (270,225,o), (300,225,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,392,o), (585,471,o), (528,527,c), (500,556,o), (462,561,o), (440,539,cs), (419,518,o), (424,482,o), (451,452,cs), (485,415,o), (505,364,o), (505,305,cs), (505,183,o), (420,95,o), (300,95,cs), (180,95,o), (95,183,o), (95,305,cs), (95,364,o), (115,415,o), (149,452,cs), (176,482,o), (181,518,o), (160,539,cs), (138,561,o), (100,556,o), (72,527,cs), (16,470,o), (-20,392,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (330,225,o), (355,252,o), (355,285,cs), (355,665,ls), (355,698,o), (330,725,o), (300,725,cs), (270,725,o), (245,698,o), (245,665,cs), (245,285,ls), (245,252,o), (270,225,o), (300,225,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,392,o), (585,471,o), (528,527,c), (500,556,o), (462,561,o), (440,539,cs), (419,518,o), (424,482,o), (451,452,cs), (485,415,o), (505,364,o), (505,305,cs), (505,183,o), (420,95,o), (300,95,cs), (180,95,o), (95,183,o), (95,305,cs), (95,364,o), (115,415,o), (149,452,cs), (176,482,o), (181,518,o), (160,539,cs), (138,561,o), (100,556,o), (72,527,cs), (16,470,o), (-20,392,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (330,225,o), (355,252,o), (355,285,cs), (355,665,ls), (355,698,o), (330,725,o), (300,725,cs), (270,725,o), (245,698,o), (245,665,cs), (245,285,ls), (245,252,o), (270,225,o), (300,225,cs) ); } ); width = 600; } ); unicode = 9211; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/precedes.glyph000066400000000000000000000026551472355150100305130ustar00rootroot00000000000000{ glyphname = precedes; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (490,55,l), (498,218,o), (375,324,o), (177,330,c), (176,328,l), (376,332,o), (533,441,o), (576,600,c), (531,600,l), (489,454,o), (315,360,o), (88,360,c), (79,300,l), (306,300,o), (449,204,o), (445,55,c) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (515,155,l), (205,308,ls), (182,320,o), (157,329,o), (145,332,c), (156,335,o), (180,344,o), (205,356,cs), (515,508,l), (515,595,l), (85,380,l), (85,280,l), (515,65,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (498,55,l), (506,220,o), (385,322,o), (190,328,c), (190,326,l), (387,330,o), (541,442,o), (584,600,c), (494,600,l), (456,466,o), (294,380,o), (84,380,c), (68,280,l), (278,280,o), (412,192,o), (408,55,c) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (530,186,l), (254,307,ls), (227,319,o), (194,326,o), (177,329,c), (194,332,o), (227,340,o), (254,352,cs), (530,473,l), (530,609,l), (70,400,l), (70,257,l), (530,49,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,55,l), (506,229,o), (381,324,o), (149,330,c), (148,328,l), (382,332,o), (539,436,o), (581,600,c), (451,600,l), (415,479,o), (275,410,o), (66,410,c), (41,250,l), (252,250,o), (369,179,o), (365,55,c) ); } ); width = 600; } ); unicode = 8826; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/precedesorequalto.glyph000066400000000000000000000011771472355150100324450ustar00rootroot00000000000000{ glyphname = precedesorequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (481,0,l), (488,45,l), (38,45,l), (31,0,l) ); }, { pos = (20,125); ref = precedes; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (486,0,l), (499,80,l), (39,80,l), (26,0,l) ); }, { pos = (20,125); ref = precedes; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (499,0,l), (521,140,l), (36,140,l), (14,0,l) ); }, { pos = (32,125); ref = precedes; } ); width = 600; } ); unicode = 8828; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/primemod.glyph000066400000000000000000000010341472355150100305230ustar00rootroot00000000000000{ glyphname = primemod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (291,409,l), (470,720,l), (290,720,l), (161,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (266,410,l), (445,721,l), (315,721,l), (186,410,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (246,410,l), (420,721,l), (330,721,l), (206,410,l) ); } ); width = 600; } ); unicode = 697; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/product.glyph000066400000000000000000000015311472355150100303710ustar00rootroot00000000000000{ glyphname = product; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (157,-180,l), (279,590,l), (419,590,l), (297,-180,l), (447,-180,l), (569,590,l), (629,590,l), (652,730,l), (92,730,l), (69,590,l), (129,590,l), (7,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (127,-180,l), (259,648,l), (459,648,l), (327,-180,l), (417,-180,l), (549,648,l), (619,648,l), (632,730,l), (112,730,l), (99,648,l), (169,648,l), (37,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (102,-180,l), (239,685,l), (489,685,l), (352,-180,l), (402,-180,l), (539,685,l), (614,685,l), (622,730,l), (122,730,l), (114,685,l), (189,685,l), (52,-180,l) ); } ); width = 600; } ); unicode = 8719; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/projective.glyph000066400000000000000000000012051472355150100310610ustar00rootroot00000000000000{ glyphname = projective; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (505,505,l), (505,550,l), (95,550,l), (95,505,l) ); }, { pos = (0,-105); ref = control; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (515,470,l), (515,550,l), (85,550,l), (85,470,l) ); }, { pos = (0,-140); ref = control; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (520,430,l), (520,550,l), (80,550,l), (80,430,l) ); }, { pos = (0,-180); ref = control; } ); width = 600; } ); unicode = 8965; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/propellor.glyph000066400000000000000000000124131472355150100307300ustar00rootroot00000000000000{ glyphname = propellor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (549,380,o), (585,416,o), (585,470,cs), (585,524,o), (549,560,o), (495,560,cs), (441,560,o), (405,524,o), (405,470,c), (447,470,l), (447,501,o), (466,522,o), (495,522,cs), (524,522,o), (543,501,o), (543,470,cs), (543,439,o), (524,418,o), (495,418,c), (495,380,l) ); }, { closed = 1; nodes = ( (159,-10,o), (195,26,o), (195,80,c), (153,80,l), (153,49,o), (134,28,o), (105,28,cs), (76,28,o), (57,49,o), (57,80,cs), (57,111,o), (76,132,o), (105,132,c), (105,170,l), (51,170,o), (15,134,o), (15,80,cs), (15,26,o), (51,-10,o), (105,-10,cs) ); }, { closed = 1; nodes = ( (195,80,l), (195,470,l), (153,470,l), (153,80,l) ); }, { closed = 1; nodes = ( (495,132,l), (495,170,l), (105,170,l), (105,132,l) ); }, { closed = 1; nodes = ( (549,-10,o), (585,26,o), (585,80,cs), (585,134,o), (549,170,o), (495,170,c), (495,132,l), (524,132,o), (543,111,o), (543,80,cs), (543,49,o), (524,28,o), (495,28,cs), (466,28,o), (447,49,o), (447,80,c), (405,80,l), (405,26,o), (441,-10,o), (495,-10,cs) ); }, { closed = 1; nodes = ( (105,418,l), (76,418,o), (57,439,o), (57,470,cs), (57,501,o), (76,522,o), (105,522,cs), (134,522,o), (153,501,o), (153,470,c), (195,470,l), (195,524,o), (159,560,o), (105,560,cs), (51,560,o), (15,524,o), (15,470,cs), (15,416,o), (51,380,o), (105,380,c) ); }, { closed = 1; nodes = ( (495,380,l), (495,418,l), (105,418,l), (105,380,l) ); }, { closed = 1; nodes = ( (447,80,l), (447,470,l), (405,470,l), (405,80,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (236,101,l), (236,450,l), (169,450,l), (169,101,l) ); }, { closed = 1; nodes = ( (125,144,l), (474,144,l), (474,211,l), (125,211,l) ); }, { closed = 1; nodes = ( (125,339,l), (474,339,l), (474,406,l), (125,406,l) ); }, { closed = 1; nodes = ( (431,101,l), (431,450,l), (364,450,l), (364,101,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,339,o), (585,383,o), (585,450,cs), (585,516,o), (541,560,o), (474,560,cs), (408,560,o), (364,516,o), (364,450,c), (431,450,l), (431,476,o), (448,493,o), (474,493,cs), (501,493,o), (518,476,o), (518,450,cs), (518,423,o), (501,406,o), (474,406,c), (474,339,l) ); }, { closed = 1; nodes = ( (192,-10,o), (236,34,o), (236,101,c), (169,101,l), (169,74,o), (152,57,o), (125,57,cs), (99,57,o), (82,74,o), (82,101,cs), (82,127,o), (99,144,o), (125,144,c), (125,211,l), (59,211,o), (15,167,o), (15,101,cs), (15,34,o), (59,-10,o), (125,-10,cs) ); }, { closed = 1; nodes = ( (236,101,l), (236,450,l), (169,450,l), (169,101,l) ); }, { closed = 1; nodes = ( (474,144,l), (474,211,l), (125,211,l), (125,144,l) ); }, { closed = 1; nodes = ( (541,-10,o), (585,34,o), (585,101,cs), (585,167,o), (541,211,o), (474,211,c), (474,144,l), (501,144,o), (518,127,o), (518,101,cs), (518,74,o), (501,57,o), (474,57,cs), (448,57,o), (431,74,o), (431,101,c), (364,101,l), (364,34,o), (408,-10,o), (474,-10,cs) ); }, { closed = 1; nodes = ( (125,406,l), (99,406,o), (82,423,o), (82,450,cs), (82,476,o), (99,493,o), (125,493,cs), (152,493,o), (169,476,o), (169,450,c), (236,450,l), (236,516,o), (192,560,o), (125,560,cs), (59,560,o), (15,516,o), (15,450,cs), (15,383,o), (59,339,o), (125,339,c) ); }, { closed = 1; nodes = ( (474,339,l), (474,406,l), (125,406,l), (125,339,l) ); }, { closed = 1; nodes = ( (431,101,l), (431,450,l), (364,450,l), (364,101,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (267,116,l), (267,434,l), (190,434,l), (190,116,l) ); }, { closed = 1; nodes = ( (458,308,l), (458,385,l), (141,385,l), (141,308,l) ); }, { closed = 1; nodes = ( (409,116,l), (409,434,l), (332,434,l), (332,116,l) ); }, { closed = 1; nodes = ( (458,165,l), (458,242,l), (141,242,l), (141,165,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (535,308,o), (585,358,o), (585,434,cs), (585,510,o), (535,560,o), (459,560,cs), (383,560,o), (333,510,o), (333,434,c), (410,434,l), (410,464,o), (429,483,o), (459,483,cs), (489,483,o), (508,464,o), (508,434,cs), (508,404,o), (489,385,o), (459,385,c), (459,308,l) ); }, { closed = 1; nodes = ( (217,-10,o), (267,40,o), (267,116,c), (190,116,l), (190,86,o), (171,67,o), (141,67,cs), (111,67,o), (92,86,o), (92,116,cs), (92,146,o), (111,165,o), (141,165,c), (141,242,l), (65,242,o), (15,192,o), (15,116,cs), (15,40,o), (65,-10,o), (141,-10,cs) ); }, { closed = 1; nodes = ( (267,116,l), (267,434,l), (190,434,l), (190,116,l) ); }, { closed = 1; nodes = ( (459,165,l), (459,242,l), (141,242,l), (141,165,l) ); }, { closed = 1; nodes = ( (535,-10,o), (585,40,o), (585,116,cs), (585,192,o), (535,242,o), (459,242,c), (459,165,l), (489,165,o), (508,146,o), (508,116,cs), (508,86,o), (489,67,o), (459,67,cs), (429,67,o), (410,86,o), (410,116,c), (333,116,l), (333,40,o), (383,-10,o), (459,-10,cs) ); }, { closed = 1; nodes = ( (141,385,l), (111,385,o), (92,404,o), (92,434,cs), (92,464,o), (111,483,o), (141,483,cs), (171,483,o), (190,464,o), (190,434,c), (267,434,l), (267,510,o), (217,560,o), (141,560,cs), (65,560,o), (15,510,o), (15,434,cs), (15,358,o), (65,308,o), (141,308,c) ); }, { closed = 1; nodes = ( (459,308,l), (459,385,l), (141,385,l), (141,308,l) ); }, { closed = 1; nodes = ( (410,116,l), (410,434,l), (333,434,l), (333,116,l) ); } ); width = 600; } ); unicode = 8984; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/proportion.glyph000066400000000000000000000047251472355150100311340ustar00rootroot00000000000000{ glyphname = proportion; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (515,314,o), (562,353,o), (571,409,cs), (580,469,o), (546,510,o), (487,510,cs), (428,510,o), (380,469,o), (371,409,cs), (362,353,o), (397,314,o), (456,314,cs) ); }, { closed = 1; nodes = ( (163,-10,o), (211,29,o), (219,85,cs), (229,145,o), (194,186,o), (135,186,cs), (76,186,o), (29,145,o), (19,85,cs), (11,29,o), (45,-10,o), (104,-10,cs) ); }, { closed = 1; nodes = ( (463,-10,o), (511,29,o), (519,85,cs), (529,145,o), (494,186,o), (435,186,cs), (376,186,o), (329,145,o), (319,85,cs), (311,29,o), (345,-10,o), (404,-10,cs) ); }, { closed = 1; nodes = ( (215,314,o), (262,353,o), (271,409,cs), (280,469,o), (246,510,o), (187,510,cs), (128,510,o), (80,469,o), (71,409,cs), (62,353,o), (97,314,o), (156,314,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (521,348,o), (560,381,o), (568,429,cs), (576,477,o), (547,510,o), (499,510,cs), (451,510,o), (412,477,o), (404,429,cs), (396,381,o), (425,348,o), (473,348,cs) ); }, { closed = 1; nodes = ( (139,-10,o), (179,23,o), (186,71,cs), (194,119,o), (165,152,o), (117,152,cs), (69,152,o), (30,119,o), (22,71,cs), (15,23,o), (43,-10,o), (91,-10,cs) ); }, { closed = 1; nodes = ( (464,-10,o), (504,23,o), (511,71,cs), (519,119,o), (490,152,o), (442,152,cs), (394,152,o), (355,119,o), (347,71,cs), (340,23,o), (368,-10,o), (416,-10,cs) ); }, { closed = 1; nodes = ( (196,348,o), (235,381,o), (243,429,cs), (251,477,o), (222,510,o), (174,510,cs), (126,510,o), (87,477,o), (79,429,cs), (71,381,o), (100,348,o), (148,348,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (522,370,o), (554,398,o), (561,440,cs), (567,482,o), (544,510,o), (502,510,cs), (459,510,o), (426,482,o), (420,440,cs), (413,398,o), (438,370,o), (480,370,cs) ); }, { closed = 1; nodes = ( (132,-10,o), (165,18,o), (172,60,cs), (178,102,o), (155,130,o), (113,130,cs), (70,130,o), (37,102,o), (31,60,cs), (24,18,o), (47,-10,o), (90,-10,cs) ); }, { closed = 1; nodes = ( (461,-10,o), (494,18,o), (501,60,cs), (507,102,o), (484,130,o), (442,130,cs), (399,130,o), (366,102,o), (360,60,cs), (353,18,o), (376,-10,o), (419,-10,cs) ); }, { closed = 1; nodes = ( (193,370,o), (225,398,o), (232,440,cs), (238,482,o), (215,510,o), (173,510,cs), (131,510,o), (97,482,o), (91,440,cs), (84,398,o), (109,370,o), (151,370,cs) ); } ); width = 600; } ); unicode = 8759; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/psi.glyph000066400000000000000000000024031472355150100275030ustar00rootroot00000000000000{ glyphname = psi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (252,-180,l), (281,0,l), (410,0,o), (494,78,o), (514,202,cs), (569,550,l), (521,550,l), (466,202,ls), (450,101,o), (386,48,o), (287,48,c), (366,550,l), (320,550,l), (241,48,l), (142,48,o), (94,101,o), (110,202,cs), (165,550,l), (117,550,l), (62,202,ls), (42,78,o), (102,0,o), (231,0,c), (202,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (268,-180,l), (297,0,l), (426,0,o), (514,78,o), (534,202,cs), (589,550,l), (506,550,l), (451,202,ls), (438,121,o), (382,71,o), (303,71,c), (379,550,l), (307,550,l), (231,71,l), (152,71,o), (112,121,o), (125,202,cs), (180,550,l), (97,550,l), (42,202,ls), (22,78,o), (86,0,o), (215,0,c), (186,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-180,l), (317,0,l), (447,0,o), (535,79,o), (555,207,cs), (609,550,l), (486,550,l), (432,207,ls), (423,152,o), (380,118,o), (327,118,c), (395,550,l), (291,550,l), (223,118,l), (170,118,o), (137,152,o), (146,207,cs), (200,550,l), (77,550,l), (23,207,ls), (2,78,o), (65,0,o), (195,0,c), (166,-180,l) ); } ); width = 600; } ); unicode = 968; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/q.glyph000066400000000000000000000035761472355150100271640ustar00rootroot00000000000000{ glyphname = q; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (461,-180,l), (577,550,l), (432,550,l), (415,445,l), (380,445,l), (408,410,l), (423,505,o), (379,560,o), (288,560,cs), (177,560,o), (91,476,o), (71,345,cs), (48,205,ls), (28,74,o), (86,-10,o), (197,-10,cs), (288,-10,o), (350,45,o), (365,140,c), (327,105,l), (362,105,l), (335,-30,l), (311,-180,l) ); }, { closed = 1; nodes = ( (216,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (373,210,ls), (364,153,o), (327,120,o), (272,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (435,-180,l), (551,550,l), (461,550,l), (444,445,l), (426,445,l), (441,424,l), (454,508,o), (404,560,o), (313,560,cs), (203,560,o), (120,482,o), (100,356,cs), (75,195,ls), (55,68,o), (111,-10,o), (222,-10,cs), (312,-10,o), (381,43,o), (394,126,c), (373,105,l), (393,105,l), (371,-20,l), (345,-180,l) ); }, { closed = 1; nodes = ( (189,68,o), (152,115,o), (166,200,cs), (189,350,ls), (203,435,o), (254,482,o), (330,482,cs), (404,482,o), (443,433,o), (429,350,cs), (406,200,ls), (393,117,o), (339,68,o), (265,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (417,-180,l), (533,550,l), (483,550,l), (471,475,l), (443,475,l), (471,410,l), (485,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,481,o), (118,361,cs), (91,190,ls), (72,70,o), (131,-10,o), (241,-10,cs), (337,-10,o), (414,49,o), (428,140,c), (390,75,l), (408,75,l), (391,-30,l), (367,-180,l) ); }, { closed = 1; nodes = ( (169,33,o), (126,92,o), (141,190,cs), (168,361,ls), (184,459,o), (246,517,o), (335,517,cs), (425,517,o), (469,459,o), (453,361,cs), (426,190,ls), (411,92,o), (349,33,o), (258,33,cs) ); } ); width = 600; } ); unicode = 113; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/question.glyph000066400000000000000000000033421472355150100305620ustar00rootroot00000000000000{ glyphname = question; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (298,225,l), (310,305,l), (436,305,o), (533,389,o), (553,515,cs), (573,646,o), (490,730,o), (337,730,cs), (182,730,l), (159,590,l), (324,590,ls), (379,590,o), (410,561,o), (403,515,cs), (395,470,o), (356,440,o), (302,440,cs), (202,440,l), (173,225,l) ); }, { closed = 1; nodes = ( (213,-5,ls), (259,-5,o), (293,22,o), (300,65,cs), (307,107,o), (281,135,o), (236,135,cs), (206,135,ls), (161,135,o), (127,107,o), (120,65,cs), (114,23,o), (139,-5,o), (184,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (289,205,l), (306,310,l), (419,316,o), (509,400,o), (528,515,cs), (548,646,o), (472,730,o), (332,730,cs), (207,730,l), (193,645,l), (318,645,ls), (404,645,o), (450,594,o), (438,515,cs), (425,436,o), (363,385,o), (278,385,cs), (228,385,l), (199,205,l) ); }, { closed = 1; nodes = ( (225,-5,ls), (260,-5,o), (289,21,o), (295,56,cs), (300,90,o), (282,115,o), (244,115,cs), (214,115,ls), (179,115,o), (150,90,o), (145,55,cs), (139,20,o), (160,-5,o), (195,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (279,205,l), (299,330,l), (427,330,o), (521,408,o), (540,530,cs), (559,651,o), (489,730,o), (362,730,cs), (242,730,l), (234,685,l), (354,685,ls), (451,685,o), (505,624,o), (490,530,cs), (475,436,o), (403,375,o), (306,375,cs), (256,375,l), (229,205,l) ); }, { closed = 1; nodes = ( (221,-5,ls), (254,-5,o), (280,17,o), (285,50,cs), (290,83,o), (272,105,o), (239,105,cs), (234,105,ls), (201,105,o), (175,83,o), (170,50,cs), (165,17,o), (183,-5,o), (216,-5,cs) ); } ); width = 600; } ); unicode = 63; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/question_colon.liga.glyph000066400000000000000000000011271472355150100326660ustar00rootroot00000000000000{ glyphname = question_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-490,0); ref = question; }, { alignment = -1; pos = (-50,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-498,0); ref = question; }, { alignment = -1; pos = (-50,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-506,0); ref = question; }, { alignment = -1; pos = (-50,0); ref = colon; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/question_equal.liga.glyph000066400000000000000000000020341472355150100326610ustar00rootroot00000000000000{ glyphname = question_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (507,225,l), (529,365,l), (54,365,l), (40,326,o), (2,292,o), (-40,280,c), (-48,225,l) ); }, { closed = 1; nodes = ( (546,475,l), (568,615,l), (99,615,l), (77,475,l) ); }, { alignment = -1; pos = (-553,0); ref = question; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (448,205,l), (461,285,l), (-91,285,l), (-99,269,o), (-118,254,o), (-146,241,c), (-152,205,l) ); }, { closed = 1; nodes = ( (486,445,l), (499,525,l), (59,525,l), (46,445,l) ); }, { alignment = -1; pos = (-560,0); ref = question; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (418,205,l), (426,255,l), (-96,255,l), (-103,236,o), (-124,222,o), (-149,221,c), (-152,205,l) ); }, { closed = 1; nodes = ( (452,415,l), (460,465,l), (50,465,l), (42,415,l) ); }, { alignment = -1; pos = (-560,0); ref = question; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/question_period.liga.glyph000066400000000000000000000011331472355150100330330ustar00rootroot00000000000000{ glyphname = question_period.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-490,0); ref = question; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-498,0); ref = question; }, { alignment = -1; pos = (-81,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-508,0); ref = question; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/question_question.liga.glyph000066400000000000000000000011431472355150100334210ustar00rootroot00000000000000{ glyphname = question_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-540,0); ref = question; }, { alignment = -1; pos = (-35,0); ref = question; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-550,0); ref = question; }, { alignment = -1; pos = (-45,0); ref = question; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-560,0); ref = question; }, { alignment = -1; pos = (-55,0); ref = question; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/questiondown.glyph000066400000000000000000000033751472355150100314600ustar00rootroot00000000000000{ glyphname = questiondown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-170,l), (436,-30,l), (271,-30,ls), (215,-30,o), (185,-4,o), (192,40,cs), (199,84,o), (237,110,o), (292,110,cs), (392,110,l), (421,325,l), (296,325,l), (284,245,l), (159,245,o), (62,163,o), (42,40,cs), (22,-86,o), (109,-170,o), (259,-170,cs) ); }, { closed = 1; nodes = ( (393,415,ls), (438,415,o), (472,443,o), (479,485,cs), (485,527,o), (460,555,o), (415,555,cs), (386,555,ls), (340,555,o), (306,528,o), (299,486,cs), (292,443,o), (318,415,o), (363,415,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (394,-170,l), (408,-85,l), (283,-85,ls), (196,-85,o), (150,-38,o), (162,40,cs), (175,118,o), (235,165,o), (321,165,cs), (371,165,l), (400,345,l), (310,345,l), (293,240,l), (179,234,o), (90,154,o), (72,40,cs), (52,-89,o), (127,-170,o), (269,-170,cs) ); }, { closed = 1; nodes = ( (380,435,ls), (419,435,o), (449,460,o), (455,497,cs), (460,533,o), (438,555,o), (399,555,cs), (379,555,ls), (340,555,o), (310,532,o), (305,496,cs), (299,460,o), (321,435,o), (360,435,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (359,-169,l), (366,-124,l), (246,-124,ls), (149,-124,o), (95,-68,o), (110,26,cs), (125,120,o), (196,176,o), (293,176,cs), (343,176,l), (370,345,l), (320,345,l), (300,221,l), (172,221,o), (79,148,o), (60,26,cs), (41,-95,o), (112,-169,o), (239,-169,cs) ); }, { closed = 1; nodes = ( (366,446,ls), (399,446,o), (424,468,o), (429,501,cs), (435,534,o), (416,556,o), (383,556,cs), (378,556,ls), (345,556,o), (320,534,o), (314,501,cs), (309,468,o), (328,446,o), (361,446,cs) ); } ); width = 600; } ); unicode = 191; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/questionedequalto.glyph000066400000000000000000000042651472355150100324730ustar00rootroot00000000000000{ glyphname = questionedequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (342,533,l), (350,580,l), (380,580,ls), (434,580,o), (479,618,o), (487,670,cs), (495,722,o), (462,760,o), (408,760,cs), (280,760,l), (275,725,l), (403,725,ls), (435,725,o), (454,702,o), (449,670,cs), (444,638,o), (417,615,o), (385,615,cs), (317,615,l), (304,533,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,159,l), (76,159,l), (69,114,l) ); }, { closed = 1; nodes = ( (510,309,l), (517,354,l), (107,354,l), (100,309,l) ); }, { closed = 1; nodes = ( (326,423,o), (341,436,o), (344,456,cs), (347,476,o), (336,489,o), (316,489,cs), (295,489,o), (279,476,o), (276,456,cs), (273,436,o), (285,423,o), (306,423,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (352,545,l), (358,580,l), (377,580,ls), (445,580,o), (495,620,o), (505,683,cs), (516,749,o), (478,791,o), (410,791,cs), (275,791,l), (267,736,l), (401,736,ls), (433,736,o), (450,715,o), (445,683,cs), (440,651,o), (416,630,o), (384,630,cs), (311,630,l), (297,545,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (65,152,l), (53,76,l) ); }, { closed = 1; nodes = ( (517,292,l), (529,368,l), (99,368,l), (87,292,l) ); }, { closed = 1; nodes = ( (330,430,o), (347,444,o), (351,466,cs), (354,488,o), (342,502,o), (318,502,cs), (294,502,o), (276,488,o), (273,466,cs), (269,444,o), (282,430,o), (306,430,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (358,545,l), (364,580,l), (377,580,ls), (453,580,o), (509,623,o), (520,695,cs), (531,766,o), (490,815,o), (414,815,cs), (269,815,l), (256,735,l), (392,735,ls), (419,735,o), (434,717,o), (429,690,cs), (425,663,o), (405,645,o), (378,645,cs), (304,645,l), (288,545,l) ); }, { closed = 1; nodes = ( (476,0,l), (498,140,l), (58,140,l), (36,0,l) ); }, { closed = 1; nodes = ( (516,250,l), (538,390,l), (98,390,l), (76,250,l) ); }, { closed = 1; nodes = ( (336,433,o), (357,449,o), (361,475,cs), (365,499,o), (349,515,o), (320,515,cs), (290,515,o), (267,499,o), (263,475,cs), (259,449,o), (277,433,o), (307,433,cs) ); } ); width = 600; } ); unicode = 8799; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/questiongreek.glyph000066400000000000000000000005601472355150100315770ustar00rootroot00000000000000{ glyphname = questiongreek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = semicolon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = semicolon; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = semicolon; } ); width = 600; } ); unicode = 894; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quotedbl.glyph000066400000000000000000000016521472355150100305340ustar00rootroot00000000000000{ glyphname = quotedbl; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (501,430,l), (536,570,l), (562,730,l), (414,730,l), (388,570,l), (380,430,l) ); }, { closed = 1; nodes = ( (269,430,l), (304,570,l), (330,730,l), (182,730,l), (156,570,l), (148,430,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (463,430,l), (507,640,l), (522,730,l), (425,730,l), (410,640,l), (389,430,l) ); }, { closed = 1; nodes = ( (260,430,l), (304,640,l), (319,730,l), (222,730,l), (207,640,l), (186,430,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (448,430,l), (490,640,l), (505,730,l), (439,730,l), (424,640,l), (401,430,l) ); }, { closed = 1; nodes = ( (248,430,l), (290,640,l), (305,730,l), (239,730,l), (224,640,l), (201,430,l) ); } ); width = 600; } ); unicode = 34; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quotedblbase.glyph000066400000000000000000000014341472355150100313650ustar00rootroot00000000000000{ glyphname = quotedblbase; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (366,-160,l), (545,151,l), (365,151,l), (236,-160,l) ); }, { closed = 1; nodes = ( (106,-160,l), (285,151,l), (105,151,l), (-24,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (326,-160,l), (505,151,l), (375,151,l), (246,-160,l) ); }, { closed = 1; nodes = ( (96,-160,l), (275,151,l), (145,151,l), (16,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (306,-160,l), (480,151,l), (390,151,l), (266,-160,l) ); }, { closed = 1; nodes = ( (81,-160,l), (255,151,l), (165,151,l), (41,-160,l) ); } ); width = 600; } ); unicode = 8222; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quotedblleft.glyph000066400000000000000000000014231472355150100314030ustar00rootroot00000000000000{ glyphname = quotedblleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (505,465,l), (634,776,l), (504,776,l), (325,465,l) ); }, { closed = 1; nodes = ( (245,465,l), (374,776,l), (244,776,l), (65,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (465,465,l), (594,776,l), (514,776,l), (335,465,l) ); }, { closed = 1; nodes = ( (235,465,l), (364,776,l), (284,776,l), (105,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (445,465,l), (569,776,l), (529,776,l), (355,465,l) ); }, { closed = 1; nodes = ( (220,465,l), (344,776,l), (304,776,l), (130,465,l) ); } ); width = 600; } ); unicode = 8220; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quotedblright.glyph000066400000000000000000000014241472355150100315670ustar00rootroot00000000000000{ glyphname = quotedblright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (465,465,l), (644,776,l), (464,776,l), (335,465,l) ); }, { closed = 1; nodes = ( (205,465,l), (384,776,l), (204,776,l), (75,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (425,465,l), (604,776,l), (474,776,l), (345,465,l) ); }, { closed = 1; nodes = ( (195,465,l), (374,776,l), (244,776,l), (115,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (405,465,l), (579,776,l), (489,776,l), (365,465,l) ); }, { closed = 1; nodes = ( (180,465,l), (354,776,l), (264,776,l), (140,465,l) ); } ); width = 600; } ); unicode = 8221; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quoteleft.glyph000066400000000000000000000007531472355150100307260ustar00rootroot00000000000000{ glyphname = quoteleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (702,615); ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (702,615); ref = comma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (702,615); ref = comma; } ); width = 600; } ); unicode = 8216; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quoteright.glyph000066400000000000000000000007021472355150100311030ustar00rootroot00000000000000{ glyphname = quoteright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (94,625); ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (94,625); ref = comma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (94,625); ref = comma; } ); width = 600; } ); unicode = 8217; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quotesinglbase.glyph000066400000000000000000000006261472355150100317420ustar00rootroot00000000000000{ glyphname = quotesinglbase; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = comma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = comma; } ); width = 600; } ); unicode = 8218; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/quotesingle.glyph000066400000000000000000000011541472355150100312510ustar00rootroot00000000000000{ glyphname = quotesingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (385,430,l), (420,570,l), (446,730,l), (298,730,l), (272,570,l), (264,430,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (356,430,l), (391,580,l), (415,730,l), (318,730,l), (294,580,l), (282,430,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (348,430,l), (378,560,l), (405,730,l), (339,730,l), (312,560,l), (301,430,l) ); } ); width = 600; } ); unicode = 39; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/r.glyph000066400000000000000000000027111472355150100271530ustar00rootroot00000000000000{ glyphname = r; layers = ( { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (157,0,l), (212,350,ls), (226,435,o), (280,484,o), (356,484,cs), (433,484,o), (469,436,o), (455,350,cs), (451,325,l), (541,325,l), (547,358,ls), (566,482,o), (505,560,o), (389,560,cs), (288,560,o), (226,499,o), (207,380,c), (246,445,l), (225,445,l), (242,550,l), (154,550,l), (67,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (133,0,l), (190,360,ls), (206,459,o), (268,517,o), (358,517,cs), (448,517,o), (492,459,o), (476,360,cs), (471,330,l), (526,330,l), (531,360,ls), (550,483,o), (490,560,o), (373,560,cs), (274,560,o), (206,504,o), (191,410,c), (230,475,l), (208,475,l), (220,550,l), (170,550,l), (83,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (188,0,l), (242,340,ls), (251,400,o), (288,435,o), (345,435,cs), (400,435,o), (429,400,o), (420,340,cs), (414,305,l), (574,305,l), (581,350,ls), (602,483,o), (544,560,o), (423,560,cs), (318,560,o), (252,499,o), (233,381,c), (286,445,l), (248,445,l), (265,550,l), (125,550,l), (38,0,l) ); } ); width = 600; } ); unicode = 114; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/r.ss03.glyph000066400000000000000000000026711472355150100277470ustar00rootroot00000000000000{ export = 0; glyphname = r.ss03; layers = ( { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (417,0,l), (424,45,l), (233,45,l), (281,350,ls), (297,446,o), (361,505,o), (449,505,cs), (591,505,l), (598,550,l), (464,550,ls), (368,550,o), (292,483,o), (275,381,c), (308,439,l), (294,439,l), (311,550,l), (118,550,l), (111,505,l), (256,505,l), (183,45,l), (38,45,l), (31,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (432,0,l), (453,135,l), (297,135,l), (327,320,ls), (336,380,o), (372,413,o), (429,413,cs), (576,413,l), (598,550,l), (509,550,ls), (404,550,o), (338,489,o), (320,371,c), (373,434,l), (330,434,l), (348,550,l), (98,550,l), (77,415,l), (192,415,l), (147,135,l), (32,135,l), (11,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (201,0); }, { name = top; pos = (363,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (431,0,l), (444,80,l), (264,80,l), (306,345,ls), (318,421,o), (375,468,o), (457,468,cs), (585,468,l), (598,551,l), (481,550,ls), (388,549,o), (319,483,o), (301,369,c), (340,440,l), (317,440,l), (334,550,l), (113,550,l), (100,470,l), (235,470,l), (174,80,l), (39,80,l), (26,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/racute.glyph000066400000000000000000000007001472355150100301710ustar00rootroot00000000000000{ glyphname = racute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = r; }, { pos = (641,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = r; }, { pos = (631,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = r; }, { pos = (632,0); ref = acutecomb; } ); width = 600; } ); unicode = 341; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/racute.ss03.glyph000066400000000000000000000007211472355150100307630ustar00rootroot00000000000000{ export = 0; glyphname = racute.ss03; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (640,0); ref = acutecomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (630,0); ref = acutecomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (630,0); ref = acutecomb; }, { ref = r.ss03; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/radical.glyph000066400000000000000000000015001472355150100303040ustar00rootroot00000000000000{ glyphname = radical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,0,l), (677,730,l), (524,730,l), (311,218,ls), (296,182,o), (283,135,o), (278,110,c), (245,550,l), (48,550,l), (27,415,l), (120,415,l), (164,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (329,0,l), (657,730,l), (571,730,l), (322,161,ls), (303,117,o), (295,81,o), (293,66,c), (248,550,l), (73,550,l), (60,470,l), (171,470,l), (224,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (307,0,l), (649,730,l), (597,730,l), (320,131,ls), (300,87,o), (293,61,o), (288,46,c), (232,550,l), (73,550,l), (66,505,l), (189,505,l), (248,0,l) ); } ); width = 600; } ); unicode = 8730; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ratio.glyph000066400000000000000000000026111472355150100300270ustar00rootroot00000000000000{ glyphname = ratio; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (344,416,o), (373,445,o), (373,488,cs), (373,531,o), (344,560,o), (300,560,cs), (256,560,o), (227,531,o), (227,488,cs), (227,445,o), (256,416,o), (300,416,cs) ); }, { closed = 1; nodes = ( (344,-10,o), (373,19,o), (373,62,cs), (373,105,o), (344,134,o), (300,134,cs), (256,134,o), (227,105,o), (227,62,cs), (227,19,o), (256,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,410,o), (383,440,o), (383,485,cs), (383,530,o), (350,560,o), (300,560,cs), (250,560,o), (217,530,o), (217,485,cs), (217,440,o), (250,410,o), (300,410,cs) ); }, { closed = 1; nodes = ( (350,-10,o), (383,20,o), (383,65,cs), (383,110,o), (350,140,o), (300,140,cs), (250,140,o), (217,110,o), (217,65,cs), (217,20,o), (250,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (360,380,o), (400,416,o), (400,470,cs), (400,524,o), (360,560,o), (300,560,cs), (240,560,o), (200,524,o), (200,470,cs), (200,416,o), (240,380,o), (300,380,cs) ); }, { closed = 1; nodes = ( (360,-10,o), (400,26,o), (400,80,cs), (400,134,o), (360,170,o), (300,170,cs), (240,170,o), (200,134,o), (200,80,cs), (200,26,o), (240,-10,o), (300,-10,cs) ); } ); width = 600; } ); unicode = 8758; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rcaron.glyph000066400000000000000000000007001472355150100301720ustar00rootroot00000000000000{ glyphname = rcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = r; }, { pos = (620,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = r; }, { pos = (620,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = r; }, { pos = (620,0); ref = caroncomb; } ); width = 600; } ); unicode = 345; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rcaron.ss03.glyph000066400000000000000000000007211472355150100307640ustar00rootroot00000000000000{ export = 0; glyphname = rcaron.ss03; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (620,0); ref = caroncomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (620,0); ref = caroncomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (620,0); ref = caroncomb; }, { ref = r.ss03; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rcommaaccent.glyph000066400000000000000000000007301472355150100313450ustar00rootroot00000000000000{ glyphname = rcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = r; }, { pos = (435,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = r; }, { pos = (435,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = r; }, { pos = (435,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 343; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rcommaaccent.ss03.glyph000066400000000000000000000007511472355150100321370ustar00rootroot00000000000000{ export = 0; glyphname = rcommaaccent.ss03; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (540,0); ref = commaaccentcomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (540,0); ref = commaaccentcomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (540,0); ref = commaaccentcomb; }, { ref = r.ss03; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/recordS_eparator-control.glyph000066400000000000000000000013201472355150100336610ustar00rootroot00000000000000{ glyphname = "recordSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = R; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = R; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = R; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9246; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/reflexsubset.glyph000066400000000000000000000012401472355150100314210ustar00rootroot00000000000000{ glyphname = reflexsubset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (531,0,l), (553,140,l), (18,140,l), (-4,0,l) ); }, { alignment = -1; pos = (13,80); ref = subset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (526,0,l), (539,82,l), (19,82,l), (6,0,l) ); }, { alignment = -1; pos = (13,80); ref = subset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (511,0,l), (518,45,l), (33,45,l), (26,0,l) ); }, { alignment = -1; pos = (13,80); ref = subset; } ); width = 600; } ); unicode = 8838; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/reflexsuperset.glyph000066400000000000000000000012501472355150100317670ustar00rootroot00000000000000{ glyphname = reflexsuperset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,140,l), (3,140,l), (-19,0,l) ); }, { alignment = -1; pos = (13,80); ref = superset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (-1,82,l), (-14,0,l) ); }, { alignment = -1; pos = (13,80); ref = superset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (8,45,l), (1,0,l) ); }, { alignment = -1; pos = (13,80); ref = superset; } ); width = 600; } ); unicode = 8839; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/registered.glyph000066400000000000000000000052301472355150100310460ustar00rootroot00000000000000{ glyphname = registered; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (426,110,o), (543,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (33,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,c), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (256,250,l), (277,385,l), (317,385,l), (351,250,l), (433,250,l), (383,426,l), (349,387,l), (410,395,o), (455,432,o), (465,490,cs), (475,556,o), (431,600,o), (355,600,cs), (231,600,l), (176,250,l) ); }, { closed = 1; nodes = ( (302,540,l), (346,540,ls), (374,540,o), (389,522,o), (384,495,cs), (380,468,o), (359,450,o), (331,450,cs), (287,450,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (426,110,o), (543,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (33,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,cs), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (246,250,l), (268,390,l), (322,390,l), (360,250,l), (423,250,l), (369,440,l), (353,393,l), (408,403,o), (446,440,o), (455,495,cs), (466,559,o), (427,600,o), (355,600,cs), (241,600,l), (186,250,l) ); }, { closed = 1; nodes = ( (293,550,l), (347,550,ls), (382,550,o), (400,530,o), (394,495,cs), (389,460,o), (365,440,o), (330,440,cs), (276,440,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (422,110,o), (536,205,o), (559,350,cs), (583,500,ls), (606,645,o), (522,740,o), (373,740,cs), (224,740,o), (110,645,o), (87,500,cs), (63,350,ls), (40,205,o), (124,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (157,148,o), (87,229,o), (106,350,c), (130,500,ls), (149,621,o), (245,702,o), (367,702,cs), (489,702,o), (559,621,o), (540,500,cs), (516,350,ls), (497,229,o), (401,148,o), (279,148,cs) ); }, { closed = 1; nodes = ( (241,250,l), (264,395,l), (323,395,l), (364,250,l), (411,250,l), (359,424,l), (352,398,l), (402,408,o), (438,447,o), (447,498,cs), (457,560,o), (420,600,o), (356,600,cs), (251,600,l), (196,250,l) ); }, { closed = 1; nodes = ( (290,560,l), (350,560,ls), (390,560,o), (413,534,o), (407,497,cs), (401,460,o), (370,435,o), (330,435,cs), (270,435,l) ); } ); width = 600; } ); unicode = 174; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/replacement.glyph000066400000000000000000000056151472355150100312170ustar00rootroot00000000000000{ glyphname = replacement; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (324,-11,o), (349,3,o), (370,31,cs), (572,290,ls), (591,314,o), (600,337,o), (600,360,cs), (600,383,o), (591,406,o), (573,430,cs), (370,697,ls), (349,726,o), (324,740,o), (300,740,cs), (276,740,o), (252,726,o), (230,697,cs), (27,430,ls), (9,407,o), (0,384,o), (0,360,cs), (0,337,o), (9,314,o), (28,290,cs), (230,31,ls), (252,3,o), (276,-11,o), (300,-11,cs) ); }, { closed = 1; nodes = ( (266,170,o), (253,184,o), (253,202,cs), (253,220,o), (266,234,o), (283,234,cs), (301,234,ls), (319,234,o), (332,220,o), (332,202,cs), (332,184,o), (319,170,o), (301,170,cs), (283,170,ls) ); }, { closed = 1; nodes = ( (264,367,l), (297,367,ls), (334,367,o), (358,392,o), (358,430,cs), (358,469,o), (334,491,o), (297,491,cs), (234,491,l), (234,541,l), (297,541,ls), (368,541,o), (412,499,o), (412,433,cs), (412,373,o), (375,333,o), (317,330,c), (317,277,l), (264,277,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (324,-11,o), (349,3,o), (370,31,cs), (572,290,ls), (591,314,o), (600,337,o), (600,360,cs), (600,383,o), (591,406,o), (573,430,cs), (370,697,ls), (349,726,o), (324,740,o), (300,740,cs), (276,740,o), (252,726,o), (230,697,cs), (27,430,ls), (9,407,o), (0,384,o), (0,360,cs), (0,337,o), (9,314,o), (28,290,cs), (230,31,ls), (252,3,o), (276,-11,o), (300,-11,cs) ); }, { closed = 1; nodes = ( (266,170,o), (253,184,o), (253,202,cs), (253,220,o), (266,234,o), (283,234,cs), (301,234,ls), (319,234,o), (332,220,o), (332,202,cs), (332,184,o), (319,170,o), (301,170,cs), (283,170,ls) ); }, { closed = 1; nodes = ( (264,367,l), (297,367,ls), (334,367,o), (358,392,o), (358,430,cs), (358,469,o), (334,491,o), (297,491,cs), (234,491,l), (234,541,l), (297,541,ls), (368,541,o), (412,499,o), (412,433,cs), (412,373,o), (375,333,o), (317,330,c), (317,277,l), (264,277,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (324,-11,o), (349,3,o), (370,31,cs), (572,290,ls), (591,314,o), (600,337,o), (600,360,cs), (600,383,o), (591,406,o), (573,430,cs), (370,697,ls), (349,726,o), (324,740,o), (300,740,cs), (276,740,o), (252,726,o), (230,697,cs), (27,430,ls), (9,407,o), (0,384,o), (0,360,cs), (0,337,o), (9,314,o), (28,290,cs), (230,31,ls), (252,3,o), (276,-11,o), (300,-11,cs) ); }, { closed = 1; nodes = ( (266,170,o), (253,184,o), (253,202,cs), (253,220,o), (266,234,o), (283,234,cs), (301,234,ls), (319,234,o), (332,220,o), (332,202,cs), (332,184,o), (319,170,o), (301,170,cs), (283,170,ls) ); }, { closed = 1; nodes = ( (264,367,l), (297,367,ls), (334,367,o), (358,392,o), (358,430,cs), (358,469,o), (334,491,o), (297,491,cs), (234,491,l), (234,541,l), (297,541,ls), (368,541,o), (412,499,o), (412,433,cs), (412,373,o), (375,333,o), (317,330,c), (317,277,l), (264,277,l) ); } ); width = 600; } ); unicode = 65533; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rho.glyph000066400000000000000000000033501472355150100275020ustar00rootroot00000000000000{ glyphname = rho; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (128,75,l), (146,75,l), (128,140,l), (114,50,o), (170,-10,o), (267,-10,cs), (376,-10,o), (462,70,o), (481,190,cs), (508,361,ls), (527,482,o), (465,560,o), (348,560,cs), (228,560,o), (142,484,o), (123,361,cs), (37,-180,l) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,190,cs), (173,361,ls), (188,458,o), (251,517,o), (341,517,cs), (430,517,o), (474,459,o), (458,361,cs), (431,190,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,-180,l), (135,-20,l), (153,105,l), (173,105,l), (158,126,l), (145,43,o), (194,-10,o), (284,-10,cs), (395,-10,o), (475,68,o), (495,195,cs), (520,356,ls), (540,483,o), (475,560,o), (346,560,cs), (217,560,o), (124,482,o), (104,356,cs), (19,-180,l) ); }, { closed = 1; nodes = ( (193,68,o), (157,117,o), (170,200,cs), (193,350,ls), (207,435,o), (256,482,o), (332,482,cs), (408,482,o), (443,435,o), (429,350,cs), (406,200,ls), (392,115,o), (343,68,o), (267,68,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (143,-180,l), (167,-30,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs), (422,-10,o), (508,74,o), (528,205,cs), (551,345,ls), (571,475,o), (490,560,o), (348,560,cs), (206,560,o), (97,475,o), (77,345,cs), (-7,-180,l) ); }, { closed = 1; nodes = ( (223,120,o), (196,153,o), (205,210,cs), (226,340,ls), (235,398,o), (271,430,o), (327,430,cs), (383,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; } ); unicode = 961; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightA_rrow.glyph000066400000000000000000000024041472355150100312000ustar00rootroot00000000000000{ glyphname = rightArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (339,35,l), (570,330,l), (338,625,l), (233,625,l), (395,421,ls), (412,401,o), (431,382,o), (440,374,c), (440,365,l), (423,367,o), (392,370,o), (370,370,cs), (40,370,l), (40,290,l), (370,290,ls), (392,290,o), (423,292,o), (440,294,c), (440,285,l), (428,276,o), (408,257,o), (395,240,cs), (233,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (339,35,l), (570,330,l), (338,625,l), (233,625,l), (395,421,ls), (412,401,o), (431,382,o), (440,374,c), (440,365,l), (423,367,o), (392,370,o), (370,370,cs), (40,370,l), (40,290,l), (370,290,ls), (392,290,o), (423,292,o), (440,294,c), (440,285,l), (428,276,o), (408,257,o), (395,240,cs), (233,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (339,35,l), (570,330,l), (338,625,l), (233,625,l), (395,421,ls), (412,401,o), (431,382,o), (440,374,c), (440,365,l), (423,367,o), (392,370,o), (370,370,cs), (40,370,l), (40,290,l), (370,290,ls), (392,290,o), (423,292,o), (440,294,c), (440,285,l), (428,276,o), (408,257,o), (395,240,cs), (233,35,l) ); } ); width = 600; } ); unicode = 8594; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightB_lackP_ointer.glyph000066400000000000000000000007631472355150100326300ustar00rootroot00000000000000{ glyphname = rightBlackPointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); } ); width = 600; } ); unicode = 9658; } rightB_lackS_mallT_riangle.glyph000066400000000000000000000010401472355150100340130ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { angle = 90; pos = (-60,60); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { angle = 90; pos = (-60,60); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { angle = 90; pos = (-60,60); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; } ); unicode = 9656; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightB_lackT_riangle.glyph000066400000000000000000000007611472355150100327530ustar00rootroot00000000000000{ glyphname = rightBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); } ); width = 600; } ); unicode = 9654; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightB_lock.glyph000066400000000000000000000010531472355150100311370ustar00rootroot00000000000000{ glyphname = rightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9616; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightC_eiling.glyph000066400000000000000000000011651472355150100314630ustar00rootroot00000000000000{ glyphname = rightCeiling; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (319,-110,l), (467,830,l), (242,830,l), (235,785,l), (410,785,l), (269,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (334,-110,l), (482,830,l), (237,830,l), (225,750,l), (380,750,l), (244,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (369,-110,l), (517,830,l), (212,830,l), (190,690,l), (345,690,l), (219,-110,l) ); } ); width = 600; } ); unicode = 8969; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightD_oubleA_rrow.glyph000066400000000000000000000023071472355150100324740ustar00rootroot00000000000000{ glyphname = rightDoubleArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (575,330,l), (343,35,l) ); }, { closed = 1; nodes = ( (535,170,l), (535,250,l), (0,250,l), (0,170,l) ); }, { closed = 1; nodes = ( (535,410,l), (535,490,l), (0,490,l), (0,410,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (-80,490,l), (-80,410,l), (512,410,l), (575,330,l), (512,250,l), (-80,250,l), (-80,170,l), (449,170,l), (343,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (-80,490,l), (-80,410,l), (512,410,l), (575,330,l), (512,250,l), (-80,250,l), (-80,170,l), (449,170,l), (343,35,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (-80,490,l), (-80,410,l), (512,410,l), (575,330,l), (512,250,l), (-80,250,l), (-80,170,l), (449,170,l), (343,35,l) ); } ); width = 600; } ); unicode = 8658; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightD_oubleP_airedA_rrow.glyph000066400000000000000000000041001472355150100337510ustar00rootroot00000000000000{ glyphname = rightDoublePairedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (556,-39,l), (680,120,l), (556,279,l), (680,435,l), (556,594,l), (452,594,l), (505,526,ls), (522,504,o), (541,487,o), (550,479,c), (550,470,l), (533,472,o), (502,475,o), (480,475,cs), (-80,475,l), (-80,395,l), (480,395,ls), (502,395,o), (533,397,o), (550,399,c), (550,390,l), (538,381,o), (518,361,o), (505,345,cs), (452,279,l), (505,211,ls), (521,190,o), (541,172,o), (550,164,c), (550,155,l), (533,157,o), (502,160,o), (480,160,cs), (-80,160,l), (-80,80,l), (480,80,ls), (502,80,o), (533,82,o), (550,84,c), (550,75,l), (538,66,o), (517,46,o), (505,30,cs), (452,-39,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (556,-39,l), (680,120,l), (556,279,l), (680,435,l), (556,594,l), (452,594,l), (505,526,ls), (522,504,o), (541,487,o), (550,479,c), (550,470,l), (533,472,o), (502,475,o), (480,475,cs), (-80,475,l), (-80,395,l), (480,395,ls), (502,395,o), (533,397,o), (550,399,c), (550,390,l), (538,381,o), (518,361,o), (505,345,cs), (452,279,l), (505,211,ls), (521,190,o), (541,172,o), (550,164,c), (550,155,l), (533,157,o), (502,160,o), (480,160,cs), (-80,160,l), (-80,80,l), (480,80,ls), (502,80,o), (533,82,o), (550,84,c), (550,75,l), (538,66,o), (517,46,o), (505,30,cs), (452,-39,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (556,-39,l), (680,120,l), (556,279,l), (680,435,l), (556,594,l), (452,594,l), (505,526,ls), (522,504,o), (541,487,o), (550,479,c), (550,470,l), (533,472,o), (502,475,o), (480,475,cs), (-80,475,l), (-80,395,l), (480,395,ls), (502,395,o), (533,397,o), (550,399,c), (550,390,l), (538,381,o), (518,361,o), (505,345,cs), (452,279,l), (505,211,ls), (521,190,o), (541,172,o), (550,164,c), (550,155,l), (533,157,o), (502,160,o), (480,160,cs), (-80,160,l), (-80,80,l), (480,80,ls), (502,80,o), (533,82,o), (550,84,c), (550,75,l), (538,66,o), (517,46,o), (505,30,cs), (452,-39,l) ); } ); width = 600; } ); unicode = 8649; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightF_loor.glyph000066400000000000000000000011551472355150100311710ustar00rootroot00000000000000{ glyphname = rightFloor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (319,-110,l), (467,830,l), (417,830,l), (276,-65,l), (101,-65,l), (94,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (334,-110,l), (482,830,l), (392,830,l), (256,-30,l), (101,-30,l), (89,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (369,-110,l), (517,830,l), (367,830,l), (241,30,l), (86,30,l), (64,-110,l) ); } ); width = 600; } ); unicode = 8971; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightF_rombarA_rrow.glyph000066400000000000000000000026171472355150100326560ustar00rootroot00000000000000{ glyphname = rightFrombarArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (2,75,l), (2,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (2,315,l), (2,475,l), (-80,475,l), (-80,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (2,75,l), (2,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (2,315,l), (2,475,l), (-80,475,l), (-80,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (2,75,l), (2,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (2,315,l), (2,475,l), (-80,475,l), (-80,75,l) ); } ); width = 600; } ); unicode = 8614; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightH_alfB_lackS_quare.glyph000066400000000000000000000014041472355150100333730ustar00rootroot00000000000000{ glyphname = rightHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (310,610,l), (310,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (310,610,l), (310,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (310,610,l), (310,110,l), (50,110,l) ); } ); width = 600; } ); unicode = 9704; } rightH_eavyR_oundT_ippedA_rrow.glyph000066400000000000000000000037641472355150100347430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightHeavyRoundTippedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (20,291,o), (51,260,o), (90,260,cs), (295,260,ls), (327,260,o), (340,261,o), (370,276,c), (263,139,ls), (251,124,o), (247,108,o), (247,92,cs), (247,72,o), (255,53,o), (272,40,cs), (286,30,o), (301,25,o), (317,25,cs), (337,25,o), (357,34,o), (371,51,cs), (590,330,l), (371,608,ls), (357,626,o), (337,635,o), (316,635,cs), (301,635,o), (286,630,o), (273,620,cs), (255,606,o), (246,586,o), (246,565,cs), (246,550,o), (251,535,o), (261,522,cs), (370,385,l), (339,400,o), (327,400,o), (295,400,cs), (90,400,ls), (51,400,o), (20,369,o), (20,330,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (20,291,o), (51,260,o), (90,260,cs), (295,260,ls), (327,260,o), (340,261,o), (370,276,c), (263,139,ls), (251,124,o), (247,108,o), (247,92,cs), (247,72,o), (255,53,o), (272,40,cs), (286,30,o), (301,25,o), (317,25,cs), (337,25,o), (357,34,o), (371,51,cs), (590,330,l), (371,608,ls), (357,626,o), (337,635,o), (316,635,cs), (301,635,o), (286,630,o), (273,620,cs), (255,606,o), (246,586,o), (246,565,cs), (246,550,o), (251,535,o), (261,522,cs), (370,385,l), (339,400,o), (327,400,o), (295,400,cs), (90,400,ls), (51,400,o), (20,369,o), (20,330,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (20,291,o), (51,260,o), (90,260,cs), (295,260,ls), (327,260,o), (340,261,o), (370,276,c), (263,139,ls), (251,124,o), (247,108,o), (247,92,cs), (247,72,o), (255,53,o), (272,40,cs), (286,30,o), (301,25,o), (317,25,cs), (337,25,o), (357,34,o), (371,51,cs), (590,330,l), (371,608,ls), (357,626,o), (337,635,o), (316,635,cs), (301,635,o), (286,630,o), (273,620,cs), (255,606,o), (246,586,o), (246,565,cs), (246,550,o), (251,535,o), (261,522,cs), (370,385,l), (339,400,o), (327,400,o), (295,400,cs), (90,400,ls), (51,400,o), (20,369,o), (20,330,cs) ); } ); width = 600; } ); unicode = 10140; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightO_neE_ighthB_lock.glyph000066400000000000000000000010641472355150100332320ustar00rootroot00000000000000{ glyphname = rightOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (525,1020,l), (525,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (525,1020,l), (525,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (525,1020,l), (525,-300,l) ); } ); width = 600; } ); unicode = 9621; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightT_ailA_rrow.glyph000066400000000000000000000027021472355150100321520ustar00rootroot00000000000000{ glyphname = rightTailArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; } ); unicode = 8611; } rightT_woH_eadedA_rrowW_ithT_ail.glyph000066400000000000000000000044601472355150100351540ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightTwoHeadedArrowWithTail; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l), (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l), (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l), (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; } ); unicode = 10518; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightT_woheadedA_rrow.glyph000066400000000000000000000041631472355150100331700ustar00rootroot00000000000000{ glyphname = rightTwoheadedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (-80,315,l), (-80,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (-80,315,l), (-80,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (-80,315,l), (-80,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l) ); } ); width = 600; } ); unicode = 8608; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightW_hiteA_rrow.glyph000066400000000000000000000034771472355150100323530ustar00rootroot00000000000000{ glyphname = rightWhiteArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (0,130,l), (311,130,l), (311,0,l), (361,0,l), (591,257,l), (591,303,l), (361,560,l), (311,560,l), (311,430,l), (0,430,l) ); }, { closed = 1; nodes = ( (361,385,l), (361,486,l), (545,282,l), (361,76,l), (361,175,l), (45,175,l), (45,385,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (660,275,l), (339,560,l), (339,432,l), (1,432,ls), (-16,432,o), (-30,418,o), (-30,401,cs), (-30,151,ls), (-30,134,o), (-16,120,o), (1,120,cs), (339,120,l), (339,-10,l) ); }, { closed = 1; nodes = ( (379,160,l), (15,160,l), (15,392,l), (379,392,l), (379,471,l), (600,275,l), (379,79,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (660,275,l), (334,560,l), (334,432,l), (1,432,ls), (-16,432,o), (-30,418,o), (-30,401,cs), (-30,151,ls), (-30,134,o), (-16,120,o), (1,120,cs), (334,120,l), (334,-10,l) ); }, { closed = 1; nodes = ( (384,170,l), (25,170,l), (25,382,l), (384,382,l), (384,449,l), (585,275,l), (384,101,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (389,-4,l), (600,233,l), (600,331,l), (389,567,l), (289,567,l), (289,432,l), (0,432,l), (0,132,l), (289,132,l), (289,-4,l) ); }, { closed = 1; nodes = ( (389,232,l), (110,232,l), (110,332,l), (389,332,l), (389,386,l), (483,284,l), (389,177,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (660,275,l), (329,560,l), (329,432,l), (1,432,ls), (-16,432,o), (-30,418,o), (-30,401,cs), (-30,151,ls), (-30,134,o), (-16,120,o), (1,120,cs), (329,120,l), (329,-10,l) ); }, { closed = 1; nodes = ( (394,186,l), (40,186,l), (40,366,l), (394,366,l), (394,415,l), (558,275,l), (394,135,l) ); } ); width = 600; } ); unicode = 8680; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightW_hiteP_ointer.glyph000066400000000000000000000012711472355150100326670ustar00rootroot00000000000000{ glyphname = rightWhitePointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); }, { closed = 1; nodes = ( (50,446,l), (448,360,l), (50,274,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); }, { closed = 1; nodes = ( (50,446,l), (448,360,l), (50,274,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); }, { closed = 1; nodes = ( (50,446,l), (448,360,l), (50,274,l) ); } ); width = 600; } ); unicode = 9659; } rightW_hiteS_mallT_riangle.glyph000066400000000000000000000013211472355150100340610ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (460,360,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (190,446,l), (368,360,l), (190,274,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (460,360,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (190,446,l), (368,360,l), (190,274,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (460,360,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (190,446,l), (368,360,l), (190,274,l) ); } ); width = 600; } ); unicode = 9657; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightW_hiteT_riangle.glyph000066400000000000000000000012671472355150100330210ustar00rootroot00000000000000{ glyphname = rightWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); }, { closed = 1; nodes = ( (50,587,l), (498,360,l), (50,133,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); }, { closed = 1; nodes = ( (50,587,l), (498,360,l), (50,133,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); }, { closed = 1; nodes = ( (50,587,l), (498,360,l), (50,133,l) ); } ); width = 600; } ); unicode = 9655; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightanglebracket-math.glyph000066400000000000000000000012511472355150100333170ustar00rootroot00000000000000{ glyphname = "rightanglebracket-math"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (223,-115,l), (475,290,l), (475,412,l), (223,815,l), (121,815,l), (401,348,l), (115,-115,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (223,-115,l), (475,290,l), (475,412,l), (223,815,l), (121,815,l), (401,348,l), (115,-115,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (223,-115,l), (475,290,l), (475,412,l), (223,815,l), (121,815,l), (401,348,l), (115,-115,l) ); } ); width = 600; } ); unicode = 10217; } rightcurlybracketlowerhook.glyph000066400000000000000000000010131472355150100343070ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightcurlybracketlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftcurlybracketlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftcurlybracketlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftcurlybracketlowerhook; scale = (-1,1); } ); width = 600; } ); unicode = 9133; } rightcurlybracketmiddlepiece.glyph000066400000000000000000000013731472355150100345530ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightcurlybracketmiddlepiece; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftcurlybracketmiddlepiece; scale = (-1,1); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftcurlybracketmiddlepiece; scale = (-1,1); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftcurlybracketmiddlepiece; scale = (-1,1); } ); width = 600; } ); unicode = 9132; } rightcurlybracketupperhook.glyph000066400000000000000000000010131472355150100343120ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightcurlybracketupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftcurlybracketupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftcurlybracketupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftcurlybracketupperhook; scale = (-1,1); } ); width = 600; } ); unicode = 9131; } rightdoubleanglebracket-math.glyph000066400000000000000000000010341472355150100344320ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "rightdoubleanglebracket-math"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = "leftdoubleanglebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = "leftdoubleanglebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = "leftdoubleanglebracket-math"; scale = (-1,1); } ); width = 600; } ); unicode = 10219; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/rightlongA_rrow.glyph000066400000000000000000000024171472355150100320640ustar00rootroot00000000000000{ glyphname = rightlongArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (434,75,l), (640,330,l), (433,585,l), (328,585,l), (465,421,ls), (482,401,o), (501,382,o), (510,374,c), (510,365,l), (493,367,o), (462,370,o), (440,370,cs), (-40,370,l), (-40,290,l), (440,290,ls), (462,290,o), (493,292,o), (510,294,c), (510,285,l), (498,276,o), (478,256,o), (465,240,cs), (331,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (434,75,l), (640,330,l), (433,585,l), (328,585,l), (465,421,ls), (482,401,o), (501,382,o), (510,374,c), (510,365,l), (493,367,o), (462,370,o), (440,370,cs), (-40,370,l), (-40,290,l), (440,290,ls), (462,290,o), (493,292,o), (510,294,c), (510,285,l), (498,276,o), (478,256,o), (465,240,cs), (331,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (434,75,l), (640,330,l), (433,585,l), (328,585,l), (465,421,ls), (482,401,o), (501,382,o), (510,374,c), (510,365,l), (493,367,o), (462,370,o), (440,370,cs), (-40,370,l), (-40,290,l), (440,290,ls), (462,290,o), (493,292,o), (510,294,c), (510,285,l), (498,276,o), (478,256,o), (465,240,cs), (331,75,l) ); } ); width = 600; } ); unicode = 10230; } rightsquarebracketextension.glyph000066400000000000000000000006621472355150100344650ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightsquarebracketextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = leftsquarebracketextension; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = leftsquarebracketextension; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = leftsquarebracketextension; } ); width = 600; } ); unicode = 9125; } rightsquarebracketlowercorner.glyph000066400000000000000000000010271472355150100350060ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightsquarebracketlowercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftsquarebracketlowercorner; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftsquarebracketlowercorner; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftsquarebracketlowercorner; scale = (-1,1); } ); width = 600; } ); unicode = 9126; } rightsquarebracketuppercorner.glyph000066400000000000000000000010271472355150100350110ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = rightsquarebracketuppercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftsquarebracketuppercorner; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftsquarebracketuppercorner; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftsquarebracketuppercorner; scale = (-1,1); } ); width = 600; } ); unicode = 9124; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/righttack.glyph000066400000000000000000000013511472355150100306710ustar00rootroot00000000000000{ glyphname = righttack; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,278,l), (600,323,l), (0,323,l), (0,278,l) ); }, { closed = 1; nodes = ( (50,0,l), (50,600,l), (0,600,l), (0,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,265,l), (600,345,l), (0,345,l), (0,265,l) ); }, { closed = 1; nodes = ( (90,0,l), (90,600,l), (0,600,l), (0,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,235,l), (600,375,l), (0,375,l), (0,235,l) ); }, { closed = 1; nodes = ( (150,0,l), (150,600,l), (0,600,l), (0,0,l) ); } ); width = 600; } ); unicode = 8866; } rightwhitesquarebracket-math.glyph000066400000000000000000000017111472355150100345140ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "rightwhitesquarebracket-math"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (440,-110,l), (440,830,l), (105,830,l), (105,785,l), (390,785,l), (390,-65,l), (105,-65,l), (105,-110,l) ); }, { closed = 1; nodes = ( (330,-75,l), (330,805,l), (280,805,l), (280,-75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (440,-110,l), (440,830,l), (105,830,l), (105,785,l), (390,785,l), (390,-65,l), (105,-65,l), (105,-110,l) ); }, { closed = 1; nodes = ( (330,-75,l), (330,805,l), (280,805,l), (280,-75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (440,-110,l), (440,830,l), (105,830,l), (105,785,l), (390,785,l), (390,-65,l), (105,-65,l), (105,-110,l) ); }, { closed = 1; nodes = ( (330,-75,l), (330,805,l), (280,805,l), (280,-75,l) ); } ); width = 600; } ); unicode = 10215; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ring.case.glyph000066400000000000000000000007061472355150100305650ustar00rootroot00000000000000{ glyphname = ring.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = ringcomb.case; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ring.glyph000066400000000000000000000006211472355150100276470ustar00rootroot00000000000000{ glyphname = ring; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = ringcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = ringcomb; } ); width = 600; } ); unicode = 730; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ringbelowcomb.glyph000066400000000000000000000034421472355150100315450ustar00rootroot00000000000000{ glyphname = ringbelowcomb; layers = ( { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-385,-260); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-306,-260,o), (-248,-218,o), (-238,-155,cs), (-228,-92,o), (-273,-50,o), (-351,-50,cs), (-429,-50,o), (-488,-92,o), (-498,-155,cs), (-508,-218,o), (-462,-260,o), (-384,-260,cs) ); }, { closed = 1; nodes = ( (-413,-206,o), (-432,-186,o), (-428,-155,cs), (-423,-124,o), (-396,-104,o), (-360,-104,cs), (-323,-104,o), (-303,-124,o), (-308,-155,cs), (-312,-186,o), (-340,-206,o), (-377,-206,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-383,-250); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-311,-250,o), (-256,-210,o), (-247,-150,cs), (-237,-90,o), (-279,-50,o), (-351,-50,cs), (-423,-50,o), (-477,-90,o), (-487,-150,cs), (-496,-210,o), (-455,-250,o), (-383,-250,cs) ); }, { closed = 1; nodes = ( (-411,-199,o), (-431,-179,o), (-427,-150,cs), (-422,-120,o), (-395,-100,o), (-360,-100,cs), (-322,-100,o), (-301,-116,o), (-307,-150,cs), (-311,-179,o), (-339,-199,o), (-376,-199,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-382,-245); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-319,-245,o), (-271,-207,o), (-262,-150,cs), (-253,-93,o), (-289,-55,o), (-352,-55,cs), (-415,-55,o), (-463,-93,o), (-472,-150,cs), (-481,-207,o), (-445,-245,o), (-382,-245,cs) ); }, { closed = 1; nodes = ( (-415,-210,o), (-437,-185,o), (-432,-150,cs), (-426,-115,o), (-396,-89,o), (-358,-89,cs), (-315,-89,o), (-296,-115,o), (-302,-150,cs), (-307,-185,o), (-337,-210,o), (-377,-210,cs) ); } ); width = 0; } ); unicode = 805; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ringcomb.case.glyph000066400000000000000000000033121472355150100314220ustar00rootroot00000000000000{ glyphname = ringcomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-188,980); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-156,780,o), (-108,820,o), (-99,880,cs), (-89,940,o), (-125,980,o), (-187,980,cs), (-250,980,o), (-299,940,o), (-309,880,cs), (-318,820,o), (-281,780,o), (-218,780,cs) ); }, { closed = 1; nodes = ( (-253,815,o), (-275,841,o), (-269,880,cs), (-262,919,o), (-232,945,o), (-193,945,cs), (-154,945,o), (-132,919,o), (-139,880,cs), (-145,841,o), (-175,815,o), (-214,815,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-186,994); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-150,766,o), (-94,812,o), (-84,880,cs), (-73,948,o), (-114,994,o), (-186,994,cs), (-258,994,o), (-313,948,o), (-324,880,cs), (-334,812,o), (-294,766,o), (-222,766,cs) ); }, { closed = 1; nodes = ( (-249,819,o), (-269,843,o), (-264,880,cs), (-258,917,o), (-230,942,o), (-194,942,cs), (-158,942,o), (-138,917,o), (-144,880,cs), (-149,843,o), (-177,819,o), (-213,819,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-184,1007); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-140,753,o), (-76,804,o), (-64,880,cs), (-52,956,o), (-100,1007,o), (-184,1007,cs), (-268,1007,o), (-332,956,o), (-344,880,cs), (-356,804,o), (-308,753,o), (-224,753,cs) ); }, { closed = 1; nodes = ( (-249,823,o), (-269,846,o), (-264,880,cs), (-258,914,o), (-231,937,o), (-195,937,cs), (-159,937,o), (-138,914,o), (-144,880,cs), (-149,846,o), (-177,823,o), (-213,823,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ringcomb.glyph000066400000000000000000000033251472355150100305140ustar00rootroot00000000000000{ glyphname = ringcomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-214,815); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-183,615,o), (-134,655,o), (-125,715,cs), (-115,775,o), (-151,815,o), (-213,815,cs), (-276,815,o), (-325,775,o), (-335,715,cs), (-344,655,o), (-308,615,o), (-245,615,cs) ); }, { closed = 1; nodes = ( (-279,650,o), (-301,676,o), (-295,715,cs), (-289,754,o), (-258,780,o), (-219,780,cs), (-180,780,o), (-159,754,o), (-165,715,cs), (-171,676,o), (-201,650,o), (-240,650,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-211,836); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-175,608,o), (-119,654,o), (-109,722,cs), (-98,790,o), (-139,836,o), (-211,836,cs), (-283,836,o), (-338,790,o), (-349,722,cs), (-359,654,o), (-319,608,o), (-247,608,cs) ); }, { closed = 1; nodes = ( (-274,661,o), (-295,685,o), (-289,722,cs), (-283,759,o), (-255,784,o), (-219,784,cs), (-183,784,o), (-163,759,o), (-169,722,cs), (-175,685,o), (-202,661,o), (-238,661,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-209,853); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-165,599,o), (-101,650,o), (-89,726,cs), (-77,802,o), (-125,853,o), (-209,853,cs), (-293,853,o), (-357,802,o), (-369,726,cs), (-381,650,o), (-333,599,o), (-249,599,cs) ); }, { closed = 1; nodes = ( (-274,669,o), (-294,692,o), (-289,726,cs), (-284,760,o), (-256,783,o), (-220,783,cs), (-184,783,o), (-164,760,o), (-169,726,cs), (-174,692,o), (-202,669,o), (-238,669,cs) ); } ); width = 0; } ); unicode = 778; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ringequalto.glyph000066400000000000000000000015701472355150100312460ustar00rootroot00000000000000{ glyphname = ringequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (510,309,l), (517,354,l), (107,354,l), (100,309,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,159,l), (76,159,l), (69,114,l) ); }, { pos = (581,-115); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (517,292,l), (529,368,l), (99,368,l), (87,292,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (65,152,l), (53,76,l) ); }, { pos = (582,-115); ref = ringcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,250,l), (538,390,l), (98,390,l), (76,250,l) ); }, { closed = 1; nodes = ( (476,0,l), (498,140,l), (58,140,l), (36,0,l) ); }, { pos = (582,-115); ref = ringcomb; } ); width = 600; } ); unicode = 8791; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ringoperator.glyph000066400000000000000000000026341472355150100314310ustar00rootroot00000000000000{ glyphname = ringoperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (370,210,o), (420,260,o), (420,330,cs), (420,400,o), (370,450,o), (300,450,cs), (230,450,o), (180,400,o), (180,330,cs), (180,260,o), (230,210,o), (300,210,cs) ); }, { closed = 1; nodes = ( (253,250,o), (220,283,o), (220,330,cs), (220,377,o), (253,410,o), (300,410,cs), (347,410,o), (380,377,o), (380,330,cs), (380,283,o), (347,250,o), (300,250,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (370,210,o), (420,260,o), (420,330,cs), (420,400,o), (370,450,o), (300,450,cs), (230,450,o), (180,400,o), (180,330,cs), (180,260,o), (230,210,o), (300,210,cs) ); }, { closed = 1; nodes = ( (253,250,o), (220,283,o), (220,330,cs), (220,377,o), (253,410,o), (300,410,cs), (347,410,o), (380,377,o), (380,330,cs), (380,283,o), (347,250,o), (300,250,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (370,210,o), (420,260,o), (420,330,cs), (420,400,o), (370,450,o), (300,450,cs), (230,450,o), (180,400,o), (180,330,cs), (180,260,o), (230,210,o), (300,210,cs) ); }, { closed = 1; nodes = ( (253,250,o), (220,283,o), (220,330,cs), (220,377,o), (253,410,o), (300,410,cs), (347,410,o), (380,377,o), (380,330,cs), (380,283,o), (347,250,o), (300,250,cs) ); } ); width = 600; } ); unicode = 8728; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ruble.glyph000066400000000000000000000032471472355150100300300ustar00rootroot00000000000000{ glyphname = ruble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (196,0,l), (216,125,l), (421,125,l), (439,240,l), (234,240,l), (244,300,l), (319,300,ls), (478,300,o), (586,381,o), (608,515,cs), (629,648,o), (545,730,o), (387,730,cs), (162,730,l), (113,420,l), (38,420,l), (19,300,l), (94,300,l), (84,240,l), (9,240,l), (-9,125,l), (66,125,l), (46,0,l) ); }, { closed = 1; nodes = ( (293,610,l), (368,610,ls), (434,610,o), (467,575,o), (458,515,cs), (448,455,o), (404,420,o), (338,420,cs), (263,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (156,0,l), (181,155,l), (411,155,l), (423,235,l), (193,235,l), (207,320,l), (340,320,ls), (471,320,o), (570,402,o), (589,525,cs), (609,649,o), (536,730,o), (405,730,cs), (182,730,l), (129,400,l), (49,400,l), (37,320,l), (117,320,l), (103,235,l), (23,235,l), (11,155,l), (91,155,l), (66,0,l) ); }, { closed = 1; nodes = ( (259,650,l), (392,650,ls), (468,650,o), (508,601,o), (496,525,cs), (484,449,o), (428,400,o), (352,400,cs), (219,400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (136,0,l), (165,185,l), (401,185,l), (408,230,l), (172,230,l), (187,324,l), (332,324,ls), (459,324,o), (555,404,o), (574,527,cs), (594,650,o), (525,730,o), (397,730,cs), (202,730,l), (144,369,l), (49,369,l), (42,324,l), (137,324,l), (122,230,l), (27,230,l), (20,185,l), (115,185,l), (86,0,l) ); }, { closed = 1; nodes = ( (244,685,l), (389,685,ls), (487,685,o), (540,624,o), (524,527,cs), (509,431,o), (436,369,o), (339,369,cs), (194,369,l) ); } ); width = 600; } ); unicode = 8381; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/s.glyph000066400000000000000000000044741472355150100271640ustar00rootroot00000000000000{ glyphname = s; layers = ( { anchors = ( { name = bottom; pos = (255,0); }, { name = top; pos = (345,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (275,-10,ls), (425,-10,o), (514,52,o), (532,164,cs), (548,267,o), (488,311,o), (352,329,cs), (284,338,ls), (239,344,o), (224,362,o), (229,393,cs), (234,426,o), (258,443,o), (308,443,cs), (346,443,ls), (389,443,o), (414,425,o), (410,398,c), (560,398,l), (576,496,o), (499,560,o), (365,560,cs), (327,560,ls), (186,560,o), (101,499,o), (84,392,cs), (68,290,o), (123,249,o), (257,232,cs), (320,224,ls), (372,217,o), (392,197,o), (387,164,cs), (381,128,o), (349,107,o), (294,107,cs), (250,107,ls), (204,107,o), (176,128,o), (181,160,c), (31,160,l), (15,58,o), (95,-10,o), (231,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (257,0); }, { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (274,-10,ls), (404,-10,o), (479,53,o), (496,155,cs), (511,251,o), (465,296,o), (350,315,cs), (278,327,ls), (222,336,o), (201,357,o), (208,402,cs), (216,452,o), (250,480,o), (318,480,cs), (356,480,ls), (410,480,o), (439,456,o), (442,421,c), (532,421,l), (532,505,o), (474,560,o), (369,560,cs), (331,560,ls), (206,560,o), (133,501,o), (118,403,cs), (103,310,o), (149,265,o), (254,248,cs), (326,236,ls), (385,226,o), (412,198,o), (405,151,cs), (397,103,o), (358,70,o), (287,70,cs), (245,70,ls), (186,70,o), (154,96,o), (152,135,c), (62,135,l), (58,47,o), (119,-10,o), (232,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (347,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (293,-10,ls), (397,-10,o), (472,48,o), (487,140,cs), (500,224,o), (456,285,o), (372,297,cs), (270,312,ls), (201,322,o), (172,355,o), (180,412,cs), (189,475,o), (245,515,o), (320,515,cs), (362,515,ls), (432,515,o), (475,477,o), (474,425,c), (524,425,l), (527,506,o), (469,560,o), (369,560,cs), (327,560,ls), (221,560,o), (144,502,o), (129,411,cs), (116,330,o), (163,278,o), (254,265,cs), (358,250,ls), (415,242,o), (445,197,o), (436,140,cs), (426,76,o), (374,35,o), (301,35,cs), (234,35,ls), (165,35,o), (121,77,o), (120,135,c), (70,135,l), (66,50,o), (126,-10,o), (226,-10,cs) ); } ); width = 600; } ); unicode = 115; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sacute.glyph000066400000000000000000000007001472355150100301720ustar00rootroot00000000000000{ glyphname = sacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = s; }, { pos = (625,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = s; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = s; }, { pos = (614,0); ref = acutecomb; } ); width = 600; } ); unicode = 347; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/scaron.glyph000066400000000000000000000007001472355150100301730ustar00rootroot00000000000000{ glyphname = scaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = s; }, { pos = (604,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = s; }, { pos = (601,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = s; }, { pos = (602,0); ref = caroncomb; } ); width = 600; } ); unicode = 353; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/scedilla.glyph000066400000000000000000000022141472355150100304700ustar00rootroot00000000000000{ glyphname = scedilla; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (265,-195,ls), (325,-195,o), (370,-161,o), (377,-118,cs), (386,-61,o), (327,-37,o), (280,-34,c), (313,26,l), (271,26,l), (222,-64,l), (293,-64,o), (336,-86,o), (331,-118,cs), (328,-140,o), (303,-160,o), (271,-160,cs), (191,-160,l), (185,-195,l) ); }, { ref = s; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-203,ls), (372,-203,o), (420,-166,o), (420,-120,cs), (420,-68,o), (352,-41,o), (300,-35,c), (321,26,l), (264,26,l), (229,-69,l), (296,-69,o), (334,-89,o), (334,-112,cs), (334,-130,o), (314,-148,o), (285,-148,cs), (215,-148,l), (215,-203,l) ); }, { ref = s; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (310,-225,ls), (394,-225,o), (450,-182,o), (450,-133,cs), (450,-72,o), (369,-43,o), (308,-39,c), (327,16,l), (254,16,l), (219,-69,l), (292,-69,o), (335,-88,o), (335,-119,cs), (335,-135,o), (313,-155,o), (280,-155,cs), (200,-155,l), (200,-225,l) ); }, { ref = s; } ); width = 600; } ); unicode = 351; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/schwa-cy.glyph000066400000000000000000000007401472355150100304300ustar00rootroot00000000000000{ glyphname = "schwa-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,550); ref = e; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,550); ref = e; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,550); ref = e; } ); width = 600; } ); unicode = 1241; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/schwa.glyph000066400000000000000000000033421472355150100300200ustar00rootroot00000000000000{ glyphname = schwa; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-10,o), (508,78,o), (529,210,cs), (550,340,ls), (571,472,o), (491,560,o), (344,560,cs), (225,560,o), (124,496,o), (84,400,c), (231,400,l), (245,428,o), (276,445,o), (323,445,cs), (390,445,o), (418,409,o), (407,340,cs), (402,310,l), (65,310,l), (49,210,ls), (28,78,o), (107,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (207,105,o), (181,142,o), (192,210,cs), (196,235,l), (185,225,l), (389,225,l), (386,210,ls), (375,142,o), (338,105,o), (272,105,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (478,73,o), (498,200,cs), (521,350,ls), (542,477,o), (475,560,o), (345,560,cs), (229,560,o), (140,502,o), (113,410,c), (203,410,l), (221,459,o), (264,484,o), (333,484,cs), (415,484,o), (447,437,o), (433,350,cs), (425,297,l), (93,297,l), (78,200,ls), (58,73,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (184,65,o), (152,113,o), (166,200,cs), (172,237,l), (163,229,l), (414,229,l), (410,200,ls), (396,113,o), (348,65,o), (266,65,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-10,o), (462,69,o), (481,190,cs), (508,360,ls), (527,482,o), (467,560,o), (344,560,cs), (241,560,o), (162,504,o), (128,415,c), (178,415,l), (207,478,o), (263,516,o), (337,516,cs), (430,516,o), (473,456,o), (458,360,cs), (446,285,l), (106,285,l), (91,190,ls), (72,69,o), (132,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (168,34,o), (126,94,o), (141,190,cs), (151,251,l), (138,242,l), (439,242,l), (431,190,ls), (416,93,o), (354,34,o), (260,34,cs) ); } ); width = 600; } ); unicode = 601; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/scircumflex.glyph000066400000000000000000000010041472355150100312300ustar00rootroot00000000000000{ glyphname = scircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = s; }, { pos = (601,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = s; }, { pos = (600,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = s; }, { pos = (603,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 349; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/scommaaccent.glyph000066400000000000000000000010101472355150100313360ustar00rootroot00000000000000{ glyphname = scommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = s; }, { pos = (599,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = s; }, { pos = (601,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = s; }, { pos = (605,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 537; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/second.glyph000066400000000000000000000014151472355150100301650ustar00rootroot00000000000000{ glyphname = second; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (465,465,l), (644,776,l), (464,776,l), (335,465,l) ); }, { closed = 1; nodes = ( (205,465,l), (384,776,l), (204,776,l), (75,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (425,465,l), (604,776,l), (474,776,l), (345,465,l) ); }, { closed = 1; nodes = ( (195,465,l), (374,776,l), (244,776,l), (115,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (405,465,l), (579,776,l), (489,776,l), (365,465,l) ); }, { closed = 1; nodes = ( (180,465,l), (354,776,l), (264,776,l), (140,465,l) ); } ); width = 600; } ); unicode = 8243; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/section.glyph000066400000000000000000000063751472355150100303700ustar00rootroot00000000000000{ glyphname = section; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (245,-155,ls), (398,-155,o), (497,-88,o), (514,19,cs), (530,118,o), (456,166,o), (397,175,c), (398,182,l), (490,189,o), (549,237,o), (561,314,cs), (574,395,o), (518,460,o), (404,485,cs), (304,507,ls), (259,517,o), (241,539,o), (246,570,cs), (252,605,o), (283,628,o), (339,628,cs), (369,628,ls), (416,628,o), (443,609,o), (445,588,c), (595,588,l), (598,685,o), (523,740,o), (387,740,cs), (357,740,ls), (213,740,o), (118,673,o), (101,566,cs), (86,475,o), (158,423,o), (217,410,c), (216,403,l), (124,395,o), (66,349,o), (54,271,cs), (41,191,o), (100,132,o), (210,108,cs), (300,88,ls), (354,76,o), (375,55,o), (370,23,cs), (363,-16,o), (323,-43,o), (263,-43,cs), (233,-43,ls), (188,-43,o), (155,-25,o), (151,2,c), (1,2,l), (-2,-98,o), (75,-155,o), (215,-155,cs) ); }, { closed = 1; nodes = ( (250,218,ls), (215,225,o), (196,259,o), (203,304,cs), (213,365,o), (252,398,o), (302,387,cs), (355,375,ls), (396,366,o), (418,331,o), (412,288,cs), (402,228,o), (359,195,o), (303,207,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (247,-154,ls), (378,-154,o), (465,-89,o), (481,15,cs), (498,117,o), (427,160,o), (370,163,c), (371,170,l), (451,170,o), (514,231,o), (526,308,cs), (539,389,o), (490,450,o), (398,470,cs), (311,489,ls), (253,502,o), (222,535,o), (229,578,cs), (236,628,o), (282,660,o), (350,660,cs), (380,660,ls), (432,660,o), (468,634,o), (472,595,c), (567,595,l), (567,682,o), (497,740,o), (392,740,cs), (362,740,ls), (237,740,o), (153,677,o), (138,579,cs), (121,473,o), (186,435,o), (240,436,c), (239,429,l), (164,422,o), (99,361,o), (87,285,cs), (75,207,o), (125,142,o), (215,124,cs), (304,105,ls), (368,91,o), (398,60,o), (390,12,cs), (382,-40,o), (335,-74,o), (259,-74,cs), (229,-74,ls), (173,-74,o), (133,-44,o), (128,0,c), (33,0,l), (33,-92,o), (108,-154,o), (217,-154,cs) ); }, { closed = 1; nodes = ( (242,200,ls), (197,209,o), (172,249,o), (181,300,cs), (191,368,o), (241,421,o), (298,409,cs), (369,394,ls), (415,384,o), (441,346,o), (433,299,cs), (422,228,o), (372,173,o), (315,185,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (270,-155,ls), (372,-155,o), (448,-93,o), (463,2,cs), (477,88,o), (424,135,o), (380,147,c), (381,151,l), (446,165,o), (499,225,o), (510,297,cs), (523,378,o), (477,438,o), (398,458,cs), (296,483,ls), (232,499,o), (200,537,o), (209,592,cs), (219,655,o), (273,695,o), (348,695,cs), (390,695,ls), (460,695,o), (503,657,o), (503,605,c), (553,605,l), (556,686,o), (497,740,o), (397,740,cs), (355,740,ls), (249,740,o), (172,682,o), (158,591,cs), (144,508,o), (200,463,o), (247,453,c), (246,449,l), (176,430,o), (123,373,o), (112,302,cs), (99,220,o), (145,161,o), (234,139,cs), (337,114,ls), (392,101,o), (422,52,o), (413,-6,cs), (403,-69,o), (351,-110,o), (278,-110,cs), (211,-110,ls), (142,-110,o), (98,-68,o), (97,-10,c), (47,-10,l), (43,-95,o), (103,-155,o), (203,-155,cs) ); }, { closed = 1; nodes = ( (250,188,ls), (185,204,o), (154,248,o), (163,303,cs), (175,378,o), (253,441,o), (313,426,cs), (384,409,l), (439,396,o), (469,347,o), (460,289,cs), (448,215,o), (378,156,o), (318,171,cs) ); } ); width = 600; } ); unicode = 167; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/semicolon.glyph000066400000000000000000000022541472355150100307040ustar00rootroot00000000000000{ glyphname = semicolon; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (206,-160,l), (385,151,l), (205,151,l), (76,-160,l) ); }, { closed = 1; nodes = ( (326,380,ls), (378,380,o), (422,418,o), (430,470,cs), (439,522,o), (407,560,o), (355,560,cs), (335,560,ls), (283,560,o), (239,522,o), (230,470,cs), (222,418,o), (254,380,o), (306,380,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (181,-160,l), (360,151,l), (230,151,l), (101,-160,l) ); }, { closed = 1; nodes = ( (331,410,ls), (375,410,o), (411,441,o), (418,485,cs), (425,528,o), (398,560,o), (355,560,cs), (335,560,ls), (292,560,o), (255,528,o), (248,485,cs), (241,441,o), (267,410,o), (311,410,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (164,-160,l), (338,151,l), (245,151,l), (121,-160,l) ); }, { closed = 1; nodes = ( (328,420,ls), (370,420,o), (402,448,o), (409,490,cs), (415,532,o), (392,560,o), (350,560,cs), (340,560,ls), (297,560,o), (264,532,o), (258,490,cs), (251,448,o), (275,420,o), (318,420,cs) ); } ); width = 600; } ); unicode = 59; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/semicolon_semicolon.liga.glyph000066400000000000000000000011531472355150100336640ustar00rootroot00000000000000{ glyphname = semicolon_semicolon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-520,0); ref = semicolon; }, { alignment = -1; pos = (-80,0); ref = semicolon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-520,0); ref = semicolon; }, { alignment = -1; pos = (-80,0); ref = semicolon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-520,0); ref = semicolon; }, { alignment = -1; pos = (-80,0); ref = semicolon; } ); width = 600; } ); } semicolon_semicolon_semicolon.liga.glyph000066400000000000000000000014351472355150100356600ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = semicolon_semicolon_semicolon.liga; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,0); ref = semicolon; }, { alignment = -1; pos = (-160,0); ref = semicolon; }, { alignment = -1; pos = (-1040,0); ref = semicolon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,0); ref = semicolon; }, { alignment = -1; pos = (-160,0); ref = semicolon; }, { alignment = -1; pos = (-1040,0); ref = semicolon; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,0); ref = semicolon; }, { alignment = -1; pos = (-160,0); ref = semicolon; }, { alignment = -1; pos = (-1040,0); ref = semicolon; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/seven.glyph000066400000000000000000000013151472355150100300310ustar00rootroot00000000000000{ glyphname = seven; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (256,0,l), (615,596,l), (637,730,l), (127,730,l), (87,480,l), (237,480,l), (255,595,l), (455,595,l), (90,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (248,0,l), (603,646,l), (617,730,l), (152,730,l), (120,530,l), (210,530,l), (229,648,l), (509,648,l), (147,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (231,0,l), (598,675,l), (607,730,l), (162,730,l), (130,530,l), (185,530,l), (209,679,l), (546,679,l), (172,0,l) ); } ); width = 600; } ); unicode = 55; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/seveninferior.glyph000066400000000000000000000007341472355150100315730ustar00rootroot00000000000000{ glyphname = seveninferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = sevensuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = sevensuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = sevensuperior; } ); width = 600; } ); metricLeft = seven; metricRight = seven; unicode = 8327; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sevensuperior.glyph000066400000000000000000000013451472355150100316250ustar00rootroot00000000000000{ glyphname = sevensuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (292,405,l), (525,785,l), (532,830,l), (252,830,l), (232,703,l), (277,703,l), (291,790,l), (480,790,l), (241,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (312,405,l), (520,750,l), (532,830,l), (242,830,l), (222,703,l), (291,703,l), (301,766,l), (453,766,l), (231,405,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,405,l), (529,732,l), (544,830,l), (222,830,l), (199,683,l), (289,683,l), (299,746,l), (440,746,l), (209,405,l) ); } ); width = 600; } ); unicode = 8311; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sha-cy.glyph000066400000000000000000000014741472355150100301030ustar00rootroot00000000000000{ glyphname = "sha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (603,550,l), (480,550,l), (409,100,l), (324,100,l), (395,550,l), (291,550,l), (220,100,l), (135,100,l), (206,550,l), (83,550,l), (-4,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (492,0,l), (579,550,l), (496,550,l), (420,68,l), (304,68,l), (380,550,l), (308,550,l), (232,68,l), (115,68,l), (191,550,l), (107,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,0,l), (567,550,l), (519,550,l), (439,43,l), (287,43,l), (367,550,l), (319,550,l), (239,43,l), (87,43,l), (167,550,l), (119,550,l), (32,0,l) ); } ); width = 600; } ); unicode = 1096; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/shadedark.glyph000066400000000000000000000301121472355150100306340ustar00rootroot00000000000000{ glyphname = shadedark; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (540,1020,l), (540,960,l), (480,960,l), (480,1020,l), (420,1020,l), (420,960,l), (360,960,l), (360,1020,l), (300,1020,l), (300,960,l), (240,960,l), (240,1020,l), (180,1020,l), (180,960,l), (120,960,l), (120,1020,l), (60,1020,l), (60,960,l), (0,960,l), (0,900,l), (60,900,l), (60,840,l), (0,840,l), (0,780,l), (60,780,l), (60,720,l), (0,720,l), (0,660,l), (60,660,l), (60,600,l), (0,600,l), (0,540,l), (60,540,l), (60,480,l), (0,480,l), (0,420,l), (60,420,l), (60,360,l), (0,360,l), (0,300,l), (60,300,l), (60,240,l), (0,240,l), (0,180,l), (60,180,l), (60,120,l), (0,120,l), (0,60,l), (60,60,l), (60,0,l), (0,0,l), (0,-60,l), (60,-60,l), (60,-120,l), (0,-120,l), (0,-180,l), (60,-180,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (120,-180,l), (180,-180,l), (180,-240,l), (120,-240,l) ); }, { closed = 1; nodes = ( (120,-60,l), (180,-60,l), (180,-120,l), (120,-120,l) ); }, { closed = 1; nodes = ( (240,-180,l), (300,-180,l), (300,-240,l), (240,-240,l) ); }, { closed = 1; nodes = ( (120,60,l), (180,60,l), (180,0,l), (120,0,l) ); }, { closed = 1; nodes = ( (240,-60,l), (300,-60,l), (300,-120,l), (240,-120,l) ); }, { closed = 1; nodes = ( (360,-180,l), (420,-180,l), (420,-240,l), (360,-240,l) ); }, { closed = 1; nodes = ( (120,180,l), (180,180,l), (180,120,l), (120,120,l) ); }, { closed = 1; nodes = ( (240,60,l), (300,60,l), (300,0,l), (240,0,l) ); }, { closed = 1; nodes = ( (360,-60,l), (420,-60,l), (420,-120,l), (360,-120,l) ); }, { closed = 1; nodes = ( (480,-180,l), (540,-180,l), (540,-240,l), (480,-240,l) ); }, { closed = 1; nodes = ( (120,300,l), (180,300,l), (180,240,l), (120,240,l) ); }, { closed = 1; nodes = ( (240,180,l), (300,180,l), (300,120,l), (240,120,l) ); }, { closed = 1; nodes = ( (360,60,l), (420,60,l), (420,0,l), (360,0,l) ); }, { closed = 1; nodes = ( (480,-60,l), (540,-60,l), (540,-120,l), (480,-120,l) ); }, { closed = 1; nodes = ( (120,420,l), (180,420,l), (180,360,l), (120,360,l) ); }, { closed = 1; nodes = ( (240,300,l), (300,300,l), (300,240,l), (240,240,l) ); }, { closed = 1; nodes = ( (360,180,l), (420,180,l), (420,120,l), (360,120,l) ); }, { closed = 1; nodes = ( (480,60,l), (540,60,l), (540,0,l), (480,0,l) ); }, { closed = 1; nodes = ( (120,540,l), (180,540,l), (180,480,l), (120,480,l) ); }, { closed = 1; nodes = ( (240,420,l), (300,420,l), (300,360,l), (240,360,l) ); }, { closed = 1; nodes = ( (360,300,l), (420,300,l), (420,240,l), (360,240,l) ); }, { closed = 1; nodes = ( (480,180,l), (540,180,l), (540,120,l), (480,120,l) ); }, { closed = 1; nodes = ( (120,660,l), (180,660,l), (180,600,l), (120,600,l) ); }, { closed = 1; nodes = ( (240,540,l), (300,540,l), (300,480,l), (240,480,l) ); }, { closed = 1; nodes = ( (360,420,l), (420,420,l), (420,360,l), (360,360,l) ); }, { closed = 1; nodes = ( (480,300,l), (540,300,l), (540,240,l), (480,240,l) ); }, { closed = 1; nodes = ( (120,780,l), (180,780,l), (180,720,l), (120,720,l) ); }, { closed = 1; nodes = ( (240,660,l), (300,660,l), (300,600,l), (240,600,l) ); }, { closed = 1; nodes = ( (360,540,l), (420,540,l), (420,480,l), (360,480,l) ); }, { closed = 1; nodes = ( (480,420,l), (540,420,l), (540,360,l), (480,360,l) ); }, { closed = 1; nodes = ( (120,900,l), (180,900,l), (180,840,l), (120,840,l) ); }, { closed = 1; nodes = ( (240,780,l), (300,780,l), (300,720,l), (240,720,l) ); }, { closed = 1; nodes = ( (360,660,l), (420,660,l), (420,600,l), (360,600,l) ); }, { closed = 1; nodes = ( (480,540,l), (540,540,l), (540,480,l), (480,480,l) ); }, { closed = 1; nodes = ( (240,900,l), (300,900,l), (300,840,l), (240,840,l) ); }, { closed = 1; nodes = ( (360,780,l), (420,780,l), (420,720,l), (360,720,l) ); }, { closed = 1; nodes = ( (480,660,l), (540,660,l), (540,600,l), (480,600,l) ); }, { closed = 1; nodes = ( (360,900,l), (420,900,l), (420,840,l), (360,840,l) ); }, { closed = 1; nodes = ( (480,780,l), (540,780,l), (540,720,l), (480,720,l) ); }, { closed = 1; nodes = ( (480,900,l), (540,900,l), (540,840,l), (480,840,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (540,1020,l), (540,960,l), (480,960,l), (480,1020,l), (420,1020,l), (420,960,l), (360,960,l), (360,1020,l), (300,1020,l), (300,960,l), (240,960,l), (240,1020,l), (180,1020,l), (180,960,l), (120,960,l), (120,1020,l), (60,1020,l), (60,960,l), (0,960,l), (0,900,l), (60,900,l), (60,840,l), (0,840,l), (0,780,l), (60,780,l), (60,720,l), (0,720,l), (0,660,l), (60,660,l), (60,600,l), (0,600,l), (0,540,l), (60,540,l), (60,480,l), (0,480,l), (0,420,l), (60,420,l), (60,360,l), (0,360,l), (0,300,l), (60,300,l), (60,240,l), (0,240,l), (0,180,l), (60,180,l), (60,120,l), (0,120,l), (0,60,l), (60,60,l), (60,0,l), (0,0,l), (0,-60,l), (60,-60,l), (60,-120,l), (0,-120,l), (0,-180,l), (60,-180,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (120,-180,l), (180,-180,l), (180,-240,l), (120,-240,l) ); }, { closed = 1; nodes = ( (120,-60,l), (180,-60,l), (180,-120,l), (120,-120,l) ); }, { closed = 1; nodes = ( (240,-180,l), (300,-180,l), (300,-240,l), (240,-240,l) ); }, { closed = 1; nodes = ( (120,60,l), (180,60,l), (180,0,l), (120,0,l) ); }, { closed = 1; nodes = ( (240,-60,l), (300,-60,l), (300,-120,l), (240,-120,l) ); }, { closed = 1; nodes = ( (360,-180,l), (420,-180,l), (420,-240,l), (360,-240,l) ); }, { closed = 1; nodes = ( (120,180,l), (180,180,l), (180,120,l), (120,120,l) ); }, { closed = 1; nodes = ( (240,60,l), (300,60,l), (300,0,l), (240,0,l) ); }, { closed = 1; nodes = ( (360,-60,l), (420,-60,l), (420,-120,l), (360,-120,l) ); }, { closed = 1; nodes = ( (480,-180,l), (540,-180,l), (540,-240,l), (480,-240,l) ); }, { closed = 1; nodes = ( (120,300,l), (180,300,l), (180,240,l), (120,240,l) ); }, { closed = 1; nodes = ( (240,180,l), (300,180,l), (300,120,l), (240,120,l) ); }, { closed = 1; nodes = ( (360,60,l), (420,60,l), (420,0,l), (360,0,l) ); }, { closed = 1; nodes = ( (480,-60,l), (540,-60,l), (540,-120,l), (480,-120,l) ); }, { closed = 1; nodes = ( (120,420,l), (180,420,l), (180,360,l), (120,360,l) ); }, { closed = 1; nodes = ( (240,300,l), (300,300,l), (300,240,l), (240,240,l) ); }, { closed = 1; nodes = ( (360,180,l), (420,180,l), (420,120,l), (360,120,l) ); }, { closed = 1; nodes = ( (480,60,l), (540,60,l), (540,0,l), (480,0,l) ); }, { closed = 1; nodes = ( (120,540,l), (180,540,l), (180,480,l), (120,480,l) ); }, { closed = 1; nodes = ( (240,420,l), (300,420,l), (300,360,l), (240,360,l) ); }, { closed = 1; nodes = ( (360,300,l), (420,300,l), (420,240,l), (360,240,l) ); }, { closed = 1; nodes = ( (480,180,l), (540,180,l), (540,120,l), (480,120,l) ); }, { closed = 1; nodes = ( (120,660,l), (180,660,l), (180,600,l), (120,600,l) ); }, { closed = 1; nodes = ( (240,540,l), (300,540,l), (300,480,l), (240,480,l) ); }, { closed = 1; nodes = ( (360,420,l), (420,420,l), (420,360,l), (360,360,l) ); }, { closed = 1; nodes = ( (480,300,l), (540,300,l), (540,240,l), (480,240,l) ); }, { closed = 1; nodes = ( (120,780,l), (180,780,l), (180,720,l), (120,720,l) ); }, { closed = 1; nodes = ( (240,660,l), (300,660,l), (300,600,l), (240,600,l) ); }, { closed = 1; nodes = ( (360,540,l), (420,540,l), (420,480,l), (360,480,l) ); }, { closed = 1; nodes = ( (480,420,l), (540,420,l), (540,360,l), (480,360,l) ); }, { closed = 1; nodes = ( (120,900,l), (180,900,l), (180,840,l), (120,840,l) ); }, { closed = 1; nodes = ( (240,780,l), (300,780,l), (300,720,l), (240,720,l) ); }, { closed = 1; nodes = ( (360,660,l), (420,660,l), (420,600,l), (360,600,l) ); }, { closed = 1; nodes = ( (480,540,l), (540,540,l), (540,480,l), (480,480,l) ); }, { closed = 1; nodes = ( (240,900,l), (300,900,l), (300,840,l), (240,840,l) ); }, { closed = 1; nodes = ( (360,780,l), (420,780,l), (420,720,l), (360,720,l) ); }, { closed = 1; nodes = ( (480,660,l), (540,660,l), (540,600,l), (480,600,l) ); }, { closed = 1; nodes = ( (360,900,l), (420,900,l), (420,840,l), (360,840,l) ); }, { closed = 1; nodes = ( (480,780,l), (540,780,l), (540,720,l), (480,720,l) ); }, { closed = 1; nodes = ( (480,900,l), (540,900,l), (540,840,l), (480,840,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (540,1020,l), (540,960,l), (480,960,l), (480,1020,l), (420,1020,l), (420,960,l), (360,960,l), (360,1020,l), (300,1020,l), (300,960,l), (240,960,l), (240,1020,l), (180,1020,l), (180,960,l), (120,960,l), (120,1020,l), (60,1020,l), (60,960,l), (0,960,l), (0,900,l), (60,900,l), (60,840,l), (0,840,l), (0,780,l), (60,780,l), (60,720,l), (0,720,l), (0,660,l), (60,660,l), (60,600,l), (0,600,l), (0,540,l), (60,540,l), (60,480,l), (0,480,l), (0,420,l), (60,420,l), (60,360,l), (0,360,l), (0,300,l), (60,300,l), (60,240,l), (0,240,l), (0,180,l), (60,180,l), (60,120,l), (0,120,l), (0,60,l), (60,60,l), (60,0,l), (0,0,l), (0,-60,l), (60,-60,l), (60,-120,l), (0,-120,l), (0,-180,l), (60,-180,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (120,-180,l), (180,-180,l), (180,-240,l), (120,-240,l) ); }, { closed = 1; nodes = ( (120,-60,l), (180,-60,l), (180,-120,l), (120,-120,l) ); }, { closed = 1; nodes = ( (240,-180,l), (300,-180,l), (300,-240,l), (240,-240,l) ); }, { closed = 1; nodes = ( (120,60,l), (180,60,l), (180,0,l), (120,0,l) ); }, { closed = 1; nodes = ( (240,-60,l), (300,-60,l), (300,-120,l), (240,-120,l) ); }, { closed = 1; nodes = ( (360,-180,l), (420,-180,l), (420,-240,l), (360,-240,l) ); }, { closed = 1; nodes = ( (120,180,l), (180,180,l), (180,120,l), (120,120,l) ); }, { closed = 1; nodes = ( (240,60,l), (300,60,l), (300,0,l), (240,0,l) ); }, { closed = 1; nodes = ( (360,-60,l), (420,-60,l), (420,-120,l), (360,-120,l) ); }, { closed = 1; nodes = ( (480,-180,l), (540,-180,l), (540,-240,l), (480,-240,l) ); }, { closed = 1; nodes = ( (120,300,l), (180,300,l), (180,240,l), (120,240,l) ); }, { closed = 1; nodes = ( (240,180,l), (300,180,l), (300,120,l), (240,120,l) ); }, { closed = 1; nodes = ( (360,60,l), (420,60,l), (420,0,l), (360,0,l) ); }, { closed = 1; nodes = ( (480,-60,l), (540,-60,l), (540,-120,l), (480,-120,l) ); }, { closed = 1; nodes = ( (120,420,l), (180,420,l), (180,360,l), (120,360,l) ); }, { closed = 1; nodes = ( (240,300,l), (300,300,l), (300,240,l), (240,240,l) ); }, { closed = 1; nodes = ( (360,180,l), (420,180,l), (420,120,l), (360,120,l) ); }, { closed = 1; nodes = ( (480,60,l), (540,60,l), (540,0,l), (480,0,l) ); }, { closed = 1; nodes = ( (120,540,l), (180,540,l), (180,480,l), (120,480,l) ); }, { closed = 1; nodes = ( (240,420,l), (300,420,l), (300,360,l), (240,360,l) ); }, { closed = 1; nodes = ( (360,300,l), (420,300,l), (420,240,l), (360,240,l) ); }, { closed = 1; nodes = ( (480,180,l), (540,180,l), (540,120,l), (480,120,l) ); }, { closed = 1; nodes = ( (120,660,l), (180,660,l), (180,600,l), (120,600,l) ); }, { closed = 1; nodes = ( (240,540,l), (300,540,l), (300,480,l), (240,480,l) ); }, { closed = 1; nodes = ( (360,420,l), (420,420,l), (420,360,l), (360,360,l) ); }, { closed = 1; nodes = ( (480,300,l), (540,300,l), (540,240,l), (480,240,l) ); }, { closed = 1; nodes = ( (120,780,l), (180,780,l), (180,720,l), (120,720,l) ); }, { closed = 1; nodes = ( (240,660,l), (300,660,l), (300,600,l), (240,600,l) ); }, { closed = 1; nodes = ( (360,540,l), (420,540,l), (420,480,l), (360,480,l) ); }, { closed = 1; nodes = ( (480,420,l), (540,420,l), (540,360,l), (480,360,l) ); }, { closed = 1; nodes = ( (120,900,l), (180,900,l), (180,840,l), (120,840,l) ); }, { closed = 1; nodes = ( (240,780,l), (300,780,l), (300,720,l), (240,720,l) ); }, { closed = 1; nodes = ( (360,660,l), (420,660,l), (420,600,l), (360,600,l) ); }, { closed = 1; nodes = ( (480,540,l), (540,540,l), (540,480,l), (480,480,l) ); }, { closed = 1; nodes = ( (240,900,l), (300,900,l), (300,840,l), (240,840,l) ); }, { closed = 1; nodes = ( (360,780,l), (420,780,l), (420,720,l), (360,720,l) ); }, { closed = 1; nodes = ( (480,660,l), (540,660,l), (540,600,l), (480,600,l) ); }, { closed = 1; nodes = ( (360,900,l), (420,900,l), (420,840,l), (360,840,l) ); }, { closed = 1; nodes = ( (480,780,l), (540,780,l), (540,720,l), (480,720,l) ); }, { closed = 1; nodes = ( (480,900,l), (540,900,l), (540,840,l), (480,840,l) ); } ); width = 600; } ); unicode = 9619; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/shadelight.glyph000066400000000000000000000324751472355150100310400ustar00rootroot00000000000000{ glyphname = shadelight; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); } ); width = 600; } ); unicode = 9617; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/shademedium.glyph000066400000000000000000000643131472355150100312050ustar00rootroot00000000000000{ glyphname = shademedium; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (60,-300,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (60,-180,l), (60,-120,l), (0,-120,l), (0,-180,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (180,-300,l), (180,-240,l), (120,-240,l), (120,-300,l) ); }, { closed = 1; nodes = ( (60,-60,l), (60,0,l), (0,0,l), (0,-60,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (180,-180,l), (180,-120,l), (120,-120,l), (120,-180,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,-240,l), (240,-240,l), (240,-300,l) ); }, { closed = 1; nodes = ( (60,60,l), (60,120,l), (0,120,l), (0,60,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (180,-60,l), (180,0,l), (120,0,l), (120,-60,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (300,-180,l), (300,-120,l), (240,-120,l), (240,-180,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (420,-300,l), (420,-240,l), (360,-240,l), (360,-300,l) ); }, { closed = 1; nodes = ( (60,180,l), (60,240,l), (0,240,l), (0,180,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (180,60,l), (180,120,l), (120,120,l), (120,60,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (300,-60,l), (300,0,l), (240,0,l), (240,-60,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (420,-180,l), (420,-120,l), (360,-120,l), (360,-180,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); }, { closed = 1; nodes = ( (540,-300,l), (540,-240,l), (480,-240,l), (480,-300,l) ); }, { closed = 1; nodes = ( (60,300,l), (60,360,l), (0,360,l), (0,300,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (180,180,l), (180,240,l), (120,240,l), (120,180,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (300,60,l), (300,120,l), (240,120,l), (240,60,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (420,-60,l), (420,0,l), (360,0,l), (360,-60,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (540,-180,l), (540,-120,l), (480,-120,l), (480,-180,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (60,420,l), (60,480,l), (0,480,l), (0,420,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (180,300,l), (180,360,l), (120,360,l), (120,300,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (300,180,l), (300,240,l), (240,240,l), (240,180,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (420,60,l), (420,120,l), (360,120,l), (360,60,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (540,-60,l), (540,0,l), (480,0,l), (480,-60,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (60,540,l), (60,600,l), (0,600,l), (0,540,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (180,420,l), (180,480,l), (120,480,l), (120,420,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (300,300,l), (300,360,l), (240,360,l), (240,300,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (420,180,l), (420,240,l), (360,240,l), (360,180,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (540,60,l), (540,120,l), (480,120,l), (480,60,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (60,660,l), (60,720,l), (0,720,l), (0,660,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (180,540,l), (180,600,l), (120,600,l), (120,540,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (300,420,l), (300,480,l), (240,480,l), (240,420,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (420,300,l), (420,360,l), (360,360,l), (360,300,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (540,180,l), (540,240,l), (480,240,l), (480,180,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (60,780,l), (60,840,l), (0,840,l), (0,780,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (180,660,l), (180,720,l), (120,720,l), (120,660,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (300,540,l), (300,600,l), (240,600,l), (240,540,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (420,420,l), (420,480,l), (360,480,l), (360,420,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (540,300,l), (540,360,l), (480,360,l), (480,300,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (60,900,l), (60,960,l), (0,960,l), (0,900,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (180,780,l), (180,840,l), (120,840,l), (120,780,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (300,660,l), (300,720,l), (240,720,l), (240,660,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (420,540,l), (420,600,l), (360,600,l), (360,540,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (540,420,l), (540,480,l), (480,480,l), (480,420,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (180,900,l), (180,960,l), (120,960,l), (120,900,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (300,780,l), (300,840,l), (240,840,l), (240,780,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (420,660,l), (420,720,l), (360,720,l), (360,660,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (540,540,l), (540,600,l), (480,600,l), (480,540,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (300,900,l), (300,960,l), (240,960,l), (240,900,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (420,780,l), (420,840,l), (360,840,l), (360,780,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (540,660,l), (540,720,l), (480,720,l), (480,660,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (420,900,l), (420,960,l), (360,960,l), (360,900,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (540,780,l), (540,840,l), (480,840,l), (480,780,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (540,900,l), (540,960,l), (480,960,l), (480,900,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (60,-300,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (60,-180,l), (60,-120,l), (0,-120,l), (0,-180,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (180,-300,l), (180,-240,l), (120,-240,l), (120,-300,l) ); }, { closed = 1; nodes = ( (60,-60,l), (60,0,l), (0,0,l), (0,-60,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (180,-180,l), (180,-120,l), (120,-120,l), (120,-180,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,-240,l), (240,-240,l), (240,-300,l) ); }, { closed = 1; nodes = ( (60,60,l), (60,120,l), (0,120,l), (0,60,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (180,-60,l), (180,0,l), (120,0,l), (120,-60,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (300,-180,l), (300,-120,l), (240,-120,l), (240,-180,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (420,-300,l), (420,-240,l), (360,-240,l), (360,-300,l) ); }, { closed = 1; nodes = ( (60,180,l), (60,240,l), (0,240,l), (0,180,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (180,60,l), (180,120,l), (120,120,l), (120,60,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (300,-60,l), (300,0,l), (240,0,l), (240,-60,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (420,-180,l), (420,-120,l), (360,-120,l), (360,-180,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); }, { closed = 1; nodes = ( (540,-300,l), (540,-240,l), (480,-240,l), (480,-300,l) ); }, { closed = 1; nodes = ( (60,300,l), (60,360,l), (0,360,l), (0,300,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (180,180,l), (180,240,l), (120,240,l), (120,180,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (300,60,l), (300,120,l), (240,120,l), (240,60,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (420,-60,l), (420,0,l), (360,0,l), (360,-60,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (540,-180,l), (540,-120,l), (480,-120,l), (480,-180,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (60,420,l), (60,480,l), (0,480,l), (0,420,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (180,300,l), (180,360,l), (120,360,l), (120,300,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (300,180,l), (300,240,l), (240,240,l), (240,180,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (420,60,l), (420,120,l), (360,120,l), (360,60,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (540,-60,l), (540,0,l), (480,0,l), (480,-60,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (60,540,l), (60,600,l), (0,600,l), (0,540,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (180,420,l), (180,480,l), (120,480,l), (120,420,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (300,300,l), (300,360,l), (240,360,l), (240,300,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (420,180,l), (420,240,l), (360,240,l), (360,180,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (540,60,l), (540,120,l), (480,120,l), (480,60,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (60,660,l), (60,720,l), (0,720,l), (0,660,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (180,540,l), (180,600,l), (120,600,l), (120,540,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (300,420,l), (300,480,l), (240,480,l), (240,420,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (420,300,l), (420,360,l), (360,360,l), (360,300,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (540,180,l), (540,240,l), (480,240,l), (480,180,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (60,780,l), (60,840,l), (0,840,l), (0,780,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (180,660,l), (180,720,l), (120,720,l), (120,660,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (300,540,l), (300,600,l), (240,600,l), (240,540,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (420,420,l), (420,480,l), (360,480,l), (360,420,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (540,300,l), (540,360,l), (480,360,l), (480,300,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (60,900,l), (60,960,l), (0,960,l), (0,900,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (180,780,l), (180,840,l), (120,840,l), (120,780,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (300,660,l), (300,720,l), (240,720,l), (240,660,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (420,540,l), (420,600,l), (360,600,l), (360,540,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (540,420,l), (540,480,l), (480,480,l), (480,420,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (180,900,l), (180,960,l), (120,960,l), (120,900,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (300,780,l), (300,840,l), (240,840,l), (240,780,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (420,660,l), (420,720,l), (360,720,l), (360,660,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (540,540,l), (540,600,l), (480,600,l), (480,540,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (300,900,l), (300,960,l), (240,960,l), (240,900,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (420,780,l), (420,840,l), (360,840,l), (360,780,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (540,660,l), (540,720,l), (480,720,l), (480,660,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (420,900,l), (420,960,l), (360,960,l), (360,900,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (540,780,l), (540,840,l), (480,840,l), (480,780,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (540,900,l), (540,960,l), (480,960,l), (480,900,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (60,-300,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (60,-180,l), (60,-120,l), (0,-120,l), (0,-180,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (180,-300,l), (180,-240,l), (120,-240,l), (120,-300,l) ); }, { closed = 1; nodes = ( (60,-60,l), (60,0,l), (0,0,l), (0,-60,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (180,-180,l), (180,-120,l), (120,-120,l), (120,-180,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,-240,l), (240,-240,l), (240,-300,l) ); }, { closed = 1; nodes = ( (60,60,l), (60,120,l), (0,120,l), (0,60,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (180,-60,l), (180,0,l), (120,0,l), (120,-60,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (300,-180,l), (300,-120,l), (240,-120,l), (240,-180,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (420,-300,l), (420,-240,l), (360,-240,l), (360,-300,l) ); }, { closed = 1; nodes = ( (60,180,l), (60,240,l), (0,240,l), (0,180,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (180,60,l), (180,120,l), (120,120,l), (120,60,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (300,-60,l), (300,0,l), (240,0,l), (240,-60,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (420,-180,l), (420,-120,l), (360,-120,l), (360,-180,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); }, { closed = 1; nodes = ( (540,-300,l), (540,-240,l), (480,-240,l), (480,-300,l) ); }, { closed = 1; nodes = ( (60,300,l), (60,360,l), (0,360,l), (0,300,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (180,180,l), (180,240,l), (120,240,l), (120,180,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (300,60,l), (300,120,l), (240,120,l), (240,60,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (420,-60,l), (420,0,l), (360,0,l), (360,-60,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (540,-180,l), (540,-120,l), (480,-120,l), (480,-180,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (60,420,l), (60,480,l), (0,480,l), (0,420,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (180,300,l), (180,360,l), (120,360,l), (120,300,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (300,180,l), (300,240,l), (240,240,l), (240,180,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (420,60,l), (420,120,l), (360,120,l), (360,60,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (540,-60,l), (540,0,l), (480,0,l), (480,-60,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (60,540,l), (60,600,l), (0,600,l), (0,540,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (180,420,l), (180,480,l), (120,480,l), (120,420,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (300,300,l), (300,360,l), (240,360,l), (240,300,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (420,180,l), (420,240,l), (360,240,l), (360,180,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (540,60,l), (540,120,l), (480,120,l), (480,60,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (60,660,l), (60,720,l), (0,720,l), (0,660,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (180,540,l), (180,600,l), (120,600,l), (120,540,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (300,420,l), (300,480,l), (240,480,l), (240,420,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (420,300,l), (420,360,l), (360,360,l), (360,300,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (540,180,l), (540,240,l), (480,240,l), (480,180,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (60,780,l), (60,840,l), (0,840,l), (0,780,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (180,660,l), (180,720,l), (120,720,l), (120,660,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (300,540,l), (300,600,l), (240,600,l), (240,540,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (420,420,l), (420,480,l), (360,480,l), (360,420,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (540,300,l), (540,360,l), (480,360,l), (480,300,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (60,900,l), (60,960,l), (0,960,l), (0,900,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (180,780,l), (180,840,l), (120,840,l), (120,780,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (300,660,l), (300,720,l), (240,720,l), (240,660,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (420,540,l), (420,600,l), (360,600,l), (360,540,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (540,420,l), (540,480,l), (480,480,l), (480,420,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (180,900,l), (180,960,l), (120,960,l), (120,900,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (300,780,l), (300,840,l), (240,840,l), (240,780,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (420,660,l), (420,720,l), (360,720,l), (360,660,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (540,540,l), (540,600,l), (480,600,l), (480,540,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (300,900,l), (300,960,l), (240,960,l), (240,900,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (420,780,l), (420,840,l), (360,840,l), (360,780,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (540,660,l), (540,720,l), (480,720,l), (480,660,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (420,900,l), (420,960,l), (360,960,l), (360,900,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (540,780,l), (540,840,l), (480,840,l), (480,780,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (540,900,l), (540,960,l), (480,960,l), (480,900,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); } ); width = 600; } ); unicode = 9618; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sharp-musical.glyph000066400000000000000000000023341472355150100314630ustar00rootroot00000000000000{ glyphname = "sharp-musical"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (556,593,l), (556,663,l), (86,415,l), (86,346,l) ); }, { closed = 1; nodes = ( (247,0,l), (247,640,l), (204,640,l), (204,0,l) ); }, { closed = 1; nodes = ( (556,328,l), (556,398,l), (86,150,l), (86,81,l) ); }, { closed = 1; nodes = ( (445,90,l), (445,730,l), (402,730,l), (402,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (556,583,l), (556,664,l), (86,416,l), (86,336,l) ); }, { closed = 1; nodes = ( (247,0,l), (247,640,l), (204,640,l), (204,0,l) ); }, { closed = 1; nodes = ( (556,327,l), (556,408,l), (86,160,l), (86,80,l) ); }, { closed = 1; nodes = ( (445,90,l), (445,730,l), (402,730,l), (402,90,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (560,551,l), (560,686,l), (90,438,l), (90,303,l) ); }, { closed = 1; nodes = ( (251,0,l), (251,640,l), (208,640,l), (208,0,l) ); }, { closed = 1; nodes = ( (560,304,l), (560,439,l), (90,192,l), (90,57,l) ); }, { closed = 1; nodes = ( (449,90,l), (449,730,l), (406,730,l), (406,90,l) ); } ); width = 600; } ); unicode = 9839; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/shcha-cy.glyph000066400000000000000000000017341472355150100304150ustar00rootroot00000000000000{ glyphname = "shcha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (521,-140,l), (559,100,l), (494,100,l), (565,550,l), (452,550,l), (381,100,l), (302,100,l), (373,550,l), (274,550,l), (203,100,l), (124,100,l), (195,550,l), (82,550,l), (-5,0,l), (413,0,l), (391,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,-140,l), (543,76,l), (496,76,l), (571,550,l), (490,550,l), (415,76,l), (299,76,l), (374,550,l), (304,550,l), (229,76,l), (113,76,l), (188,550,l), (107,550,l), (20,0,l), (451,0,l), (429,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (528,43,l), (481,43,l), (561,550,l), (513,550,l), (433,43,l), (284,43,l), (364,550,l), (316,550,l), (236,43,l), (87,43,l), (167,550,l), (119,550,l), (32,0,l), (471,0,l), (449,-140,l) ); } ); width = 600; } ); unicode = 1097; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/shiftI_n-control.glyph000066400000000000000000000013101472355150100321250ustar00rootroot00000000000000{ glyphname = "shiftIn-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = I; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = I; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = I; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9231; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/shiftO_ut-control.glyph000066400000000000000000000013111472355150100323270ustar00rootroot00000000000000{ glyphname = "shiftOut-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = O; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = O; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = O; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9230; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sigma.glyph000066400000000000000000000033501472355150100300120ustar00rootroot00000000000000{ glyphname = sigma; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (522,450,o), (479,512,o), (402,512,c), (436,488,l), (439,506,l), (556,506,l), (563,550,l), (343,550,ls), (227,550,o), (136,473,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (245,506,o), (336,506,cs), (447,506,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (379,-10,o), (477,74,o), (497,200,cs), (519,340,ls), (531,417,o), (492,466,o), (416,466,c), (429,452,l), (431,468,l), (600,468,l), (613,550,l), (340,550,ls), (212,550,o), (115,466,o), (95,340,cs), (73,200,ls), (53,74,o), (123,-10,o), (251,-10,cs) ); }, { closed = 1; nodes = ( (188,70,o), (150,120,o), (163,200,cs), (185,340,ls), (198,420,o), (251,470,o), (327,470,cs), (403,470,o), (442,420,o), (429,340,cs), (407,200,ls), (394,120,o), (340,70,o), (264,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (539,270,ls), (554,366,o), (501,427,o), (400,427,c), (440,385,l), (446,425,l), (578,425,l), (598,550,l), (343,550,ls), (196,550,o), (89,462,o), (68,330,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (218,330,ls), (227,388,o), (265,420,o), (323,420,cs), (381,420,o), (410,402,o), (398,330,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; } ); unicode = 963; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sigmafinal.glyph000066400000000000000000000045171472355150100310320ustar00rootroot00000000000000{ glyphname = sigmafinal; layers = ( { hints = ( { horizontal = 1; origin = (0,0); target = (0,0); type = Stem; }, { place = (407,-43); type = Stem; }, { horizontal = 1; place = (-223,21); target = up; type = BottomGhost; } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,-180,l), (466,-46,ls), (475,10,o), (443,46,o), (383,46,cs), (266,46,ls), (175,46,o), (128,104,o), (144,200,cs), (169,360,ls), (184,457,o), (249,514,o), (340,514,cs), (432,514,o), (480,460,o), (466,370,c), (516,370,l), (534,486,o), (469,560,o), (348,560,cs), (228,560,o), (138,481,o), (119,360,cs), (94,200,ls), (74,78,o), (138,0,o), (259,0,cs), (376,0,ls), (405,0,o), (420,-18,o), (416,-46,cs), (394,-180,l) ); } ); width = 600; }, { hints = ( { place = (45,47); type = Stem; }, { horizontal = 1; place = (-53,37); type = Stem; }, { horizontal = 1; place = (437,37); type = Stem; }, { place = (142,42); type = Stem; }, { horizontal = 1; place = (27,37); type = Stem; }, { horizontal = 1; place = (-223,-20); target = down; type = TopGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (468,-180,l), (489,-48,ls), (502,33,o), (460,80,o), (372,80,cs), (274,80,ls), (195,80,o), (151,117,o), (164,200,cs), (188,351,ls), (201,433,o), (258,480,o), (337,480,cs), (411,480,o), (451,440,o), (444,370,c), (534,370,l), (548,487,o), (477,560,o), (350,560,cs), (217,560,o), (118,481,o), (97,350,cs), (74,200,ls), (53,69,o), (128,0,o), (261,0,cs), (359,0,ls), (390,0,o), (404,-17,o), (399,-48,cs), (378,-180,l) ); } ); width = 600; }, { hints = ( { horizontal = 1; origin = (0,5); target = (0,0); type = Stem; }, { origin = (0,1); target = (0,4); type = Stem; }, { horizontal = 1; place = (-223,-43); type = Stem; }, { horizontal = 1; place = (-223,21); target = up; type = BottomGhost; } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (509,-180,l), (533,-34,ls), (549,70,o), (499,130,o), (393,130,cs), (281,130,ls), (221,130,o), (193,162,o), (202,220,cs), (221,340,ls), (230,398,o), (268,430,o), (328,430,cs), (382,430,o), (413,402,o), (409,355,c), (559,355,l), (574,482,o), (494,560,o), (349,560,cs), (202,560,o), (92,473,o), (71,340,cs), (52,220,ls), (31,87,o), (113,0,o), (260,0,cs), (334,0,ls), (368,0,o), (385,-20,o), (379,-54,cs), (359,-180,l) ); } ); width = 600; } ); unicode = 962; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/similar.glyph000066400000000000000000000006361472355150100303560ustar00rootroot00000000000000{ glyphname = similar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = asciitilde; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = asciitilde; } ); width = 600; } ); unicode = 8764; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/six.glyph000066400000000000000000000032141472355150100275140ustar00rootroot00000000000000{ glyphname = six; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (408,-10,o), (525,85,o), (547,226,cs), (568,358,o), (505,446,o), (391,446,cs), (334,446,o), (293,421,o), (257,378,c), (251,382,l), (510,730,l), (346,730,l), (145,456,ls), (84,372,o), (49,302,o), (40,242,cs), (16,91,o), (102,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (210,115,o), (173,160,o), (183,224,cs), (193,289,o), (245,335,o), (310,335,cs), (375,335,o), (411,289,o), (401,224,cs), (391,160,o), (340,115,o), (275,115,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (397,-10,o), (506,85,o), (529,227,cs), (550,360,o), (483,449,o), (363,449,cs), (306,449,o), (256,426,o), (226,390,c), (223,393,l), (474,730,l), (375,730,l), (152,427,ls), (99,354,o), (66,287,o), (56,223,cs), (34,84,o), (114,-10,o), (256,-10,cs) ); }, { closed = 1; nodes = ( (181,70,o), (131,132,o), (146,225,cs), (161,318,o), (230,380,o), (317,380,cs), (404,380,o), (453,318,o), (438,225,cs), (423,132,o), (355,70,o), (268,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (386,-9,o), (489,81,o), (511,215,cs), (532,348,o), (465,437,o), (345,437,cs), (278,437,o), (221,408,o), (197,384,c), (194,387,l), (453,730,l), (397,730,l), (160,406,ls), (115,345,o), (79,282,o), (69,220,cs), (48,82,o), (122,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (156,35,o), (98,104,o), (119,215,cs), (136,320,o), (217,395,o), (318,395,cs), (420,395,o), (477,320,o), (461,215,cs), (443,104,o), (363,35,o), (261,35,cs) ); } ); width = 600; } ); unicode = 54; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sixP_ointedB_lackS_tar.glyph000066400000000000000000000015301472355150100332620ustar00rootroot00000000000000{ glyphname = sixPointedBlackStar; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (210,360,l), (40,510,l), (255,437,l), (300,660,l), (344,438,l), (559,510,l), (389,360,l), (560,210,l), (345,283,l), (300,60,l), (255,283,l), (39,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (210,360,l), (40,510,l), (255,437,l), (300,660,l), (344,438,l), (559,510,l), (389,360,l), (560,210,l), (345,283,l), (300,60,l), (255,283,l), (39,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (210,360,l), (40,510,l), (255,437,l), (300,660,l), (344,438,l), (559,510,l), (389,360,l), (560,210,l), (345,283,l), (300,60,l), (255,283,l), (39,210,l) ); } ); width = 600; } ); unicode = 10038; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sixinferior.glyph000066400000000000000000000007201472355150100312510ustar00rootroot00000000000000{ glyphname = sixinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = sixsuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = sixsuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = sixsuperior; } ); width = 600; } ); metricLeft = six; metricRight = six; unicode = 8326; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sixsuperior.glyph000066400000000000000000000033261472355150100313110ustar00rootroot00000000000000{ glyphname = sixsuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (407,395,o), (471,449,o), (484,533,cs), (497,614,o), (455,667,o), (376,667,cs), (336,667,o), (297,647,o), (279,616,c), (309,626,l), (282,626,l), (444,830,l), (394,830,l), (259,658,ls), (232,623,o), (203,577,o), (196,533,cs), (183,449,o), (232,395,o), (320,395,cs) ); }, { closed = 1; nodes = ( (265,435,o), (232,473,o), (241,533,cs), (251,593,o), (296,631,o), (356,631,cs), (416,631,o), (449,593,o), (439,533,cs), (430,473,o), (385,435,o), (325,435,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (414,395,o), (482,451,o), (496,538,cs), (509,619,o), (470,671,o), (397,671,cs), (351,671,o), (310,650,o), (294,617,c), (334,637,l), (300,637,l), (455,830,l), (379,830,l), (247,668,ls), (217,631,o), (193,579,o), (186,538,cs), (172,451,o), (226,395,o), (320,395,cs) ); }, { closed = 1; nodes = ( (277,457,o), (249,488,o), (257,538,cs), (265,588,o), (303,619,o), (354,619,cs), (406,619,o), (433,588,o), (425,538,cs), (417,488,o), (380,457,o), (328,457,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (419,395,o), (494,453,o), (508,540,cs), (520,621,o), (478,675,o), (407,675,cs), (366,675,o), (332,657,o), (309,623,c), (358,643,l), (320,643,l), (471,830,l), (373,830,l), (240,668,ls), (207,628,o), (181,577,o), (176,540,cs), (162,453,o), (220,395,o), (320,395,cs) ); }, { closed = 1; nodes = ( (288,477,o), (263,502,o), (269,540,cs), (275,578,o), (308,603,o), (352,603,cs), (397,603,o), (421,578,o), (415,540,cs), (409,502,o), (377,477,o), (332,477,cs) ); } ); width = 600; } ); unicode = 8310; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash.glyph000066400000000000000000000010331472355150100300200ustar00rootroot00000000000000{ glyphname = slash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,-110,l), (637,830,l), (478,830,l), (-11,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,-110,l), (612,830,l), (515,830,l), (14,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (90,-110,l), (592,830,l), (536,830,l), (34,-110,l) ); } ); width = 600; } ); unicode = 47; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash_asterisk.liga.glyph000066400000000000000000000011331472355150100326410ustar00rootroot00000000000000{ glyphname = slash_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-20,130); ref = asterisk; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (20,130); ref = asterisk; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (20,130); ref = asterisk; } ); width = 600; } ); } slash_asterisk_asterisk.liga.glyph000066400000000000000000000014101472355150100344650ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = slash_asterisk_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1200,0); ref = slash; }, { alignment = -1; pos = (-600,130); ref = asterisk; }, { alignment = -1; pos = (0,130); ref = asterisk; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1200,0); ref = slash; }, { alignment = -1; pos = (-600,130); ref = asterisk; }, { alignment = -1; pos = (0,130); ref = asterisk; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1200,0); ref = slash; }, { alignment = -1; pos = (-599,130); ref = asterisk; }, { alignment = -1; pos = (0,130); ref = asterisk; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash_equal.liga.glyph000066400000000000000000000016521472355150100321310ustar00rootroot00000000000000{ glyphname = slash_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (467,135,l), (489,274,l), (-323,274,l), (-345,135,l) ); }, { closed = 1; nodes = ( (507,385,l), (529,524,l), (-203,524,l), (-225,385,l) ); }, { alignment = -1; pos = (-570,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (473,170,l), (486,250,l), (-314,250,l), (-327,170,l) ); }, { closed = 1; nodes = ( (511,410,l), (524,490,l), (-196,490,l), (-209,410,l) ); }, { alignment = -1; pos = (-570,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,195,l), (484,240,l), (-326,240,l), (-333,195,l) ); }, { closed = 1; nodes = ( (513,421,l), (520,466,l), (-210,466,l), (-217,421,l) ); }, { alignment = -1; pos = (-570,0); ref = slash; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash_equal_equal.liga.glyph000066400000000000000000000016631472355150100333220ustar00rootroot00000000000000{ glyphname = slash_equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (467,135,l), (489,274,l), (-893,274,l), (-915,135,l) ); }, { closed = 1; nodes = ( (507,385,l), (529,524,l), (-773,524,l), (-795,385,l) ); }, { alignment = -1; pos = (-1214,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (473,170,l), (486,250,l), (-944,250,l), (-957,170,l) ); }, { closed = 1; nodes = ( (511,410,l), (524,490,l), (-826,490,l), (-839,410,l) ); }, { alignment = -1; pos = (-1239,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,195,l), (484,240,l), (-949,240,l), (-956,195,l) ); }, { closed = 1; nodes = ( (513,421,l), (520,466,l), (-833,466,l), (-840,421,l) ); }, { alignment = -1; pos = (-1239,0); ref = slash; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash_greater.liga.glyph000066400000000000000000000020301472355150100324420ustar00rootroot00000000000000{ glyphname = slash_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-412,-110,l), (-73,542,l), (312,355,ls), (339,342,o), (377,335,o), (399,333,c), (377,331,o), (336,324,o), (306,312,cs), (10,190,l), (-11,49,l), (482,258,l), (505,401,l), (-15,654,l), (77,830,l), (-82,830,l), (-571,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-456,-110,l), (-83,588,l), (361,355,ls), (384,343,o), (406,336,o), (418,333,c), (406,330,o), (381,323,o), (354,311,cs), (21,160,l), (6,65,l), (470,280,l), (486,380,l), (-45,657,l), (47,830,l), (-48,830,l), (-551,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-483,-110,l), (-86,635,l), (357,375,ls), (382,360,o), (415,342,o), (432,333,c), (412,324,o), (374,306,o), (343,291,cs), (28,137,l), (19,80,l), (475,307,l), (482,353,l), (-63,675,l), (19,830,l), (-31,830,l), (-533,-110,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash_slash.liga.glyph000066400000000000000000000011131472355150100321240ustar00rootroot00000000000000{ glyphname = slash_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-75,0); ref = slash; }, { alignment = -1; pos = (-525,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-75,0); ref = slash; }, { alignment = -1; pos = (-525,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-76,0); ref = slash; }, { alignment = -1; pos = (-524,0); ref = slash; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash_slash_equal.liga.glyph000066400000000000000000000021111472355150100333120ustar00rootroot00000000000000{ glyphname = slash_slash_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (447,135,l), (469,274,l), (-433,274,l), (-455,135,l) ); }, { closed = 1; nodes = ( (487,385,l), (509,524,l), (-313,524,l), (-335,385,l) ); }, { alignment = -1; pos = (-660,0); ref = slash; }, { alignment = -1; pos = (-1111,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (453,170,l), (466,250,l), (-414,250,l), (-427,170,l) ); }, { closed = 1; nodes = ( (491,410,l), (504,490,l), (-296,490,l), (-309,410,l) ); }, { alignment = -1; pos = (-654,0); ref = slash; }, { alignment = -1; pos = (-1105,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (457,195,l), (464,240,l), (-412,240,l), (-419,195,l) ); }, { closed = 1; nodes = ( (493,421,l), (500,466,l), (-296,466,l), (-303,421,l) ); }, { alignment = -1; pos = (-654,0); ref = slash; }, { alignment = -1; pos = (-1105,0); ref = slash; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slash_slash_slash.liga.glyph000066400000000000000000000013551472355150100333260ustar00rootroot00000000000000{ glyphname = slash_slash_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1080,0); ref = slash; }, { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-120,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1080,0); ref = slash; }, { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-120,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1080,0); ref = slash; }, { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-120,0); ref = slash; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slashlongcomb.glyph000066400000000000000000000013111472355150100315400ustar00rootroot00000000000000{ glyphname = slashlongcomb; layers = ( { anchors = ( { name = _center; pos = (-300,275); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-461,-110,l), (-44,660,l), (-139,660,l), (-556,-110,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-300,275); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-485,-110,l), (-49,660,l), (-115,660,l), (-551,-110,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-300,275); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-493,-110,l), (-59,660,l), (-107,660,l), (-541,-110,l) ); } ); width = 0; } ); unicode = 824; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/slashshortcomb.glyph000066400000000000000000000012771472355150100317530ustar00rootroot00000000000000{ glyphname = slashshortcomb; layers = ( { anchors = ( { name = _center; pos = (-299,280); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-537,-30,l), (-10,590,l), (-61,590,l), (-588,-30,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-299,280); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-520,-30,l), (15,590,l), (-79,590,l), (-613,-30,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-299,280); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-504,-30,l), (25,590,l), (-94,590,l), (-623,-30,l) ); } ); width = 0; } ); unicode = 823; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/softhyphen.glyph000066400000000000000000000005441472355150100311030ustar00rootroot00000000000000{ glyphname = softhyphen; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = hyphen; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = hyphen; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = hyphen; } ); width = 600; } ); unicode = 173; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/softsign-cy.glyph000066400000000000000000000023341472355150100311600ustar00rootroot00000000000000{ glyphname = "softsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (441,0,o), (538,73,o), (556,191,cs), (575,312,o), (504,385,o), (366,385,cs), (237,385,l), (263,550,l), (113,550,l), (26,0,l) ); }, { closed = 1; nodes = ( (216,255,l), (336,255,ls), (386,255,o), (412,232,o), (406,193,cs), (399,153,o), (367,130,o), (317,130,cs), (197,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (429,0,o), (517,67,o), (534,174,cs), (551,282,o), (485,348,o), (361,348,cs), (199,348,l), (231,550,l), (141,550,l), (54,0,l) ); }, { closed = 1; nodes = ( (186,266,l), (348,266,ls), (417,266,o), (450,234,o), (441,174,cs), (431,114,o), (388,82,o), (319,82,cs), (157,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (296,0,ls), (414,0,o), (502,68,o), (519,174,cs), (535,280,o), (469,348,o), (351,348,cs), (176,348,l), (208,550,l), (158,550,l), (71,0,l) ); }, { closed = 1; nodes = ( (169,303,l), (344,303,ls), (434,303,o), (481,254,o), (469,174,cs), (456,94,o), (393,45,o), (303,45,cs), (128,45,l) ); } ); width = 600; } ); unicode = 1100; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/southE_astA_rrow.glyph000066400000000000000000000024101472355150100321760ustar00rootroot00000000000000{ glyphname = southEastArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (555,75,l), (555,490,l), (475,490,l), (475,291,ls), (475,258,o), (480,223,o), (483,206,c), (476,204,l), (466,218,o), (445,243,o), (426,262,cs), (71,620,l), (10,557,l), (363,201,ls), (381,183,o), (404,164,o), (416,155,c), (415,148,l), (400,150,o), (368,153,o), (335,153,cs), (140,153,l), (140,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (555,75,l), (555,490,l), (475,490,l), (475,291,ls), (475,258,o), (480,223,o), (483,206,c), (476,204,l), (466,218,o), (445,243,o), (426,262,cs), (71,620,l), (10,557,l), (363,201,ls), (381,183,o), (404,164,o), (416,155,c), (415,148,l), (400,150,o), (368,153,o), (335,153,cs), (140,153,l), (140,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (555,75,l), (555,490,l), (475,490,l), (475,291,ls), (475,258,o), (480,223,o), (483,206,c), (476,204,l), (466,218,o), (445,243,o), (426,262,cs), (71,620,l), (10,557,l), (363,201,ls), (381,183,o), (404,164,o), (416,155,c), (415,148,l), (400,150,o), (368,153,o), (335,153,cs), (140,153,l), (140,75,l) ); } ); width = 600; } ); unicode = 8600; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/southW_estA_rrow.glyph000066400000000000000000000024101472355150100322240ustar00rootroot00000000000000{ glyphname = southWestArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (460,75,l), (460,153,l), (265,153,ls), (232,153,o), (200,150,o), (185,148,c), (184,155,l), (196,164,o), (219,183,o), (237,201,cs), (590,557,l), (530,618,l), (175,260,ls), (156,241,o), (135,216,o), (125,202,c), (118,204,l), (121,222,o), (125,258,o), (125,291,cs), (125,490,l), (45,490,l), (45,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (460,75,l), (460,153,l), (265,153,ls), (232,153,o), (200,150,o), (185,148,c), (184,155,l), (196,164,o), (219,183,o), (237,201,cs), (590,557,l), (530,618,l), (175,260,ls), (156,241,o), (135,216,o), (125,202,c), (118,204,l), (121,222,o), (125,258,o), (125,291,cs), (125,490,l), (45,490,l), (45,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (460,75,l), (460,153,l), (265,153,ls), (232,153,o), (200,150,o), (185,148,c), (184,155,l), (196,164,o), (219,183,o), (237,201,cs), (590,557,l), (530,618,l), (175,260,ls), (156,241,o), (135,216,o), (125,202,c), (118,204,l), (121,222,o), (125,258,o), (125,291,cs), (125,490,l), (45,490,l), (45,75,l) ); } ); width = 600; } ); unicode = 8601; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/space-control.glyph000066400000000000000000000013061472355150100314620ustar00rootroot00000000000000{ glyphname = "space-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = P; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = P; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = P; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9248; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/space.glyph000066400000000000000000000003761472355150100300120ustar00rootroot00000000000000{ glyphname = space; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; } ); unicode = 32; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/squarecap.glyph000066400000000000000000000014641472355150100307020ustar00rootroot00000000000000{ glyphname = squarecap; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (70,0,l), (70,555,l), (530,555,l), (530,0,l), (580,0,l), (580,600,l), (20,600,l), (20,0,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (120,0,l), (120,455,l), (480,455,l), (480,0,l), (530,0,l), (530,500,l), (70,500,l), (70,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (150,0,l), (150,453,l), (450,453,l), (450,0,l), (540,0,l), (540,535,l), (60,535,l), (60,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (195,0,l), (195,410,l), (405,410,l), (405,0,l), (555,0,l), (555,550,l), (45,550,l), (45,0,l) ); } ); width = 600; } ); unicode = 8851; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/squarecup.glyph000066400000000000000000000007121472355150100307210ustar00rootroot00000000000000{ glyphname = squarecup; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,500); ref = squarecap; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,535); ref = squarecap; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,550); ref = squarecap; scale = (1,-1); } ); width = 600; } ); unicode = 8852; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/squareimageoforequalto.glyph000066400000000000000000000016361472355150100335030ustar00rootroot00000000000000{ glyphname = squareimageoforequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (555,210,l), (555,255,l), (105,255,l), (105,625,l), (555,625,l), (555,670,l), (55,670,l), (55,210,l) ); }, { closed = 1; nodes = ( (555,0,l), (555,45,l), (55,45,l), (55,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (570,200,l), (570,282,l), (125,282,l), (125,598,l), (570,598,l), (570,680,l), (35,680,l), (35,200,l) ); }, { closed = 1; nodes = ( (570,0,l), (570,82,l), (35,82,l), (35,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (575,185,l), (575,325,l), (175,325,l), (175,555,l), (575,555,l), (575,695,l), (25,695,l), (25,185,l) ); }, { closed = 1; nodes = ( (575,0,l), (575,140,l), (25,140,l), (25,0,l) ); } ); width = 600; } ); unicode = 8849; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/staroperator.glyph000066400000000000000000000014131472355150100314350ustar00rootroot00000000000000{ glyphname = staroperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,285,l), (373,218,l), (343,317,l), (420,371,l), (329,371,l), (300,464,l), (271,371,l), (180,371,l), (257,317,l), (227,218,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,285,l), (373,218,l), (343,317,l), (420,371,l), (329,371,l), (300,464,l), (271,371,l), (180,371,l), (257,317,l), (227,218,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,285,l), (373,218,l), (343,317,l), (420,371,l), (329,371,l), (300,464,l), (271,371,l), (180,371,l), (257,317,l), (227,218,l) ); } ); width = 600; } ); unicode = 8902; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/startO_fH_eading-control.glyph000066400000000000000000000016331472355150100335720ustar00rootroot00000000000000{ glyphname = "startOfHeading-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = H; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = H; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = H; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9217; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/startO_fT_ext-control.glyph000066400000000000000000000016301472355150100331540ustar00rootroot00000000000000{ glyphname = "startOfText-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9218; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/sterling.glyph000066400000000000000000000033151472355150100305420ustar00rootroot00000000000000{ glyphname = sterling; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (491,0,l), (513,140,l), (143,140,l), (210,150,o), (302,196,o), (316,283,cs), (341,442,o), (230,449,o), (243,532,cs), (250,575,o), (291,610,o), (349,610,cs), (405,610,o), (435,574,o), (433,530,c), (583,530,l), (594,654,o), (515,740,o), (373,740,cs), (222,740,o), (112,652,o), (95,540,cs), (74,413,o), (205,408,o), (183,274,cs), (175,224,o), (107,180,o), (56,160,c), (31,0,l) ); }, { closed = 1; nodes = ( (436,285,l), (455,405,l), (85,405,l), (66,285,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (491,0,l), (504,80,l), (134,80,l), (185,108,o), (259,176,o), (273,263,cs), (298,422,o), (204,446,o), (220,550,cs), (231,620,o), (282,660,o), (360,660,cs), (433,660,o), (474,617,o), (463,550,c), (558,550,l), (575,669,o), (505,740,o), (373,740,cs), (242,740,o), (148,668,o), (130,555,cs), (110,429,o), (203,398,o), (180,254,cs), (172,204,o), (100,137,o), (47,100,c), (31,0,l) ); }, { closed = 1; nodes = ( (439,305,l), (452,385,l), (92,385,l), (79,305,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,0,l), (498,45,l), (93,45,l), (151,78,o), (234,153,o), (247,235,cs), (268,364,o), (179,422,o), (198,545,cs), (213,638,o), (277,695,o), (365,695,cs), (468,695,o), (523,640,o), (509,550,c), (559,550,l), (576,667,o), (504,740,o), (373,740,cs), (253,740,o), (167,666,o), (148,546,cs), (128,416,o), (219,372,o), (197,235,cs), (185,155,o), (99,82,o), (39,50,c), (31,0,l) ); }, { closed = 1; nodes = ( (442,320,l), (449,365,l), (89,365,l), (82,320,l) ); } ); width = 600; } ); unicode = 163; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/strokelongcomb.glyph000066400000000000000000000012731472355150100317440ustar00rootroot00000000000000{ glyphname = strokelongcomb; layers = ( { anchors = ( { name = _center; pos = (-294,316); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (27,260,l), (45,371,l), (-615,371,l), (-633,260,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-293,325); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,290,l), (43,360,l), (-617,360,l), (-628,290,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-292,326); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (34,306,l), (41,346,l), (-618,346,l), (-625,306,l) ); } ); width = 0; } ); unicode = 822; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/subset.glyph000066400000000000000000000022251472355150100302170ustar00rootroot00000000000000{ glyphname = subset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (548,105,l), (570,245,l), (274,245,ls), (209,245,o), (176,281,o), (185,340,cs), (191,380,ls), (201,439,o), (246,475,o), (310,475,cs), (606,475,l), (628,615,l), (328,615,ls), (178,615,o), (64,522,o), (42,382,cs), (35,338,ls), (12,198,o), (98,105,o), (248,105,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (545,120,l), (558,202,l), (253,202,ls), (164,202,o), (121,252,o), (135,340,cs), (141,380,ls), (155,468,o), (214,518,o), (303,518,cs), (608,518,l), (621,600,l), (316,600,ls), (178,600,o), (72,513,o), (52,382,cs), (45,338,ls), (24,207,o), (102,120,o), (240,120,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (532,130,l), (539,175,l), (249,175,ls), (148,175,o), (98,232,o), (113,330,cs), (123,390,ls), (138,488,o), (206,545,o), (307,545,cs), (597,545,l), (604,590,l), (314,590,ls), (184,590,o), (93,515,o), (73,392,cs), (63,328,ls), (43,205,o), (112,130,o), (242,130,cs) ); } ); width = 600; } ); unicode = 8834; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/substitute-control.glyph000066400000000000000000000016271472355150100326100ustar00rootroot00000000000000{ glyphname = "substitute-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9242; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/suchthat.glyph000066400000000000000000000024461472355150100305420ustar00rootroot00000000000000{ glyphname = suchthat; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (296,60,ls), (448,60,o), (554,146,o), (577,288,cs), (599,432,ls), (622,573,o), (542,660,o), (391,660,cs), (86,660,l), (65,530,l), (370,530,ls), (432,530,o), (464,492,o), (454,430,cs), (453,420,l), (48,420,l), (28,299,l), (433,299,l), (432,290,ls), (422,228,o), (378,190,o), (316,190,cs), (11,190,l), (-9,60,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (307,70,ls), (432,70,o), (552,164,o), (572,288,cs), (594,432,ls), (614,556,o), (524,650,o), (399,650,cs), (94,650,l), (81,570,l), (386,570,ls), (465,570,o), (516,504,o), (504,430,cs), (499,400,l), (54,400,l), (42,320,l), (487,320,l), (482,290,ls), (470,216,o), (399,150,o), (320,150,cs), (15,150,l), (2,70,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,85,ls), (434,85,o), (526,160,o), (546,283,cs), (570,437,ls), (590,560,o), (522,635,o), (392,635,cs), (102,635,l), (94,590,l), (384,590,ls), (485,590,o), (535,533,o), (520,435,cs), (512,382,l), (62,382,l), (55,338,l), (505,338,l), (496,285,ls), (481,187,o), (413,130,o), (312,130,cs), (22,130,l), (14,85,l) ); } ); width = 600; } ); unicode = 8715; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/summation.glyph000066400000000000000000000015331472355150100307270ustar00rootroot00000000000000{ glyphname = summation; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (467,-180,l), (489,-45,l), (188,-45,l), (463,274,l), (279,595,l), (590,595,l), (612,730,l), (127,730,l), (106,597,l), (290,285,l), (4,-47,l), (-18,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (467,-180,l), (480,-98,l), (107,-98,l), (439,275,l), (220,648,l), (599,648,l), (612,730,l), (127,730,l), (114,648,l), (330,280,l), (-5,-98,l), (-18,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (467,-180,l), (475,-135,l), (51,-135,l), (428,278,l), (177,685,l), (604,685,l), (612,730,l), (127,730,l), (119,683,l), (365,283,l), (-10,-133,l), (-18,-180,l) ); } ); width = 600; } ); unicode = 8721; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/summationdoubleS_truck.glyph000066400000000000000000000022461472355150100334570ustar00rootroot00000000000000{ glyphname = summationdoubleStruck; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (540,-180,l), (540,-134,l), (208,-134,l), (458,270,l), (208,684,l), (540,684,l), (540,730,l), (55,730,l), (55,680,l), (305,274,l), (55,-130,l), (55,-180,l) ); }, { closed = 1; nodes = ( (350,274,l), (98,684,l), (163,684,l), (416,274,l), (163,-134,l), (98,-134,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (540,-180,l), (540,-134,l), (208,-134,l), (458,270,l), (208,684,l), (540,684,l), (540,730,l), (55,730,l), (55,680,l), (305,274,l), (55,-130,l), (55,-180,l) ); }, { closed = 1; nodes = ( (350,274,l), (98,684,l), (163,684,l), (416,274,l), (163,-134,l), (98,-134,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (540,-180,l), (540,-134,l), (208,-134,l), (458,270,l), (208,684,l), (540,684,l), (540,730,l), (55,730,l), (55,680,l), (305,274,l), (55,-130,l), (55,-180,l) ); }, { closed = 1; nodes = ( (350,274,l), (98,684,l), (163,684,l), (416,274,l), (163,-134,l), (98,-134,l) ); } ); width = 600; } ); unicode = 8512; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/superset.glyph000066400000000000000000000022301472355150100305600ustar00rootroot00000000000000{ glyphname = superset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (298,105,ls), (448,105,o), (562,198,o), (585,338,cs), (592,382,ls), (614,522,o), (528,615,o), (378,615,cs), (78,615,l), (56,475,l), (352,475,ls), (416,475,o), (451,439,o), (441,380,cs), (435,340,ls), (426,281,o), (381,245,o), (316,245,cs), (20,245,l), (-2,105,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (310,120,ls), (448,120,o), (554,207,o), (575,338,cs), (582,382,ls), (602,513,o), (524,600,o), (386,600,cs), (81,600,l), (68,518,l), (373,518,ls), (462,518,o), (505,468,o), (491,380,cs), (485,340,ls), (471,252,o), (412,202,o), (323,202,cs), (18,202,l), (5,120,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (312,130,ls), (442,130,o), (533,205,o), (553,328,cs), (563,392,ls), (583,515,o), (514,590,o), (384,590,cs), (94,590,l), (87,545,l), (377,545,ls), (478,545,o), (528,488,o), (513,390,cs), (503,330,ls), (488,232,o), (420,175,o), (319,175,cs), (29,175,l), (22,130,l) ); } ); width = 600; } ); unicode = 8835; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/synchronousI_dle-control.glyph000066400000000000000000000016341472355150100337220ustar00rootroot00000000000000{ glyphname = "synchronousIdle-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = Y; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = Y; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = Y; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9238; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/t.glyph000066400000000000000000000024041472355150100271540ustar00rootroot00000000000000{ glyphname = t; layers = ( { anchors = ( { name = bottom; pos = (316,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (481,0,l), (502,135,l), (352,135,ls), (323,135,o), (310,151,o), (315,180,cs), (352,415,l), (557,415,l), (578,550,l), (373,550,l), (397,700,l), (247,700,l), (223,550,l), (78,550,l), (57,415,l), (202,415,l), (165,180,ls), (147,68,o), (204,0,o), (316,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (316,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (466,0,l), (479,82,l), (329,82,ls), (288,82,o), (272,102,o), (279,145,cs), (330,468,l), (550,468,l), (563,550,l), (343,550,l), (367,700,l), (277,700,l), (253,550,l), (98,550,l), (85,468,l), (240,468,l), (189,145,ls), (174,53,o), (221,0,o), (316,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (316,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (451,0,l), (458,45,l), (323,45,ls), (271,45,o), (248,73,o), (256,125,cs), (316,505,l), (541,505,l), (548,550,l), (323,550,l), (347,700,l), (297,700,l), (273,550,l), (113,550,l), (106,505,l), (266,505,l), (206,125,ls), (193,44,o), (232,0,o), (316,0,cs) ); } ); width = 600; } ); unicode = 116; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tackdown.glyph000066400000000000000000000013701472355150100305240ustar00rootroot00000000000000{ glyphname = tackdown; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,0,l), (325,600,l), (275,600,l), (275,0,l) ); }, { closed = 1; nodes = ( (600,555,l), (600,600,l), (0,600,l), (0,555,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,600,l), (255,600,l), (255,0,l) ); }, { closed = 1; nodes = ( (600,520,l), (600,600,l), (0,600,l), (0,520,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,0,l), (375,600,l), (225,600,l), (225,0,l) ); }, { closed = 1; nodes = ( (600,460,l), (600,600,l), (0,600,l), (0,460,l) ); } ); width = 600; } ); unicode = 8868; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tau.glyph000066400000000000000000000017271472355150100275110ustar00rootroot00000000000000{ glyphname = tau; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (451,0,l), (458,45,l), (348,45,ls), (296,45,o), (273,73,o), (281,125,cs), (341,505,l), (541,505,l), (548,550,l), (113,550,l), (106,505,l), (291,505,l), (231,125,ls), (218,44,o), (257,0,o), (341,0,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (466,0,l), (479,82,l), (354,82,ls), (313,82,o), (297,102,o), (304,145,cs), (355,468,l), (550,468,l), (563,550,l), (98,550,l), (85,468,l), (265,468,l), (214,145,ls), (199,53,o), (246,0,o), (341,0,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (507,135,l), (377,135,ls), (348,135,o), (335,151,o), (340,180,cs), (377,415,l), (562,415,l), (583,550,l), (83,550,l), (62,415,l), (227,415,l), (190,180,ls), (172,68,o), (229,0,o), (341,0,cs) ); } ); width = 600; } ); unicode = 964; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tbar.glyph000066400000000000000000000011341472355150100276400ustar00rootroot00000000000000{ glyphname = tbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (481,220,l), (499,335,l), (79,335,l), (61,220,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (469,239,l), (481,314,l), (91,314,l), (79,239,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (462,261,l), (469,304,l), (98,304,l), (91,261,l) ); }, { ref = t; } ); width = 600; } ); unicode = 359; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tcaron.glyph000066400000000000000000000011641472355150100302010ustar00rootroot00000000000000{ glyphname = tcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (548,620,l), (663,775,l), (535,775,l), (430,620,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,620,l), (634,776,l), (538,776,l), (423,620,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,620,l), (616,776,l), (547,776,l), (442,620,l) ); }, { alignment = -1; ref = t; } ); width = 600; } ); unicode = 357; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tcedilla.glyph000066400000000000000000000024421472355150100304740ustar00rootroot00000000000000{ glyphname = tcedilla; layers = ( { anchors = ( { name = _bottom; pos = (360,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-195,ls), (410,-195,o), (450,-161,o), (450,-118,cs), (450,-61,o), (387,-37,o), (340,-34,c), (363,26,l), (321,26,l), (286,-64,l), (357,-64,o), (404,-86,o), (404,-118,cs), (404,-140,o), (382,-160,o), (350,-160,cs), (270,-160,l), (270,-195,l) ); }, { ref = t; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (360,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-203,ls), (422,-203,o), (470,-166,o), (470,-120,cs), (470,-68,o), (402,-41,o), (350,-35,c), (371,26,l), (314,26,l), (279,-69,l), (346,-69,o), (384,-89,o), (384,-112,cs), (384,-130,o), (364,-148,o), (335,-148,cs), (265,-148,l), (265,-203,l) ); }, { ref = t; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (360,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (360,-225,ls), (444,-225,o), (500,-182,o), (500,-133,cs), (500,-72,o), (419,-43,o), (358,-39,c), (377,16,l), (304,16,l), (269,-69,l), (342,-69,o), (385,-88,o), (385,-119,cs), (385,-135,o), (363,-155,o), (330,-155,cs), (250,-155,l), (250,-225,l) ); }, { ref = t; } ); width = 600; } ); unicode = 355; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tcommaaccent.glyph000066400000000000000000000010101472355150100313370ustar00rootroot00000000000000{ glyphname = tcommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = t; }, { pos = (660,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = t; }, { pos = (660,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = t; }, { pos = (660,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 539; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/te-cy.glyph000066400000000000000000000012501472355150100277300ustar00rootroot00000000000000{ glyphname = "te-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (396,410,l), (576,410,l), (598,550,l), (88,550,l), (66,410,l), (246,410,l), (181,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (376,471,l), (576,471,l), (588,550,l), (98,550,l), (86,471,l), (286,471,l), (211,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (360,500,l), (560,500,l), (568,550,l), (118,550,l), (110,500,l), (310,500,l), (231,0,l) ); } ); width = 600; } ); unicode = 1090; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/theta.glyph000066400000000000000000000034321472355150100300200ustar00rootroot00000000000000{ glyphname = theta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (535,530,ls), (554,651,o), (490,730,o), (372,730,cs), (254,730,o), (164,651,o), (145,530,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (167,352,l), (457,352,l), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (195,530,ls), (210,628,o), (274,686,o), (365,686,cs), (456,686,o), (500,628,o), (485,530,cs), (464,397,l), (174,397,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (551,521,ls), (571,651,o), (503,730,o), (372,730,cs), (241,730,o), (147,651,o), (126,520,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (152,115,o), (166,200,cs), (185,325,l), (429,325,l), (410,200,ls), (396,115,o), (345,70,o), (267,70,cs) ); }, { closed = 1; nodes = ( (216,520,ls), (230,605,o), (281,650,o), (359,650,cs), (437,650,o), (474,605,o), (460,520,cs), (442,403,l), (198,403,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (577,510,ls), (598,642,o), (519,730,o), (372,730,cs), (225,730,o), (118,642,o), (97,510,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (214,304,l), (394,304,l), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); }, { closed = 1; nodes = ( (247,510,ls), (256,568,o), (293,600,o), (351,600,cs), (409,600,o), (436,568,o), (427,510,cs), (414,429,l), (234,429,l) ); } ); width = 600; } ); unicode = 952; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/thorn.glyph000066400000000000000000000011721472355150100300440ustar00rootroot00000000000000{ glyphname = thorn; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (138,-180,l), (175,50,l), (30,50,l), (-7,-180,l) ); }, { alignment = -1; ref = b; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (104,-180,l), (142,59,l), (52,59,l), (14,-180,l) ); }, { alignment = -1; pos = (-5,0); ref = b; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (88,-180,l), (126,59,l), (76,59,l), (38,-180,l) ); }, { alignment = -1; ref = b; } ); width = 600; } ); unicode = 254; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/three.glyph000066400000000000000000000030171472355150100300210ustar00rootroot00000000000000{ glyphname = three; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (403,-10,o), (508,69,o), (528,200,cs), (537,259,ls), (557,389,o), (477,471,o), (327,471,c), (316,399,l), (565,614,l), (584,730,l), (159,730,l), (139,605,l), (402,605,l), (235,460,l), (216,344,l), (306,344,ls), (366,344,o), (396,313,o), (387,258,cs), (378,200,ls), (369,145,o), (331,115,o), (270,115,cs), (210,115,o), (181,146,o), (190,200,c), (40,200,l), (19,71,o), (100,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (380,-10,o), (478,71,o), (498,200,cs), (506,250,ls), (526,378,o), (454,460,o), (321,460,c), (317,433,l), (545,646,l), (559,730,l), (172,730,l), (159,648,l), (444,648,l), (240,458,l), (227,380,l), (306,380,ls), (388,380,o), (429,332,o), (416,250,cs), (408,200,ls), (395,122,o), (339,70,o), (257,70,cs), (176,70,o), (135,119,o), (148,200,c), (58,200,l), (38,74,o), (111,-10,o), (243,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (367,-10,o), (458,68,o), (477,190,cs), (488,261,ls), (507,381,o), (441,456,o), (316,456,c), (315,446,l), (544,682,l), (552,730,l), (188,730,l), (180,685,l), (490,685,l), (268,454,l), (261,411,l), (312,411,ls), (407,411,o), (453,356,o), (438,261,cs), (427,190,ls), (412,94,o), (346,35,o), (253,35,cs), (160,35,o), (112,93,o), (127,190,c), (77,190,l), (58,68,o), (123,-10,o), (245,-10,cs) ); } ); width = 600; } ); unicode = 51; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/threeT_urned.glyph000066400000000000000000000007551472355150100313500ustar00rootroot00000000000000{ glyphname = threeTurned; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = three; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = three; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = three; } ); width = 600; } ); unicode = 8587; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/threeinferior.glyph000066400000000000000000000007351472355150100315630ustar00rootroot00000000000000{ glyphname = threeinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-515); ref = threesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-515); ref = threesuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-515); ref = threesuperior; } ); width = 600; } ); unicode = 8323; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/threequarters.glyph000066400000000000000000000041471472355150100316150ustar00rootroot00000000000000{ glyphname = threequarters; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (505,0,l), (537,205,l), (447,205,l), (436,130,l), (361,130,l), (363,146,l), (526,325,l), (427,325,l), (275,160,l), (260,60,l), (425,60,l), (415,0,l) ); }, { closed = 1; nodes = ( (256,400,o), (317,444,o), (328,510,cs), (337,570,o), (298,610,o), (229,610,c), (225,590,l), (338,668,l), (348,730,l), (113,730,l), (102,665,l), (249,665,l), (180,616,l), (169,550,l), (199,550,ls), (226,550,o), (242,534,o), (238,510,cs), (234,486,o), (213,470,o), (185,470,cs), (156,470,o), (140,484,o), (143,505,c), (53,505,l), (43,442,o), (91,400,o), (174,400,cs) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (496,0,l), (529,209,l), (469,209,l), (455,120,l), (340,120,l), (343,136,l), (507,325,l), (438,325,l), (285,150,l), (272,70,l), (447,70,l), (436,0,l) ); }, { closed = 1; nodes = ( (249,400,o), (307,442,o), (317,505,cs), (327,568,o), (284,610,o), (211,610,c), (208,592,l), (328,675,l), (337,730,l), (122,730,l), (114,680,l), (270,680,l), (179,617,l), (170,560,l), (200,560,ls), (239,560,o), (262,538,o), (257,505,cs), (252,472,o), (221,450,o), (181,450,cs), (140,450,o), (117,472,o), (122,505,c), (62,505,l), (52,442,o), (96,400,o), (173,400,cs) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,0,l), (525,216,l), (480,216,l), (463,110,l), (328,110,l), (331,126,l), (499,325,l), (449,325,l), (288,140,l), (277,70,l), (457,70,l), (446,0,l) ); }, { closed = 1; nodes = ( (243,400,o), (296,444,o), (307,510,cs), (316,569,o), (274,609,o), (207,609,c), (206,599,l), (321,685,l), (329,730,l), (129,730,l), (122,690,l), (278,690,l), (179,618,l), (172,575,l), (202,575,ls), (244,575,o), (268,549,o), (262,510,cs), (255,468,o), (223,440,o), (180,440,cs), (136,440,o), (111,466,o), (117,505,c), (72,505,l), (62,442,o), (102,400,o), (173,400,cs) ); }, { alignment = -1; pos = (-44,0); ref = fraction; } ); width = 600; } ); unicode = 190; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/threesuperior.glyph000066400000000000000000000027301472355150100316130ustar00rootroot00000000000000{ glyphname = threesuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (399,395,o), (472,451,o), (487,542,cs), (500,622,o), (451,674,o), (368,674,c), (362,635,l), (490,741,l), (504,830,l), (240,830,l), (227,747,l), (404,747,l), (318,675,l), (307,609,l), (337,609,ls), (377,609,o), (398,584,o), (392,542,cs), (385,498,o), (357,477,o), (316,477,cs), (274,477,o), (250,498,o), (257,540,c), (162,540,l), (147,451,o), (205,395,o), (303,395,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (394,395,o), (459,449,o), (473,535,cs), (486,617,o), (438,669,o), (350,669,c), (346,639,l), (480,754,l), (493,831,l), (253,831,l), (242,767,l), (422,767,l), (318,678,l), (308,611,l), (338,611,ls), (384,611,o), (408,582,o), (401,535,cs), (393,488,o), (360,458,o), (313,458,cs), (264,458,o), (238,488,o), (246,535,c), (177,535,l), (163,449,o), (212,395,o), (303,395,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (387,395,o), (449,448,o), (462,530,cs), (475,612,o), (429,665,o), (345,665,c), (343,650,l), (476,786,l), (483,830,l), (262,830,l), (256,790,l), (432,790,l), (318,673,l), (310,627,l), (339,627,ls), (395,627,o), (426,589,o), (417,530,cs), (408,472,o), (365,435,o), (309,435,cs), (251,435,o), (220,472,o), (229,530,c), (184,530,l), (171,448,o), (218,395,o), (303,395,cs) ); } ); width = 600; } ); unicode = 179; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tilde.case.glyph000066400000000000000000000007271472355150100307320ustar00rootroot00000000000000{ glyphname = tilde.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = tildecomb.case; } ); visible = 1; width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tilde.glyph000066400000000000000000000006251472355150100300150ustar00rootroot00000000000000{ glyphname = tilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 732; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tildecomb.case.glyph000066400000000000000000000031501472355150100315640ustar00rootroot00000000000000{ glyphname = tildecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-194,945); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-87,815,o), (-50,849,o), (-41,905,cs), (-35,940,l), (-75,940,l), (-81,905,ls), (-86,874,o), (-106,854,o), (-134,854,cs), (-183,854,o), (-189,945,o), (-264,945,cs), (-320,945,o), (-360,911,o), (-369,855,cs), (-374,820,l), (-334,820,l), (-329,855,ls), (-324,886,o), (-302,906,o), (-271,906,cs), (-222,906,o), (-215,815,o), (-140,815,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-194,945); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-91,815,o), (-49,850,o), (-40,910,cs), (-35,940,l), (-100,940,l), (-105,910,ls), (-109,886,o), (-122,875,o), (-140,875,cs), (-185,875,o), (-184,945,o), (-264,945,cs), (-318,945,o), (-360,910,o), (-369,850,cs), (-374,820,l), (-309,820,l), (-304,850,ls), (-301,874,o), (-287,885,o), (-269,885,cs), (-224,885,o), (-225,815,o), (-145,815,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-192,960); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-81,800,o), (-29,851,o), (-18,920,cs), (-13,955,l), (-98,955,l), (-102,928,ls), (-105,911,o), (-118,900,o), (-136,900,cs), (-176,900,o), (-177,960,o), (-262,960,cs), (-328,960,o), (-380,909,o), (-391,840,cs), (-397,805,l), (-312,805,l), (-308,827,ls), (-305,847,o), (-291,860,o), (-273,860,cs), (-233,860,o), (-232,800,o), (-147,800,cs) ); } ); width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tildecomb.glyph000066400000000000000000000031711472355150100306550ustar00rootroot00000000000000{ glyphname = tildecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-220,780); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-113,650,o), (-76,684,o), (-67,740,cs), (-61,775,l), (-101,775,l), (-107,740,ls), (-112,709,o), (-132,689,o), (-160,689,cs), (-209,689,o), (-215,780,o), (-290,780,cs), (-346,780,o), (-386,746,o), (-395,690,cs), (-400,655,l), (-360,655,l), (-355,690,ls), (-350,721,o), (-328,741,o), (-297,741,cs), (-248,741,o), (-241,650,o), (-166,650,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-221,780); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-117,650,o), (-76,685,o), (-66,745,cs), (-61,775,l), (-126,775,l), (-131,745,ls), (-135,721,o), (-149,710,o), (-167,710,cs), (-212,710,o), (-210,780,o), (-290,780,cs), (-344,780,o), (-386,745,o), (-396,685,cs), (-400,655,l), (-335,655,l), (-331,685,ls), (-327,709,o), (-313,720,o), (-295,720,cs), (-250,720,o), (-251,650,o), (-171,650,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-218,795); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-107,635,o), (-55,686,o), (-44,755,cs), (-39,790,l), (-124,790,l), (-128,763,ls), (-131,746,o), (-145,735,o), (-163,735,cs), (-203,735,o), (-203,795,o), (-288,795,cs), (-354,795,o), (-406,744,o), (-417,675,cs), (-423,640,l), (-338,640,l), (-334,662,ls), (-331,682,o), (-317,695,o), (-299,695,cs), (-259,695,o), (-258,635,o), (-173,635,cs) ); } ); width = 0; } ); unicode = 771; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tonos.case.glyph000066400000000000000000000010171472355150100307640ustar00rootroot00000000000000{ glyphname = tonos.case; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (339,568,l), (426,728,l), (372,728,l), (291,568,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (357,570,l), (447,730,l), (353,730,l), (271,570,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,570,l), (467,730,l), (335,730,l), (251,570,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tonos.glyph000066400000000000000000000012541472355150100300550ustar00rootroot00000000000000{ glyphname = tonos; layers = ( { anchors = ( { name = _top; pos = (303,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (345,645,l), (479,785,l), (420,785,l), (292,645,l) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (313,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (362,645,l), (495,785,l), (398,785,l), (270,645,l) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (313,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (389,645,l), (528,785,l), (367,785,l), (240,645,l) ); } ); width = 600; } ); unicode = 900; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/trademark.glyph000066400000000000000000000037261472355150100306730ustar00rootroot00000000000000{ glyphname = trademark; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (195,370,l), (241,665,l), (341,665,l), (352,730,l), (87,730,l), (76,665,l), (171,665,l), (125,370,l) ); }, { closed = 1; nodes = ( (384,370,l), (409,531,ls), (415,571,o), (420,648,o), (421,695,c), (423,670,o), (427,624,o), (432,590,cs), (444,517,l), (504,517,l), (536,590,ls), (551,624,o), (571,673,o), (581,700,c), (566,646,o), (545,562,o), (539,525,cs), (515,370,l), (580,370,l), (637,730,l), (552,730,l), (507,628,ls), (499,608,o), (487,576,o), (481,557,c), (480,576,o), (478,608,o), (475,628,cs), (463,730,l), (376,730,l), (319,370,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (190,370,l), (239,680,l), (339,680,l), (347,730,l), (87,730,l), (79,680,l), (179,680,l), (130,370,l) ); }, { closed = 1; nodes = ( (380,370,l), (415,591,ls), (420,628,o), (423,675,o), (424,700,c), (428,673,o), (432,633,o), (434,621,cs), (451,517,l), (502,517,l), (548,620,ls), (554,632,o), (572,673,o), (584,700,c), (577,675,o), (565,628,o), (560,591,cs), (525,370,l), (580,370,l), (637,730,l), (559,730,l), (509,628,ls), (499,609,o), (489,576,o), (484,557,c), (484,576,o), (483,609,o), (479,628,cs), (462,730,l), (382,730,l), (325,370,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (178,370,l), (230,699,l), (335,699,l), (340,730,l), (94,730,l), (89,699,l), (194,699,l), (142,370,l) ); }, { closed = 1; nodes = ( (365,370,l), (401,601,ls), (405,627,o), (411,678,o), (414,710,c), (420,686,o), (428,646,o), (433,621,cs), (455,528,l), (497,528,l), (544,620,ls), (557,644,o), (578,685,o), (591,710,c), (584,678,o), (574,627,o), (570,601,cs), (534,370,l), (570,370,l), (627,730,l), (574,730,l), (518,628,ls), (507,608,o), (489,570,o), (480,548,c), (475,570,o), (468,608,o), (463,628,cs), (440,730,l), (386,730,l), (329,370,l) ); } ); width = 600; } ); unicode = 8482; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tripleprime.glyph000066400000000000000000000011371472355150100312470ustar00rootroot00000000000000{ glyphname = tripleprime; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (195,0); ref = minute; }, { pos = (-140,0); ref = minute; }, { pos = (27,0); ref = minute; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (215,0); ref = minute; }, { pos = (-145,0); ref = minute; }, { pos = (35,0); ref = minute; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (225,0); ref = minute; }, { pos = (-155,0); ref = minute; }, { pos = (35,0); ref = minute; } ); width = 600; } ); unicode = 8244; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tripletilde.glyph000066400000000000000000000031071472355150100312330ustar00rootroot00000000000000{ glyphname = tripletilde; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (554,490,l), (561,535,l), (121,535,l), (114,490,l) ); }, { closed = 1; nodes = ( (496,125,l), (503,170,l), (63,170,l), (56,125,l) ); }, { closed = 1; nodes = ( (525,309,l), (532,354,l), (92,354,l), (85,309,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-30,-190); ref = _similiar_tilda; }, { alignment = -1; pos = (30,190); ref = _similiar_tilda; }, { alignment = -1; ref = _similiar_tilda; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (552,480,l), (563,550,l), (123,550,l), (112,480,l) ); }, { closed = 1; nodes = ( (493,110,l), (505,180,l), (65,180,l), (53,110,l) ); }, { closed = 1; nodes = ( (523,295,l), (534,365,l), (94,365,l), (83,295,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-34,-215); ref = _similiar_tilda; }, { alignment = -1; pos = (34,215); ref = _similiar_tilda; }, { alignment = -1; ref = _similiar_tilda; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (550,470,l), (566,570,l), (126,570,l), (110,470,l) ); }, { closed = 1; nodes = ( (490,90,l), (506,190,l), (66,190,l), (50,90,l) ); }, { closed = 1; nodes = ( (520,280,l), (536,380,l), (96,380,l), (80,280,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-41,-260); ref = _similiar_tilda; }, { alignment = -1; pos = (42,260); ref = _similiar_tilda; }, { alignment = -1; ref = _similiar_tilda; } ); width = 600; } ); unicode = 8779; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tse-cy.glyph000066400000000000000000000015041472355150100301150ustar00rootroot00000000000000{ glyphname = "tse-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (512,-140,l), (556,140,l), (481,140,l), (546,550,l), (396,550,l), (331,140,l), (194,140,l), (259,550,l), (109,550,l), (22,0,l), (394,0,l), (372,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (534,80,l), (459,80,l), (533,550,l), (443,550,l), (369,80,l), (153,80,l), (227,550,l), (137,550,l), (50,0,l), (441,0,l), (419,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,-140,l), (513,45,l), (436,45,l), (516,550,l), (466,550,l), (386,45,l), (123,45,l), (203,550,l), (153,550,l), (66,0,l), (456,0,l), (434,-140,l) ); } ); width = 600; } ); unicode = 1094; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tshe-cy.glyph000066400000000000000000000030021472355150100302600ustar00rootroot00000000000000{ glyphname = "tshe-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (159,586,l), (66,0,l), (116,0,l), (164,300,ls), (179,397,o), (243,457,o), (331,457,cs), (417,457,o), (461,399,o), (446,300,cs), (398,0,l), (448,0,l), (497,307,ls), (515,425,o), (456,500,o), (348,500,cs), (275,500,o), (216,466,o), (185,410,c), (181,410,l), (194,490,l), (209,586,l), (388,586,l), (395,631,l), (216,631,l), (232,730,l), (182,730,l), (166,631,l), (65,631,l), (58,586,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,570,l), (48,0,l), (138,0,l), (184,290,ls), (197,375,o), (251,424,o), (326,424,cs), (398,424,o), (436,378,o), (424,300,cs), (376,0,l), (466,0,l), (515,310,ls), (534,427,o), (474,500,o), (364,500,cs), (280,500,o), (221,458,o), (200,385,c), (199,385,l), (216,490,l), (228,570,l), (396,570,l), (408,645,l), (240,645,l), (254,730,l), (164,730,l), (150,645,l), (58,645,l), (46,570,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (110,555,l), (22,0,l), (172,0,l), (216,280,ls), (225,337,o), (262,370,o), (315,370,cs), (369,370,o), (395,337,o), (386,280,cs), (342,0,l), (492,0,l), (539,295,ls), (558,419,o), (501,500,o), (394,500,cs), (315,500,o), (255,457,o), (231,385,c), (228,385,l), (250,490,l), (260,555,l), (404,555,l), (418,645,l), (274,645,l), (288,730,l), (138,730,l), (124,645,l), (58,645,l), (44,555,l) ); } ); width = 600; } ); unicode = 1115; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/tugrik.glyph000066400000000000000000000024171472355150100302220ustar00rootroot00000000000000{ glyphname = tugrik; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (326,0,l), (353,173,l), (520,215,l), (538,330,l), (372,288,l), (383,358,l), (549,400,l), (568,515,l), (401,473,l), (419,590,l), (614,590,l), (637,730,l), (107,730,l), (84,590,l), (279,590,l), (255,437,l), (89,395,l), (70,280,l), (237,322,l), (226,252,l), (59,210,l), (41,95,l), (208,137,l), (186,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,0,l), (333,207,l), (516,255,l), (528,330,l), (345,282,l), (361,382,l), (544,430,l), (556,505,l), (372,457,l), (403,651,l), (614,651,l), (627,730,l), (117,730,l), (104,651,l), (315,651,l), (281,433,l), (97,385,l), (85,310,l), (269,358,l), (253,258,l), (69,210,l), (57,135,l), (241,183,l), (212,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (282,0,l), (320,237,l), (503,287,l), (509,329,l), (326,279,l), (345,396,l), (528,446,l), (534,488,l), (351,438,l), (390,685,l), (604,685,l), (612,730,l), (132,730,l), (124,685,l), (340,685,l), (299,423,l), (116,373,l), (110,331,l), (293,381,l), (274,264,l), (91,214,l), (84,172,l), (267,222,l), (232,0,l) ); } ); width = 600; } ); unicode = 8366; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/two.glyph000066400000000000000000000025021472355150100275210ustar00rootroot00000000000000{ glyphname = two; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (498,0,l), (519,135,l), (237,135,l), (418,286,ls), (515,367,o), (559,438,o), (573,521,cs), (594,656,o), (513,740,o), (370,740,cs), (220,740,o), (109,648,o), (86,505,c), (236,505,l), (246,568,o), (288,605,o), (346,605,cs), (402,605,o), (430,570,o), (420,507,cs), (414,465,o), (388,426,o), (345,389,cs), (47,132,l), (26,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (482,0,l), (495,82,l), (166,82,l), (392,288,ls), (498,385,o), (543,458,o), (554,528,cs), (574,658,o), (502,740,o), (367,740,cs), (235,740,o), (136,657,o), (111,525,c), (201,525,l), (214,608,o), (274,660,o), (355,660,cs), (435,660,o), (476,609,o), (464,529,cs), (455,473,o), (416,418,o), (335,343,cs), (62,89,l), (48,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (119,45,l), (361,258,ls), (477,360,o), (537,449,o), (551,539,cs), (571,662,o), (500,740,o), (370,740,cs), (241,740,o), (145,660,o), (125,535,c), (175,535,l), (190,634,o), (263,696,o), (363,696,cs), (463,696,o), (516,634,o), (501,536,cs), (488,457,o), (435,382,o), (330,289,cs), (60,50,l), (52,0,l) ); } ); width = 600; } ); unicode = 50; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/twoT_urned.glyph000066400000000000000000000007451472355150100310510ustar00rootroot00000000000000{ glyphname = twoTurned; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = two; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = two; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = two; } ); width = 600; } ); unicode = 8586; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/twoinferior.glyph000066400000000000000000000007251472355150100312640ustar00rootroot00000000000000{ glyphname = twoinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-515); ref = twosuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-515); ref = twosuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-515); ref = twosuperior; } ); width = 600; } ); unicode = 8322; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/twosuperior.glyph000066400000000000000000000025441472355150100313200ustar00rootroot00000000000000{ glyphname = twosuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (488,405,l), (501,488,l), (300,488,l), (418,553,ls), (482,588,o), (519,635,o), (528,695,cs), (542,783,o), (488,840,o), (391,840,cs), (294,840,o), (222,783,o), (208,694,c), (303,694,l), (309,733,o), (339,758,o), (378,758,cs), (417,758,o), (439,733,o), (433,694,cs), (428,665,o), (408,635,o), (381,619,cs), (189,502,l), (173,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (475,405,l), (485,469,l), (268,469,l), (411,561,ls), (466,597,o), (503,651,o), (511,698,cs), (524,785,o), (477,840,o), (387,840,cs), (301,840,o), (235,784,o), (217,696,c), (287,696,l), (295,746,o), (330,777,o), (377,777,cs), (424,777,o), (449,746,o), (441,696,cs), (436,666,o), (413,634,o), (381,613,cs), (200,492,l), (186,405,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (470,405,l), (476,445,l), (247,445,l), (386,541,ls), (450,585,o), (495,648,o), (504,704,cs), (517,788,o), (472,840,o), (387,840,cs), (302,840,o), (240,785,o), (227,698,c), (272,698,l), (282,761,o), (324,800,o), (381,800,cs), (438,800,o), (468,762,o), (458,701,cs), (452,660,o), (416,611,o), (366,575,cs), (198,456,l), (190,405,l) ); } ); width = 600; } ); unicode = 178; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/u-cy.glyph000066400000000000000000000006021472355150100275640ustar00rootroot00000000000000{ glyphname = "u-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = y; } ); width = 600; } ); unicode = 1091; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/u.glyph000066400000000000000000000031651472355150100271620ustar00rootroot00000000000000{ glyphname = u; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (459,68,o), (479,194,cs), (535,550,l), (485,550,l), (429,194,ls), (413,94,o), (350,35,o), (261,35,cs), (173,35,o), (129,94,o), (145,194,cs), (201,550,l), (151,550,l), (95,194,ls), (75,67,o), (134,-10,o), (253,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-10,o), (504,74,o), (526,214,cs), (579,550,l), (429,550,l), (376,215,ls), (366,153,o), (330,120,o), (275,120,cs), (219,120,o), (194,153,o), (204,215,cs), (257,550,l), (107,550,l), (54,214,ls), (32,75,o), (106,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (463,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (380,-10,o), (478,71,o), (498,200,cs), (553,550,l), (463,550,l), (408,200,ls), (395,117,o), (341,69,o), (266,69,cs), (192,69,o), (155,117,o), (168,200,cs), (223,550,l), (133,550,l), (78,200,ls), (58,71,o), (126,-10,o), (253,-10,cs) ); } ); width = 600; } ); unicode = 117; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/u.ss04.glyph000066400000000000000000000034011472355150100277430ustar00rootroot00000000000000{ export = 0; glyphname = u.ss04; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (414,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (483,550,l), (426,190,ls), (411,93,o), (346,33,o), (258,33,cs), (172,33,o), (128,91,o), (144,190,cs), (201,550,l), (151,550,l), (93,183,ls), (74,65,o), (133,-10,o), (241,-10,cs), (339,-10,o), (411,51,o), (426,146,c), (388,95,l), (411,95,l), (396,0,l), (446,0,l), (533,550,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (391,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (427,550,l), (373,210,ls), (364,153,o), (327,120,o), (274,120,cs), (221,120,o), (194,153,o), (203,210,cs), (257,550,l), (107,550,l), (51,195,ls), (31,71,o), (88,-10,o), (195,-10,cs), (286,-10,o), (353,49,o), (367,140,c), (318,105,l), (362,105,l), (345,0,l), (490,0,l), (577,550,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (463,550); }, { name = ogonek; pos = (417,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (461,550,l), (406,200,ls), (392,115,o), (339,68,o), (264,68,cs), (192,68,o), (154,112,o), (166,190,cs), (223,550,l), (133,550,l), (75,180,ls), (56,63,o), (115,-10,o), (225,-10,cs), (317,-10,o), (380,40,o), (394,126,c), (372,105,l), (391,105,l), (374,0,l), (464,0,l), (551,550,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uacute.glyph000066400000000000000000000007001472355150100301740ustar00rootroot00000000000000{ glyphname = uacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 250; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uacute.ss04.glyph000066400000000000000000000007211472355150100307670ustar00rootroot00000000000000{ export = 0; glyphname = uacute.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u.ss04; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u.ss04; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u.ss04; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ubreve.glyph000066400000000000000000000007601472355150100302040ustar00rootroot00000000000000{ glyphname = ubreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = brevecomb; } ); width = 600; } ); unicode = 365; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ubreve.ss04.glyph000066400000000000000000000010011472355150100307610ustar00rootroot00000000000000{ export = 0; glyphname = ubreve.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = brevecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = brevecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = brevecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ucircumflex.glyph000066400000000000000000000007241472355150100312420ustar00rootroot00000000000000{ glyphname = ucircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 251; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ucircumflex.ss04.glyph000066400000000000000000000010251472355150100320250ustar00rootroot00000000000000{ export = 0; glyphname = ucircumflex.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = circumflexcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = circumflexcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = circumflexcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/udieresis.glyph000066400000000000000000000007141472355150100307070ustar00rootroot00000000000000{ glyphname = udieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 252; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/udieresis.ss04.glyph000066400000000000000000000010151472355150100314720ustar00rootroot00000000000000{ export = 0; glyphname = udieresis.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/udotbelow.glyph000066400000000000000000000007751472355150100307260ustar00rootroot00000000000000{ glyphname = udotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7909; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/udotbelow.ss04.glyph000066400000000000000000000010151472355150100315020ustar00rootroot00000000000000{ export = 0; glyphname = udotbelow.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dotbelowcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dotbelowcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dotbelowcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ugrave.glyph000066400000000000000000000007001472355150100301770ustar00rootroot00000000000000{ glyphname = ugrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 249; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ugrave.ss04.glyph000066400000000000000000000010011472355150100307620ustar00rootroot00000000000000{ export = 0; glyphname = ugrave.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (590,0); ref = gravecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (590,0); ref = gravecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (590,0); ref = gravecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhookabove.glyph000066400000000000000000000007211472355150100310530ustar00rootroot00000000000000{ glyphname = uhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7911; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhookabove.ss04.glyph000066400000000000000000000010211472355150100316350ustar00rootroot00000000000000{ export = 0; glyphname = uhookabove.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = hookabovecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = hookabovecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = hookabovecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorn.glyph000066400000000000000000000032311472355150100300430ustar00rootroot00000000000000{ glyphname = uhorn; layers = ( { anchors = ( { name = bottom; pos = (236,0); }, { name = top; pos = (323,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (31,72,o), (99,-10,o), (234,-10,cs), (369,-10,o), (463,72,o), (485,209,cs), (523,450,l), (610,450,o), (671,504,o), (684,585,cs), (696,660,l), (576,660,l), (564,585,ls), (560,563,o), (545,550,o), (523,550,cs), (389,550,l), (335,206,ls), (326,150,o), (298,120,o), (255,120,cs), (212,120,o), (194,150,o), (203,206,cs), (257,550,l), (107,550,l), (53,209,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (57,71,o), (126,-10,o), (253,-10,cs), (380,-10,o), (477,71,o), (498,200,cs), (543,485,l), (606,485,o), (639,523,o), (648,580,cs), (661,660,l), (586,660,l), (574,585,ls), (570,562,o), (556,550,o), (533,550,cs), (463,550,l), (408,200,ls), (395,117,o), (341,69,o), (266,69,cs), (192,69,o), (155,117,o), (168,200,cs), (223,550,l), (133,550,l), (78,200,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (75,67,o), (134,-10,o), (253,-10,cs), (373,-10,o), (459,68,o), (479,194,cs), (530,515,l), (580,515,o), (619,549,o), (627,600,cs), (637,660,l), (597,660,l), (587,600,ls), (582,570,o), (561,550,o), (534,550,cs), (485,550,l), (429,194,ls), (413,94,o), (350,35,o), (261,35,cs), (173,35,o), (129,94,o), (145,194,cs), (201,550,l), (151,550,l), (95,194,ls) ); } ); width = 600; } ); unicode = 432; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorn.ss04.glyph000066400000000000000000000041551472355150100306410ustar00rootroot00000000000000{ export = 0; glyphname = uhorn.ss04; layers = ( { anchors = ( { name = bottom; pos = (236,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (301,0); }, { name = top; pos = (323,550); }, { name = topright; pos = (623,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (255,-10,o), (315,48,o), (329,140,c), (280,105,l), (324,105,l), (307,0,l), (452,0,l), (523,450,l), (610,450,o), (671,504,o), (684,585,cs), (696,660,l), (576,660,l), (564,585,ls), (560,563,o), (545,550,o), (523,550,cs), (389,550,l), (335,210,ls), (326,153,o), (297,120,o), (255,120,cs), (213,120,o), (194,153,o), (203,210,cs), (257,550,l), (107,550,l), (51,195,ls), (31,69,o), (79,-10,o), (176,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = horn; pos = (463,550); }, { name = ogonek; pos = (306,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (317,-10,o), (380,40,o), (394,126,c), (372,105,l), (391,105,l), (374,0,l), (464,0,l), (541,485,l), (604,485,o), (639,523,o), (648,580,cs), (661,660,l), (586,660,l), (574,585,ls), (570,562,o), (556,550,o), (533,550,cs), (461,550,l), (406,200,ls), (392,115,o), (339,68,o), (264,68,cs), (192,68,o), (154,112,o), (166,190,cs), (223,550,l), (133,550,l), (75,180,ls), (56,63,o), (115,-10,o), (225,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (311,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (339,-10,o), (411,51,o), (426,146,c), (388,95,l), (411,95,l), (396,0,l), (446,0,l), (528,515,l), (578,515,o), (619,549,o), (627,600,cs), (637,660,l), (597,660,l), (587,600,ls), (582,570,o), (561,550,o), (534,550,cs), (483,550,l), (426,190,ls), (411,93,o), (346,33,o), (258,33,cs), (172,33,o), (128,91,o), (144,190,cs), (201,550,l), (151,550,l), (93,183,ls), (74,65,o), (133,-10,o), (241,-10,cs) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhornacute.glyph000066400000000000000000000010011472355150100310560ustar00rootroot00000000000000{ glyphname = uhornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (592,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 7913; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhornacute.ss04.glyph000066400000000000000000000010211472355150100316500ustar00rootroot00000000000000{ export = 0; glyphname = uhornacute.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (592,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorndotbelow.glyph000066400000000000000000000010151472355150100316010ustar00rootroot00000000000000{ glyphname = uhorndotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (579,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7921; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorndotbelow.ss04.glyph000066400000000000000000000010351472355150100323730ustar00rootroot00000000000000{ export = 0; glyphname = uhorndotbelow.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (579,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorngrave.glyph000066400000000000000000000010011472355150100310610ustar00rootroot00000000000000{ glyphname = uhorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (566,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (588,0); ref = gravecomb; } ); width = 600; } ); unicode = 7915; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorngrave.ss04.glyph000066400000000000000000000010211472355150100316530ustar00rootroot00000000000000{ export = 0; glyphname = uhorngrave.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (566,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (588,0); ref = gravecomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhornhookabove.glyph000066400000000000000000000007411472355150100317440ustar00rootroot00000000000000{ glyphname = uhornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = uhorn; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = uhorn; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = uhorn; }, { pos = (580,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7917; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhornhookabove.ss04.glyph000066400000000000000000000007611472355150100325360ustar00rootroot00000000000000{ export = 0; glyphname = uhornhookabove.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = uhorn.ss04; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = uhorn.ss04; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = uhorn.ss04; }, { pos = (580,0); ref = hookabovecomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorntilde.glyph000066400000000000000000000010011472355150100310560ustar00rootroot00000000000000{ glyphname = uhorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (580,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 7919; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhorntilde.ss04.glyph000066400000000000000000000010211472355150100316500ustar00rootroot00000000000000{ export = 0; glyphname = uhorntilde.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (580,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhungarumlaut.glyph000066400000000000000000000007341472355150100316160ustar00rootroot00000000000000{ glyphname = uhungarumlaut; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; } ); unicode = 369; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uhungarumlaut.ss04.glyph000066400000000000000000000010351472355150100324010ustar00rootroot00000000000000{ export = 0; glyphname = uhungarumlaut.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/umacron.glyph000066400000000000000000000007041472355150100303560ustar00rootroot00000000000000{ glyphname = umacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 363; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/umacron.ss04.glyph000066400000000000000000000010051472355150100311410ustar00rootroot00000000000000{ export = 0; glyphname = umacron.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = macroncomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = macroncomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = macroncomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/underscore.glyph000066400000000000000000000010321472355150100310560ustar00rootroot00000000000000{ glyphname = underscore; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (470,-165,l), (492,-25,l), (12,-25,l), (-10,-165,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (12,-25,l), (0,-100,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,-70,l), (492,-25,l), (12,-25,l), (5,-70,l) ); } ); width = 600; } ); unicode = 95; } underscore_bar_underscore.liga.glyph000066400000000000000000000013331472355150100347730ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = underscore_bar_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (320,-165,l), (342,-25,l), (-273,-25,l), (-150,750,l), (-300,750,l), (-423,-25,l), (-1038,-25,l), (-1060,-165,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (330,-100,l), (342,-25,l), (-303,-25,l), (-180,750,l), (-270,750,l), (-393,-25,l), (-1038,-25,l), (-1050,-100,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (335,-70,l), (342,-25,l), (-323,-25,l), (-200,750,l), (-250,750,l), (-373,-25,l), (-1038,-25,l), (-1045,-70,l) ); } ); width = 600; } ); } underscore_underscore.liga.glyph000066400000000000000000000010511472355150100341440ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = underscore_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (470,-165,l), (492,-25,l), (-588,-25,l), (-610,-165,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (-588,-25,l), (-600,-100,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,-75,l), (492,-25,l), (-588,-25,l), (-596,-75,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/undertie.glyph000066400000000000000000000024541472355150100305350ustar00rootroot00000000000000{ glyphname = undertie; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (405,-180,ls), (609,-180,o), (714,-194,o), (760,-10,c), (710,-10,l), (674,-154,o), (580,-135,o), (405,-135,cs), (195,-135,ls), (23,-135,o), (-74,-152,o), (-110,-10,c), (-160,-10,l), (-114,-194,o), (-9,-180,o), (195,-180,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-180,ls), (553,-180,o), (620,-113,o), (620,-10,c), (570,-10,l), (570,-86,o), (521,-135,o), (445,-135,cs), (155,-135,ls), (79,-135,o), (30,-86,o), (30,-10,c), (-20,-10,l), (-20,-113,o), (47,-180,o), (150,-180,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-180,ls), (553,-180,o), (620,-113,o), (620,-10,c), (530,-10,l), (530,-64,o), (494,-100,o), (440,-100,cs), (160,-100,ls), (106,-100,o), (70,-64,o), (70,-10,c), (-20,-10,l), (-20,-113,o), (47,-180,o), (150,-180,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-180,ls), (553,-180,o), (620,-113,o), (620,-10,c), (470,-10,l), (470,-46,o), (451,-65,o), (415,-65,cs), (185,-65,ls), (149,-65,o), (130,-46,o), (130,-10,c), (-20,-10,l), (-20,-113,o), (47,-180,o), (150,-180,cs) ); } ); width = 600; } ); unicode = 8255; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uniE_0A_0.glyph000066400000000000000000000030041472355150100303450ustar00rootroot00000000000000{ glyphname = uniE0A0; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (210,-270,l), (210,100,ls), (210,138,o), (229,175,o), (263,200,cs), (418,315,ls), (461,347,o), (490,402,o), (490,451,cs), (490,631,l), (600,631,l), (430,801,l), (260,631,l), (370,631,l), (370,461,ls), (370,436,o), (349,403,o), (316,379,cs), (171,271,ls), (122,235,o), (90,170,o), (90,111,cs), (90,-270,l) ); }, { closed = 1; nodes = ( (210,453,l), (210,970,l), (90,970,l), (90,364,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (210,-270,l), (210,100,ls), (210,138,o), (229,175,o), (263,200,cs), (418,315,ls), (461,347,o), (490,402,o), (490,451,cs), (490,631,l), (600,631,l), (430,801,l), (260,631,l), (370,631,l), (370,461,ls), (370,436,o), (349,403,o), (316,379,cs), (171,271,ls), (122,235,o), (90,170,o), (90,111,cs), (90,-270,l) ); }, { closed = 1; nodes = ( (210,453,l), (210,970,l), (90,970,l), (90,364,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (210,-270,l), (210,100,ls), (210,138,o), (229,175,o), (263,200,cs), (418,315,ls), (461,347,o), (490,402,o), (490,451,cs), (490,631,l), (600,631,l), (430,801,l), (260,631,l), (370,631,l), (370,461,ls), (370,436,o), (349,403,o), (316,379,cs), (171,271,ls), (122,235,o), (90,170,o), (90,111,cs), (90,-270,l) ); }, { closed = 1; nodes = ( (210,453,l), (210,970,l), (90,970,l), (90,364,l) ); } ); width = 600; } ); unicode = 57504; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uniE_0A_1.glyph000066400000000000000000000031771472355150100303610ustar00rootroot00000000000000{ glyphname = uniE0A1; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (240,-190,l), (240,85,ls), (240,127,o), (231,189,o), (224,225,c), (234,225,l), (242,194,o), (259,140,o), (275,103,cs), (403,-190,l), (495,-190,l), (495,300,l), (420,300,l), (420,25,ls), (420,-29,o), (436,-115,o), (435,-115,c), (425,-115,l), (418,-84,o), (403,-30,o), (387,7,cs), (258,300,l), (165,300,l), (165,-190,l) ); }, { closed = 1; nodes = ( (406,400,l), (406,475,l), (185,475,l), (185,890,l), (105,890,l), (105,400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (240,-190,l), (240,85,ls), (240,127,o), (231,189,o), (224,225,c), (234,225,l), (242,194,o), (259,140,o), (275,103,cs), (403,-190,l), (495,-190,l), (495,300,l), (420,300,l), (420,25,ls), (420,-29,o), (436,-115,o), (435,-115,c), (425,-115,l), (418,-84,o), (403,-30,o), (387,7,cs), (258,300,l), (165,300,l), (165,-190,l) ); }, { closed = 1; nodes = ( (406,400,l), (406,475,l), (185,475,l), (185,890,l), (105,890,l), (105,400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (240,-190,l), (240,85,ls), (240,127,o), (231,189,o), (224,225,c), (234,225,l), (242,194,o), (259,140,o), (275,103,cs), (403,-190,l), (495,-190,l), (495,300,l), (420,300,l), (420,25,ls), (420,-29,o), (436,-115,o), (435,-115,c), (425,-115,l), (418,-84,o), (403,-30,o), (387,7,cs), (258,300,l), (165,300,l), (165,-190,l) ); }, { closed = 1; nodes = ( (406,400,l), (406,475,l), (185,475,l), (185,890,l), (105,890,l), (105,400,l) ); } ); width = 600; } ); unicode = 57505; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uniE_0A_2.glyph000066400000000000000000000047011472355150100303540ustar00rootroot00000000000000{ glyphname = uniE0A2; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (490,-80,ls), (523,-80,o), (550,-53,o), (550,-20,cs), (550,414,ls), (550,447,o), (523,474,o), (490,474,cs), (480,474,l), (480,705,ls), (480,804,o), (405,875,o), (300,875,cs), (198,875,o), (120,807,o), (120,705,cs), (120,474,l), (110,474,ls), (77,474,o), (50,447,o), (50,414,cs), (50,-20,ls), (50,-53,o), (77,-80,o), (110,-80,cs) ); }, { closed = 1; nodes = ( (255,210,l), (231,219,o), (200,246,o), (200,291,cs), (200,344,o), (240,380,o), (300,380,cs), (360,380,o), (400,344,o), (400,291,cs), (400,246,o), (368,219,o), (344,210,c), (345,50,l), (255,50,l) ); }, { closed = 1; nodes = ( (200,705,ls), (200,765,o), (240,805,o), (300,805,cs), (360,805,o), (400,765,o), (400,705,cs), (400,475,l), (200,475,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (490,-80,ls), (523,-80,o), (550,-53,o), (550,-20,cs), (550,414,ls), (550,447,o), (523,474,o), (490,474,cs), (480,474,l), (480,705,ls), (480,804,o), (405,875,o), (300,875,cs), (198,875,o), (120,807,o), (120,705,cs), (120,474,l), (110,474,ls), (77,474,o), (50,447,o), (50,414,cs), (50,-20,ls), (50,-53,o), (77,-80,o), (110,-80,cs) ); }, { closed = 1; nodes = ( (255,210,l), (231,219,o), (200,246,o), (200,291,cs), (200,344,o), (240,380,o), (300,380,cs), (360,380,o), (400,344,o), (400,291,cs), (400,246,o), (368,219,o), (344,210,c), (344,50,l), (255,50,l) ); }, { closed = 1; nodes = ( (200,705,ls), (200,765,o), (240,805,o), (300,805,cs), (360,805,o), (400,765,o), (400,705,cs), (400,475,l), (200,475,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (490,-80,ls), (523,-80,o), (550,-53,o), (550,-20,cs), (550,414,ls), (550,447,o), (523,474,o), (490,474,cs), (480,474,l), (480,705,ls), (480,804,o), (405,875,o), (300,875,cs), (198,875,o), (120,807,o), (120,705,cs), (120,474,l), (110,474,ls), (77,474,o), (50,447,o), (50,414,cs), (50,-20,ls), (50,-53,o), (77,-80,o), (110,-80,cs) ); }, { closed = 1; nodes = ( (255,210,l), (231,219,o), (200,246,o), (200,291,cs), (200,344,o), (240,380,o), (300,380,cs), (360,380,o), (400,344,o), (400,291,cs), (400,246,o), (368,219,o), (344,210,c), (344,50,l), (255,50,l) ); }, { closed = 1; nodes = ( (200,705,ls), (200,765,o), (240,805,o), (300,805,cs), (360,805,o), (400,765,o), (400,705,cs), (400,475,l), (200,475,l) ); } ); width = 600; } ); unicode = 57506; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uniE_0B_0.glyph000066400000000000000000000011121472355150100303440ustar00rootroot00000000000000{ glyphname = uniE0B0; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (10,1020,l), (-40,1020,l), (-40,-300,l), (10,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (10,1020,l), (-40,1020,l), (-40,-300,l), (10,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (10,1020,l), (-40,1020,l), (-40,-300,l), (10,-300,l) ); } ); width = 600; } ); unicode = 57520; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uniE_0B_1.glyph000066400000000000000000000011531472355150100303520ustar00rootroot00000000000000{ glyphname = uniE0B1; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (118,-300,l), (600,360,l), (118,1020,l), (6,1020,l), (482,358,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,-300,l), (600,360,l), (118,1020,l), (6,1020,l), (482,358,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (118,-300,l), (600,360,l), (118,1020,l), (6,1020,l), (482,358,l), (0,-300,l) ); } ); width = 600; } ); unicode = 57521; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uniE_0B_2.glyph000066400000000000000000000011121472355150100303460ustar00rootroot00000000000000{ glyphname = uniE0B2; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (640,-300,l), (640,1020,l), (590,1020,l), (0,360,l), (590,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (640,-300,l), (640,1020,l), (590,1020,l), (0,360,l), (590,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (640,-300,l), (640,1020,l), (590,1020,l), (0,360,l), (590,-300,l) ); } ); width = 600; } ); unicode = 57522; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uniE_0B_3.glyph000066400000000000000000000011611472355150100303530ustar00rootroot00000000000000{ glyphname = uniE0B3; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (118,358,l), (594,1020,l), (482,1020,l), (0,360,l), (482,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (118,358,l), (594,1020,l), (482,1020,l), (0,360,l), (482,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (118,358,l), (594,1020,l), (482,1020,l), (0,360,l), (482,-300,l) ); } ); width = 600; } ); unicode = 57523; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/union.glyph000066400000000000000000000021571472355150100300460ustar00rootroot00000000000000{ glyphname = union; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (43,220,ls), (43,77,o), (123,0,o), (271,0,cs), (329,0,ls), (477,0,o), (557,77,o), (557,220,cs), (557,730,l), (467,730,l), (467,220,ls), (467,129,o), (418,80,o), (327,80,cs), (273,80,ls), (182,80,o), (133,129,o), (133,220,cs), (133,730,l), (43,730,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (0,250,ls), (0,88,o), (94,0,o), (268,0,cs), (332,0,ls), (506,0,o), (600,88,o), (600,250,cs), (600,730,l), (450,730,l), (450,250,ls), (450,172,o), (408,130,o), (330,130,cs), (270,130,ls), (192,130,o), (150,172,o), (150,250,cs), (150,730,l), (0,730,l) ); } ); width = 600; } ); unicode = 8746; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/unitS_eparator-control.glyph000066400000000000000000000013161472355150100333670ustar00rootroot00000000000000{ glyphname = "unitSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9247; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/universal.glyph000066400000000000000000000017561472355150100307320ustar00rootroot00000000000000{ glyphname = universal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (352,0,l), (647,730,l), (491,730,l), (426,555,l), (256,555,l), (247,730,l), (97,730,l), (162,0,l) ); }, { closed = 1; nodes = ( (264,435,l), (382,435,l), (320,268,ls), (305,229,o), (287,172,o), (277,140,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (316,0,l), (622,730,l), (527,730,l), (445,528,l), (228,528,l), (210,730,l), (122,730,l), (195,0,l) ); }, { closed = 1; nodes = ( (235,452,l), (414,452,l), (326,234,ls), (298,165,o), (276,100,o), (265,70,c) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (287,0,l), (604,730,l), (552,730,l), (458,510,l), (214,510,l), (190,730,l), (140,730,l), (225,0,l) ); }, { closed = 1; nodes = ( (219,465,l), (439,465,l), (317,180,ls), (292,122,o), (272,68,o), (264,41,c) ); } ); width = 600; } ); unicode = 8704; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uogonek.glyph000066400000000000000000000040711472355150100303620ustar00rootroot00000000000000{ glyphname = uogonek; layers = ( { anchors = ( { name = horn; pos = (453,550); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (371,-195,l), (378,-153,l), (314,-153,ls), (282,-153,o), (266,-134,o), (271,-103,cs), (275,-75,o), (304,-36,o), (348,0,cs), (379,25,l), (432,59,o), (466,116,o), (478,190,cs), (535,550,l), (485,550,l), (428,190,ls), (412,91,o), (353,34,o), (261,34,cs), (169,34,o), (128,91,o), (144,190,cs), (201,550,l), (151,550,l), (94,190,ls), (75,68,o), (136,-10,o), (254,-10,cs), (270,-10,o), (287,-9,o), (301,-6,c), (252,-47,o), (227,-83,o), (222,-115,cs), (214,-165,o), (243,-195,o), (298,-195,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (463,550); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (374,-203,l), (383,-143,l), (323,-143,ls), (289,-143,o), (272,-122,o), (276,-93,cs), (281,-65,o), (304,-36,o), (355,1,cs), (382,21,l), (445,55,o), (485,117,o), (498,200,cs), (553,550,l), (463,550,l), (408,200,ls), (394,115,o), (345,70,o), (267,70,cs), (189,70,o), (154,115,o), (168,200,cs), (223,550,l), (133,550,l), (78,200,ls), (57,69,o), (123,-10,o), (254,-10,cs), (257,-10,o), (260,-10,o), (263,-10,c), (211,-51,o), (193,-81,o), (189,-110,cs), (180,-164,o), (222,-203,o), (296,-203,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (453,550); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (387,-225,l), (404,-120,l), (335,-120,ls), (306,-120,o), (292,-103,o), (295,-83,cs), (298,-66,o), (316,-41,o), (346,-18,cs), (410,31,l), (470,70,o), (513,135,o), (525,210,cs), (579,550,l), (429,550,l), (375,210,ls), (366,152,o), (333,120,o), (275,120,cs), (217,120,o), (194,152,o), (203,210,cs), (257,550,l), (107,550,l), (53,210,ls), (32,78,o), (107,-10,o), (254,-10,cs), (275,-10,o), (321,12,o), (324,31,c), (224,-19,o), (173,-68,o), (166,-115,cs), (155,-180,o), (198,-225,o), (279,-225,cs) ); } ); width = 600; } ); unicode = 371; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uogonek.ss04.glyph000066400000000000000000000021601472355150100311470ustar00rootroot00000000000000{ export = 0; glyphname = uogonek.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (457,-195,l), (463,-153,l), (399,-153,ls), (367,-153,o), (351,-134,o), (356,-103,cs), (361,-75,o), (390,-36,o), (434,0,cs), (446,10,l), (409,10,l), (352,-27,o), (314,-74,o), (307,-115,cs), (300,-165,o), (329,-195,o), (384,-195,c) ); }, { ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (470,-203,l), (480,-143,l), (420,-143,ls), (386,-143,o), (368,-122,o), (373,-93,cs), (377,-65,o), (401,-36,o), (451,1,c), (464,10,l), (389,10,l), (319,-34,o), (291,-72,o), (285,-110,cs), (276,-164,o), (318,-203,o), (392,-203,cs) ); }, { ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (459,-225,l), (476,-120,l), (407,-120,ls), (378,-120,o), (364,-103,o), (367,-83,cs), (369,-66,o), (388,-42,o), (418,-18,cs), (455,11,l), (369,11,l), (296,-19,o), (245,-68,o), (238,-115,cs), (227,-180,o), (270,-225,o), (351,-225,cs) ); }, { ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upA_rrow.glyph000066400000000000000000000023731472355150100305140ustar00rootroot00000000000000{ glyphname = upArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,520,ls), (345,549,o), (342,583,o), (340,600,c), (350,600,l), (356,592,o), (375,572,o), (404,547,cs), (590,389,l), (590,494,l), (301,740,l), (10,493,l), (10,388,l), (195,546,ls), (224,571,o), (244,591,o), (250,600,c), (260,600,l), (258,583,o), (255,549,o), (255,520,cs), (255,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,520,ls), (345,549,o), (342,583,o), (340,600,c), (350,600,l), (356,592,o), (375,572,o), (404,547,cs), (590,389,l), (590,494,l), (301,740,l), (10,493,l), (10,388,l), (195,546,ls), (224,571,o), (244,591,o), (250,600,c), (260,600,l), (258,583,o), (255,549,o), (255,520,cs), (255,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,520,ls), (345,549,o), (342,583,o), (340,600,c), (350,600,l), (356,592,o), (375,572,o), (404,547,cs), (590,389,l), (590,494,l), (301,740,l), (10,493,l), (10,388,l), (195,546,ls), (224,571,o), (244,591,o), (250,600,c), (260,600,l), (258,583,o), (255,549,o), (255,520,cs), (255,0,l) ); } ); width = 600; } ); unicode = 8593; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upB_lackS_mallT_riangle.glyph000066400000000000000000000010021472355150100333770ustar00rootroot00000000000000{ glyphname = upBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); } ); width = 600; } ); unicode = 9652; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upB_lackT_riangle.glyph000066400000000000000000000007671472355150100322700ustar00rootroot00000000000000{ glyphname = upBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); } ); width = 600; } ); unicode = 9650; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upD_oubleA_rrow.glyph000066400000000000000000000016751472355150100320120ustar00rootroot00000000000000{ glyphname = upDoubleArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (415,-180,l), (415,725,l), (610,536,l), (610,601,l), (365,839,l), (365,-180,l) ); }, { closed = 1; nodes = ( (235,-180,l), (235,839,l), (-10,601,l), (-10,536,l), (185,725,l), (185,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (415,-180,l), (415,725,l), (610,536,l), (610,601,l), (365,839,l), (365,-180,l) ); }, { closed = 1; nodes = ( (235,-180,l), (235,839,l), (-10,601,l), (-10,536,l), (185,725,l), (185,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (415,-180,l), (415,725,l), (610,536,l), (610,601,l), (365,839,l), (365,-180,l) ); }, { closed = 1; nodes = ( (235,-180,l), (235,839,l), (-10,601,l), (-10,536,l), (185,725,l), (185,-180,l) ); } ); width = 600; } ); unicode = 8657; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upD_ownA_rrow.glyph000066400000000000000000000037331472355150100315040ustar00rootroot00000000000000{ glyphname = upDownArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,77,l), (590,182,l), (405,24,ls), (376,-1,o), (356,-21,o), (350,-30,c), (340,-30,l), (342,-13,o), (345,21,o), (345,50,cs), (345,680,ls), (345,709,o), (342,743,o), (340,760,c), (350,760,l), (356,752,o), (375,732,o), (404,707,cs), (590,549,l), (590,654,l), (300,900,l), (10,653,l), (10,548,l), (195,706,ls), (224,731,o), (244,751,o), (250,760,c), (260,760,l), (258,743,o), (255,709,o), (255,680,cs), (255,50,ls), (255,21,o), (258,-13,o), (260,-30,c), (250,-30,l), (244,-22,o), (225,-2,o), (196,23,cs), (10,181,l), (10,76,l), (300,-170,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,77,l), (590,182,l), (405,24,ls), (376,-1,o), (356,-21,o), (350,-30,c), (340,-30,l), (342,-13,o), (345,21,o), (345,50,cs), (345,680,ls), (345,709,o), (342,743,o), (340,760,c), (350,760,l), (356,752,o), (375,732,o), (404,707,cs), (590,549,l), (590,654,l), (300,900,l), (10,653,l), (10,548,l), (195,706,ls), (224,731,o), (244,751,o), (250,760,c), (260,760,l), (258,743,o), (255,709,o), (255,680,cs), (255,50,ls), (255,21,o), (258,-13,o), (260,-30,c), (250,-30,l), (244,-22,o), (225,-2,o), (196,23,cs), (10,181,l), (10,76,l), (300,-170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,77,l), (590,182,l), (405,24,ls), (376,-1,o), (356,-21,o), (350,-30,c), (340,-30,l), (342,-13,o), (345,21,o), (345,50,cs), (345,680,ls), (345,709,o), (342,743,o), (340,760,c), (350,760,l), (356,752,o), (375,732,o), (404,707,cs), (590,549,l), (590,654,l), (300,900,l), (10,653,l), (10,548,l), (195,706,ls), (224,731,o), (244,751,o), (250,760,c), (260,760,l), (258,743,o), (255,709,o), (255,680,cs), (255,50,ls), (255,21,o), (258,-13,o), (260,-30,c), (250,-30,l), (244,-22,o), (225,-2,o), (196,23,cs), (10,181,l), (10,76,l), (300,-170,l) ); } ); width = 600; } ); unicode = 8597; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upF_rombarA_rrow.glyph000066400000000000000000000026301472355150100321600ustar00rootroot00000000000000{ glyphname = upFrombarArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (500,0,l), (500,82,l), (345,82,l), (345,350,ls), (345,379,o), (342,413,o), (340,430,c), (350,430,l), (356,422,o), (375,401,o), (404,377,cs), (500,296,l), (500,401,l), (301,570,l), (100,401,l), (100,296,l), (195,376,ls), (224,400,o), (244,421,o), (250,430,c), (260,430,l), (258,413,o), (255,379,o), (255,350,cs), (255,82,l), (100,82,l), (100,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (500,0,l), (500,82,l), (345,82,l), (345,350,ls), (345,379,o), (342,413,o), (340,430,c), (350,430,l), (356,422,o), (375,401,o), (404,377,cs), (500,296,l), (500,401,l), (301,570,l), (100,401,l), (100,296,l), (195,376,ls), (224,400,o), (244,421,o), (250,430,c), (260,430,l), (258,413,o), (255,379,o), (255,350,cs), (255,82,l), (100,82,l), (100,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (500,0,l), (500,82,l), (345,82,l), (345,350,ls), (345,379,o), (342,413,o), (340,430,c), (350,430,l), (356,422,o), (375,401,o), (404,377,cs), (500,296,l), (500,401,l), (301,570,l), (100,401,l), (100,296,l), (195,376,ls), (224,400,o), (244,421,o), (250,430,c), (260,430,l), (258,413,o), (255,379,o), (255,350,cs), (255,82,l), (100,82,l), (100,0,l) ); } ); width = 600; } ); unicode = 8613; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upW_hiteA_rrow.glyph000066400000000000000000000023111472355150100316440ustar00rootroot00000000000000{ glyphname = upWhiteArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,755,l), (15,434,l), (143,434,l), (143,31,ls), (143,14,o), (157,0,o), (174,0,cs), (424,0,ls), (441,0,o), (455,14,o), (455,31,cs), (455,434,l), (585,434,l) ); }, { closed = 1; nodes = ( (410,468,l), (410,40,l), (188,40,l), (188,468,l), (104,468,l), (300,695,l), (496,468,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,755,l), (15,429,l), (143,429,l), (143,31,ls), (143,14,o), (157,0,o), (174,0,cs), (424,0,ls), (441,0,o), (455,14,o), (455,31,cs), (455,429,l), (585,429,l) ); }, { closed = 1; nodes = ( (400,473,l), (400,50,l), (198,50,l), (198,473,l), (124,473,l), (300,680,l), (476,473,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,755,l), (15,424,l), (143,424,l), (143,31,ls), (143,14,o), (157,0,o), (174,0,cs), (424,-1,ls), (441,-1,o), (455,14,o), (455,31,cs), (455,424,l), (585,424,l) ); }, { closed = 1; nodes = ( (384,485,l), (384,64,l), (213,65,l), (213,485,l), (160,485,l), (300,653,l), (440,485,l) ); } ); width = 600; } ); unicode = 8679; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upW_hiteS_mallT_riangle.glyph000066400000000000000000000013161472355150100334530ustar00rootroot00000000000000{ glyphname = upWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); }, { closed = 1; nodes = ( (300,428,l), (386,250,l), (214,250,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); }, { closed = 1; nodes = ( (300,428,l), (386,250,l), (214,250,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); }, { closed = 1; nodes = ( (300,428,l), (386,250,l), (214,250,l) ); } ); width = 600; } ); unicode = 9653; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upW_hiteT_riangle.glyph000066400000000000000000000013001472355150100323140ustar00rootroot00000000000000{ glyphname = upWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); }, { closed = 1; nodes = ( (300,557,l), (527,110,l), (73,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); }, { closed = 1; nodes = ( (300,557,l), (527,110,l), (73,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); }, { closed = 1; nodes = ( (300,557,l), (527,110,l), (73,110,l) ); } ); width = 600; } ); unicode = 9651; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upperH_alfB_lock.glyph000066400000000000000000000010351472355150100321070ustar00rootroot00000000000000{ glyphname = upperHalfBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; } ); unicode = 9600; } upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glyph000066400000000000000000000012121472355150100400400ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = upperLeftAndLowerLeftAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9625; } upperL_eftA_ndL_owerR_ightB_lock.glyph000066400000000000000000000014431472355150100351420ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = upperLeftAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); }, { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); }, { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); }, { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9626; } upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glyph000066400000000000000000000012121472355150100400430ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = upperLeftAndUpperRightAndLowerLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (600,360,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (600,360,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (600,360,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9627; } upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glyph000066400000000000000000000012271472355150100402340ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = upperLeftAndUpperRightAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (-10,1020,l), (-10,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (-10,1020,l), (-10,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (-10,1020,l), (-10,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9628; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upperL_eftB_lock.glyph000066400000000000000000000010351472355150100321270ustar00rootroot00000000000000{ glyphname = upperLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; } ); unicode = 9624; } upperL_eftD_iagonalH_alfB_lackS_quare.glyph000066400000000000000000000013541472355150100361060ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = upperLeftDiagonalHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; } ); unicode = 9705; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upperL_eftW_hiteC_ircle.glyph000066400000000000000000000024241472355150100334410ustar00rootroot00000000000000{ glyphname = upperLeftWhiteCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (40,508,o), (152,620,o), (300,620,c), (300,513,o), (300,410,o), (300,360,c), (232,360,o), (181,360,o), (40,360,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (40,508,o), (152,620,o), (300,620,c), (300,513,o), (300,410,o), (300,360,c), (232,360,o), (181,360,o), (40,360,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (40,508,o), (152,620,o), (300,620,c), (300,513,o), (300,410,o), (300,360,c), (232,360,o), (181,360,o), (40,360,c) ); } ); width = 600; } ); unicode = 9685; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upperO_neE_ighthB_lock.glyph000066400000000000000000000010421472355150100332440ustar00rootroot00000000000000{ glyphname = upperOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,855,l), (600,1020,l), (0,1020,l), (0,855,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,855,l), (600,1020,l), (0,1020,l), (0,855,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,855,l), (600,1020,l), (0,1020,l), (0,855,l) ); } ); width = 600; } ); unicode = 9620; } upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glyph000066400000000000000000000012131472355150100402240ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = upperRightAndLowerLeftAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9631; } upperR_ightA_ndL_owerL_eftB_lock.glyph000066400000000000000000000014431472355150100351420ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = upperRightAndLowerLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9630; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upperR_ightB_lackC_ircle.glyph000066400000000000000000000030021472355150100335510ustar00rootroot00000000000000{ glyphname = upperRightBlackCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,c), (300,557,o), (300,400,o), (300,360,c), (348,360,o), (470,360,o), (560,360,c), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,c), (300,557,o), (300,400,o), (300,360,c), (348,360,o), (470,360,o), (560,360,c), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,c), (300,557,o), (300,400,o), (300,360,c), (348,360,o), (470,360,o), (560,360,c), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; } ); unicode = 9684; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upperR_ightB_lock.glyph000066400000000000000000000010521472355150100323110ustar00rootroot00000000000000{ glyphname = upperRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); } ); width = 600; } ); unicode = 9629; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uprightdiagonalellipsis.glyph000066400000000000000000000036751472355150100336520ustar00rootroot00000000000000{ glyphname = uprightdiagonalellipsis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (587,527,o), (610,550,o), (610,585,cs), (610,620,o), (587,643,o), (552,643,cs), (516,643,o), (493,620,o), (493,585,cs), (493,550,o), (516,527,o), (552,527,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (84,25,o), (107,48,o), (107,83,cs), (107,118,o), (84,141,o), (49,141,cs), (13,141,o), (-10,118,o), (-10,83,cs), (-10,48,o), (13,25,o), (49,25,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (582,503,o), (610,531,o), (610,573,cs), (610,615,o), (582,643,o), (540,643,cs), (497,643,o), (469,615,o), (469,573,cs), (469,531,o), (497,503,o), (540,503,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (103,25,o), (131,53,o), (131,95,cs), (131,137,o), (103,165,o), (61,165,cs), (18,165,o), (-10,137,o), (-10,95,cs), (-10,53,o), (18,25,o), (61,25,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (576,479,o), (610,512,o), (610,560,cs), (610,608,o), (576,641,o), (528,641,cs), (480,641,o), (446,608,o), (446,560,cs), (446,512,o), (480,479,o), (528,479,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (120,27,o), (154,60,o), (154,108,cs), (154,156,o), (120,189,o), (72,189,cs), (24,189,o), (-10,156,o), (-10,108,cs), (-10,60,o), (24,27,o), (72,27,cs) ); } ); width = 600; } ); unicode = 8944; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upsilon.glyph000066400000000000000000000005221472355150100304010ustar00rootroot00000000000000{ glyphname = upsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; } ); width = 600; } ); unicode = 965; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upsilondieresis.glyph000066400000000000000000000007221472355150100321330ustar00rootroot00000000000000{ glyphname = upsilondieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 971; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upsilondieresistonos.glyph000066400000000000000000000010151472355150100332120ustar00rootroot00000000000000{ glyphname = upsilondieresistonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { alignment = -1; ref = dieresistonos; } ); width = 600; } ); unicode = 944; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/upsilontonos.glyph000066400000000000000000000006671472355150100314760ustar00rootroot00000000000000{ glyphname = upsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (40,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (30,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (30,0); ref = tonos; } ); width = 600; } ); unicode = 973; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uptack.glyph000066400000000000000000000007041472355150100302010ustar00rootroot00000000000000{ glyphname = uptack; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,600); ref = tackdown; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,600); ref = tackdown; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,600); ref = tackdown; scale = (1,-1); } ); width = 600; } ); unicode = 8869; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uring.glyph000066400000000000000000000006741472355150100300440ustar00rootroot00000000000000{ glyphname = uring; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (599,0); ref = ringcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = ringcomb; } ); width = 600; } ); unicode = 367; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/uring.ss04.glyph000066400000000000000000000007751472355150100306360ustar00rootroot00000000000000{ export = 0; glyphname = uring.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = ringcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = ringcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ringcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ushort-cy.glyph000066400000000000000000000007061472355150100306510ustar00rootroot00000000000000{ glyphname = "ushort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = brevecomb; }, { ref = y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = brevecomb; }, { ref = y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = brevecomb; }, { ref = y; } ); width = 600; } ); unicode = 1118; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ustraight-cy.glyph000066400000000000000000000005461472355150100313410ustar00rootroot00000000000000{ glyphname = "ustraight-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = gamma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = gamma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = gamma; } ); width = 600; } ); unicode = 1199; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ustraightstroke-cy.glyph000066400000000000000000000011151472355150100325620ustar00rootroot00000000000000{ glyphname = "ustraightstroke-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (414,-45,l), (421,0,l), (91,0,l), (84,-45,l) ); }, { ref = gamma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (419,-75,l), (431,0,l), (81,0,l), (69,-75,l) ); }, { ref = gamma; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (422,-90,l), (436,0,l), (76,0,l), (62,-90,l) ); }, { ref = gamma; } ); width = 600; } ); unicode = 1201; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/utilde.glyph000066400000000000000000000007601472355150100302020ustar00rootroot00000000000000{ glyphname = utilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 361; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/utilde.ss04.glyph000066400000000000000000000010011472355150100307570ustar00rootroot00000000000000{ export = 0; glyphname = utilde.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = tildecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = tildecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = tildecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/v.glyph000066400000000000000000000015471472355150100271650ustar00rootroot00000000000000{ glyphname = v; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (351,0,l), (616,550,l), (460,550,l), (320,240,ls), (304,204,o), (287,154,o), (277,127,c), (275,154,o), (270,204,o), (265,241,cs), (222,550,l), (70,550,l), (163,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (317,0,l), (583,550,l), (489,550,l), (317,180,ls), (296,136,o), (275,91,o), (266,69,c), (263,91,o), (258,136,o), (251,180,cs), (192,550,l), (103,550,l), (195,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (287,0,l), (567,550,l), (513,550,l), (309,140,ls), (290,104,o), (270,60,o), (260,37,c), (257,60,o), (249,104,o), (243,140,cs), (168,550,l), (119,550,l), (225,0,l) ); } ); width = 600; } ); unicode = 118; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ve-cy.glyph000066400000000000000000000035331472355150100277400ustar00rootroot00000000000000{ glyphname = "ve-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (295,0,ls), (424,0,o), (516,62,o), (531,158,cs), (544,237,o), (497,288,o), (411,290,c), (412,297,l), (487,299,o), (541,341,o), (551,407,cs), (565,494,o), (493,550,o), (364,550,cs), (110,550,l), (23,0,l) ); }, { closed = 1; nodes = ( (208,239,l), (320,239,ls), (369,239,o), (394,214,o), (387,172,cs), (381,130,o), (348,105,o), (299,105,cs), (187,105,l) ); }, { closed = 1; nodes = ( (240,445,l), (342,445,ls), (386,445,o), (409,423,o), (403,386,cs), (397,349,o), (368,327,o), (324,327,cs), (222,327,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (293,0,ls), (409,0,o), (492,60,o), (507,155,cs), (519,236,o), (474,289,o), (391,291,c), (392,295,l), (465,298,o), (518,343,o), (529,411,cs), (543,496,o), (482,550,o), (372,550,cs), (136,550,l), (49,0,l) ); }, { closed = 1; nodes = ( (176,246,l), (332,246,ls), (395,246,o), (427,215,o), (419,163,cs), (410,110,o), (369,79,o), (306,79,cs), (150,79,l) ); }, { closed = 1; nodes = ( (212,471,l), (360,471,ls), (416,471,o), (445,443,o), (438,396,cs), (430,348,o), (392,320,o), (336,320,cs), (188,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (295,0,ls), (402,0,o), (479,59,o), (494,153,cs), (507,233,o), (466,285,o), (393,288,c), (393,291,l), (459,297,o), (507,344,o), (518,412,cs), (532,497,o), (476,550,o), (375,550,cs), (154,550,l), (67,0,l) ); }, { closed = 1; nodes = ( (159,263,l), (337,263,ls), (412,263,o), (455,219,o), (444,154,cs), (434,89,o), (377,45,o), (302,45,cs), (124,45,l) ); }, { closed = 1; nodes = ( (197,505,l), (368,505,ls), (437,505,o), (477,465,o), (467,406,cs), (458,347,o), (406,308,o), (337,308,cs), (166,308,l) ); } ); width = 600; } ); unicode = 1074; } verticalB_isectingL_ineW_hiteS_quare.glyph000066400000000000000000000017751472355150100360730ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = verticalBisectingLineWhiteSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); }, { closed = 1; nodes = ( (325,70,l), (325,650,l), (275,650,l), (275,70,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); }, { closed = 1; nodes = ( (325,70,l), (325,650,l), (275,650,l), (275,70,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); }, { closed = 1; nodes = ( (325,70,l), (325,650,l), (275,650,l), (275,70,l) ); } ); width = 600; } ); unicode = 9707; } verticalT_abulation-control.glyph000066400000000000000000000013231472355150100343020ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = "verticalTabulation-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = V; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = V; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = V; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9227; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/w.glyph000066400000000000000000000032521472355150100271610ustar00rootroot00000000000000{ glyphname = w; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (197,0,l), (286,310,ls), (297,347,o), (313,407,o), (324,442,c), (322,407,o), (322,347,o), (321,310,cs), (315,0,l), (465,0,l), (633,550,l), (516,550,l), (427,250,ls), (414,207,o), (397,142,o), (389,105,c), (390,141,o), (393,205,o), (393,250,cs), (396,550,l), (290,550,l), (197,250,ls), (183,205,o), (166,142,o), (157,106,c), (159,142,o), (163,206,o), (164,250,cs), (171,550,l), (53,550,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (178,0,l), (300,380,ls), (312,417,o), (325,459,o), (331,480,c), (331,459,o), (331,417,o), (331,380,cs), (330,0,l), (429,0,l), (608,550,l), (532,550,l), (413,160,ls), (404,131,o), (392,92,o), (385,70,c), (386,92,o), (385,131,o), (385,160,cs), (386,550,l), (298,550,l), (174,160,ls), (165,131,o), (153,92,o), (146,70,c), (147,92,o), (147,131,o), (148,160,cs), (155,550,l), (78,550,l), (79,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (165,0,l), (299,391,ls), (311,427,o), (328,478,o), (337,507,c), (338,478,o), (338,427,o), (339,391,cs), (346,0,l), (412,0,l), (593,550,l), (545,550,l), (412,141,ls), (402,111,o), (390,63,o), (383,35,c), (384,63,o), (384,111,o), (383,140,cs), (368,550,l), (317,550,l), (172,140,ls), (162,111,o), (147,63,o), (140,35,c), (141,63,o), (142,111,o), (142,141,cs), (139,550,l), (93,550,l), (99,0,l) ); } ); width = 600; } ); unicode = 119; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/wacute.glyph000066400000000000000000000007011472355150100301770ustar00rootroot00000000000000{ glyphname = wacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 7811; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/warningS_ign.001.glyph000066400000000000000000000037601472355150100316430ustar00rootroot00000000000000{ glyphname = warningSign.001; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (541,0,ls), (585,0,o), (610,20,o), (610,56,cs), (610,71,o), (603,98,o), (590,128,cs), (349,702,ls), (338,728,o), (320,740,o), (300,740,cs), (280,740,o), (262,728,o), (251,702,cs), (9,128,ls), (-3,99,o), (-10,73,o), (-10,56,cs), (-10,20,o), (15,0,o), (59,0,cs) ); }, { closed = 1; nodes = ( (271,61,o), (255,76,o), (255,103,cs), (255,130,o), (271,145,o), (299,145,cs), (327,145,o), (343,130,o), (343,103,cs), (343,76,o), (327,61,o), (299,61,cs) ); }, { closed = 1; nodes = ( (266,479,l), (266,550,l), (334,550,l), (334,479,l), (324,200,l), (275,200,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,0,ls), (585,0,o), (610,20,o), (610,56,cs), (610,71,o), (603,98,o), (590,128,cs), (349,702,ls), (338,728,o), (320,740,o), (300,740,cs), (280,740,o), (262,728,o), (251,702,cs), (9,128,ls), (-3,99,o), (-10,73,o), (-10,56,cs), (-10,20,o), (15,0,o), (59,0,cs) ); }, { closed = 1; nodes = ( (271,61,o), (255,76,o), (255,103,cs), (255,130,o), (271,145,o), (299,145,cs), (327,145,o), (343,130,o), (343,103,cs), (343,76,o), (327,61,o), (299,61,cs) ); }, { closed = 1; nodes = ( (266,479,l), (266,550,l), (334,550,l), (334,479,l), (324,200,l), (275,200,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,0,ls), (585,0,o), (610,20,o), (610,56,cs), (610,71,o), (603,98,o), (590,128,cs), (349,702,ls), (338,728,o), (320,740,o), (300,740,cs), (280,740,o), (262,728,o), (251,702,cs), (9,128,ls), (-3,99,o), (-10,73,o), (-10,56,cs), (-10,20,o), (15,0,o), (59,0,cs) ); }, { closed = 1; nodes = ( (271,61,o), (255,76,o), (255,103,cs), (255,130,o), (271,145,o), (299,145,cs), (327,145,o), (343,130,o), (343,103,cs), (343,76,o), (327,61,o), (299,61,cs) ); }, { closed = 1; nodes = ( (266,479,l), (266,550,l), (334,550,l), (334,479,l), (324,200,l), (275,200,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/warningS_ign.glyph000066400000000000000000000036721472355150100313460ustar00rootroot00000000000000{ glyphname = warningSign; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (302,96,ls), (322,96,o), (335,109,o), (335,130,cs), (335,151,o), (322,164,o), (302,164,cs), (300,164,ls), (280,164,o), (267,151,o), (267,130,cs), (267,109,o), (280,96,o), (300,96,cs) ); }, { closed = 1; nodes = ( (310,204,l), (325,311,l), (325,368,l), (275,368,l), (275,311,l), (290,204,l) ); }, { closed = 1; nodes = ( (530,0,ls), (576,0,o), (595,30,o), (574,71,cs), (341,529,ls), (318,573,o), (282,573,o), (259,529,cs), (26,71,ls), (5,30,o), (24,0,o), (70,0,cs) ); }, { closed = 1; nodes = ( (300,497,l), (527,50,l), (73,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (302,96,ls), (322,96,o), (335,109,o), (335,130,cs), (335,151,o), (322,164,o), (302,164,cs), (300,164,ls), (280,164,o), (267,151,o), (267,130,cs), (267,109,o), (280,96,o), (300,96,cs) ); }, { closed = 1; nodes = ( (310,204,l), (325,311,l), (325,368,l), (275,368,l), (275,311,l), (290,204,l) ); }, { closed = 1; nodes = ( (530,0,ls), (576,0,o), (595,30,o), (574,71,cs), (341,529,ls), (318,573,o), (282,573,o), (259,529,cs), (26,71,ls), (5,30,o), (24,0,o), (70,0,cs) ); }, { closed = 1; nodes = ( (300,497,l), (527,50,l), (73,50,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (302,96,ls), (322,96,o), (335,109,o), (335,130,cs), (335,151,o), (322,164,o), (302,164,cs), (300,164,ls), (280,164,o), (267,151,o), (267,130,cs), (267,109,o), (280,96,o), (300,96,cs) ); }, { closed = 1; nodes = ( (310,204,l), (325,311,l), (325,368,l), (275,368,l), (275,311,l), (290,204,l) ); }, { closed = 1; nodes = ( (530,0,ls), (576,0,o), (595,30,o), (574,71,cs), (341,529,ls), (318,573,o), (282,573,o), (259,529,cs), (26,71,ls), (5,30,o), (24,0,o), (70,0,cs) ); }, { closed = 1; nodes = ( (300,497,l), (527,50,l), (73,50,l) ); } ); width = 600; } ); unicode = 9888; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/wcircumflex.glyph000066400000000000000000000007241472355150100312440ustar00rootroot00000000000000{ glyphname = wcircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 373; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/wdieresis.glyph000066400000000000000000000007151472355150100307120ustar00rootroot00000000000000{ glyphname = wdieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 7813; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/wgrave.glyph000066400000000000000000000007011472355150100302020ustar00rootroot00000000000000{ glyphname = wgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 7809; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/whiteB_ullet.glyph000066400000000000000000000026331472355150100313440ustar00rootroot00000000000000{ glyphname = whiteBullet; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (370,245,o), (420,295,o), (420,365,cs), (420,435,o), (370,485,o), (300,485,cs), (230,485,o), (180,435,o), (180,365,cs), (180,295,o), (230,245,o), (300,245,cs) ); }, { closed = 1; nodes = ( (253,285,o), (220,318,o), (220,365,cs), (220,412,o), (253,445,o), (300,445,cs), (347,445,o), (380,412,o), (380,365,cs), (380,318,o), (347,285,o), (300,285,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (370,245,o), (420,295,o), (420,365,cs), (420,435,o), (370,485,o), (300,485,cs), (230,485,o), (180,435,o), (180,365,cs), (180,295,o), (230,245,o), (300,245,cs) ); }, { closed = 1; nodes = ( (253,285,o), (220,318,o), (220,365,cs), (220,412,o), (253,445,o), (300,445,cs), (347,445,o), (380,412,o), (380,365,cs), (380,318,o), (347,285,o), (300,285,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (370,245,o), (420,295,o), (420,365,cs), (420,435,o), (370,485,o), (300,485,cs), (230,485,o), (180,435,o), (180,365,cs), (180,295,o), (230,245,o), (300,245,cs) ); }, { closed = 1; nodes = ( (253,285,o), (220,318,o), (220,365,cs), (220,412,o), (253,445,o), (300,445,cs), (347,445,o), (380,412,o), (380,365,cs), (380,318,o), (347,285,o), (300,285,cs) ); } ); width = 600; } ); unicode = 9702; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/whiteD_iamond.glyph000066400000000000000000000014161472355150100314660ustar00rootroot00000000000000{ glyphname = whiteDiamond; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); }, { closed = 1; nodes = ( (68,360,l), (300,593,l), (532,360,l), (300,128,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); }, { closed = 1; nodes = ( (68,360,l), (300,593,l), (532,360,l), (300,128,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); }, { closed = 1; nodes = ( (68,360,l), (300,593,l), (532,360,l), (300,128,l) ); } ); width = 600; } ); unicode = 9671; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/whiteS_mallS_quare.glyph000066400000000000000000000014301472355150100324770ustar00rootroot00000000000000{ glyphname = whiteSmallSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (200,460,l), (400,460,l), (400,260,l), (200,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (200,460,l), (400,460,l), (400,260,l), (200,260,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (200,460,l), (400,460,l), (400,260,l), (200,260,l) ); } ); width = 600; } ); unicode = 9643; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/whiteS_quare.glyph000066400000000000000000000013731472355150100313550ustar00rootroot00000000000000{ glyphname = whiteSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; } ); unicode = 9633; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/x.glyph000066400000000000000000000024211472355150100271570ustar00rootroot00000000000000{ glyphname = x; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (153,0,l), (255,130,ls), (269,147,o), (281,172,o), (288,185,c), (291,172,o), (300,148,o), (308,130,cs), (367,0,l), (530,0,l), (386,282,l), (604,550,l), (433,550,l), (348,440,ls), (334,422,o), (321,398,o), (314,385,c), (311,398,o), (304,422,o), (296,440,cs), (245,550,l), (82,550,l), (217,288,l), (-18,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,0,l), (260,180,ls), (272,195,o), (285,217,o), (293,229,c), (297,217,o), (305,195,o), (312,180,cs), (397,0,l), (501,0,l), (357,279,l), (577,550,l), (470,550,l), (339,380,ls), (328,365,o), (316,346,o), (310,335,c), (307,346,o), (299,365,o), (292,380,cs), (214,550,l), (110,550,l), (246,286,l), (11,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (91,0,l), (265,210,ls), (275,222,o), (289,239,o), (296,248,c), (301,239,o), (311,222,o), (317,210,cs), (426,0,l), (481,0,l), (330,281,l), (557,550,l), (496,550,l), (333,350,ls), (325,340,o), (313,324,o), (306,315,c), (301,324,o), (294,339,o), (288,350,cs), (186,550,l), (130,550,l), (273,283,l), (31,0,l) ); } ); width = 600; } ); unicode = 120; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/xi.glyph000066400000000000000000000037421472355150100273370ustar00rootroot00000000000000{ glyphname = xi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,-180,l), (499,-46,ls), (508,10,o), (476,45,o), (416,45,cs), (284,45,ls), (182,45,o), (128,107,o), (144,206,cs), (159,305,o), (233,367,o), (335,367,cs), (484,367,l), (491,412,l), (342,412,ls), (249,412,o), (199,464,o), (213,548,cs), (226,632,o), (294,685,o), (390,685,cs), (566,685,l), (574,730,l), (398,730,ls), (271,730,o), (181,660,o), (163,548,cs), (147,449,o), (200,387,o), (301,387,c), (302,393,l), (192,393,o), (112,321,o), (94,206,cs), (74,79,o), (144,0,o), (277,0,cs), (409,0,ls), (438,0,o), (453,-18,o), (449,-46,cs), (427,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (492,-180,l), (516,-34,ls), (532,70,o), (478,135,o), (376,135,cs), (295,135,ls), (232,135,o), (198,171,o), (207,228,cs), (216,285,o), (262,320,o), (325,320,cs), (487,320,l), (507,450,l), (327,450,ls), (277,450,o), (251,478,o), (258,522,cs), (265,567,o), (300,595,o), (350,595,cs), (564,595,l), (586,730,l), (379,730,ls), (238,730,o), (139,661,o), (121,552,cs), (105,451,o), (168,388,o), (285,388,c), (288,404,l), (163,404,o), (73,331,o), (55,215,cs), (34,83,o), (117,0,o), (269,0,cs), (317,0,ls), (350,0,o), (368,-21,o), (362,-54,cs), (342,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (493,-178,l), (513,-48,ls), (526,32,o), (481,82,o), (396,82,cs), (300,82,ls), (207,82,o), (157,133,o), (170,214,cs), (183,296,o), (246,347,o), (334,347,cs), (483,347,l), (496,427,l), (343,427,ls), (267,427,o), (226,470,o), (237,538,cs), (248,606,o), (302,648,o), (378,648,cs), (563,648,l), (576,730,l), (391,730,ls), (258,730,o), (163,660,o), (145,549,cs), (129,449,o), (189,388,o), (301,390,c), (302,400,l), (181,402,o), (93,330,o), (75,214,cs), (54,83,o), (136,0,o), (287,0,cs), (383,0,ls), (412,0,o), (428,-19,o), (423,-48,cs), (403,-178,l) ); } ); width = 600; } ); unicode = 958; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/y.glyph000066400000000000000000000033161472355150100271640ustar00rootroot00000000000000{ glyphname = y; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (227,-180,ls), (368,-180,o), (468,-106,o), (487,14,cs), (570,550,l), (420,550,l), (374,260,ls), (365,203,o), (329,170,o), (276,170,cs), (222,170,o), (195,203,o), (204,260,cs), (250,550,l), (100,550,l), (52,245,ls), (32,121,o), (89,40,o), (196,40,cs), (287,40,o), (353,97,o), (368,190,c), (319,155,l), (363,155,l), (344,40,l), (341,19,ls), (334,-31,o), (297,-60,o), (241,-60,cs), (86,-60,l), (67,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,-180,ls), (372,-180,o), (447,-119,o), (462,-20,cs), (553,550,l), (463,550,l), (416,250,ls), (403,165,o), (348,116,o), (273,116,cs), (201,116,o), (163,162,o), (176,240,cs), (225,550,l), (135,550,l), (84,230,ls), (65,113,o), (125,40,o), (235,40,cs), (327,40,o), (390,90,o), (404,176,c), (382,155,l), (401,155,l), (384,55,l), (372,-20,ls), (364,-74,o), (334,-98,o), (278,-98,cs), (103,-98,l), (90,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (239,-180,ls), (351,-180,o), (419,-124,o), (437,-15,cs), (526,550,l), (476,550,l), (427,240,ls), (412,143,o), (347,83,o), (259,83,cs), (173,83,o), (129,141,o), (145,240,cs), (194,550,l), (144,550,l), (94,233,ls), (75,115,o), (134,40,o), (242,40,cs), (340,40,o), (412,101,o), (427,196,c), (389,145,l), (412,145,l), (397,50,l), (387,-15,ls), (374,-94,o), (326,-135,o), (247,-135,cs), (102,-135,l), (94,-180,l) ); } ); width = 600; } ); unicode = 121; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/yacute.glyph000066400000000000000000000007001472355150100302000ustar00rootroot00000000000000{ glyphname = yacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 253; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ycircumflex.glyph000066400000000000000000000007241472355150100312460ustar00rootroot00000000000000{ glyphname = ycircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 375; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ydieresis.glyph000066400000000000000000000007141472355150100307130ustar00rootroot00000000000000{ glyphname = ydieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 255; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ydotbelow.glyph000066400000000000000000000010631472355150100307210ustar00rootroot00000000000000{ glyphname = ydotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = y; }, { alignment = -1; pos = (870,-40); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = y; }, { alignment = -1; pos = (850,-40); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = y; }, { alignment = -1; pos = (840,-40); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7925; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/yen.glyph000066400000000000000000000015101472355150100275010ustar00rootroot00000000000000{ glyphname = yen; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,260,l), (554,365,l), (74,365,l), (57,260,l) ); }, { closed = 1; nodes = ( (512,100,l), (528,205,l), (48,205,l), (32,100,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (539,270,l), (551,345,l), (71,345,l), (59,270,l) ); }, { closed = 1; nodes = ( (515,120,l), (527,195,l), (47,195,l), (35,120,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (539,270,l), (547,320,l), (67,320,l), (59,270,l) ); }, { closed = 1; nodes = ( (519,145,l), (527,195,l), (47,195,l), (39,145,l) ); }, { ref = Y; } ); width = 600; } ); unicode = 165; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/yeru-cy.glyph000066400000000000000000000026751472355150100303200ustar00rootroot00000000000000{ glyphname = "yeru-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (151,0,ls), (268,0,o), (358,73,o), (375,184,cs), (394,300,o), (328,375,o), (210,375,cs), (180,375,l), (208,550,l), (83,550,l), (-4,0,l) ); }, { closed = 1; nodes = ( (162,260,l), (192,260,ls), (240,260,o), (263,233,o), (255,185,cs), (248,140,o), (217,115,o), (169,115,cs), (139,115,l) ); }, { closed = 1; nodes = ( (516,0,l), (603,550,l), (478,550,l), (391,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (150,0,ls), (269,0,o), (352,66,o), (370,174,cs), (387,282,o), (324,348,o), (205,348,cs), (160,348,l), (192,550,l), (108,550,l), (21,0,l) ); }, { closed = 1; nodes = ( (149,276,l), (194,276,ls), (264,276,o), (300,238,o), (290,174,cs), (279,110,o), (231,72,o), (161,72,cs), (116,72,l) ); }, { closed = 1; nodes = ( (491,0,l), (578,550,l), (494,550,l), (407,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,0,ls), (263,0,o), (346,66,o), (363,170,cs), (379,274,o), (316,340,o), (200,340,cs), (140,340,l), (173,550,l), (123,550,l), (36,0,l) ); }, { closed = 1; nodes = ( (133,295,l), (193,295,ls), (281,295,o), (325,249,o), (313,170,cs), (300,91,o), (241,45,o), (153,45,cs), (93,45,l) ); }, { closed = 1; nodes = ( (476,0,l), (563,550,l), (513,550,l), (426,0,l) ); } ); width = 600; } ); unicode = 1099; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ygrave.glyph000066400000000000000000000007011472355150100302040ustar00rootroot00000000000000{ glyphname = ygrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 7923; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/yhookabove.glyph000066400000000000000000000007211472355150100310570ustar00rootroot00000000000000{ glyphname = yhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7927; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/yi-cy.glyph000066400000000000000000000010751472355150100277460ustar00rootroot00000000000000{ glyphname = "yi-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = idotless; }, { alignment = 1; pos = (619,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = idotless; }, { alignment = 1; pos = (615,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = idotless; }, { alignment = 1; pos = (614,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 1111; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ymacron.glyph000066400000000000000000000007041472355150100303620ustar00rootroot00000000000000{ glyphname = ymacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 563; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ytilde.glyph000066400000000000000000000007611472355150100302070ustar00rootroot00000000000000{ glyphname = ytilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = y; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = y; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = y; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 7929; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/z.glyph000066400000000000000000000015671472355150100271730ustar00rootroot00000000000000{ glyphname = z; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (507,130,l), (228,130,l), (542,420,l), (562,550,l), (123,550,l), (103,420,l), (361,420,l), (47,130,l), (26,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (466,0,l), (479,82,l), (158,82,l), (528,460,l), (542,550,l), (141,550,l), (128,468,l), (424,468,l), (60,90,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (453,0,l), (460,45,l), (124,45,l), (520,503,l), (527,550,l), (155,550,l), (148,505,l), (461,505,l), (66,46,l), (59,0,l) ); } ); width = 600; } ); unicode = 122; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zacute.glyph000066400000000000000000000007001472355150100302010ustar00rootroot00000000000000{ glyphname = zacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = z; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = z; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = z; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 378; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zcaron.glyph000066400000000000000000000007001472355150100302020ustar00rootroot00000000000000{ glyphname = zcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = z; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = z; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = z; }, { pos = (600,0); ref = caroncomb; } ); width = 600; } ); unicode = 382; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zdotaccent.glyph000066400000000000000000000007201472355150100310460ustar00rootroot00000000000000{ glyphname = zdotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = z; }, { pos = (599,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = z; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = z; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 380; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/ze-cy.glyph000066400000000000000000000042131472355150100277400ustar00rootroot00000000000000{ glyphname = "ze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (284,-7,ls), (419,-7,o), (515,57,o), (531,157,cs), (544,239,o), (487,294,o), (389,294,c), (387,284,l), (478,284,o), (546,333,o), (557,407,cs), (572,499,o), (498,557,o), (367,557,cs), (321,557,ls), (198,557,o), (103,493,o), (70,390,c), (215,390,l), (229,421,o), (262,440,o), (303,440,cs), (349,440,ls), (391,440,o), (411,422,o), (406,389,cs), (401,357,o), (374,338,o), (333,338,cs), (210,338,l), (191,224,l), (320,224,ls), (364,224,o), (388,203,o), (383,168,cs), (377,132,o), (346,110,o), (302,110,cs), (245,110,ls), (204,110,o), (175,129,o), (171,160,c), (26,160,l), (27,57,o), (104,-7,o), (227,-7,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (276,-7,ls), (397,-7,o), (485,54,o), (500,152,cs), (513,234,o), (479,278,o), (386,285,c), (387,289,l), (465,294,o), (517,339,o), (527,405,cs), (542,499,o), (481,557,o), (363,557,cs), (313,557,ls), (207,557,o), (118,498,o), (92,415,c), (187,415,l), (200,450,o), (247,477,o), (301,477,cs), (351,477,ls), (411,477,o), (439,449,o), (431,400,cs), (424,352,o), (386,320,o), (325,320,cs), (207,320,l), (194,242,l), (315,242,ls), (383,242,o), (414,209,o), (406,156,cs), (398,107,o), (354,73,o), (289,73,cs), (242,73,ls), (180,73,o), (140,96,o), (137,130,c), (42,130,l), (42,46,o), (113,-7,o), (229,-7,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (284,-10,ls), (389,-10,o), (470,55,o), (484,146,cs), (495,217,o), (463,274,o), (395,279,c), (396,283,l), (459,287,o), (505,339,o), (516,410,cs), (529,495,o), (469,560,o), (370,560,cs), (314,560,ls), (203,560,o), (144,509,o), (114,425,c), (164,425,l), (189,479,o), (229,515,o), (307,515,cs), (363,515,ls), (429,515,o), (474,464,o), (465,406,cs), (456,348,o), (405,306,o), (339,306,cs), (211,306,l), (204,261,l), (332,261,ls), (404,261,o), (444,210,o), (434,146,cs), (424,85,o), (364,35,o), (292,35,cs), (236,35,ls), (158,35,o), (119,71,o), (112,125,c), (62,125,l), (64,41,o), (117,-10,o), (228,-10,cs) ); } ); width = 600; } ); unicode = 1079; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zero.glyph000066400000000000000000000041361472355150100276740ustar00rootroot00000000000000{ glyphname = zero; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (213,120,o), (180,154,o), (189,210,cs), (238,520,ls), (247,576,o), (290,610,o), (353,610,cs), (416,610,o), (447,576,o), (438,520,cs), (389,210,ls), (380,154,o), (337,120,o), (275,120,cs) ); }, { closed = 1; nodes = ( (354,296,o), (382,325,o), (382,368,cs), (382,410,o), (354,438,o), (312,438,cs), (270,438,o), (242,410,o), (242,368,cs), (242,325,o), (270,296,o), (312,296,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (388,-10,o), (487,75,o), (508,205,cs), (559,525,ls), (580,656,o), (508,740,o), (373,740,cs), (238,740,o), (140,656,o), (119,525,cs), (68,205,ls), (47,74,o), (119,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (187,67,o), (142,124,o), (155,205,cs), (206,525,ls), (219,606,o), (281,663,o), (361,663,cs), (441,663,o), (485,606,o), (472,525,cs), (421,205,ls), (408,124,o), (347,67,o), (267,67,cs) ); }, { closed = 1; nodes = ( (350,306,o), (374,331,o), (374,368,cs), (374,404,o), (350,428,o), (314,428,cs), (278,428,o), (254,404,o), (254,368,cs), (254,331,o), (278,306,o), (314,306,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (474,71,o), (495,205,cs), (546,525,ls), (567,659,o), (502,740,o), (374,740,cs), (245,740,o), (153,658,o), (132,525,cs), (81,205,ls), (60,72,o), (126,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (168,40,o), (120,103,o), (136,205,cs), (187,525,ls), (203,627,o), (271,690,o), (366,690,cs), (460,690,o), (507,627,o), (491,525,cs), (440,205,ls), (424,102,o), (357,40,o), (263,40,cs) ); }, { closed = 1; nodes = ( (347,318,o), (367,338,o), (367,368,cs), (367,398,o), (347,418,o), (317,418,cs), (287,418,o), (267,398,o), (267,368,cs), (267,338,o), (287,318,o), (317,318,cs) ); } ); width = 600; } ); unicode = 48; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zero.zero.glyph000066400000000000000000000034141472355150100306500ustar00rootroot00000000000000{ glyphname = zero.zero; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (214,115,o), (180,152,o), (189,210,cs), (238,520,ls), (248,578,o), (292,615,o), (353,615,cs), (414,615,o), (448,578,o), (438,520,cs), (389,210,ls), (380,152,o), (334,115,o), (274,115,cs) ); }, { closed = 1; nodes = ( (160,180,l), (558,550,l), (468,550,l), (70,180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (477,69,o), (498,200,cs), (550,531,ls), (571,661,o), (504,740,o), (373,740,cs), (242,740,o), (151,661,o), (130,530,cs), (78,200,ls), (57,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (154,115,o), (168,200,cs), (220,530,ls), (233,615,o), (283,660,o), (361,660,cs), (439,660,o), (473,615,o), (460,530,cs), (408,200,ls), (394,115,o), (345,70,o), (267,70,cs) ); }, { closed = 1; nodes = ( (156,190,l), (547,540,l), (472,540,l), (81,190,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (136,190,l), (530,530,l), (492,540,l), (98,201,l) ); } ); width = 600; } ); } zeroW_idthN_oB_reakS_pace.001.glyph000066400000000000000000000003761472355150100341300ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = zeroWidthNoBreakSpace.001; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 0; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 0; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 0; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zeroW_idthN_oB_reakS_pace.glyph000066400000000000000000000004131472355150100337000ustar00rootroot00000000000000{ glyphname = zeroWidthNoBreakSpace; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 0; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 0; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 0; } ); unicode = 65279; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zeroinferior.glyph000066400000000000000000000006571472355150100314360ustar00rootroot00000000000000{ glyphname = zeroinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = zerosuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = zerosuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = zerosuperior; } ); width = 600; } ); unicode = 8320; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zerosuperior.glyph000066400000000000000000000031041472355150100314570ustar00rootroot00000000000000{ glyphname = zerosuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (420,395,o), (493,453,o), (507,545,cs), (530,690,ls), (545,782,o), (490,840,o), (389,840,cs), (288,840,o), (215,782,o), (200,690,cs), (177,545,ls), (163,453,o), (218,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (289,480,o), (266,505,o), (272,545,cs), (295,690,ls), (302,730,o), (333,755,o), (376,755,cs), (419,755,o), (442,730,o), (435,690,cs), (412,545,ls), (406,505,o), (375,480,o), (332,480,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (415,395,o), (482,451,o), (497,544,cs), (521,692,ls), (535,784,o), (485,840,o), (389,840,cs), (293,840,o), (225,784,o), (211,692,cs), (187,544,ls), (172,451,o), (223,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (276,458,o), (249,491,o), (257,544,cs), (281,692,ls), (289,745,o), (326,777,o), (379,777,cs), (432,777,o), (459,745,o), (451,692,cs), (427,544,ls), (419,491,o), (382,458,o), (329,458,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (404,395,o), (467,448,o), (480,530,cs), (508,705,ls), (521,787,o), (474,840,o), (389,840,cs), (304,840,o), (241,787,o), (228,705,cs), (200,530,ls), (187,448,o), (234,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (267,435,o), (236,472,o), (245,530,cs), (273,705,ls), (282,763,o), (325,800,o), (383,800,cs), (441,800,o), (472,763,o), (463,705,cs), (435,530,ls), (426,472,o), (383,435,o), (325,435,cs) ); } ); width = 600; } ); unicode = 8304; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zeta.glyph000066400000000000000000000032641472355150100276610ustar00rootroot00000000000000{ glyphname = zeta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,-180,l), (466,-46,ls), (475,10,o), (443,45,o), (383,45,cs), (229,45,ls), (144,45,o), (105,89,o), (118,171,cs), (129,243,o), (175,322,o), (428,554,cs), (559,674,l), (568,730,l), (168,730,l), (160,685,l), (512,685,l), (398,583,ls), (125,332,o), (81,251,o), (68,171,cs), (51,60,o), (104,0,o), (222,0,cs), (376,0,ls), (405,0,o), (420,-18,o), (416,-46,cs), (394,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (487,-180,l), (511,-34,ls), (528,70,o), (477,130,o), (371,130,cs), (261,130,ls), (201,130,o), (173,159,o), (182,212,cs), (190,266,o), (228,317,o), (375,438,cs), (565,594,l), (587,730,l), (151,730,l), (128,590,l), (381,590,l), (291,520,ls), (117,384,o), (46,310,o), (29,200,cs), (8,70,o), (82,0,o), (240,0,cs), (312,0,ls), (346,0,o), (362,-20,o), (357,-54,cs), (337,-180,l) ); } ); width = 600; }, { hints = ( { horizontal = 1; place = (-43,36); type = Stem; }, { horizontal = 1; place = (598,36); type = Stem; }, { horizontal = 1; place = (-43,36); type = Stem; }, { horizontal = 1; place = (598,36); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (463,-180,l), (484,-48,ls), (499,45,o), (465,80,o), (367,80,cs), (240,80,ls), (169,80,o), (133,116,o), (143,174,cs), (154,248,o), (232,350,o), (349,452,cs), (563,640,l), (578,730,l), (163,730,l), (150,648,l), (462,648,l), (290,503,ls), (149,385,o), (67,267,o), (52,168,cs), (36,68,o), (98,0,o), (226,0,cs), (354,0,ls), (388,0,o), (399,-17,o), (394,-48,cs), (373,-180,l) ); } ); width = 600; } ); unicode = 950; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zhe-cy.glyph000066400000000000000000000022601472355150100301100ustar00rootroot00000000000000{ glyphname = "zhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (93,0,l), (219,255,l), (245,255,l), (205,0,l), (307,0,l), (347,255,l), (378,255,l), (430,0,l), (553,0,l), (493,282,l), (632,550,l), (508,550,l), (380,305,l), (355,305,l), (394,550,l), (292,550,l), (253,305,l), (223,305,l), (181,550,l), (54,550,l), (109,285,l), (-41,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (65,0,l), (206,250,l), (258,250,l), (218,0,l), (294,0,l), (334,250,l), (390,250,l), (450,0,l), (538,0,l), (463,282,l), (617,550,l), (529,550,l), (392,310,l), (343,310,l), (381,550,l), (305,550,l), (267,310,l), (212,310,l), (154,550,l), (69,550,l), (139,285,l), (-26,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (45,0,l), (197,260,l), (275,260,l), (234,0,l), (278,0,l), (319,260,l), (399,260,l), (472,0,l), (521,0,l), (443,282,l), (600,550,l), (548,550,l), (402,300,l), (326,300,l), (365,550,l), (321,550,l), (282,300,l), (202,300,l), (136,550,l), (86,550,l), (159,285,l), (-9,0,l) ); } ); width = 600; } ); unicode = 1078; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/zhe-cy.ss00.glyph000066400000000000000000000022611472355150100306750ustar00rootroot00000000000000{ export = 0; glyphname = "zhe-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (97,0,l), (226,268,l), (247,268,l), (205,0,l), (307,0,l), (349,268,l), (369,268,l), (432,0,l), (553,0,l), (488,275,l), (632,550,l), (504,550,l), (372,292,l), (353,292,l), (394,550,l), (292,550,l), (251,292,l), (232,292,l), (178,550,l), (54,550,l), (111,292,l), (-41,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (65,0,l), (221,268,l), (260,268,l), (218,0,l), (294,0,l), (336,268,l), (375,268,l), (448,0,l), (538,0,l), (453,280,l), (617,550,l), (529,550,l), (376,292,l), (340,292,l), (381,550,l), (305,550,l), (264,292,l), (226,292,l), (154,550,l), (69,550,l), (148,287,l), (-26,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (44,0,l), (222,271,l), (277,271,l), (234,0,l), (278,0,l), (321,271,l), (373,271,l), (469,0,l), (521,0,l), (422,278,l), (600,550,l), (546,550,l), (376,289,l), (324,289,l), (365,550,l), (321,550,l), (280,289,l), (225,289,l), (136,550,l), (86,550,l), (180,287,l), (-9,0,l) ); } ); width = 600; } ); } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs/znotationleftimagebracket.glyph000066400000000000000000000027031472355150100341520ustar00rootroot00000000000000{ glyphname = znotationleftimagebracket; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (395,-75,l), (307,-75,o), (250,-18,o), (250,70,cs), (250,370,ls), (250,458,o), (307,515,o), (395,515,c), (395,560,l), (277,560,o), (200,483,o), (200,365,cs), (200,75,ls), (200,-43,o), (277,-120,o), (395,-120,c) ); }, { closed = 1; nodes = ( (395,-93,l), (395,538,l), (345,538,l), (345,-93,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,840,l), (294,792,o), (185,653,o), (185,460,cs), (185,260,ls), (185,67,o), (294,-72,o), (485,-120,c) ); }, { closed = 1; nodes = ( (307,-3,o), (235,109,o), (235,260,cs), (235,460,ls), (235,612,o), (307,724,o), (435,774,c), (435,-54,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (485,840,l), (288,808,o), (160,655,o), (160,450,cs), (160,270,ls), (160,65,o), (288,-88,o), (485,-120,c) ); }, { closed = 1; nodes = ( (307,42,o), (250,143,o), (250,270,cs), (250,450,ls), (250,579,o), (307,681,o), (400,729,c), (400,-5,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,840,l), (260,788,o), (125,646,o), (125,450,cs), (125,269,ls), (125,73,o), (260,-69,o), (495,-120,c) ); }, { closed = 1; nodes = ( (308,103,o), (265,176,o), (265,269,cs), (265,450,ls), (265,543,o), (308,615,o), (385,660,c), (385,59,l) ); } ); width = 600; } ); unicode = 10631; } znotationrightimagebracket.glyph000066400000000000000000000010141472355150100342500ustar00rootroot00000000000000glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/glyphs{ glyphname = znotationrightimagebracket; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = znotationleftimagebracket; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = znotationleftimagebracket; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = znotationleftimagebracket; scale = (-1,1); } ); width = 600; } ); unicode = 10632; } glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic.glyphspackage/order.plist000066400000000000000000000523161472355150100265350ustar00rootroot00000000000000( A, Aacute, Abreve, Abreveacute, Abrevedotbelow, Abrevegrave, Abrevehookabove, Abrevetilde, Acaron, Acircumflex, Acircumflexacute, Acircumflexdotbelow, Acircumflexgrave, Acircumflexhookabove, Acircumflextilde, Adieresis, Adotbelow, Agrave, Ahookabove, Amacron, Aogonek, Aring, Atilde, AE, AEacute, B, C, Cacute, Ccaron, Ccedilla, Ccircumflex, Cdotaccent, D, Eth, Dcaron, Dcroat, E, Eacute, Ebreve, Ecaron, Ecircumflex, Ecircumflexacute, Ecircumflexdotbelow, Ecircumflexgrave, Ecircumflexhookabove, Ecircumflextilde, Edieresis, Edotaccent, Edotbelow, Egrave, Ehookabove, Emacron, Eogonek, Eopen, Etilde, F, G, Gacute, Gbreve, Gcaron, Gcircumflex, Gcommaaccent, Gdotaccent, H, Hbar, Hcircumflex, I, Iacute, Ibreve, Icircumflex, Idieresis, Idotaccent, Idotbelow, Igrave, Ihookabove, Imacron, Iogonek, Itilde, J, Jcircumflex, K, Kcommaaccent, L, Lacute, Lcaron, Lcommaaccent, Ldot, Lslash, M, N, Nacute, Ncaron, Ncommaaccent, Eng, Ntilde, O, Oacute, Obreve, Ocircumflex, Ocircumflexacute, Ocircumflexdotbelow, Ocircumflexgrave, Ocircumflexhookabove, Ocircumflextilde, Odieresis, Odotbelow, Ograve, Ohookabove, Ohorn, Ohornacute, Ohorndotbelow, Ohorngrave, Ohornhookabove, Ohorntilde, Ohungarumlaut, Omacron, Oogonek, Oslash, Oslashacute, Otilde, OE, P, Thorn, Q, R, Racute, Rcaron, Rcommaaccent, S, Sacute, Scaron, Scedilla, Scircumflex, Scommaaccent, Germandbls, Schwa, T, Tbar, Tcaron, Tcedilla, Tcommaaccent, U, Uacute, Ubreve, Ucircumflex, Udieresis, Udotbelow, Ugrave, Uhookabove, Uhorn, Uhornacute, Uhorndotbelow, Uhorngrave, Uhornhookabove, Uhorntilde, Uhungarumlaut, Umacron, Uogonek, Uring, Utilde, V, W, Wacute, Wcircumflex, Wdieresis, Wgrave, X, Y, Yacute, Ycircumflex, Ydieresis, Ydotbelow, Ygrave, Yhookabove, Ymacron, Ytilde, Z, Zacute, Zcaron, Zdotaccent, K.ss00, Kcommaaccent.ss00, a, aacute, abreve, abreveacute, abrevedotbelow, abrevegrave, abrevehookabove, abrevetilde, acaron, acircumflex, acircumflexacute, acircumflexdotbelow, acircumflexgrave, acircumflexhookabove, acircumflextilde, adieresis, adotbelow, agrave, ahookabove, amacron, aogonek, aring, atilde, ae, aeacute, b, c, cacute, ccaron, ccedilla, ccircumflex, cdotaccent, d, eth, dcaron, dcroat, e, eacute, ebreve, ecaron, ecircumflex, ecircumflexacute, ecircumflexdotbelow, ecircumflexgrave, ecircumflexhookabove, ecircumflextilde, edieresis, edotaccent, edotbelow, egrave, ehookabove, emacron, eogonek, etilde, schwa, f, g, gacute, gbreve, gcaron, gcircumflex, gcommaaccent, gdotaccent, h, hbar, hcircumflex, i, idotless, iacute, ibreve, icircumflex, idieresis, idotaccent, idotbelow, igrave, ihookabove, imacron, iogonek, itilde, j, jdotless, jcircumflex, k, kcommaaccent, kgreenlandic, l, lacute, lambdastroke, lcaron, lcommaaccent, ldot, lslash, m, n, nacute, napostrophe, ncaron, ncommaaccent, eng, ntilde, o, oacute, obreve, ocircumflex, ocircumflexacute, ocircumflexdotbelow, ocircumflexgrave, ocircumflexhookabove, ocircumflextilde, odieresis, odotbelow, ograve, ohookabove, ohorn, ohornacute, ohorndotbelow, ohorngrave, ohornhookabove, ohorntilde, ohungarumlaut, omacron, oogonek, oslash, oslashacute, otilde, oe, p, thorn, q, r, racute, rcaron, rcommaaccent, s, sacute, scaron, scedilla, scircumflex, scommaaccent, germandbls, longs, t, tbar, tcaron, tcedilla, tcommaaccent, u, uacute, ubreve, ucircumflex, udieresis, udotbelow, ugrave, uhookabove, uhorn, uhornacute, uhorndotbelow, uhorngrave, uhornhookabove, uhorntilde, uhungarumlaut, umacron, uogonek, uring, utilde, v, w, wacute, wcircumflex, wdieresis, wgrave, x, y, yacute, ycircumflex, ydieresis, ydotbelow, ygrave, yhookabove, ymacron, ytilde, z, zacute, zcaron, zdotaccent, germandbls.calt, k.ss00, kcommaaccent.ss00, kgreenlandic.ss00, l.ss01, lacute.ss01, lcaron.ss01, lcommaaccent.ss01, ldot.ss01, lslash.ss01, r.ss03, racute.ss03, rcaron.ss03, rcommaaccent.ss03, u.ss04, uacute.ss04, ubreve.ss04, ucircumflex.ss04, udieresis.ss04, udotbelow.ss04, ugrave.ss04, uhookabove.ss04, uhorn.ss04, uhornacute.ss04, uhorndotbelow.ss04, uhorngrave.ss04, uhornhookabove.ss04, uhorntilde.ss04, uhungarumlaut.ss04, umacron.ss04, uogonek.ss04, uring.ss04, utilde.ss04, ordfeminine, ordmasculine, "A-cy", "Be-cy", "Ve-cy", "Ge-cy", "Gje-cy", "Gheupturn-cy", "De-cy", "Ie-cy", "Io-cy", "Zhe-cy", "Ze-cy", "Ii-cy", "Iishort-cy", "Ka-cy", "Kje-cy", "El-cy", "Em-cy", "En-cy", "O-cy", "Pe-cy", "Er-cy", "Es-cy", "Te-cy", "U-cy", "Ushort-cy", "Ef-cy", "Ha-cy", "Che-cy", "Tse-cy", "Sha-cy", "Shcha-cy", "Dzhe-cy", "Softsign-cy", "Hardsign-cy", "Yeru-cy", "Lje-cy", "Nje-cy", "Dze-cy", "E-cy", "Ereversed-cy", "I-cy", "Yi-cy", "Je-cy", "Tshe-cy", "Iu-cy", "Ia-cy", "Dje-cy", "Ghestroke-cy", "Kadescender-cy", "Endescender-cy", "Ustraight-cy", "Ustraightstroke-cy", "Chedescender-cy", "Shha-cy", "Schwa-cy", "Obarred-cy", "Zhe-cy.ss00", "Ka-cy.ss00", "Kje-cy.ss00", "Kadescender-cy.ss00", "a-cy", "be-cy", "ve-cy", "ge-cy", "gje-cy", "gheupturn-cy", "de-cy", "ie-cy", "io-cy", "zhe-cy", "ze-cy", "ii-cy", "iishort-cy", "ka-cy", "kje-cy", "el-cy", "em-cy", "en-cy", "o-cy", "pe-cy", "er-cy", "es-cy", "te-cy", "u-cy", "ushort-cy", "ef-cy", "ha-cy", "che-cy", "tse-cy", "sha-cy", "shcha-cy", "dzhe-cy", "softsign-cy", "hardsign-cy", "yeru-cy", "lje-cy", "nje-cy", "dze-cy", "e-cy", "ereversed-cy", "i-cy", "yi-cy", "je-cy", "tshe-cy", "iu-cy", "ia-cy", "dje-cy", "ghestroke-cy", "kadescender-cy", "endescender-cy", "ustraight-cy", "ustraightstroke-cy", "chedescender-cy", "schwa-cy", "obarred-cy", "zhe-cy.ss00", "ka-cy.ss00", "kje-cy.ss00", "kadescender-cy.ss00", Alpha, Beta, Gamma, Delta, Epsilon, Zeta, Eta, Theta, Iota, Kappa, Lambda, Mu, Nu, Xi, Omicron, Pi, Rho, Sigma, Tau, Upsilon, Phi, Chi, Psi, Omega, Alphatonos, Epsilontonos, Etatonos, Iotatonos, Omicrontonos, Upsilontonos, Omegatonos, Iotadieresis, Upsilondieresis, KaiSymbol, Kappa.ss00, KaiSymbol.ss00, alpha, beta, gamma, delta, epsilon, zeta, eta, theta, iota, kappa, lambda, mu, nu, xi, omicron, pi, rho, sigmafinal, sigma, tau, upsilon, phi, chi, psi, omega, iotatonos, iotadieresis, iotadieresistonos, upsilontonos, upsilondieresis, upsilondieresistonos, omicrontonos, omegatonos, alphatonos, epsilontonos, etatonos, kaiSymbol, phiSymbol, piSymbol, kappa.ss00, FdoubleStruck, NdoubleStruck, QdoubleStruck, SdoubleStruck, ZdoubleStruck, zero, one, two, three, four, five, six, seven, eight, nine, zero.zero, zeroinferior, oneinferior, twoinferior, threeinferior, fourinferior, fiveinferior, sixinferior, seveninferior, eightinferior, nineinferior, zerosuperior, onesuperior, twosuperior, threesuperior, foursuperior, fivesuperior, sixsuperior, sevensuperior, eightsuperior, ninesuperior, fraction, onehalf, onequarter, threequarters, "four-gujarati", period, comma, colon, semicolon, ellipsis, exclam, exclamdown, question, questiondown, periodcentered, bullet, asterisk, bracketleftwithquill, bracketrightwithquill, numbersign, onedotenleader, overline, slash, backslash, undertie, colon.case, periodcentered.loclCAT.case, periodcentered.loclCAT, parenleft, parenright, braceleft, braceright, bracketleft, bracketright, heavyleftpointinganglebracketornament, heavyleftpointinganglequotationmarkornament, heavyrightpointinganglebracketornament, heavyrightpointinganglequotationmarkornament, leftCeiling, leftFloor, rightCeiling, rightFloor, znotationleftimagebracket, znotationrightimagebracket, hyphen, softhyphen, endash, emdash, hyphentwo, underscore, quotesinglbase, quotedblbase, quotedblleft, quotedblright, quoteleft, quoteright, guillemetleft, guillemetright, guilsinglleft, guilsinglright, tripleprime, quotedbl, quotesingle, hyphen_hyphen.liga, hyphen_hyphen_hyphen.liga, hyphen_hyphen_greater.liga, hyphen_bar.liga, hyphen_greater.liga, hyphen_greater_greater.liga, hyphen_less.liga, hyphen_less_less.liga, hyphen_asciitilde.liga, braceleft_bar.liga, bracketleft_bar.liga, bracketleft_less.liga, bracketright_numbersign.liga, period_period.liga, period_period_period.liga, period_period_less.liga, period_question.liga, period_equal.liga, colon_colon.liga, colon_colon_colon.liga, colon_colon_equal.liga, colon_question.liga, colon_question_greater.liga, colon_equal.liga, colon_greater.liga, colon_less.liga, semicolon_semicolon.liga, semicolon_semicolon_semicolon.liga, exclam_exclam.liga, exclam_equal.liga, exclam_equal_equal.liga, question_period.liga, question_colon.liga, question_question.liga, question_equal.liga, asterisk_asterisk_asterisk.liga, asterisk_greater.liga, asterisk_slash.liga, numbersign_parenleft.liga, numbersign_braceleft.liga, numbersign_bracketleft.liga, numbersign_colon.liga, numbersign_exclam.liga, numbersign_question.liga, numbersign_numbersign.liga, numbersign_numbersign_numbersign.liga, numbersign_numbersign_numbersign_numbersign.liga, numbersign_equal.liga, numbersign_underscore.liga, numbersign_underscore_parenleft.liga, slash_asterisk.liga, slash_asterisk_asterisk.liga, slash_equal.liga, slash_equal_equal.liga, slash_greater.liga, slash_slash.liga, slash_slash_equal.liga, slash_slash_slash.liga, underscore_bar_underscore.liga, underscore_underscore.liga, bracketleft_bar_bar_bracketright.liga, exclam_equal_equal.liga.old, "leftanglebracket-math", "leftdoubleanglebracket-math", "leftwhitesquarebracket-math", "rightanglebracket-math", "rightdoubleanglebracket-math", "rightwhitesquarebracket-math", anoteleia, questiongreek, EMquad, space, nbspace, CR, .notdef, zeroWidthNoBreakSpace, zeroWidthNoBreakSpace.001, bitcoin, cent, currency, dollar, dong, euro, florin, ruble, sterling, tugrik, yen, asymptoticallyequal, bulletoperator, colonequals, complement, congruent, coproduct, curlybracketextension, curlyor, divides, divisionslash, dotminus, doublesubset, downrightdiagonalellipsis, element, ellipsisvertical, endofproof, equivalence, excess, existential, greaterorequivalent, leftcurlybracketlowerhook, leftcurlybracketmiddlepiece, leftcurlybracketupperhook, leftsquarebracketextension, leftsquarebracketlowercorner, leftsquarebracketuppercorner, lessorequivalent, midlinehorizontalellipsis, multimap, multisetunion, nAryCircledDotOperator, nArySquareUnionOperator, neitherapproximatelynoractuallyequalto, neitherasubsetofnorequalto, notalmostequalto, notcontains, notelement, notgreater, notgreaternorequal, notidentical, notless, notlessnorequal, notsubset, notsuperset, plus, minus, multiply, divide, equal, notequal, greater, less, greaterequal, lessequal, plusminus, approxequal, asciitilde, logicalnot, asciicircum, infinity, emptyset, logicaland, logicalor, intersection, union, integral, product, summation, radical, partialdiff, micro, parallel, parenleftextension, parenleftlowerhook, parenleftupperhook, parenrightextension, parenrightlowerhook, parenrightupperhook, percent, perthousand, plussuperior, precedes, precedesorequalto, proportion, questionedequalto, ratio, reflexsubset, reflexsuperset, rightTwoHeadedArrowWithTail, rightcurlybracketlowerhook, rightcurlybracketmiddlepiece, rightcurlybracketupperhook, rightsquarebracketextension, rightsquarebracketlowercorner, rightsquarebracketuppercorner, righttack, ringequalto, ringoperator, similar, squarecap, squarecup, squareimageoforequalto, staroperator, subset, suchthat, summationdoubleStruck, superset, tackdown, tripletilde, universal, uprightdiagonalellipsis, uptack, asteriskoperator.circled, minus.circled, multiply.circled, operator.circled, plus.circled, upArrow, northEastArrow, rightArrow, southEastArrow, downArrow, southWestArrow, leftArrow, northWestArrow, leftRightArrow, upDownArrow, leftRightWaveArrow, leftTwoheadedArrow, rightTwoheadedArrow, rightTailArrow, upFrombarArrow, rightFrombarArrow, downFrombarArrow, rightDoublePairedArrow, upDoubleArrow, rightDoubleArrow, downDoubleArrow, leftRightDoubleArrow, upWhiteArrow, rightWhiteArrow, downArrowHead, rightHeavyRoundTippedArrow, leftLongArrow, rightlongArrow, leftRightLongArrow, lowerOneEighthBlock, lowerOneQuarterBlock, lowerThreeEighthsBlock, lowerHalfBlock, lowerFiveEighthsBlock, lowerThreeQuartersBlock, lowerSevenEighthsBlock, fullBlock, upperHalfBlock, upperOneEighthBlock, leftOneEighthBlock, leftOneQuarterBlock, leftThreeEighthsBlock, leftBlock, leftFiveEighthsBlock, leftThreeQuartersBlock, leftSevenEighthsBlock, rightBlock, rightOneEighthBlock, lowerLeftBlock, lowerRightBlock, upperLeftBlock, upperLeftAndLowerLeftAndLowerRightBlock, upperLeftAndLowerRightBlock, upperLeftAndUpperRightAndLowerLeftBlock, upperLeftAndUpperRightAndLowerRightBlock, upperRightBlock, upperRightAndLowerLeftBlock, upperRightAndLowerLeftAndLowerRightBlock, shadelight, shademedium, shadedark, blackCircle, largeCircle, upperRightBlackCircle, upperLeftWhiteCircle, dottedCircle, bullseye, whiteBullet, blackDiamond, whiteDiamond, lozenge, blackSquare, whiteSquare, blackSmallSquare, whiteSmallSquare, leftHalfBlackSquare, rightHalfBlackSquare, upperLeftDiagonalHalfBlackSquare, lowerRightDiagonalHalfBlackSquare, verticalBisectingLineWhiteSquare, upBlackTriangle, rightBlackTriangle, downBlackTriangle, leftBlackTriangle, upWhiteTriangle, rightWhiteTriangle, downWhiteTriangle, leftWhiteTriangle, rightBlackPointer, leftBlackPointer, rightWhitePointer, leftWhitePointer, upBlackSmallTriangle, rightBlackSmallTriangle, downBlackSmallTriangle, leftBlackSmallTriangle, upWhiteSmallTriangle, rightWhiteSmallTriangle, downWhiteSmallTriangle, leftWhiteSmallTriangle, boxDoubleDownAndHorizontal, boxDoubleDownAndLeft, boxDoubleDownAndRight, boxDoubleHorizontal, boxDoubleUpAndHorizontal, boxDoubleUpAndLeft, boxDoubleUpAndRight, boxDoubleVertical, boxDoubleVerticalAndHorizontal, boxDoubleVerticalAndLeft, boxDoubleVerticalAndRight, boxDownDoubleAndHorizontalSingle, boxDownDoubleAndLeftSingle, boxDownDoubleAndRightSingle, boxDownHeavyAndHorizontalLight, boxDownHeavyAndLeftLight, boxDownHeavyAndLeftUpLight, boxDownHeavyAndRightLight, boxDownHeavyAndRightUpLight, boxDownHeavyAndUpHorizontalLight, boxDownLightAndHorizontalHeavy, boxDownLightAndLeftHeavy, boxDownLightAndLeftUpHeavy, boxDownLightAndRightHeavy, boxDownLightAndRightUpHeavy, boxDownLightAndUpHorizontalHeavy, boxDownSingleAndHorizontalDouble, boxDownSingleAndLeftDouble, boxDownSingleAndRightDouble, boxHeavyDoubleDashHorizontal, boxHeavyDoubleDashVertical, boxHeavyDown, boxHeavyDownAndHorizontal, boxHeavyDownAndLeft, boxHeavyDownAndRight, boxHeavyHorizontal, boxHeavyLeft, boxHeavyLeftAndLightRight, boxHeavyQuadrupleDashHorizontal, boxHeavyQuadrupleDashVertical, boxHeavyRight, boxHeavyTripleDashHorizontal, boxHeavyTripleDashVertical, boxHeavyUp, boxHeavyUpAndHorizontal, boxHeavyUpAndLeft, boxHeavyUpAndLightDown, boxHeavyUpAndRight, boxHeavyVertical, boxHeavyVerticalAndHorizontal, boxHeavyVerticalAndLeft, boxHeavyVerticalAndRight, boxLeftDownHeavyAndRightUpLight, boxLeftHeavyAndRightDownLight, boxLeftHeavyAndRightUpLight, boxLeftHeavyAndRightVerticalLight, boxLeftLightAndRightDownHeavy, boxLeftLightAndRightUpHeavy, boxLeftLightAndRightVerticalHeavy, boxLeftUpHeavyAndRightDownLight, boxLightArcDownAndLeft, boxLightArcDownAndRight, boxLightArcUpAndLeft, boxLightArcUpAndRight, boxLightDiagonalCross, boxLightDiagonalUpperLeftToLowerRight, boxLightDiagonalUpperRightToLowerLeft, boxLightDoubleDashHorizontal, boxLightDoubleDashVertical, boxLightDown, boxLightDownAndHorizontal, boxLightDownAndLeft, boxLightDownAndRight, boxLightHorizontal, boxLightLeft, boxLightLeftAndHeavyRight, boxLightQuadrupleDashHorizontal, boxLightQuadrupleDashVertical, boxLightRight, boxLightTripleDashHorizontal, boxLightTripleDashVertical, boxLightUp, boxLightUpAndHeavyDown, boxLightUpAndHorizontal, boxLightUpAndLeft, boxLightUpAndRight, boxLightVertical, boxLightVerticalAndHorizontal, boxLightVerticalAndLeft, boxLightVerticalAndRight, boxRightDownHeavyAndLeftUpLight, boxRightHeavyAndLeftDownLight, boxRightHeavyAndLeftUpLight, boxRightHeavyAndLeftVerticalLight, boxRightLightAndLeftDownHeavy, boxRightLightAndLeftUpHeavy, boxRightLightAndLeftVerticalHeavy, boxRightUpHeavyAndLeftDownLight, boxUpDoubleAndHorizontalSingle, boxUpDoubleAndLeftSingle, boxUpDoubleAndRightSingle, boxUpHeavyAndDownHorizontalLight, boxUpHeavyAndHorizontalLight, boxUpHeavyAndLeftDownLight, boxUpHeavyAndLeftLight, boxUpHeavyAndRightDownLight, boxUpHeavyAndRightLight, boxUpLightAndDownHorizontalHeavy, boxUpLightAndHorizontalHeavy, boxUpLightAndLeftDownHeavy, boxUpLightAndLeftHeavy, boxUpLightAndRightDownHeavy, boxUpLightAndRightHeavy, boxUpSingleAndHorizontalDouble, boxUpSingleAndLeftDouble, boxUpSingleAndRightDouble, boxVerticalDoubleAndHorizontalSingle, boxVerticalDoubleAndLeftSingle, boxVerticalDoubleAndRightSingle, boxVerticalHeavyAndHorizontalLight, boxVerticalHeavyAndLeftLight, boxVerticalHeavyAndRightLight, boxVerticalLightAndHorizontalHeavy, boxVerticalLightAndLeftHeavy, boxVerticalLightAndRightHeavy, boxVerticalSingleAndHorizontalDouble, boxVerticalSingleAndLeftDouble, boxVerticalSingleAndRightDouble, APLiota, APLrho, APLtildedieresis, warningSign, highVoltageSign, checkmark, multiplicationX, ballotX, sixPointedBlackStar, at, ampersand, paragraph, section, copyright, registered, trademark, degree, minute, second, bar, brokenbar, dagger, literSign, daggerdbl, numero, estimated, "bell-control", "cancel-control", "carriageReturn-control", control, "dataLinkEscape-control", "delete-control", "deviceControlFour-control", "deviceControlOne-control", "deviceControlThree-control", "deviceControlTwo-control", "endOfMedium-control", "endOfText-control", "endOfTransmission-control", "endOfTransmissionBlock-control", "enquiry-control", "escape-control", "fileSeparator-control", "formFeed-control", "groupSeparator-control", "horizontalTabulation-control", house, optionKey, propellor, "lineFeed-control", "negativeAcknowledge-control", "newline-control", "null-control", powerSymbol, powerOnOffSymbol, heavyCircle, powerOnSymbol, powerSleepSymbol, projective, "recordSeparator-control", replacement, "shiftIn-control", "shiftOut-control", "space-control", "startOfHeading-control", "startOfText-control", "substitute-control", "synchronousIdle-control", threeTurned, twoTurned, "unitSeparator-control", "verticalTabulation-control", warningSign.001, lowringmod, lowtildemod, at_underscore.liga, ampersand_ampersand.liga, ampersand_ampersand_ampersand.liga, ampersand_equal.liga, bar_hyphen.liga, bar_hyphen_greater.liga, bar_braceright.liga, bar_bracketright.liga, bar_bar.liga, bar_bar_hyphen.liga, bar_bar_bar.liga, bar_bar_bar_greater.liga, bar_bar_equal.liga, bar_bar_greater.liga, bar_equal.liga, bar_equal_greater.liga, bar_greater.liga, dollar_greater.liga, plus_plus.liga, plus_plus_plus.liga, plus_greater.liga, equal_colon.liga, equal_colon_equal.liga, equal_exclam_equal.liga, equal_equal.liga, equal_equal_equal.liga, equal_equal_greater.liga, equal_greater.liga, equal_greater_greater.liga, equal_less_less.liga, equal_slash_equal.liga, greater_hyphen.liga, greater_hyphen_greater.liga, greater_bracketright.liga, greater_colon.liga, greater_equal.liga, greater_equal_greater.liga, greater_greater.liga, greater_greater_hyphen.liga, greater_greater_equal.liga, greater_greater_greater.liga, less_hyphen.liga, less_hyphen_hyphen.liga, less_hyphen_bar.liga, less_hyphen_greater.liga, less_hyphen_less.liga, less_colon.liga, less_exclam_hyphen_hyphen.liga, less_asterisk.liga, less_asterisk_greater.liga, less_bar.liga, less_bar_bar.liga, less_bar_bar_bar.liga, less_bar_greater.liga, less_dollar.liga, less_dollar_greater.liga, less_numbersign_hyphen_hyphen.liga, less_plus.liga, less_plus_greater.liga, less_equal.liga, less_equal_bar.liga, less_equal_equal.liga, less_equal_equal_greater.liga, less_equal_greater.liga, less_equal_less.liga, less_greater.liga, less_less.liga, less_less_hyphen.liga, less_less_equal.liga, less_less_less.liga, less_less_asciitilde.liga, less_asciitilde.liga, less_asciitilde_greater.liga, less_asciitilde_asciitilde.liga, less_slash.liga, less_slash_greater.liga, asciitilde_hyphen.liga, asciitilde_at.liga, asciitilde_greater.liga, asciitilde_asciitilde.liga, asciitilde_asciitilde_greater.liga, asciicircum_equal.liga, equal_equal_equal.liga.old, "flat-musical", "sharp-musical", "numeral-greek", "lowernumeral-greek", apostrophemod, doubleprimemod, firsttonechinese, primemod, dieresiscomb, dotaccentcomb, gravecomb, acutecomb, hungarumlautcomb, caroncomb.alt, circumflexcomb, caroncomb, brevecomb, ringcomb, tildecomb, macroncomb, hookabovecomb, dblgravecomb, commaturnedabovecomb, horncomb, dotbelowcomb, ringbelowcomb, commaaccentcomb, cedillacomb, ogonekcomb, strokelongcomb, slashshortcomb, slashlongcomb, dieresis, dotaccent, grave, acute, hungarumlaut, circumflex, caron, breve, ring, tilde, macron, cedilla, ogonek, commaaccentcomb.alt, dieresiscomb.case, dotaccentcomb.case, gravecomb.case, acutecomb.case, hungarumlautcomb.case, circumflexcomb.case, caroncomb.case, brevecomb.case, ringcomb.case, tildecomb.case, macroncomb.case, hookabovecomb.case, dblgravecomb.case, breveinvertedcomb.case, commaturnedabovecomb.case, horncomb.case, dotbelowcomb.case, dieresisbelowcomb.case, commaaccentcomb.case, cedillacomb.case, ogonekcomb.case, brevebelowcomb.case, macronbelowcomb.case, dieresis.case, dotaccent.case, grave.case, acute.case, hungarumlaut.case, circumflex.case, caron.case, breve.case, ring.case, tilde.case, macron.case, tonos, tonos.case, dieresistonos, "brevecomb-cy", brevecomb_acutecomb, brevecomb_gravecomb, brevecomb_hookabovecomb, brevecomb_tildecomb, circumflexcomb_acutecomb, circumflexcomb_gravecomb, circumflexcomb_hookabovecomb, circumflexcomb_tildecomb, brevecomb_acutecomb.case, brevecomb_gravecomb.case, brevecomb_hookabovecomb.case, brevecomb_tildecomb.case, circumflexcomb_acutecomb.case, circumflexcomb_gravecomb.case, circumflexcomb_hookabovecomb.case, circumflexcomb_tildecomb.case, uniE0A0, uniE0A1, uniE0A2, uniE0B0, uniE0B1, uniE0B2, uniE0B3, NULL, SPC, _similiar_tilda )glyphspkg-0.2.1/tests/data/JetBrainsMono-Italic_orig.glyphs000066400000000000000000054573451472355150100240140ustar00rootroot00000000000000{ .appVersion = "3306"; .formatVersion = 3; DisplayStrings = ( "ΐΐΐΐΐΐΰΰΰΰΰΰώώώώώώάάάάάάέέέέέέήήήήήή/periodcentered.loclCAT.case/periodcentered.loclCAT.case/periodcentered.loclCAT.case/periodcentered.loclCAT/periodcentered.loclCAT/periodcentered.loclCAT ↊↊↊/commaaccentcomb.alt/commaaccentcomb.alt/commaaccentcomb.alt" ); axes = ( { name = Weight; tag = wght; } ); classes = ( { automatic = 1; code = "A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Amacron Aogonek Aring Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Etilde F G Gacute Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Oogonek Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Chedescender-cy Shha-cy Schwa-cy Obarred-cy Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol FdoubleStruck NdoubleStruck QdoubleStruck SdoubleStruck ZdoubleStruck"; name = Uppercase; }, { code = "zero zero.zero one two #twoTurned #threeTurned three four five six seven eight nine"; name = Digit; }, { code = "a b c d e f A B C D E F"; name = DigitHex; } ); customParameters = ( { name = fsType; value = ( ); }, { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "Family Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = 730; size = 10; }, { pos = 550; size = 10; }, { pos = 0; size = -10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); }, { name = isFixedPitch; value = 1; }, { name = "Use Typo Metrics"; value = 1; }, { name = "Enforce Compatibility Check"; value = 1; }, { name = "Write lastChange"; value = 0; }, { name = "Use Line Breaks"; value = 1; } ); date = "2021-06-24 10:39:02 +0000"; familyName = "JetBrains Mono"; featurePrefixes = ( { automatic = 1; code = "languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn AZE; languagesystem latn CRT; languagesystem latn KAZ; languagesystem latn TAT; languagesystem latn TRK; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn CAT; "; name = Languagesystems; } ); features = ( { automatic = 1; code = "feature calt; feature locl; feature subs; feature sinf; feature sups; feature frac; feature ordn; feature case; feature zero; "; tag = aalt; }, { code = "lookup uppercaseSharpS { sub @Uppercase @Uppercase germandbls' by germandbls.calt; sub germandbls' @Uppercase by germandbls.calt; } uppercaseSharpS; lookup equal_colon.liga { ignore sub equal equal' colon; ignore sub equal' colon colon; ignore sub equal' colon equal; sub SPC colon' by equal_colon.liga; sub equal' colon by SPC; } equal_colon.liga; lookup at_underscore.liga { ignore sub at at' underscore; ignore sub at' underscore underscore; sub SPC underscore' by at_underscore.liga; sub at' underscore by SPC; } at_underscore.liga; lookup numbersign_numbersign.liga { ignore sub numbersign numbersign' numbersign; ignore sub numbersign' numbersign numbersign; sub SPC numbersign' by numbersign_numbersign.liga; sub numbersign' numbersign by SPC; } numbersign_numbersign.liga; lookup numbersign_numbersign_numbersign.liga { ignore sub numbersign numbersign' numbersign numbersign; ignore sub numbersign' numbersign numbersign numbersign; sub SPC SPC numbersign' by numbersign_numbersign_numbersign.liga; sub SPC numbersign' numbersign by SPC; sub numbersign' numbersign numbersign by SPC; } numbersign_numbersign_numbersign.liga; lookup numbersign_numbersign_numbersign_numbersign.liga { ignore sub numbersign numbersign' numbersign numbersign numbersign; ignore sub numbersign' numbersign numbersign numbersign numbersign; sub SPC SPC SPC numbersign' by numbersign_numbersign_numbersign_numbersign.liga; sub SPC SPC numbersign' numbersign by SPC; sub SPC numbersign' numbersign numbersign by SPC; sub numbersign' numbersign numbersign numbersign by SPC; } numbersign_numbersign_numbersign_numbersign.liga; lookup bar_braceright.liga { ignore sub bar bar' braceright; ignore sub bar' bar braceright; sub SPC braceright' by bar_braceright.liga; sub bar' braceright by SPC; } bar_braceright.liga; lookup bracketleft_bar.liga { ignore sub bracketleft bracketleft' bar; sub SPC bar' by bracketleft_bar.liga; sub bracketleft' bar by SPC; } bracketleft_bar.liga; lookup bar_bracketright.liga { ignore sub bar' bracketright bracketright; sub SPC bracketright' by bar_bracketright.liga; sub bar' bracketright by SPC; } bar_bracketright.liga; lookup bracketleft_less.liga { ignore sub bracketleft bracketleft' less; ignore sub bracketleft' less less; ignore sub bracketleft' less plus; ignore sub bracketleft' less asterisk; ignore sub bracketleft' less dollar; ignore sub bracketleft' less slash; ignore sub bracketleft' less equal; sub SPC less' by bracketleft_less.liga; sub bracketleft' less by SPC; } bracketleft_less.liga; lookup braceleft_bar.liga { ignore sub braceleft braceleft' bar; ignore sub braceleft' bar bar; sub SPC bar' by braceleft_bar.liga; sub braceleft' bar by SPC; } braceleft_bar.liga; #lookup backslash_backslash.liga { #sub SPC backslash' by #} backslash_backslash.liga; lookup slash_slash.liga { ignore sub slash slash' slash; ignore sub slash' slash slash; ignore sub slash' slash equal; sub SPC slash' by slash_slash.liga; sub slash' slash by SPC; } slash_slash.liga; lookup slash_slash_slash.liga { ignore sub slash slash' slash slash; ignore sub slash' slash slash slash; sub SPC SPC slash' by slash_slash_slash.liga; sub SPC slash' slash by SPC; sub slash' slash slash by SPC; } slash_slash_slash.liga; lookup slash_equal.liga { ignore sub slash slash' equal; ignore sub equal slash' equal; ignore sub slash' equal equal; sub SPC equal' by slash_equal.liga; sub slash' equal by SPC; } slash_equal.liga; lookup slash_slash_equal.liga { ignore sub slash slash' slash equal; ignore sub equal slash' slash equal; ignore sub slash' slash equal equal; sub SPC SPC equal' by slash_slash_equal.liga; sub SPC slash' equal by SPC; sub slash' slash equal by SPC; } slash_slash_equal.liga; lookup slash_equal_equal.liga { ignore sub slash slash' equal equal; ignore sub slash' equal equal equal; sub SPC SPC equal' by slash_equal_equal.liga; sub SPC equal' equal by SPC; sub slash' equal equal by SPC; } slash_equal_equal.liga; lookup slash_asterisk.liga { ignore sub slash slash' asterisk; ignore sub asterisk slash' asterisk; ignore sub slash' asterisk asterisk; ignore sub slash' asterisk slash; ignore sub slash' asterisk period; sub SPC asterisk' by slash_asterisk.liga; sub slash' asterisk by SPC; } slash_asterisk.liga; lookup slash_asterisk_asterisk.liga { ignore sub slash slash' asterisk asterisk; ignore sub asterisk slash' asterisk asterisk; ignore sub slash' asterisk asterisk asterisk; ignore sub slash' asterisk asterisk slash; ignore sub slash' asterisk asterisk period; sub SPC SPC asterisk' by slash_asterisk_asterisk.liga; sub SPC asterisk' asterisk by SPC; sub slash' asterisk asterisk by SPC; } slash_asterisk_asterisk.liga; lookup asterisk_slash.liga { ignore sub asterisk asterisk' slash; ignore sub slash asterisk' slash; ignore sub period asterisk' slash; ignore sub asterisk' slash slash; ignore sub asterisk' slash asterisk; sub SPC slash' by asterisk_slash.liga; sub asterisk' slash by SPC; } asterisk_slash.liga; lookup asterisk_asterisk_asterisk.liga { ignore sub asterisk asterisk' asterisk asterisk; ignore sub asterisk' asterisk asterisk asterisk; sub SPC SPC asterisk' by asterisk_asterisk_asterisk.liga; sub SPC asterisk' asterisk by SPC; sub asterisk' asterisk asterisk by SPC; } asterisk_asterisk_asterisk.liga; lookup plus_plus.liga { ignore sub plus plus' plus; ignore sub plus' plus plus; sub SPC plus' by plus_plus.liga; sub plus' plus by SPC; } plus_plus.liga; lookup plus_plus_plus.liga { ignore sub plus plus' plus plus; ignore sub plus' plus plus plus; sub SPC SPC plus' by plus_plus_plus.liga; sub SPC plus' plus by SPC; sub plus' plus plus by SPC; } plus_plus_plus.liga; lookup period_question.liga { ignore sub period period' question; ignore sub period' question question; sub SPC question' by period_question.liga; sub period' question by SPC; } period_question.liga; lookup period_period.liga { ignore sub period period' period; ignore sub period' period period; ignore sub period' period less; sub SPC period' by period_period.liga; sub period' period by SPC; } period_period.liga; lookup period_period_period.liga { ignore sub period period' period period; ignore sub period' period period period; sub SPC SPC period' by period_period_period.liga; sub SPC period' period by SPC; sub period' period period by SPC; } period_period_period.liga; lookup period_period_less.liga { ignore sub period period' period less; ignore sub period' period less less; sub SPC SPC less' by period_period_less.liga; sub SPC period' less by SPC; sub period' period less by SPC; } period_period_less.liga; lookup less_exclam_hyphen_hyphen.liga { ignore sub less less' exclam hyphen hyphen; ignore sub parenleft question less' exclam hyphen hyphen; ignore sub less' exclam hyphen hyphen hyphen; sub SPC SPC SPC hyphen' by less_exclam_hyphen_hyphen.liga; sub SPC SPC hyphen' hyphen by SPC; sub SPC exclam' hyphen hyphen by SPC; sub less' exclam hyphen hyphen by SPC; } less_exclam_hyphen_hyphen.liga; lookup less_less_hyphen.liga { ignore sub less less' less hyphen; ignore sub less' less hyphen hyphen; sub SPC SPC hyphen' by less_less_hyphen.liga; sub SPC less' hyphen by SPC; sub less' less hyphen by SPC; } less_less_hyphen.liga; lookup less_hyphen.liga { ignore sub less less' hyphen; ignore sub less' hyphen hyphen; ignore sub less' hyphen @Digit greater; ignore sub less' hyphen @Digit @Digit greater; ignore sub less' hyphen @Digit @Digit @Digit greater; ignore sub less' hyphen less; ignore sub less' hyphen bar; ignore sub less' hyphen greater; sub SPC hyphen' by less_hyphen.liga; sub less' hyphen by SPC; } less_hyphen.liga; lookup less_numbersign_hyphen_hyphen.liga { ignore sub less less' numbersign hyphen hyphen; ignore sub less' numbersign hyphen hyphen hyphen; sub SPC SPC SPC hyphen' by less_numbersign_hyphen_hyphen.liga; sub SPC SPC hyphen' hyphen by SPC; sub SPC numbersign' hyphen hyphen by SPC; sub less' numbersign hyphen hyphen by SPC; } less_numbersign_hyphen_hyphen.liga; lookup less_greater.liga { ignore sub less less' greater; ignore sub less' greater greater; sub SPC greater' by less_greater.liga; sub less' greater by SPC; } less_greater.liga; lookup less_colon.liga { ignore sub less less' colon; ignore sub less' colon colon; sub SPC colon' by less_colon.liga; sub less' colon by SPC; } less_colon.liga; lookup less_less.liga { ignore sub less less' less; ignore sub hyphen less' less; ignore sub equal less' less; ignore sub less' less less; ignore sub less' less equal; ignore sub less' less asciitilde; sub SPC less' by less_less.liga; sub less' less by SPC; } less_less.liga; lookup less_less_less.liga { ignore sub less less' less less; ignore sub less' less less less; sub SPC SPC less' by less_less_less.liga; sub SPC less' less by SPC; sub less' less less by SPC; } less_less_less.liga; lookup less_less_asciitilde.liga { ignore sub less less' less asciitilde; ignore sub less' less asciitilde asciitilde; sub SPC SPC asciitilde' by less_less_asciitilde.liga; sub SPC less' asciitilde by SPC; sub less' less asciitilde by SPC; } less_less_asciitilde.liga; lookup less_equal_greater.liga { ignore sub less less' equal greater; ignore sub parenleft question less' equal greater; ignore sub less' equal greater greater; sub SPC SPC greater' by less_equal_greater.liga; sub SPC equal' greater by SPC; sub less' equal greater by SPC; } less_equal_greater.liga; lookup less_hyphen_greater.liga { ignore sub less less' hyphen greater; ignore sub less' hyphen greater greater; sub SPC SPC greater' by less_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub less' hyphen greater by SPC; } less_hyphen_greater.liga; lookup less_bar_bar_bar.liga { ignore sub less less' bar bar bar; ignore sub less' bar bar bar bar; sub SPC SPC SPC bar' by less_bar_bar_bar.liga; sub SPC SPC bar' bar by SPC; sub SPC bar' bar bar by SPC; sub less' bar bar bar by SPC; } less_bar_bar_bar.liga; lookup less_bar_bar.liga { ignore sub less less' bar bar; ignore sub less' bar bar bar; ignore sub less' bar bar greater; sub SPC SPC bar' by less_bar_bar.liga; sub SPC bar' bar by SPC; sub less' bar bar by SPC; } less_bar_bar.liga; lookup less_bar.liga { ignore sub less less' bar; ignore sub less' bar bar bar; ignore sub less' bar greater; sub SPC bar' by less_bar.liga; sub less' bar by SPC; } less_bar.liga; lookup hyphen_bar.liga { ignore sub hyphen hyphen' bar; ignore sub less hyphen' bar; ignore sub hyphen' bar bar; sub SPC bar' by hyphen_bar.liga; sub hyphen' bar by SPC; } hyphen_bar.liga; lookup hyphen_greater_greater.liga { ignore sub hyphen hyphen' greater greater; ignore sub hyphen' greater greater greater; sub SPC SPC greater' by hyphen_greater_greater.liga; sub SPC greater' greater by SPC; sub hyphen' greater greater by SPC; } hyphen_greater_greater.liga; lookup hyphen_hyphen_greater.liga { ignore sub bracketleft hyphen' hyphen greater; ignore sub hyphen hyphen' hyphen greater; ignore sub hyphen' hyphen greater greater; sub SPC SPC greater' by hyphen_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub hyphen' hyphen greater by SPC; } hyphen_hyphen_greater.liga; lookup hyphen_greater.liga { ignore sub bracketleft hyphen' greater; ignore sub hyphen hyphen' greater; ignore sub greater hyphen' greater; ignore sub bar hyphen' greater; ignore sub hyphen' greater greater; ignore sub plus hyphen' greater; sub SPC greater' by hyphen_greater.liga; sub hyphen' greater by SPC; } hyphen_greater.liga; lookup greater_greater.liga { ignore sub greater greater' greater; ignore sub greater' greater greater; ignore sub greater' greater equal; ignore sub greater' greater hyphen; ignore sub equal greater' greater; ignore sub slash greater' greater; sub SPC greater' by greater_greater.liga; sub greater' greater by SPC; } greater_greater.liga; lookup greater_greater_greater.liga { ignore sub greater greater' greater greater; ignore sub greater' greater greater greater; sub SPC SPC greater' by greater_greater_greater.liga; sub SPC greater' greater by SPC; sub greater' greater greater by SPC; } greater_greater_greater.liga; lookup greater_equal.liga { ignore sub greater greater' equal; ignore sub greater' equal equal; ignore sub greater' equal greater; ignore sub greater' equal less; sub SPC equal' by greater_equal.liga; sub greater' equal by SPC; } greater_equal.liga; lookup greater_colon.liga { ignore sub greater greater' colon; ignore sub greater' colon colon; sub SPC colon' by greater_colon.liga; sub greater' colon by SPC; } greater_colon.liga; lookup greater_bracketright.liga { ignore sub greater greater' bracketright; ignore sub plus greater' bracketright; ignore sub asterisk greater' bracketright; ignore sub dollar greater' bracketright; ignore sub slash greater' bracketright; ignore sub equal greater' bracketright; ignore sub greater' bracketright bracketright; sub SPC bracketright' by greater_bracketright.liga; sub greater' bracketright by SPC; } greater_bracketright.liga; lookup less_equal.liga { ignore sub less' equal bar; ignore sub less less' equal; ignore sub parenleft question less' equal; ignore sub less' equal equal; ignore sub less' equal less; sub SPC equal' by less_equal.liga; sub less' equal by SPC; } less_equal.liga; #Less_less lookup less_less_equal.liga { ignore sub less' less equal equal; ignore sub less less' less equal; sub SPC equal' by less_less_equal.liga; sub SPC less' equal by SPC; sub less' less equal by SPC; } less_less_equal.liga; lookup less_equal_equal.liga { ignore sub less less' equal equal; ignore sub parenleft question less' equal equal; ignore sub less' equal equal equal; ignore sub less' equal equal greater; sub SPC SPC equal' by less_equal_equal.liga; sub SPC equal' equal by SPC; sub less' equal equal by SPC; } less_equal_equal.liga; lookup less_bar_greater.liga { ignore sub less less' bar greater; ignore sub less' bar greater greater; sub SPC SPC greater' by less_bar_greater.liga; sub SPC bar' greater by SPC; sub less' bar greater by SPC; } less_bar_greater.liga; lookup underscore_bar_underscore.liga { ignore sub underscore underscore' bar underscore; ignore sub underscore' bar underscore underscore; sub SPC SPC underscore' by underscore_bar_underscore.liga; sub SPC bar' underscore by SPC; sub underscore' bar underscore by SPC; } underscore_bar_underscore.liga; lookup exclam_equal.liga { ignore sub exclam exclam' equal; ignore sub parenleft question exclam' equal; ignore sub parenleft question less exclam' equal; ignore sub equal exclam' equal; ignore sub exclam' equal equal; sub SPC equal' by exclam_equal.liga; sub exclam' equal by SPC; } exclam_equal.liga; lookup exclam_exclam.liga { ignore sub exclam exclam' exclam; ignore sub parenleft question exclam' exclam; ignore sub parenleft question less exclam' exclam; ignore sub exclam' exclam exclam; sub SPC exclam' by exclam_exclam.liga; sub exclam' exclam by SPC; } exclam_exclam.liga; lookup exclam_equal_equal.liga{ ignore sub exclam exclam' equal equal; ignore sub parenleft question exclam' equal equal; ignore sub parenleft question less exclam' equal equal; ignore sub exclam' equal equal equal; sub SPC SPC equal' by exclam_equal_equal.liga; sub SPC equal' equal by SPC; sub exclam' equal equal by SPC; } exclam_equal_equal.liga; lookup equal_exclam_equal.liga{ ignore sub equal equal' exclam equal; ignore sub parenleft question equal' exclam equal; ignore sub equal' exclam equal equal; sub SPC SPC equal' by equal_exclam_equal.liga; sub SPC exclam' equal by SPC; sub equal' exclam equal by SPC; } equal_exclam_equal.liga; lookup equal_greater.liga { ignore sub bracketleft equal' greater; ignore sub equal equal' greater; ignore sub greater equal' greater; ignore sub bar equal' greater; ignore sub parenleft question less equal' greater; ignore sub parenleft question equal' greater; ignore sub equal' greater equal; ignore sub equal' greater greater; sub SPC greater' by equal_greater.liga; sub equal' greater by SPC; } equal_greater.liga; lookup equal_equal.liga { ignore sub equal equal' equal; ignore sub parenleft question less equal' equal; ignore sub parenleft question equal' equal; ignore sub equal' equal equal; ignore sub equal' equal greater; sub SPC equal' by equal_equal.liga; sub equal' equal by SPC; } equal_equal.liga; lookup equal_equal_equal.liga { ignore sub equal equal' equal equal; ignore sub parenleft question equal' equal equal; ignore sub less equal' equal equal; ignore sub equal' equal equal equal; ignore sub equal' equal equal greater; sub SPC SPC equal' by equal_equal_equal.liga; sub SPC equal' equal by SPC; sub equal' equal equal by SPC; } equal_equal_equal.liga; lookup equal_colon_equal.liga { ignore sub equal equal' colon equal; ignore sub parenleft question equal' colon equal; ignore sub equal' colon equal equal; sub SPC SPC equal' by equal_colon_equal.liga; sub SPC colon' equal by SPC; sub equal' colon equal by SPC; } equal_colon_equal.liga; lookup colon_equal.liga { ignore sub equal colon' equal; ignore sub colon colon' equal; ignore sub colon' equal equal; sub SPC equal' by colon_equal.liga; sub colon' equal by SPC; } colon_equal.liga; lookup colon_greater.liga { ignore sub colon colon' greater; ignore sub colon' greater greater; sub SPC greater' by colon_greater.liga; sub colon' greater by SPC; } colon_greater.liga; lookup colon_less.liga { ignore sub colon colon' less; ignore sub colon' less less; sub SPC less' by colon_less.liga; sub colon' less by SPC; } colon_less.liga; lookup colon_colon.liga { ignore sub colon colon' colon; ignore sub colon' colon colon; ignore sub colon' colon equal; sub SPC colon' by colon_colon.liga; sub colon' colon by SPC; } colon_colon.liga; lookup semicolon_semicolon.liga { ignore sub semicolon semicolon' semicolon; ignore sub semicolon' semicolon semicolon; sub SPC semicolon' by semicolon_semicolon.liga; sub semicolon' semicolon by SPC; } semicolon_semicolon.liga; lookup semicolon_semicolon_semicolon.liga { ignore sub semicolon semicolon' semicolon semicolon; ignore sub semicolon' semicolon semicolon semicolon; sub SPC SPC semicolon' by semicolon_semicolon_semicolon.liga; sub SPC semicolon' semicolon by SPC; sub semicolon' semicolon semicolon by SPC; } semicolon_semicolon_semicolon.liga; lookup colon_colon_colon.liga { ignore sub colon colon' colon colon; ignore sub colon' colon colon colon; sub SPC SPC colon' by colon_colon_colon.liga; sub SPC colon' colon by SPC; sub colon' colon colon by SPC; } colon_colon_colon.liga; lookup colon_question.liga { ignore sub colon colon' question; ignore sub colon' question question; ignore sub colon' question greater; sub SPC question' by colon_question.liga; sub colon' question by SPC; } colon_question.liga; lookup colon_question_greater.liga { ignore sub colon colon' question greater; ignore sub colon' question greater greater; sub SPC SPC greater' by colon_question_greater.liga; sub SPC question' greater by SPC; sub colon' question greater by SPC; } colon_question_greater.liga; lookup colon_colon_equal.liga { ignore sub colon colon' colon equal; ignore sub colon' colon equal equal; sub SPC SPC equal' by colon_colon_equal.liga; sub SPC colon' equal by SPC; sub colon' colon equal by SPC; } colon_colon_equal.liga; lookup bar_bar_bar_greater.liga { ignore sub bar bar' bar bar greater; ignore sub bar' bar bar greater greater; sub SPC SPC SPC greater' by bar_bar_bar_greater.liga; sub SPC SPC bar' greater by SPC; sub SPC bar' bar greater by SPC; sub bar' bar bar greater by SPC; } bar_bar_bar_greater.liga; lookup bar_bar_greater.liga { ignore sub bar bar' bar greater; ignore sub less bar' bar greater; ignore sub bar' bar greater greater; sub SPC SPC greater' by bar_bar_greater.liga; sub SPC bar' greater by SPC; sub bar' bar greater by SPC; } bar_bar_greater.liga; lookup bar_greater.liga { ignore sub bar bar' greater; ignore sub bar' greater greater; sub SPC greater' by bar_greater.liga; sub bar' greater by SPC; } bar_greater.liga; lookup bar_bar_hyphen.liga { ignore sub bar bar' bar hyphen hyphen; ignore sub bar' bar bar hyphen; sub SPC SPC hyphen' by bar_bar_hyphen.liga; sub SPC bar' hyphen by SPC; sub bar' bar hyphen by SPC; } bar_bar_hyphen.liga; lookup bar_bar_equal.liga { ignore sub bar bar' bar equal equal; ignore sub bar' bar bar equal; sub SPC SPC equal' by bar_bar_equal.liga; sub SPC bar' equal by SPC; sub bar' bar equal by SPC; } bar_bar_equal.liga; lookup bar_hyphen.liga { ignore sub bar bar' hyphen; ignore sub bar' hyphen hyphen; ignore sub bar' hyphen greater; sub SPC hyphen' by bar_hyphen.liga; sub bar' hyphen by SPC; } bar_hyphen.liga; lookup bar_equal.liga { ignore sub bar bar' equal; ignore sub bar' equal greater; ignore sub bar' equal equal; sub SPC equal' by bar_equal.liga; sub bar' equal by SPC; } bar_equal.liga; lookup bar_bar.liga { ignore sub bar bar' bar; ignore sub bar' bar bar; ignore sub bracketleft bar' bar; ignore sub bar' bar bracketright; sub SPC bar' by bar_bar.liga; sub bar' bar by SPC; } bar_bar.liga; lookup hyphen_hyphen.liga { ignore sub bracketleft hyphen' hyphen greater; ignore sub parenleft question less exclam hyphen' hyphen; ignore sub hyphen hyphen' hyphen; ignore sub less hyphen' hyphen; ignore sub hyphen' hyphen hyphen; sub SPC hyphen' by hyphen_hyphen.liga; sub hyphen' hyphen by SPC; } hyphen_hyphen.liga; lookup less_hyphen_hyphen.liga { ignore sub less less' hyphen hyphen; ignore sub less' hyphen hyphen hyphen; sub SPC SPC hyphen' by less_hyphen_hyphen.liga; sub SPC hyphen' hyphen by SPC; sub less' hyphen hyphen by SPC; } less_hyphen_hyphen.liga; lookup hyphen_hyphen_hyphen.liga { ignore sub bracketleft hyphen' hyphen hyphen greater; ignore sub hyphen hyphen' hyphen hyphen; ignore sub hyphen' hyphen hyphen hyphen; sub SPC SPC hyphen' by hyphen_hyphen_hyphen.liga; sub SPC hyphen' hyphen by SPC; sub hyphen' hyphen hyphen by SPC; } hyphen_hyphen_hyphen.liga; lookup question_question.liga { ignore sub question question' question; ignore sub question' question question; sub SPC question' by question_question.liga; sub question' question by SPC; } question_question.liga; lookup question_colon.liga { ignore sub question question' colon; ignore sub question' colon colon; ignore sub question' colon equal; sub SPC colon' by question_colon.liga; sub question' colon by SPC; } question_colon.liga; lookup question_equal.liga { ignore sub question question' equal; ignore sub question' equal equal; ignore sub parenleft question' equal colon equal; ignore sub parenleft question' equal exclam equal; ignore sub parenleft question' equal less less; ignore sub parenleft question' equal slash equal; ignore sub parenleft question' equal greater; sub SPC equal' by question_equal.liga; sub question' equal by SPC; } question_equal.liga; lookup question_period.liga { ignore sub question question' period; ignore sub question' period period; sub SPC period' by question_period.liga; sub question' period by SPC; } question_period.liga; lookup ampersand_ampersand.liga { ignore sub ampersand ampersand' ampersand; ignore sub ampersand' ampersand ampersand; sub SPC ampersand' by ampersand_ampersand.liga; sub ampersand' ampersand by SPC; } ampersand_ampersand.liga; lookup ampersand_equal.liga { ignore sub ampersand ampersand' equal; ignore sub ampersand' equal equal; ignore sub ampersand' equal greater; sub SPC equal' by ampersand_equal.liga; sub ampersand' equal by SPC; } ampersand_equal.liga; lookup ampersand_ampersand_ampersand.liga { ignore sub ampersand ampersand' ampersand ampersand; ignore sub ampersand' ampersand ampersand ampersand; sub SPC SPC ampersand' by ampersand_ampersand_ampersand.liga; sub SPC ampersand' ampersand by SPC; sub ampersand' ampersand ampersand by SPC; } ampersand_ampersand_ampersand.liga; lookup period_equal.liga { ignore sub period period' equal; ignore sub period' equal equal; sub SPC equal' by period_equal.liga; sub period' equal by SPC; } period_equal.liga; lookup underscore_underscore.liga { ignore sub underscore underscore' underscore; ignore sub underscore' underscore underscore; sub SPC underscore' by underscore_underscore.liga; sub underscore' underscore by SPC; } underscore_underscore.liga; lookup equal_slash_equal.liga { ignore sub equal equal' slash equal; ignore sub parenleft question equal' slash equal; ignore sub equal' slash equal equal; sub SPC SPC equal' by equal_slash_equal.liga; sub SPC slash' equal by SPC; sub equal' slash equal by SPC; } equal_slash_equal.liga; lookup less_hyphen_less.liga { ignore sub less less' hyphen less; ignore sub less' hyphen less less; sub SPC SPC less' by less_hyphen_less.liga; sub SPC hyphen' less by SPC; sub less' hyphen less by SPC; } less_hyphen_less.liga; lookup less_equal_less.liga { ignore sub less less' equal less; ignore sub parenleft question less' equal less; ignore sub less' equal less less; sub SPC SPC less' by less_equal_less.liga; sub SPC equal' less by SPC; sub less' equal less by SPC; } less_equal_less.liga; lookup less_equal_equal_greater.liga { ignore sub less less' equal equal greater; ignore sub parenleft question less' equal equal greater; ignore sub less' equal equal greater greater; sub SPC SPC greater' by less_equal_equal_greater.liga; sub SPC SPC equal' greater by SPC; sub SPC equal' equal greater by SPC; sub less' equal equal greater by SPC; } less_equal_equal_greater.liga; lookup equal_equal_greater.liga { ignore sub bracketleft equal' equal greater; ignore sub equal equal' equal greater; ignore sub parenleft question less equal' equal greater; ignore sub parenleft question equal' equal greater; ignore sub equal' equal greater greater; sub SPC SPC greater' by equal_equal_greater.liga; sub SPC equal' greater by SPC; sub equal' equal greater by SPC; } equal_equal_greater.liga; lookup equal_greater_greater.liga { ignore sub equal equal' greater greater; ignore sub parenleft question equal' greater greater; ignore sub equal' greater greater greater; sub SPC SPC greater' by equal_greater_greater.liga; sub SPC greater' greater by SPC; sub equal' greater greater by SPC; } equal_greater_greater.liga; lookup greater_equal_greater.liga { ignore sub greater greater' equal greater; ignore sub greater' equal greater greater; sub SPC SPC greater' by greater_equal_greater.liga; sub SPC equal' greater by SPC; sub greater' equal greater by SPC; } greater_equal_greater.liga; lookup greater_greater_equal.liga { ignore sub greater greater' greater equal; ignore sub greater' greater equal equal; sub SPC SPC equal' by greater_greater_equal.liga; sub SPC greater' equal by SPC; sub greater' greater equal by SPC; } greater_greater_equal.liga; lookup greater_greater_hyphen.liga { ignore sub greater greater' greater hyphen; ignore sub greater' greater hyphen hyphen; sub SPC SPC hyphen' by greater_greater_hyphen.liga; sub SPC greater' hyphen by SPC; sub greater' greater hyphen by SPC; } greater_greater_hyphen.liga; lookup greater_hyphen.liga { ignore sub greater greater' hyphen; ignore sub greater' hyphen hyphen; ignore sub greater' hyphen greater; ignore sub greater' hyphen less; sub SPC hyphen' by greater_hyphen.liga; sub greater' hyphen by SPC; } greater_hyphen.liga; lookup greater_hyphen_greater.liga { ignore sub greater greater' hyphen greater; ignore sub greater' hyphen greater greater; sub SPC SPC greater' by greater_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub greater' hyphen greater by SPC; } greater_hyphen_greater.liga; lookup less_asciitilde.liga { ignore sub less less' asciitilde; ignore sub less' asciitilde asciitilde; ignore sub less' asciitilde greater; sub SPC asciitilde' by less_asciitilde.liga; sub less' asciitilde by SPC; } less_asciitilde.liga; lookup asciitilde_asciitilde.liga { ignore sub asciitilde asciitilde' asciitilde; ignore sub less asciitilde' asciitilde; ignore sub asciitilde' asciitilde asciitilde; ignore sub asciitilde' asciitilde greater; sub SPC asciitilde' by asciitilde_asciitilde.liga; sub asciitilde' asciitilde by SPC; } asciitilde_asciitilde.liga; lookup less_asciitilde_greater.liga { ignore sub less less' asciitilde greater; ignore sub less' asciitilde greater greater; sub SPC SPC greater' by less_asciitilde_greater.liga; sub SPC asciitilde' greater by SPC; sub less' asciitilde greater by SPC; } less_asciitilde_greater.liga; lookup hyphen_less.liga { ignore sub hyphen hyphen' less; ignore sub less hyphen' less; ignore sub greater hyphen' less; ignore sub hyphen' less less; sub SPC less' by hyphen_less.liga; sub hyphen' less by SPC; } hyphen_less.liga; lookup hyphen_less_less.liga { ignore sub hyphen hyphen' less less; ignore sub hyphen' less less less; sub SPC SPC less' by hyphen_less_less.liga; sub SPC less' less by SPC; sub hyphen' less less by SPC; } hyphen_less_less.liga; lookup equal_less_less.liga { ignore sub equal equal' less less; ignore sub parenleft question equal' less less; ignore sub equal' less less less; sub SPC SPC less' by equal_less_less.liga; sub SPC less' less by SPC; sub equal' less less by SPC; } equal_less_less.liga; lookup less_hyphen_bar.liga { ignore sub less less' hyphen bar; ignore sub less' hyphen bar bar; sub SPC SPC bar' by less_hyphen_bar.liga; sub SPC hyphen' bar by SPC; sub less' hyphen bar by SPC; } less_hyphen_bar.liga; lookup less_equal_bar.liga { ignore sub less less' equal bar; ignore sub parenleft question less' equal bar; ignore sub less' equal bar bar; sub SPC SPC bar' by less_equal_bar.liga; sub SPC equal' bar by SPC; sub less' equal bar by SPC; } less_equal_bar.liga; lookup bar_equal_greater.liga { ignore sub bar bar' equal greater; ignore sub bar' equal greater greater; sub SPC SPC greater' by bar_equal_greater.liga; sub SPC equal' greater by SPC; sub bar' equal greater by SPC; } bar_equal_greater.liga; lookup bar_hyphen_greater.liga { ignore sub bar bar' hyphen greater; ignore sub bar' hyphen greater greater; sub SPC SPC greater' by bar_hyphen_greater.liga; sub SPC hyphen' greater by SPC; sub bar' hyphen greater by SPC; } bar_hyphen_greater.liga; lookup less_asciitilde_asciitilde.liga { ignore sub less less' asciitilde asciitilde; ignore sub less' asciitilde asciitilde asciitilde; ignore sub less' asciitilde asciitilde greater; sub SPC SPC asciitilde' by less_asciitilde_asciitilde.liga; sub SPC asciitilde' asciitilde by SPC; sub less' asciitilde asciitilde by SPC; } less_asciitilde_asciitilde.liga; lookup hyphen_asciitilde.liga { ignore sub hyphen hyphen' asciitilde; ignore sub hyphen' asciitilde asciitilde; ignore sub hyphen' asciitilde greater; sub SPC asciitilde' by hyphen_asciitilde.liga; sub hyphen' asciitilde by SPC; } hyphen_asciitilde.liga; lookup asciitilde_asciitilde_greater.liga { ignore sub asciitilde asciitilde' asciitilde greater; ignore sub asciitilde' asciitilde greater greater; sub SPC SPC greater' by asciitilde_asciitilde_greater.liga; sub SPC asciitilde' greater by SPC; sub asciitilde' asciitilde greater by SPC; } asciitilde_asciitilde_greater.liga; lookup asciitilde_greater.liga { ignore sub asciitilde asciitilde' greater; ignore sub asciitilde' greater greater; sub SPC greater' by asciitilde_greater.liga; sub asciitilde' greater by SPC; } asciitilde_greater.liga; lookup asciitilde_hyphen.liga { ignore sub asciitilde asciitilde' hyphen; ignore sub asciitilde' hyphen hyphen; sub SPC hyphen' by asciitilde_hyphen.liga; sub asciitilde' hyphen by SPC; } asciitilde_hyphen.liga; lookup asciitilde_at.liga { ignore sub asciitilde asciitilde' at; ignore sub asciitilde' at at; sub SPC at' by asciitilde_at.liga; sub asciitilde' at by SPC; } asciitilde_at.liga; lookup asciicircum_equal.liga { ignore sub asciicircum asciicircum' equal; ignore sub asciicircum' equal equal; sub SPC equal' by asciicircum_equal.liga; sub asciicircum' equal by SPC; } asciicircum_equal.liga; lookup less_dollar_greater.liga { ignore sub less less' dollar greater; ignore sub less' dollar greater greater; sub SPC SPC greater' by less_dollar_greater.liga; sub SPC dollar' greater by SPC; sub less' dollar greater by SPC; } less_dollar_greater.liga; lookup less_dollar.liga { ignore sub less less' dollar; ignore sub less' dollar dollar; sub SPC dollar' by less_dollar.liga; sub less' dollar by SPC; } less_dollar.liga; lookup dollar_greater.liga { ignore sub dollar dollar' greater; ignore sub dollar' greater greater; sub SPC greater' by dollar_greater.liga; sub dollar' greater by SPC; } dollar_greater.liga; lookup less_plus_greater.liga { ignore sub less less' plus greater; ignore sub less' plus greater greater; sub SPC SPC greater' by less_plus_greater.liga; sub SPC plus' greater by SPC; sub less' plus greater by SPC; } less_plus_greater.liga; lookup less_plus.liga { ignore sub less less' plus; ignore sub less' plus plus; sub SPC plus' by less_plus.liga; sub less' plus by SPC; } less_plus.liga; lookup plus_greater.liga { ignore sub plus plus' greater; ignore sub plus' greater greater; sub SPC greater' by plus_greater.liga; sub plus' greater by SPC; } plus_greater.liga; lookup less_asterisk_greater.liga { ignore sub less less' asterisk greater; ignore sub less' asterisk greater greater; sub SPC SPC greater' by less_asterisk_greater.liga; sub SPC asterisk' greater by SPC; sub less' asterisk greater by SPC; } less_asterisk_greater.liga; lookup less_asterisk.liga { ignore sub less less' asterisk; ignore sub less' asterisk asterisk; sub SPC asterisk' by less_asterisk.liga; sub less' asterisk by SPC; } less_asterisk.liga; lookup asterisk_greater.liga { ignore sub asterisk asterisk' greater; ignore sub asterisk' greater greater; sub SPC greater' by asterisk_greater.liga; sub asterisk' greater by SPC; } asterisk_greater.liga; lookup less_slash_greater.liga { ignore sub less less' slash greater; ignore sub less' slash greater greater; sub SPC SPC greater' by less_slash_greater.liga; sub SPC slash' greater by SPC; sub less' slash greater by SPC; } less_slash_greater.liga; lookup less_slash.liga { ignore sub less less' slash; ignore sub less' slash slash; sub SPC slash' by less_slash.liga; sub less' slash by SPC; } less_slash.liga; lookup slash_greater.liga { ignore sub slash slash' greater; ignore sub slash' greater greater; sub SPC greater' by slash_greater.liga; sub slash' greater by SPC; } slash_greater.liga; lookup numbersign_braceleft.liga { ignore sub numbersign numbersign' braceleft; ignore sub numbersign' braceleft braceleft; sub SPC braceleft' by numbersign_braceleft.liga; sub numbersign' braceleft by SPC; } numbersign_braceleft.liga; lookup numbersign_bracketleft.liga { ignore sub numbersign numbersign' bracketleft; ignore sub numbersign' bracketleft bracketleft; sub SPC bracketleft' by numbersign_bracketleft.liga; sub numbersign' bracketleft by SPC; } numbersign_bracketleft.liga; lookup numbersign_parenleft.liga { ignore sub numbersign numbersign' parenleft; ignore sub numbersign' parenleft parenleft; sub SPC parenleft' by numbersign_parenleft.liga; sub numbersign' parenleft by SPC; } numbersign_parenleft.liga; lookup numbersign_question.liga { ignore sub numbersign numbersign' question; ignore sub numbersign' question question; sub SPC question' by numbersign_question.liga; sub numbersign' question by SPC; } numbersign_question.liga; lookup numbersign_underscore.liga { ignore sub numbersign numbersign' underscore; ignore sub numbersign' underscore underscore; ignore sub numbersign' underscore parenleft; sub SPC underscore' by numbersign_underscore.liga; sub numbersign' underscore by SPC; } numbersign_underscore.liga; lookup numbersign_exclam.liga { ignore sub numbersign numbersign' exclam; ignore sub numbersign' exclam exclam; sub SPC exclam' by numbersign_exclam.liga; sub numbersign' exclam by SPC; } numbersign_exclam.liga; lookup numbersign_colon.liga { ignore sub numbersign numbersign' colon; ignore sub numbersign' colon colon; sub SPC colon' by numbersign_colon.liga; sub numbersign' colon by SPC; } numbersign_colon.liga; lookup numbersign_equal.liga { ignore sub numbersign numbersign' equal; ignore sub numbersign' equal equal; sub SPC equal' by numbersign_equal.liga; sub numbersign' equal by SPC; } numbersign_equal.liga; lookup numbersign_underscore_parenleft.liga{ ignore sub numbersign numbersign' underscore parenleft ; ignore sub numbersign' underscore parenleft parenleft; sub SPC SPC parenleft' by numbersign_underscore_parenleft.liga; sub SPC underscore' parenleft by SPC; sub numbersign' underscore parenleft by SPC; } numbersign_underscore_parenleft.liga; lookup bracketright_numbersign.liga { ignore sub bracketright bracketright' numbersign; ignore sub bracketright' numbersign numbersign; sub SPC numbersign' by bracketright_numbersign.liga; sub bracketright' numbersign by SPC; } bracketright_numbersign.liga; "; tag = calt; }, { automatic = 1; code = "lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dblgravecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb ogonekcomb ringbelowcomb horncomb slashlongcomb slashshortcomb strokelongcomb]; sub [i j]' @CombiningTopAccents by [idotless jdotless]; sub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless]; @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb dblgravecomb commaturnedabovecomb horncomb dotbelowcomb commaaccentcomb cedillacomb ogonekcomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron tonos brevecomb_acutecomb brevecomb_gravecomb brevecomb_hookabovecomb brevecomb_tildecomb circumflexcomb_acutecomb circumflexcomb_gravecomb circumflexcomb_hookabovecomb circumflexcomb_tildecomb]; @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case dblgravecomb.case commaturnedabovecomb.case horncomb.case dotbelowcomb.case commaaccentcomb.case cedillacomb.case ogonekcomb.case dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case tonos.case brevecomb_acutecomb.case brevecomb_gravecomb.case brevecomb_hookabovecomb.case brevecomb_tildecomb.case circumflexcomb_acutecomb.case circumflexcomb_gravecomb.case circumflexcomb_hookabovecomb.case circumflexcomb_tildecomb.case]; sub @Markscomb @Markscomb' by @MarkscombCase; sub @Uppercase @Markscomb' by @MarkscombCase; } ccmp_Other_1; lookup ccmp_Other_2 { sub @Markscomb' @MarkscombCase by @MarkscombCase; sub @MarkscombCase @Markscomb' by @MarkscombCase; } ccmp_Other_2; lookup ccmp_latn_1 { lookupflag 0; sub brevecomb acutecomb by brevecomb_acutecomb; sub brevecomb.case acutecomb.case by brevecomb_acutecomb.case; sub brevecomb gravecomb by brevecomb_gravecomb; sub brevecomb.case gravecomb.case by brevecomb_gravecomb.case; sub brevecomb hookabovecomb by brevecomb_hookabovecomb; sub brevecomb.case hookabovecomb.case by brevecomb_hookabovecomb.case; sub brevecomb tildecomb by brevecomb_tildecomb; sub brevecomb.case tildecomb.case by brevecomb_tildecomb.case; sub circumflexcomb acutecomb by circumflexcomb_acutecomb; sub circumflexcomb.case acutecomb.case by circumflexcomb_acutecomb.case; sub circumflexcomb gravecomb by circumflexcomb_gravecomb; sub circumflexcomb.case gravecomb.case by circumflexcomb_gravecomb.case; sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; sub circumflexcomb.case hookabovecomb.case by circumflexcomb_hookabovecomb.case; sub circumflexcomb tildecomb by circumflexcomb_tildecomb; sub circumflexcomb.case tildecomb.case by circumflexcomb_tildecomb.case; } ccmp_latn_1; script latn; lookup ccmp_latn_1; "; tag = ccmp; }, { code = "lookup locl_latn_0 { script latn; language AZE; sub i by idotaccent; language CRT; sub i by idotaccent; language KAZ; sub i by idotaccent; language TAT; sub i by idotaccent; language TRK; sub i by idotaccent; } locl_latn_0; lookup locl_latn_1 { script latn; language ROM; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; language MOL; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_1; lookup locl_latn_2 { script latn; language CAT; sub l periodcentered' l by periodcentered.loclCAT; sub L periodcentered' L by periodcentered.loclCAT.case; #sub l.ss01 periodcentered' l.ss01 by periodcentered.loclCAT; } locl_latn_2; "; tag = locl; }, { automatic = 1; code = "sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; "; tag = subs; }, { automatic = 1; code = "sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; "; tag = sinf; }, { automatic = 1; code = "sub zero by zerosuperior; sub one by onesuperior; sub two by twosuperior; sub three by threesuperior; sub four by foursuperior; sub five by fivesuperior; sub six by sixsuperior; sub seven by sevensuperior; sub eight by eightsuperior; sub nine by ninesuperior; sub plus by plussuperior; "; tag = sups; }, { automatic = 1; code = "sub one slash four by onequarter; sub one slash two by onehalf; sub three slash four by threequarters; "; tag = frac; }, { automatic = 1; code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; "; tag = ordn; }, { automatic = 1; code = "sub colon by colon.case; sub periodcentered.loclCAT by periodcentered.loclCAT.case; sub dieresiscomb by dieresiscomb.case; sub dotaccentcomb by dotaccentcomb.case; sub gravecomb by gravecomb.case; sub acutecomb by acutecomb.case; sub hungarumlautcomb by hungarumlautcomb.case; sub circumflexcomb by circumflexcomb.case; sub caroncomb by caroncomb.case; sub brevecomb by brevecomb.case; sub ringcomb by ringcomb.case; sub tildecomb by tildecomb.case; sub macroncomb by macroncomb.case; sub hookabovecomb by hookabovecomb.case; sub dblgravecomb by dblgravecomb.case; sub commaturnedabovecomb by commaturnedabovecomb.case; sub horncomb by horncomb.case; sub dotbelowcomb by dotbelowcomb.case; sub commaaccentcomb by commaaccentcomb.case; sub cedillacomb by cedillacomb.case; sub ogonekcomb by ogonekcomb.case; sub dieresis by dieresis.case; sub dotaccent by dotaccent.case; sub grave by grave.case; sub acute by acute.case; sub hungarumlaut by hungarumlaut.case; sub circumflex by circumflex.case; sub caron by caron.case; sub breve by breve.case; sub ring by ring.case; sub tilde by tilde.case; sub macron by macron.case; sub tonos by tonos.case; sub brevecomb_acutecomb by brevecomb_acutecomb.case; sub brevecomb_gravecomb by brevecomb_gravecomb.case; sub brevecomb_hookabovecomb by brevecomb_hookabovecomb.case; sub brevecomb_tildecomb by brevecomb_tildecomb.case; sub circumflexcomb_acutecomb by circumflexcomb_acutecomb.case; sub circumflexcomb_gravecomb by circumflexcomb_gravecomb.case; sub circumflexcomb_hookabovecomb by circumflexcomb_hookabovecomb.case; sub circumflexcomb_tildecomb by circumflexcomb_tildecomb.case; "; tag = case; }, { automatic = 1; code = "sub zero by zero.zero; "; tag = zero; } ); fontMaster = ( { axesValues = ( 100 ); customParameters = ( { name = winAscent; value = 1020; }, { name = winDescent; value = 300; }, { name = hheaAscender; value = 1020; }, { name = hheaDescender; value = -300; }, { name = typoAscender; value = 1020; }, { name = typoDescender; value = -300; }, { name = hheaLineGap; value = 0; }, { name = typoLineGap; value = 0; }, { name = strikeoutPosition; value = 320; }, { name = "Master Icon Glyph Name"; value = T; }, { name = underlinePosition; value = -155; }, { name = underlineThickness; value = 50; }, { name = "Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); } ); iconName = Light; id = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; metricValues = ( { over = 10; pos = 730; }, { over = 10; pos = 730; }, { over = 10; pos = 550; }, { over = -10; }, { pos = -270; }, { pos = 9; } ); name = Thin; stemValues = ( 45, 50, 0, 0 ); userData = { GSCornerRadius = 15; de.kutilek.MasterGrid.type = units; de.kutilek.MasterGrid.value = ( 10, 10 ); }; }, { axesValues = ( 400 ); customParameters = ( { name = winAscent; value = 1020; }, { name = winDescent; value = 300; }, { name = hheaAscender; value = 1020; }, { name = hheaDescender; value = -300; }, { name = typoAscender; value = 1020; }, { name = typoDescender; value = -300; }, { name = hheaLineGap; value = 0; }, { name = typoLineGap; value = 0; }, { name = strikeoutPosition; value = 320; }, { name = "Master Icon Glyph Name"; value = R; }, { name = underlinePosition; value = -155; }, { name = underlineThickness; value = 50; }, { name = "Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); } ); id = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; metricValues = ( { over = 10; pos = 730; }, { over = 10; pos = 730; }, { over = 10; pos = 550; }, { over = -10; }, { pos = -270; }, { pos = 9; } ); name = Italic; stemValues = ( 82, 90, 60, 60 ); }, { axesValues = ( 800 ); customParameters = ( { name = winAscent; value = 1020; }, { name = winDescent; value = 300; }, { name = hheaAscender; value = 1020; }, { name = hheaDescender; value = -300; }, { name = typoAscender; value = 1020; }, { name = typoDescender; value = -300; }, { name = hheaLineGap; value = 0; }, { name = typoLineGap; value = 0; }, { name = strikeoutPosition; value = 320; }, { name = "Master Icon Glyph Name"; value = B; }, { name = underlinePosition; value = -155; }, { name = underlineThickness; value = 50; }, { name = "Alignment Zones"; value = ( { pos = 830; size = 10; }, { pos = -110; size = -10; }, { pos = -180; size = -10; } ); } ); iconName = Bold; id = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; metricValues = ( { over = 10; pos = 730; }, { over = 10; pos = 730; }, { over = 10; pos = 550; }, { over = -10; }, { pos = -270; }, { pos = 9; } ); name = ExtraBold; stemValues = ( 140, 150, 0, 120 ); userData = { de.kutilek.MasterGrid.type = units; de.kutilek.MasterGrid.value = ( 10, 10 ); }; } ); glyphs = ( { glyphname = A; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (450,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (76,0,l), (165,210,l), (415,210,l), (438,0,l), (488,0,l), (403,730,l), (341,730,l), (24,0,l) ); }, { closed = 1; nodes = ( (311,550,ls), (342,622,o), (362,673,o), (367,688,c), (368,673,o), (370,622,o), (378,550,cs), (410,255,l), (184,255,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (430,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (138,0,l), (199,165,l), (373,165,l), (382,0,l), (531,0,l), (466,730,l), (276,730,l), (-19,0,l) ); }, { closed = 1; nodes = ( (308,462,ls), (326,512,o), (343,567,o), (352,595,c), (353,567,o), (357,512,o), (359,461,cs), (366,285,l), (243,285,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (455,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (101,0,l), (180,194,l), (401,194,l), (418,0,l), (506,0,l), (433,730,l), (312,730,l), (6,0,l) ); }, { closed = 1; nodes = ( (302,496,ls), (336,580,o), (357,640,o), (363,658,c), (363,640,o), (365,580,o), (373,495,cs), (394,270,l), (210,270,l) ); } ); width = 600; } ); unicode = 65; }, { glyphname = Aacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 193; }, { glyphname = Abreve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 258; }, { glyphname = Abreveacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_acutecomb.case; } ); width = 600; } ); unicode = 7854; }, { glyphname = Abrevedotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (600,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 7862; }, { glyphname = Abrevegrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = brevecomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_gravecomb.case; } ); width = 600; } ); unicode = 7856; }, { glyphname = Abrevehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7858; }, { glyphname = Abrevetilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = brevecomb_tildecomb.case; } ); width = 600; } ); unicode = 7860; }, { glyphname = Acaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 461; }, { glyphname = Acircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 194; }, { glyphname = Acircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; } ); unicode = 7844; }, { glyphname = Acircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 7852; }, { glyphname = Acircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; } ); unicode = 7846; }, { glyphname = Acircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7848; }, { glyphname = Acircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; } ); unicode = 7850; }, { glyphname = Adieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 196; }, { glyphname = Adotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7840; }, { glyphname = Agrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 192; }, { glyphname = Ahookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7842; }, { glyphname = Amacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 256; }, { glyphname = Aogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (497,-195,l), (504,-153,l), (440,-153,ls), (408,-153,o), (392,-134,o), (397,-103,cs), (401,-75,o), (430,-36,o), (474,0,cs), (487,10,l), (450,10,l), (393,-27,o), (354,-74,o), (348,-115,cs), (340,-165,o), (369,-195,o), (424,-195,c) ); }, { ref = A; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,-203,l), (518,-143,l), (458,-143,ls), (424,-143,o), (407,-122,o), (411,-93,cs), (416,-65,o), (439,-36,o), (490,1,c), (503,10,l), (428,10,l), (358,-34,o), (330,-72,o), (324,-110,cs), (315,-164,o), (357,-203,o), (431,-203,cs) ); }, { ref = A; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (492,-225,l), (509,-120,l), (440,-120,ls), (411,-120,o), (397,-103,o), (400,-83,cs), (403,-66,o), (421,-42,o), (451,-18,cs), (488,11,l), (402,11,l), (329,-19,o), (278,-68,o), (271,-115,cs), (260,-180,o), (303,-225,o), (384,-225,cs) ); }, { ref = A; } ); width = 600; } ); unicode = 260; }, { glyphname = Aring; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; } ); unicode = 197; }, { glyphname = Atilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 195; }, { glyphname = AE; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (99,0,l), (151,165,l), (273,165,l), (247,0,l), (536,0,l), (556,126,l), (392,126,l), (420,305,l), (559,305,l), (580,436,l), (441,436,l), (468,605,l), (632,605,l), (652,730,l), (209,730,l), (-44,0,l) ); }, { closed = 1; nodes = ( (294,605,l), (343,605,l), (290,270,l), (185,270,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (77,0,l), (149,203,l), (290,203,l), (258,0,l), (526,0,l), (539,82,l), (357,82,l), (398,338,l), (555,338,l), (568,420,l), (411,420,l), (447,648,l), (629,648,l), (642,730,l), (247,730,l), (-14,0,l) ); }, { closed = 1; nodes = ( (305,648,l), (361,648,l), (302,278,l), (175,278,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (40,0,l), (130,215,l), (300,215,l), (266,0,l), (525,0,l), (532,45,l), (323,45,l), (373,357,l), (546,357,l), (553,402,l), (380,402,l), (424,685,l), (633,685,l), (641,730,l), (294,730,l), (-10,0,l) ); }, { closed = 1; nodes = ( (323,685,l), (374,685,l), (307,260,l), (150,260,l) ); } ); width = 600; } ); unicode = 198; }, { glyphname = AEacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = AE; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = AE; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = AE; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 508; }, { glyphname = B; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (419,0,o), (529,83,o), (549,211,cs), (567,323,o), (493,381,o), (396,380,c), (397,383,l), (485,383,o), (571,446,o), (586,543,cs), (604,657,o), (521,730,o), (373,730,cs), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (217,318,l), (310,318,ls), (375,318,o), (409,280,o), (400,219,cs), (390,158,o), (344,121,o), (279,121,cs), (186,121,l) ); }, { closed = 1; nodes = ( (263,609,l), (351,609,ls), (409,609,o), (440,577,o), (432,523,cs), (423,469,o), (382,436,o), (324,436,cs), (236,436,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (271,0,ls), (404,0,o), (498,78,o), (518,203,cs), (537,320,o), (474,395,o), (358,393,c), (356,378,l), (463,376,o), (539,440,o), (555,541,cs), (573,659,o), (505,730,o), (372,730,cs), (165,730,l), (49,0,l) ); }, { closed = 1; nodes = ( (191,341,l), (315,341,ls), (399,341,o), (442,286,o), (430,206,cs), (417,129,o), (358,81,o), (274,81,cs), (150,81,l) ); }, { closed = 1; nodes = ( (240,649,l), (359,649,ls), (436,649,o), (476,605,o), (465,534,cs), (453,463,o), (398,419,o), (321,419,cs), (203,419,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (257,0,ls), (389,0,o), (484,78,o), (504,200,cs), (521,310,o), (464,380,o), (356,380,c), (355,370,l), (452,370,o), (524,439,o), (540,542,cs), (558,656,o), (491,730,o), (370,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (172,353,l), (313,353,ls), (415,353,o), (469,294,o), (454,199,cs), (438,104,o), (366,46,o), (264,46,cs), (123,46,l) ); }, { closed = 1; nodes = ( (224,684,l), (362,684,ls), (455,684,o), (504,630,o), (490,541,cs), (476,452,o), (411,398,o), (317,398,cs), (179,398,l) ); } ); width = 600; } ); unicode = 66; }, { glyphname = C; layers = ( { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (377,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (405,-10,o), (516,77,o), (537,210,c), (387,210,l), (378,152,o), (339,120,o), (279,120,cs), (219,120,o), (190,152,o), (199,210,cs), (248,520,ls), (258,578,o), (297,610,o), (357,610,cs), (417,610,o), (446,578,o), (436,520,c), (586,520,l), (607,653,o), (524,740,o), (377,740,cs), (230,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,78,o), (111,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (377,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,200,c), (448,200,l), (432,98,o), (364,35,o), (268,35,cs), (174,35,o), (126,94,o), (141,190,cs), (197,540,ls), (212,636,o), (279,695,o), (372,695,cs), (467,695,o), (516,632,o), (500,530,c), (550,530,l), (570,658,o), (503,740,o), (379,740,cs), (257,740,o), (166,662,o), (147,540,cs), (91,190,ls), (72,69,o), (138,-10,o), (260,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (377,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (485,71,o), (506,200,c), (416,200,l), (403,117,o), (349,71,o), (271,71,cs), (192,71,o), (153,117,o), (166,200,cs), (218,531,ls), (231,613,o), (285,659,o), (364,659,cs), (442,659,o), (481,613,o), (468,530,c), (558,530,l), (578,659,o), (508,740,o), (377,740,cs), (244,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; } ); unicode = 67; }, { glyphname = Cacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = C; }, { pos = (616,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = C; }, { pos = (616,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = C; }, { pos = (617,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 262; }, { glyphname = Ccaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = C; }, { pos = (604,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = C; }, { pos = (604,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = C; }, { pos = (604,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 268; }, { glyphname = Ccedilla; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (245,-195,ls), (305,-195,o), (350,-161,o), (357,-118,cs), (366,-61,o), (307,-37,o), (260,-34,c), (293,26,l), (251,26,l), (202,-64,l), (273,-64,o), (316,-86,o), (311,-118,cs), (308,-140,o), (283,-160,o), (251,-160,cs), (171,-160,l), (165,-195,l) ); }, { ref = C; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (219,-203,ls), (291,-203,o), (345,-166,o), (352,-120,cs), (360,-68,o), (297,-41,o), (245,-35,c), (276,26,l), (219,26,l), (169,-69,l), (236,-69,o), (271,-89,o), (267,-112,cs), (264,-130,o), (242,-148,o), (213,-148,cs), (143,-148,l), (134,-203,l) ); }, { ref = C; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (230,-225,ls), (314,-225,o), (377,-182,o), (385,-133,cs), (395,-72,o), (318,-43,o), (258,-39,c), (286,16,l), (213,16,l), (164,-69,l), (237,-69,o), (277,-88,o), (272,-119,cs), (270,-135,o), (244,-155,o), (211,-155,cs), (131,-155,l), (120,-225,l) ); }, { ref = C; } ); width = 600; } ); unicode = 199; }, { glyphname = Ccircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 264; }, { glyphname = Cdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = C; }, { pos = (604,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 266; }, { glyphname = D; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (256,0,ls), (407,0,o), (523,94,o), (545,235,cs), (587,496,ls), (609,637,o), (523,730,o), (372,730,cs), (135,730,l), (19,0,l) ); }, { closed = 1; nodes = ( (262,590,l), (349,590,ls), (410,590,o), (445,552,o), (437,496,cs), (395,235,ls), (386,178,o), (339,140,o), (278,140,cs), (191,140,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (237,0,ls), (378,0,o), (482,86,o), (503,220,cs), (549,511,ls), (570,644,o), (494,730,o), (353,730,cs), (164,730,l), (48,0,l) ); }, { closed = 1; nodes = ( (241,650,l), (340,650,ls), (428,650,o), (473,598,o), (459,511,cs), (413,220,ls), (399,132,o), (338,80,o), (250,80,cs), (151,80,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (226,0,ls), (361,0,o), (465,88,o), (486,220,cs), (532,510,ls), (553,642,o), (477,730,o), (342,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (224,684,l), (334,684,ls), (438,684,o), (498,614,o), (482,510,cs), (436,220,ls), (419,115,o), (338,46,o), (233,46,cs), (123,46,l) ); } ); width = 600; } ); unicode = 68; }, { glyphname = Eth; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (290,325,l), (290,420,l), (10,420,l), (10,325,l) ); }, { ref = D; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (290,335,l), (290,410,l), (10,410,l), (10,335,l) ); }, { ref = D; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (290,351,l), (290,395,l), (10,395,l), (10,351,l) ); }, { ref = D; } ); width = 600; } ); unicode = 208; }, { glyphname = Dcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = D; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = D; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = D; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 270; }, { glyphname = Dcroat; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (290,351,l), (297,395,l), (17,395,l), (10,351,l) ); }, { ref = D; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (290,335,l), (302,410,l), (22,410,l), (10,335,l) ); }, { ref = D; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (290,325,l), (305,420,l), (25,420,l), (10,325,l) ); }, { ref = D; } ); width = 600; } ); unicode = 272; }, { glyphname = E; layers = ( { anchors = ( { name = bottom; pos = (320,0); }, { name = ogonek; pos = (380,0); }, { name = top; pos = (392,730); }, { name = topleft; pos = (92,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (506,128,l), (203,128,l), (232,310,l), (500,310,l), (520,438,l), (252,438,l), (278,602,l), (581,602,l), (602,730,l), (152,730,l), (36,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (320,0); }, { name = ogonek; pos = (390,0); }, { name = top; pos = (392,730); }, { name = topleft; pos = (92,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (476,0,l), (489,82,l), (158,82,l), (199,341,l), (495,341,l), (508,422,l), (212,422,l), (248,648,l), (579,648,l), (592,730,l), (172,730,l), (56,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (320,0); }, { name = ogonek; pos = (400,0); }, { name = top; pos = (392,730); }, { name = topleft; pos = (92,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (466,0,l), (473,46,l), (133,46,l), (183,358,l), (488,358,l), (495,403,l), (190,403,l), (234,684,l), (574,684,l), (582,730,l), (192,730,l), (76,0,l) ); } ); width = 600; } ); unicode = 69; }, { glyphname = Eacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (632,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 201; }, { glyphname = Ebreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = E; }, { alignment = 1; pos = (620,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; }, { alignment = 1; pos = (619,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = E; }, { alignment = 1; pos = (619,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 276; }, { glyphname = Ecaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 282; }, { glyphname = Ecircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 202; }, { glyphname = Ecircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; } ); unicode = 7870; }, { glyphname = Ecircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; }, { pos = (619,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 7878; }, { glyphname = Ecircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; } ); unicode = 7872; }, { glyphname = Ecircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7874; }, { glyphname = Ecircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; } ); unicode = 7876; }, { glyphname = Edieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (621,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 203; }, { glyphname = Edotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 278; }, { glyphname = Edotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (664,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7864; }, { glyphname = Egrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (607,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (606,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (606,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 200; }, { glyphname = Ehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (620,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7866; }, { glyphname = Emacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (619,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (620,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (620,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 274; }, { glyphname = Eogonek; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (454,-225,l), (471,-120,l), (402,-120,ls), (373,-120,o), (359,-103,o), (362,-83,cs), (365,-66,o), (383,-42,o), (413,-18,cs), (450,11,l), (364,11,l), (291,-19,o), (240,-68,o), (233,-115,cs), (222,-180,o), (265,-225,o), (346,-225,cs) ); }, { alignment = -1; ref = E; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (449,-203,l), (458,-143,l), (398,-143,ls), (364,-143,o), (347,-122,o), (351,-93,cs), (356,-65,o), (379,-36,o), (430,1,c), (443,10,l), (368,10,l), (298,-34,o), (270,-72,o), (264,-110,cs), (255,-164,o), (297,-203,o), (371,-203,cs) ); }, { alignment = -1; ref = E; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (440,-195,l), (447,-153,l), (383,-153,ls), (351,-153,o), (335,-134,o), (340,-103,cs), (344,-75,o), (373,-36,o), (417,0,cs), (430,10,l), (393,10,l), (336,-27,o), (297,-74,o), (291,-115,cs), (283,-165,o), (312,-195,o), (367,-195,c) ); }, { alignment = -1; ref = E; } ); width = 600; } ); unicode = 280; }, { glyphname = Eopen; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (398,-10,o), (504,73,o), (523,193,c), (473,193,l), (458,99,o), (376,35,o), (272,35,cs), (168,35,o), (106,99,o), (121,193,cs), (136,288,o), (218,353,o), (322,353,cs), (397,353,l), (404,398,l), (334,398,ls), (237,398,o), (181,459,o), (195,547,cs), (209,635,o), (284,696,o), (381,696,cs), (478,696,o), (535,635,o), (521,547,c), (571,547,l), (589,661,o), (514,740,o), (388,740,cs), (262,740,o), (163,661,o), (145,547,cs), (128,442,o), (185,370,o), (285,370,c), (286,380,l), (176,380,o), (88,305,o), (71,196,cs), (52,74,o), (130,-10,o), (264,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (406,-10,o), (513,71,o), (534,192,c), (444,192,l), (431,119,o), (365,70,o), (280,70,cs), (190,70,o), (139,124,o), (151,205,cs), (164,286,o), (233,340,o), (323,340,cs), (414,340,l), (427,420,l), (337,420,ls), (256,420,o), (209,468,o), (221,540,cs), (232,612,o), (294,660,o), (375,660,cs), (457,660,o), (503,610,o), (491,535,c), (581,535,l), (600,658,o), (522,740,o), (384,740,cs), (250,740,o), (150,663,o), (131,546,cs), (115,444,o), (173,380,o), (281,382,c), (282,392,l), (165,394,o), (79,321,o), (60,205,cs), (40,76,o), (122,-10,o), (267,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (411,-10,o), (530,76,o), (554,205,c), (404,205,l), (392,154,o), (345,120,o), (284,120,cs), (218,120,o), (180,159,o), (190,218,cs), (199,278,o), (249,317,o), (316,317,cs), (417,317,l), (436,437,l), (333,437,ls), (273,437,o), (240,471,o), (248,523,cs), (256,575,o), (301,610,o), (361,610,cs), (421,610,o), (455,575,o), (447,523,c), (597,523,l), (618,654,o), (528,740,o), (373,740,cs), (226,740,o), (117,660,o), (98,540,cs), (82,444,o), (131,383,o), (222,383,c), (223,390,l), (126,392,o), (53,325,o), (36,217,cs), (15,80,o), (104,-10,o), (260,-10,cs) ); } ); width = 600; } ); unicode = 400; }, { glyphname = Etilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = E; }, { pos = (620,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; }, { pos = (620,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = E; }, { pos = (620,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7868; }, { glyphname = F; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (176,0,l), (222,288,l), (516,288,l), (538,428,l), (242,428,l), (267,590,l), (589,590,l), (612,730,l), (142,730,l), (26,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (192,324,l), (506,324,l), (519,406,l), (203,406,l), (242,648,l), (584,648,l), (597,730,l), (167,730,l), (51,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (121,0,l), (176,346,l), (501,346,l), (508,392,l), (183,392,l), (229,684,l), (589,684,l), (597,730,l), (187,730,l), (71,0,l) ); } ); width = 600; } ); unicode = 70; }, { glyphname = G; layers = ( { anchors = ( { name = bottom; pos = (260,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (405,-10,o), (516,77,o), (537,210,cs), (567,400,l), (309,400,l), (289,273,l), (397,273,l), (387,210,ls), (378,152,o), (339,120,o), (279,120,cs), (219,120,o), (190,152,o), (199,210,cs), (248,520,ls), (258,578,o), (297,610,o), (357,610,cs), (417,610,o), (446,578,o), (436,520,c), (586,520,l), (607,653,o), (524,740,o), (377,740,cs), (230,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,78,o), (111,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (260,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (486,71,o), (506,200,cs), (533,372,l), (295,372,l), (282,290,l), (430,290,l), (416,200,ls), (403,117,o), (349,70,o), (271,70,cs), (192,70,o), (153,117,o), (166,200,cs), (218,531,ls), (231,613,o), (285,659,o), (364,659,cs), (442,659,o), (481,613,o), (468,530,c), (558,530,l), (578,659,o), (508,740,o), (377,740,cs), (244,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (262,0); }, { name = top; pos = (378,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,200,cs), (522,356,l), (299,356,l), (292,310,l), (465,310,l), (448,200,ls), (432,98,o), (364,35,o), (268,35,cs), (174,35,o), (126,94,o), (141,190,cs), (197,540,ls), (212,636,o), (279,695,o), (372,695,cs), (467,695,o), (516,632,o), (500,530,c), (550,530,l), (570,658,o), (503,740,o), (379,740,cs), (257,740,o), (166,662,o), (147,540,cs), (91,190,ls), (72,69,o), (138,-10,o), (260,-10,cs) ); } ); width = 600; } ); unicode = 71; }, { glyphname = Gacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (617,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 500; }, { glyphname = Gbreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { alignment = 1; pos = (605,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 286; }, { glyphname = Gcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (605,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 486; }, { glyphname = Gcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (605,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 284; }, { glyphname = Gcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = G; }, { pos = (606,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = G; }, { pos = (604,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = G; }, { pos = (604,0); ref = commaaccentcomb.case; } ); width = 600; } ); unicode = 290; }, { glyphname = Gdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = G; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = G; }, { pos = (605,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 288; }, { glyphname = H; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (221,310,l), (389,310,l), (340,0,l), (490,0,l), (606,730,l), (456,730,l), (411,450,l), (243,450,l), (288,730,l), (138,730,l), (22,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (139,0,l), (192,336,l), (426,336,l), (373,0,l), (463,0,l), (579,730,l), (489,730,l), (439,418,l), (205,418,l), (255,730,l), (165,730,l), (49,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (172,356,l), (452,356,l), (396,0,l), (446,0,l), (562,730,l), (512,730,l), (460,402,l), (180,402,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 72; }, { glyphname = Hbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (630,525,l), (645,620,l), (65,620,l), (50,525,l) ); }, { alignment = -1; ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (629,525,l), (641,600,l), (62,600,l), (50,525,l) ); }, { alignment = -1; ref = H; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (632,540,l), (639,584,l), (59,584,l), (52,540,l) ); }, { alignment = -1; ref = H; } ); width = 600; } ); unicode = 294; }, { glyphname = Hcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = H; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = H; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = H; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 292; }, { glyphname = I; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (280,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (476,0,l), (497,130,l), (352,130,l), (426,600,l), (571,600,l), (592,730,l), (152,730,l), (131,600,l), (276,600,l), (202,130,l), (57,130,l), (36,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (280,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (451,0,l), (464,82,l), (315,82,l), (405,648,l), (554,648,l), (567,730,l), (177,730,l), (164,648,l), (313,648,l), (223,82,l), (74,82,l), (61,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (280,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (436,0,l), (443,46,l), (289,46,l), (390,684,l), (544,684,l), (552,730,l), (192,730,l), (184,684,l), (340,684,l), (239,46,l), (83,46,l), (76,0,l) ); } ); width = 600; } ); unicode = 73; }, { glyphname = Iacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 205; }, { glyphname = Ibreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 300; }, { glyphname = Icircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 206; }, { glyphname = Idieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 207; }, { glyphname = Idotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 304; }, { glyphname = Idotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7882; }, { glyphname = Igrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 204; }, { glyphname = Ihookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7880; }, { glyphname = Imacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 298; }, { glyphname = Iogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (299,-195,l), (305,-153,l), (241,-153,ls), (209,-153,o), (193,-134,o), (198,-103,cs), (203,-75,o), (232,-36,o), (275,0,cs), (288,10,l), (251,10,l), (194,-27,o), (156,-74,o), (149,-115,cs), (141,-165,o), (171,-195,o), (226,-195,c) ); }, { ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (309,-203,l), (318,-143,l), (258,-143,ls), (224,-143,o), (207,-122,o), (211,-93,cs), (216,-65,o), (239,-36,o), (290,1,c), (303,10,l), (228,10,l), (158,-34,o), (130,-72,o), (124,-110,cs), (115,-164,o), (157,-203,o), (231,-203,cs) ); }, { ref = I; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (324,-225,l), (341,-120,l), (272,-120,ls), (243,-120,o), (229,-103,o), (232,-83,cs), (235,-66,o), (253,-42,o), (283,-18,cs), (320,11,l), (234,11,l), (161,-19,o), (110,-68,o), (103,-115,cs), (92,-180,o), (135,-225,o), (216,-225,cs) ); }, { ref = I; } ); width = 600; } ); unicode = 302; }, { glyphname = Itilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 296; }, { glyphname = J; layers = ( { anchors = ( { name = top; pos = (504,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (487,73,o), (511,219,cs), (592,730,l), (237,730,l), (215,595,l), (420,595,l), (361,219,ls), (351,158,o), (306,120,o), (245,120,cs), (183,120,o), (151,159,o), (161,221,c), (11,221,l), (-11,79,o), (70,-10,o), (224,-10,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (432,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (368,-10,o), (462,70,o), (484,210,cs), (567,730,l), (272,730,l), (259,648,l), (464,648,l), (394,210,ls), (380,121,o), (322,70,o), (237,70,cs), (152,70,o), (110,121,o), (124,210,c), (34,210,l), (13,74,o), (84,-10,o), (224,-10,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (504,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (359,-10,o), (446,66,o), (468,199,cs), (552,730,l), (275,730,l), (267,683,l), (494,683,l), (418,199,ls), (402,98,o), (333,35,o), (237,35,cs), (141,35,o), (91,97,o), (108,200,c), (58,200,l), (37,69,o), (101,-10,o), (229,-10,cs) ); } ); width = 600; } ); unicode = 74; }, { glyphname = Jcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = J; }, { pos = (731,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = J; }, { pos = (659,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = J; }, { pos = (731,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 308; }, { glyphname = K; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (171,0,l), (220,309,l), (296,309,l), (372,0,l), (531,0,l), (429,372,l), (641,730,l), (478,730,l), (310,447,l), (242,447,l), (287,730,l), (137,730,l), (21,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (192,338,l), (300,338,l), (416,0,l), (516,0,l), (385,376,l), (622,730,l), (522,730,l), (310,417,l), (204,417,l), (254,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (172,356,l), (327,356,l), (440,0,l), (496,0,l), (375,377,l), (602,730,l), (544,730,l), (332,401,l), (180,401,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 75; }, { glyphname = Kcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; } ); unicode = 310; }, { glyphname = L; layers = ( { anchors = ( { name = bottom; pos = (296,0); }, { name = top; pos = (262,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,140,l), (243,140,l), (337,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (296,0); }, { name = top; pos = (253,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (511,0,l), (524,82,l), (194,82,l), (297,730,l), (207,730,l), (91,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (296,0); }, { name = top; pos = (238,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (501,0,l), (508,46,l), (153,46,l), (262,730,l), (212,730,l), (96,0,l) ); } ); width = 600; } ); unicode = 76; }, { glyphname = Lacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = L; }, { pos = (477,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = L; }, { pos = (492,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = L; }, { pos = (502,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 313; }, { glyphname = Lcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = L; }, { pos = (516,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = L; }, { pos = (531,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = L; }, { pos = (540,0); ref = caroncomb.alt; } ); width = 600; } ); unicode = 317; }, { glyphname = Lcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = L; }, { pos = (640,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = L; }, { pos = (640,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = L; }, { pos = (640,0); ref = commaaccentcomb.case; } ); width = 600; } ); unicode = 315; }, { glyphname = Ldot; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = L; }, { alignment = -1; pos = (169,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = L; }, { alignment = -1; pos = (145,275); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = L; }, { alignment = -1; pos = (140,275); ref = period; } ); width = 600; } ); unicode = 319; }, { glyphname = Lslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (423,420,l), (445,565,l), (35,370,l), (12,225,l) ); }, { alignment = -1; pos = (10,0); ref = L; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (422,480,l), (435,564,l), (25,310,l), (12,226,l) ); }, { alignment = -1; ref = L; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (424,495,l), (433,552,l), (23,295,l), (14,238,l) ); }, { alignment = -1; pos = (10,0); ref = L; } ); width = 600; } ); unicode = 321; }, { glyphname = M; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (120,0,l), (162,265,ls), (183,396,o), (195,582,o), (199,685,c), (261,320,l), (356,320,l), (531,685,l), (502,578,o), (454,389,o), (434,265,cs), (392,0,l), (480,0,l), (596,730,l), (476,730,l), (366,495,ls), (346,451,o), (327,405,o), (318,382,c), (315,405,o), (309,451,o), (302,494,cs), (264,730,l), (148,730,l), (32,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (97,0,l), (167,440,ls), (183,542,o), (197,651,o), (203,705,c), (281,325,l), (334,325,l), (532,705,l), (521,651,o), (501,542,o), (485,440,cs), (415,0,l), (464,0,l), (580,730,l), (504,730,l), (358,450,ls), (343,420,o), (322,381,o), (312,359,c), (308,381,o), (301,421,o), (294,450,cs), (237,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (135,0,l), (167,200,ls), (191,353,o), (204,541,o), (206,640,c), (242,310,l), (369,310,l), (505,640,l), (477,537,o), (432,346,o), (409,200,cs), (377,0,l), (514,0,l), (630,730,l), (458,730,l), (355,500,ls), (334,452,o), (321,414,o), (317,399,c), (318,414,o), (317,452,o), (310,500,cs), (280,730,l), (114,730,l), (-2,0,l) ); } ); width = 600; } ); unicode = 77; }, { glyphname = N; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,0,l), (199,320,ls), (210,389,o), (219,501,o), (223,565,c), (323,0,l), (496,0,l), (612,730,l), (480,730,l), (432,430,ls), (421,361,o), (411,238,o), (406,165,c), (305,730,l), (132,730,l), (16,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (133,0,l), (198,410,ls), (210,483,o), (219,576,o), (223,625,c), (347,0,l), (466,0,l), (582,730,l), (495,730,l), (430,320,ls), (418,247,o), (409,154,o), (406,105,c), (281,730,l), (162,730,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (114,0,l), (203,560,ls), (211,611,o), (217,656,o), (219,675,c), (378,0,l), (446,0,l), (562,730,l), (514,730,l), (425,170,ls), (423,155,o), (415,95,o), (411,55,c), (249,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 78; }, { glyphname = Nacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = N; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = N; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = N; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 323; }, { glyphname = Ncaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = N; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = N; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = N; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 327; }, { glyphname = Ncommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = N; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = N; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = N; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 325; }, { glyphname = Eng; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (227,-180,ls), (368,-180,o), (481,-96,o), (500,25,cs), (612,730,l), (480,730,l), (447,526,ls), (436,457,o), (427,330,o), (422,257,c), (302,730,l), (132,730,l), (16,0,l), (148,0,l), (199,320,ls), (210,389,o), (219,501,o), (223,565,c), (352,41,l), (345,-7,o), (311,-35,o), (260,-35,cs), (200,-35,l), (177,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (232,-180,ls), (356,-180,o), (449,-103,o), (468,15,cs), (582,730,l), (495,730,l), (442,397,ls), (430,324,o), (422,229,o), (418,179,c), (280,730,l), (162,730,l), (46,0,l), (133,0,l), (198,410,ls), (210,483,o), (219,576,o), (223,625,c), (378,15,l), (367,-55,o), (316,-98,o), (245,-98,cs), (180,-98,l), (167,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (234,-180,ls), (352,-180,o), (429,-115,o), (447,0,cs), (563,730,l), (515,730,l), (434,219,ls), (426,168,o), (420,118,o), (418,94,c), (249,730,l), (181,730,l), (65,0,l), (113,0,l), (202,560,ls), (210,611,o), (216,656,o), (218,675,c), (397,0,l), (383,-88,o), (330,-135,o), (242,-135,cs), (162,-135,l), (154,-180,l) ); } ); width = 600; } ); unicode = 330; }, { glyphname = Ntilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = N; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = N; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = N; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 209; }, { glyphname = O; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (314,365); }, { name = horn; pos = (387,700); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); }, { name = topright; pos = (652,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (314,365); }, { name = horn; pos = (387,700); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); }, { name = topright; pos = (652,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (552,531,ls), (572,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (314,365); }, { name = horn; pos = (387,700); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topleft; pos = (92,730); }, { name = topright; pos = (652,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (215,120,o), (190,152,o), (199,210,cs), (248,520,ls), (257,578,o), (292,610,o), (353,610,cs), (414,610,o), (437,578,o), (428,520,cs), (379,210,ls), (370,152,o), (335,120,o), (275,120,cs) ); } ); width = 600; } ); unicode = 79; }, { glyphname = Oacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 211; }, { glyphname = Obreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 334; }, { glyphname = Ocircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 212; }, { glyphname = Ocircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_acutecomb.case; } ); width = 600; } ); unicode = 7888; }, { glyphname = Ocircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = dotbelowcomb.case; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 7896; }, { glyphname = Ocircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_gravecomb.case; } ); width = 600; } ); unicode = 7890; }, { glyphname = Ocircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_hookabovecomb.case; } ); width = 600; } ); unicode = 7892; }, { glyphname = Ocircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = circumflexcomb_tildecomb.case; } ); width = 600; } ); unicode = 7894; }, { glyphname = Odieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 214; }, { glyphname = Odotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7884; }, { glyphname = Ograve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 210; }, { glyphname = Ohookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7886; }, { glyphname = Ohorn; layers = ( { anchors = ( { name = top; pos = (362,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (492,600,ls), (579,600,o), (646,654,o), (658,735,cs), (670,810,l), (550,810,l), (538,735,ls), (535,713,o), (520,700,o), (498,700,cs), (448,700,l), (432,600,l) ); }, { ref = O; } ); width = 600; }, { anchors = ( { name = top; pos = (362,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (482,635,ls), (546,635,o), (592,672,o), (602,730,cs), (614,810,l), (539,810,l), (527,735,ls), (524,714,o), (508,700,o), (487,700,cs), (467,700,l), (457,635,l) ); }, { ref = O; } ); width = 600; }, { anchors = ( { name = top; pos = (390,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (499,665,ls), (550,665,o), (589,699,o), (597,750,cs), (607,810,l), (567,810,l), (557,750,ls), (552,720,o), (532,700,o), (505,700,cs), (464,700,l), (458,665,l) ); }, { ref = O; } ); width = 600; } ); unicode = 416; }, { glyphname = Ohornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (602,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (601,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (629,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 7898; }, { glyphname = Ohorndotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Ohorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Ohorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Ohorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7906; }, { glyphname = Ohorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (576,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (576,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (605,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7900; }, { glyphname = Ohornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Ohorn; }, { pos = (618,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Ohorn; }, { pos = (590,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Ohorn; }, { pos = (590,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7902; }, { glyphname = Ohorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (590,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (590,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Ohorn; }, { pos = (618,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7904; }, { glyphname = Ohungarumlaut; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; } ); unicode = 336; }, { glyphname = Omacron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 332; }, { glyphname = Oogonek; layers = ( { anchors = ( { name = horn; pos = (387,700); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (383,-225,l), (400,-120,l), (331,-120,ls), (302,-120,o), (288,-103,o), (291,-82,cs), (294,-65,o), (310,-38,o), (340,-17,cs), (394,21,l), (464,58,o), (517,127,o), (530,210,cs), (579,520,ls), (600,652,o), (521,740,o), (374,740,cs), (227,740,o), (120,652,o), (99,520,cs), (50,210,ls), (29,78,o), (108,-10,o), (255,-10,cs), (288,-10,o), (307,11,o), (308,21,c), (236,-9,o), (169,-68,o), (162,-115,cs), (151,-180,o), (194,-225,o), (275,-225,cs) ); }, { closed = 1; nodes = ( (216,120,o), (191,152,o), (200,210,cs), (249,520,ls), (259,578,o), (293,610,o), (354,610,cs), (415,610,o), (439,578,o), (429,520,cs), (380,210,ls), (371,152,o), (336,120,o), (276,120,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (387,700); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (367,-195,l), (374,-153,l), (310,-153,ls), (278,-153,o), (262,-134,o), (267,-103,cs), (271,-75,o), (300,-33,o), (344,2,cs), (355,10,l), (422,45,o), (468,105,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs), (265,-10,o), (284,-9,o), (295,-6,c), (252,-39,o), (223,-80,o), (218,-115,cs), (210,-165,o), (239,-195,o), (294,-195,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (387,700); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (381,-203,l), (390,-143,l), (330,-143,ls), (296,-143,o), (279,-122,o), (283,-93,cs), (288,-65,o), (307,-36,o), (357,1,cs), (390,25,l), (448,60,o), (487,121,o), (500,200,cs), (552,531,ls), (573,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs), (258,-10,o), (263,-10,o), (267,-10,c), (226,-45,o), (200,-82,o), (196,-110,cs), (187,-164,o), (229,-203,o), (303,-203,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); } ); width = 600; } ); unicode = 490; }, { glyphname = Oslash; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (392,730); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (83,-40,l), (660,750,l), (542,750,l), (-35,-40,l) ); }, { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (214,120,o), (185,152,o), (194,210,cs), (243,520,ls), (253,578,o), (292,610,o), (353,610,cs), (414,610,o), (443,578,o), (433,520,cs), (384,210,ls), (375,152,o), (336,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (392,730); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (71,-40,l), (640,750,l), (554,750,l), (-15,-40,l) ); }, { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (552,531,ls), (572,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (392,730); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (50,-40,l), (625,750,l), (575,750,l), (0,-40,l) ); }, { closed = 1; nodes = ( (373,-10,o), (461,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (71,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (213,638,o), (275,696,o), (366,696,cs), (457,696,o), (503,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 216; }, { glyphname = Oslashacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Oslash; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Oslash; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Oslash; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 510; }, { glyphname = Otilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 213; }, { glyphname = OE; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (202,-4,o), (243,47,o), (255,86,c), (260,86,l), (246,0,l), (536,0,l), (556,126,l), (395,126,l), (424,311,l), (560,311,l), (580,437,l), (444,437,l), (471,605,l), (632,605,l), (652,730,l), (362,730,l), (349,650,l), (344,650,l), (345,689,o), (320,740,o), (248,740,cs), (157,740,o), (91,666,o), (72,541,cs), (17,195,ls), (-3,70,o), (39,-4,o), (130,-4,cs) ); }, { closed = 1; nodes = ( (167,121,o), (150,149,o), (157,195,cs), (212,541,ls), (219,587,o), (245,615,o), (280,615,cs), (316,615,o), (333,588,o), (326,541,cs), (271,195,ls), (263,148,o), (238,121,o), (202,121,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (218,-10,o), (261,41,o), (274,80,c), (279,80,l), (266,0,l), (531,0,l), (544,82,l), (367,82,l), (407,336,l), (559,336,l), (572,418,l), (420,418,l), (457,648,l), (634,648,l), (647,730,l), (382,730,l), (369,650,l), (364,650,l), (364,689,o), (337,740,o), (268,740,cs), (172,740,o), (102,667,o), (83,550,cs), (25,180,ls), (6,63,o), (53,-10,o), (149,-10,cs) ); }, { closed = 1; nodes = ( (131,70,o), (104,112,o), (115,180,cs), (173,550,ls), (184,618,o), (225,660,o), (281,660,cs), (337,660,o), (364,618,o), (353,550,cs), (295,180,ls), (284,112,o), (243,70,o), (187,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (219,-10,o), (267,41,o), (284,80,c), (289,80,l), (276,0,l), (525,0,l), (533,50,l), (339,50,l), (387,352,l), (545,352,l), (553,402,l), (395,402,l), (439,680,l), (633,680,l), (641,730,l), (392,730,l), (379,650,l), (374,650,l), (370,689,o), (338,740,o), (269,740,cs), (178,740,o), (101,664,o), (84,557,cs), (23,173,ls), (6,66,o), (59,-10,o), (150,-10,cs) ); }, { closed = 1; nodes = ( (102,40,o), (66,94,o), (78,173,cs), (139,557,ls), (152,636,o), (205,690,o), (272,690,cs), (338,690,o), (377,638,o), (364,557,cs), (303,173,ls), (291,92,o), (235,40,o), (169,40,cs) ); } ); width = 600; } ); unicode = 338; }, { glyphname = P; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (214,266,l), (313,266,ls), (466,266,o), (583,359,o), (605,498,cs), (627,638,o), (541,730,o), (387,730,cs), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (266,595,l), (365,595,ls), (429,595,o), (464,557,o), (455,498,cs), (446,439,o), (399,401,o), (335,401,cs), (236,401,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (186,300,l), (331,300,ls), (467,300,o), (567,384,o), (588,515,cs), (608,646,o), (535,730,o), (399,730,cs), (164,730,l), (48,0,l) ); }, { closed = 1; nodes = ( (241,649,l), (386,649,ls), (465,649,o), (508,597,o), (495,515,cs), (482,433,o), (422,381,o), (343,381,cs), (198,381,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (167,324,l), (332,324,ls), (459,324,o), (555,404,o), (574,527,cs), (594,650,o), (525,730,o), (397,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (224,684,l), (389,684,ls), (487,684,o), (540,624,o), (524,527,cs), (509,431,o), (437,370,o), (340,370,cs), (175,370,l) ); } ); width = 600; } ); unicode = 80; }, { glyphname = Thorn; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (176,0,l), (202,165,l), (322,165,ls), (465,165,o), (565,246,o), (586,380,cs), (608,515,o), (534,595,o), (390,595,cs), (270,595,l), (292,730,l), (142,730,l), (26,0,l) ); }, { closed = 1; nodes = ( (250,470,l), (345,470,ls), (413,470,o), (445,438,o), (436,380,cs), (427,322,o), (385,290,o), (317,290,cs), (222,290,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (136,0,l), (165,180,l), (318,180,ls), (450,180,o), (547,258,o), (566,380,cs), (585,500,o), (512,580,o), (381,580,cs), (228,580,l), (252,730,l), (162,730,l), (46,0,l) ); }, { closed = 1; nodes = ( (215,500,l), (368,500,ls), (444,500,o), (485,454,o), (473,380,cs), (461,306,o), (407,260,o), (330,260,cs), (177,260,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (111,0,l), (142,195,l), (320,195,ls), (441,195,o), (528,266,o), (546,380,cs), (564,494,o), (499,565,o), (378,565,cs), (200,565,l), (227,730,l), (177,730,l), (61,0,l) ); }, { closed = 1; nodes = ( (193,520,l), (371,520,ls), (462,520,o), (510,467,o), (496,380,cs), (483,294,o), (418,241,o), (327,241,cs), (149,241,l) ); } ); width = 600; } ); unicode = 222; }, { glyphname = Q; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (479,-180,l), (362,77,l), (345,3,l), (447,29,o), (513,106,o), (529,210,cs), (578,520,ls), (599,652,o), (517,740,o), (373,740,cs), (228,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,79,o), (110,-10,o), (254,-10,cs), (260,-10,o), (269,-9,o), (274,-9,c), (250,4,l), (332,-180,l) ); }, { closed = 1; nodes = ( (213,121,o), (190,153,o), (199,210,cs), (248,520,ls), (257,578,o), (295,610,o), (353,610,cs), (411,610,o), (437,578,o), (428,520,cs), (379,210,ls), (370,153,o), (337,121,o), (275,121,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-180,l), (348,50,l), (342,4,l), (430,31,o), (492,105,o), (508,205,cs), (559,525,ls), (580,656,o), (508,740,o), (373,740,cs), (238,740,o), (140,656,o), (119,525,cs), (68,205,ls), (47,74,o), (119,-10,o), (254,-10,cs), (264,-10,o), (275,-9,o), (286,-7,c), (274,-3,l), (352,-180,l) ); }, { closed = 1; nodes = ( (188,70,o), (145,123,o), (158,205,cs), (209,525,ls), (222,607,o), (282,660,o), (361,660,cs), (440,660,o), (482,607,o), (469,525,cs), (418,205,ls), (405,123,o), (346,70,o), (267,70,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (433,-180,l), (340,31,l), (339,5,l), (415,31,o), (467,101,o), (481,190,cs), (537,540,ls), (556,656,o), (493,740,o), (374,740,cs), (254,740,o), (167,662,o), (147,540,cs), (91,190,ls), (72,69,o), (136,-10,o), (255,-10,cs), (275,-10,o), (298,-7,o), (309,-5,c), (301,0,l), (382,-180,l) ); }, { closed = 1; nodes = ( (171,35,o), (125,92,o), (141,190,cs), (197,540,ls), (213,638,o), (275,695,o), (367,695,cs), (457,695,o), (503,637,o), (487,540,cs), (431,190,ls), (415,92,o), (354,35,o), (263,35,cs) ); } ); width = 600; } ); unicode = 81; }, { glyphname = R; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (170,0,l), (214,276,l), (284,276,l), (366,0,l), (521,0,l), (404,361,l), (385,287,l), (490,306,o), (574,396,o), (591,508,cs), (613,644,o), (527,730,o), (372,730,cs), (137,730,l), (21,0,l) ); }, { closed = 1; nodes = ( (265,600,l), (351,600,ls), (417,600,o), (450,563,o), (440,501,cs), (431,441,o), (386,406,o), (320,406,cs), (234,406,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (187,310,l), (304,310,l), (399,0,l), (501,0,l), (383,359,l), (372,314,l), (478,333,o), (557,411,o), (573,520,cs), (593,645,o), (520,730,o), (390,730,cs), (164,730,l), (48,0,l) ); }, { closed = 1; nodes = ( (241,649,l), (377,649,ls), (451,649,o), (493,598,o), (480,520,cs), (468,442,o), (411,391,o), (336,391,cs), (200,391,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (168,330,l), (314,330,l), (428,0,l), (482,0,l), (356,353,l), (352,330,l), (464,340,o), (547,417,o), (565,528,cs), (584,652,o), (516,730,o), (387,730,cs), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (224,684,l), (379,684,ls), (476,684,o), (530,624,o), (515,530,cs), (500,436,o), (427,375,o), (330,375,cs), (175,375,l) ); } ); width = 600; } ); unicode = 82; }, { glyphname = Racute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = R; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = R; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = R; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 340; }, { glyphname = Rcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = R; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = R; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = R; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 344; }, { glyphname = Rcommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = R; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = R; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = R; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 342; }, { glyphname = S; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (409,-10,o), (520,74,o), (542,206,cs), (559,319,o), (500,398,o), (377,428,cs), (302,446,ls), (259,456,o), (240,489,o), (248,535,cs), (255,583,o), (291,610,o), (349,610,cs), (410,610,o), (439,581,o), (432,535,c), (582,535,l), (602,660,o), (520,740,o), (371,740,cs), (223,740,o), (117,657,o), (97,529,cs), (80,418,o), (140,335,o), (260,306,cs), (331,289,ls), (376,278,o), (397,244,o), (391,199,cs), (383,149,o), (341,120,o), (278,120,cs), (213,120,o), (177,151,o), (185,200,c), (35,200,l), (14,72,o), (100,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (495,70,o), (514,190,cs), (529,287,o), (484,363,o), (392,394,cs), (297,426,ls), (242,444,o), (216,492,o), (226,554,cs), (236,620,o), (288,660,o), (366,660,cs), (445,660,o), (483,617,o), (471,545,c), (561,545,l), (578,663,o), (507,741,o), (379,741,cs), (249,741,o), (153,663,o), (134,546,cs), (120,450,o), (167,375,o), (260,345,cs), (354,314,ls), (407,297,o), (433,250,o), (424,188,cs), (412,115,o), (355,71,o), (271,71,cs), (181,71,o), (136,116,o), (148,190,c), (58,190,l), (40,66,o), (115,-10,o), (258,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (388,-10,o), (481,64,o), (500,180,cs), (515,273,o), (465,355,o), (371,384,cs), (290,409,ls), (223,430,o), (189,488,o), (200,563,cs), (212,645,o), (278,695,o), (371,695,cs), (462,695,o), (512,637,o), (498,548,c), (548,548,l), (566,666,o), (501,740,o), (379,740,cs), (256,740,o), (167,670,o), (150,559,cs), (135,466,o), (180,392,o), (271,364,cs), (352,339,ls), (427,316,o), (461,258,o), (449,177,cs), (435,88,o), (367,35,o), (267,35,cs), (164,35,o), (106,94,o), (120,185,c), (70,185,l), (51,66,o), (124,-10,o), (259,-10,cs) ); } ); width = 600; } ); unicode = 83; }, { glyphname = Sacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 346; }, { glyphname = Scaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 352; }, { glyphname = Scedilla; layers = ( { anchors = ( { name = _bottom; pos = (256,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (225,-225,ls), (309,-225,o), (372,-182,o), (380,-133,cs), (390,-72,o), (313,-43,o), (253,-39,c), (281,16,l), (208,16,l), (159,-69,l), (232,-69,o), (272,-88,o), (267,-119,cs), (265,-135,o), (239,-155,o), (206,-155,cs), (126,-155,l), (115,-225,l) ); }, { alignment = -1; ref = S; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (256,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,-203,ls), (286,-203,o), (340,-166,o), (347,-120,cs), (355,-68,o), (292,-41,o), (240,-35,c), (271,26,l), (214,26,l), (164,-69,l), (231,-69,o), (266,-89,o), (262,-112,cs), (259,-130,o), (237,-148,o), (208,-148,cs), (138,-148,l), (129,-203,l) ); }, { alignment = -1; ref = S; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (256,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (240,-195,ls), (300,-195,o), (346,-161,o), (352,-118,cs), (361,-61,o), (302,-37,o), (256,-34,c), (288,26,l), (246,26,l), (197,-64,l), (268,-64,o), (311,-86,o), (306,-118,cs), (303,-140,o), (278,-160,o), (246,-160,cs), (166,-160,l), (160,-195,l) ); }, { alignment = -1; ref = S; } ); width = 600; } ); unicode = 350; }, { glyphname = Scircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 348; }, { glyphname = Scommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 536; }, { glyphname = Germandbls; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (202,543,ls), (216,629,o), (281,685,o), (369,685,cs), (528,685,l), (291,411,l), (284,368,l), (324,368,ls), (421,368,o), (474,305,o), (459,208,cs), (443,109,o), (370,45,o), (273,45,cs), (211,45,l), (204,0,l), (266,0,ls), (394,0,o), (489,82,o), (509,210,cs), (528,330,o), (458,407,o), (330,407,c), (331,396,l), (581,684,l), (589,730,l), (377,730,ls), (259,730,o), (170,657,o), (152,543,cs), (66,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (151,0,l), (232,511,ls), (241,568,o), (286,605,o), (347,605,cs), (460,605,l), (284,438,l), (267,328,l), (314,328,ls), (377,328,o), (409,287,o), (400,227,cs), (390,167,o), (346,125,o), (282,125,cs), (235,125,l), (215,0,l), (267,0,ls), (418,0,o), (528,84,o), (549,215,cs), (569,344,o), (495,427,o), (359,425,c), (364,370,l), (595,589,l), (618,730,l), (368,730,ls), (225,730,o), (118,644,o), (97,511,cs), (16,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (221,524,ls), (233,601,o), (287,648,o), (361,648,cs), (489,648,l), (293,423,l), (281,345,l), (326,345,ls), (406,345,o), (448,295,o), (435,215,cs), (422,133,o), (364,82,o), (284,82,cs), (227,82,l), (214,0,l), (281,0,ls), (410,0,o), (510,86,o), (530,215,cs), (550,342,o), (487,425,o), (373,423,c), (369,396,l), (587,642,l), (601,730,l), (374,730,ls), (248,730,o), (151,648,o), (131,524,cs), (48,0,l) ); } ); width = 600; } ); unicode = 7838; }, { glyphname = Schwa; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,653,o), (521,740,o), (374,740,cs), (228,740,o), (122,654,o), (100,520,c), (250,520,l), (260,578,o), (294,610,o), (354,610,cs), (414,610,o), (438,578,o), (428,520,c), (412,416,l), (82,416,l), (49,210,ls), (28,78,o), (109,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (212,105,o), (188,138,o), (199,210,cs), (216,316,l), (204,306,l), (394,306,l), (379,210,ls), (368,142,o), (340,105,o), (274,105,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (478,73,o), (498,200,cs), (550,530,ls), (571,661,o), (506,740,o), (373,740,cs), (242,740,o), (150,659,o), (130,530,c), (220,530,l), (233,613,o), (283,660,o), (361,660,cs), (440,660,o), (473,613,o), (460,531,cs), (439,400,l), (109,400,l), (78,200,ls), (58,73,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (184,65,o), (154,113,o), (168,200,cs), (190,338,l), (181,330,l), (428,330,l), (408,200,ls), (394,113,o), (348,65,o), (266,65,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-10,o), (462,69,o), (481,190,cs), (537,540,ls), (556,662,o), (494,740,o), (372,740,cs), (248,740,o), (165,658,o), (145,530,c), (195,530,l), (211,632,o), (270,695,o), (365,695,cs), (458,695,o), (502,636,o), (487,540,cs), (461,378,l), (121,378,l), (91,190,ls), (72,69,o), (132,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (168,34,o), (126,94,o), (141,190,cs), (165,344,l), (153,335,l), (454,335,l), (431,190,ls), (416,93,o), (354,34,o), (260,34,cs) ); } ); width = 600; } ); unicode = 399; }, { glyphname = T; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (424,590,l), (609,590,l), (632,730,l), (112,730,l), (89,590,l), (274,590,l), (181,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (404,648,l), (604,648,l), (617,730,l), (127,730,l), (114,648,l), (314,648,l), (211,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (282,0,l), (390,684,l), (604,684,l), (612,730,l), (132,730,l), (124,684,l), (340,684,l), (232,0,l) ); } ); width = 600; } ); unicode = 84; }, { glyphname = Tbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (500,275,l), (518,390,l), (118,390,l), (100,275,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (493,295,l), (505,370,l), (125,370,l), (113,295,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,310,l), (493,355,l), (133,355,l), (126,310,l) ); }, { ref = T; } ); width = 600; } ); unicode = 358; }, { glyphname = Tcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = T; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = T; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = T; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 356; }, { glyphname = Tcedilla; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (284,-225,ls), (368,-225,o), (431,-182,o), (439,-133,cs), (449,-72,o), (372,-43,o), (312,-39,c), (331,0,l), (267,16,l), (218,-69,l), (291,-69,o), (331,-88,o), (326,-119,cs), (324,-135,o), (298,-155,o), (265,-155,cs), (185,-155,l), (174,-225,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,-203,ls), (329,-203,o), (383,-166,o), (390,-120,cs), (398,-68,o), (335,-41,o), (283,-35,c), (301,0,l), (257,26,l), (207,-69,l), (274,-69,o), (309,-89,o), (305,-112,cs), (302,-130,o), (280,-148,o), (251,-148,cs), (181,-148,l), (172,-203,l) ); }, { alignment = -1; ref = T; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (248,-195,ls), (308,-195,o), (353,-161,o), (360,-118,cs), (369,-61,o), (310,-37,o), (263,-34,c), (282,0,l), (254,26,l), (205,-64,l), (276,-64,o), (319,-86,o), (314,-118,cs), (311,-140,o), (286,-160,o), (254,-160,cs), (174,-160,l), (168,-195,l) ); }, { alignment = -1; ref = T; } ); width = 600; } ); unicode = 354; }, { glyphname = Tcommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = T; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = T; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = T; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 538; }, { glyphname = U; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (457,730); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topright; pos = (652,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (508,76,o), (530,214,cs), (612,730,l), (462,730,l), (380,215,ls), (370,154,o), (331,120,o), (275,120,cs), (218,120,o), (190,154,o), (200,215,cs), (282,730,l), (132,730,l), (50,214,ls), (28,75,o), (106,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (457,730); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topright; pos = (652,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (391,-10,o), (477,69,o), (498,200,cs), (582,730,l), (492,730,l), (408,200,ls), (395,120,o), (347,70,o), (267,70,cs), (186,70,o), (155,120,o), (168,200,cs), (252,730,l), (162,730,l), (78,200,ls), (57,70,o), (118,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (464,730); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (372,730); }, { name = topright; pos = (652,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (371,-10,o), (459,69,o), (478,190,cs), (564,730,l), (514,730,l), (428,190,ls), (413,93,o), (352,35,o), (263,35,cs), (173,35,o), (129,92,o), (144,190,cs), (230,730,l), (180,730,l), (94,190,ls), (75,69,o), (138,-10,o), (255,-10,cs) ); } ); width = 600; } ); unicode = 85; }, { glyphname = Uacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 218; }, { glyphname = Ubreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 364; }, { glyphname = Ucircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 219; }, { glyphname = Udieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 220; }, { glyphname = Udotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7908; }, { glyphname = Ugrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 217; }, { glyphname = Uhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = U; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = U; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = U; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7910; }, { glyphname = Uhorn; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (562,630,ls), (649,630,o), (715,684,o), (728,765,cs), (740,840,l), (620,840,l), (608,765,ls), (605,743,o), (590,730,o), (568,730,cs), (518,730,l), (502,630,l) ); }, { alignment = -1; ref = U; } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (551,665,ls), (615,665,o), (662,702,o), (671,760,cs), (684,840,l), (609,840,l), (597,765,ls), (594,744,o), (578,730,o), (557,730,cs), (507,730,l), (496,665,l) ); }, { ref = U; } ); width = 600; }, { anchors = ( { name = top; pos = (360,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (595,695,ls), (646,695,o), (685,729,o), (693,780,cs), (703,840,l), (663,840,l), (653,780,ls), (648,750,o), (628,730,o), (601,730,cs), (516,730,l), (510,695,l) ); }, { alignment = -1; ref = U; } ); width = 600; } ); unicode = 431; }, { glyphname = Uhornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (599,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 7912; }, { glyphname = Uhorndotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7920; }, { glyphname = Uhorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (575,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7914; }, { glyphname = Uhornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Uhorn; }, { pos = (588,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Uhorn; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7916; }, { glyphname = Uhorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Uhorn; }, { pos = (588,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7918; }, { glyphname = Uhungarumlaut; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; } ); unicode = 368; }, { glyphname = Umacron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 362; }, { glyphname = Uogonek; layers = ( { anchors = ( { name = horn; pos = (457,730); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (382,-225,l), (399,-120,l), (330,-120,ls), (301,-120,o), (287,-103,o), (290,-82,cs), (293,-65,o), (309,-38,o), (339,-17,cs), (393,21,l), (463,58,o), (516,127,o), (529,210,cs), (612,730,l), (462,730,l), (379,210,ls), (370,152,o), (335,120,o), (275,120,cs), (215,120,o), (190,152,o), (199,210,cs), (282,730,l), (132,730,l), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs), (287,-10,o), (306,11,o), (307,21,c), (235,-9,o), (168,-68,o), (161,-115,cs), (150,-180,o), (193,-225,o), (274,-225,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (457,730); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (381,-203,l), (390,-143,l), (330,-143,ls), (296,-143,o), (279,-122,o), (283,-93,cs), (288,-65,o), (307,-36,o), (357,1,cs), (390,25,l), (448,60,o), (485,121,o), (498,200,cs), (582,730,l), (492,730,l), (408,200,ls), (395,117,o), (345,71,o), (267,71,cs), (189,71,o), (155,117,o), (168,200,cs), (252,730,l), (162,730,l), (78,200,ls), (57,69,o), (123,-10,o), (254,-10,cs), (258,-10,o), (263,-10,o), (267,-10,c), (226,-45,o), (200,-82,o), (196,-110,cs), (187,-164,o), (229,-203,o), (303,-203,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (464,730); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (367,-195,l), (374,-153,l), (310,-153,ls), (278,-153,o), (262,-134,o), (267,-103,cs), (271,-75,o), (300,-33,o), (344,2,cs), (355,10,l), (422,45,o), (465,105,o), (478,190,cs), (564,730,l), (514,730,l), (428,190,ls), (412,91,o), (353,34,o), (261,34,cs), (169,34,o), (128,91,o), (144,190,cs), (230,730,l), (180,730,l), (94,190,ls), (75,68,o), (136,-10,o), (254,-10,cs), (265,-10,o), (284,-9,o), (295,-6,c), (252,-39,o), (223,-80,o), (218,-115,cs), (210,-165,o), (239,-195,o), (294,-195,cs) ); } ); width = 600; } ); unicode = 370; }, { glyphname = Uring; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (599,0); ref = ringcomb.case; } ); width = 600; } ); unicode = 366; }, { glyphname = Utilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = U; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 360; }, { glyphname = V; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (352,0,l), (647,730,l), (493,730,l), (322,270,ls), (310,237,o), (292,178,o), (282,144,c), (281,178,o), (279,237,o), (277,269,cs), (249,730,l), (97,730,l), (162,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (317,0,l), (622,730,l), (529,730,l), (327,234,ls), (299,165,o), (277,100,o), (268,70,c), (268,100,o), (264,165,o), (258,234,cs), (213,730,l), (122,730,l), (194,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (288,0,l), (604,730,l), (552,730,l), (316,180,ls), (291,122,o), (271,66,o), (262,40,c), (261,66,o), (259,122,o), (252,180,cs), (190,730,l), (140,730,l), (224,0,l) ); } ); width = 600; } ); unicode = 86; }, { glyphname = W; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (191,0,l), (321,485,ls), (330,519,o), (346,594,o), (356,640,c), (352,594,o), (346,519,o), (344,485,cs), (317,0,l), (473,0,l), (662,730,l), (538,730,l), (426,242,ls), (419,213,o), (406,144,o), (398,100,c), (400,144,o), (402,213,o), (404,242,cs), (430,730,l), (313,730,l), (181,242,ls), (173,213,o), (156,144,o), (145,100,c), (151,144,o), (159,213,o), (161,242,cs), (202,730,l), (82,730,l), (34,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (178,0,l), (332,550,ls), (345,595,o), (357,643,o), (364,667,c), (362,643,o), (359,595,o), (357,550,cs), (332,0,l), (445,0,l), (647,730,l), (565,730,l), (422,190,ls), (410,146,o), (398,93,o), (391,65,c), (393,93,o), (395,146,o), (397,190,cs), (421,730,l), (326,730,l), (172,190,ls), (159,146,o), (147,93,o), (139,65,c), (143,93,o), (147,146,o), (150,190,cs), (181,730,l), (97,730,l), (65,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (156,0,l), (320,530,ls), (336,582,o), (356,652,o), (368,690,c), (367,651,o), (365,581,o), (364,530,cs), (353,0,l), (425,0,l), (632,730,l), (583,730,l), (435,190,ls), (425,154,o), (403,80,o), (390,35,c), (391,80,o), (392,154,o), (393,190,cs), (405,730,l), (341,730,l), (178,190,ls), (167,154,o), (145,80,o), (132,35,c), (134,80,o), (137,154,o), (138,190,cs), (156,730,l), (112,730,l), (86,0,l) ); } ); width = 600; } ); unicode = 87; }, { glyphname = Wacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 7810; }, { glyphname = Wcircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 372; }, { glyphname = Wdieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 7812; }, { glyphname = Wgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = W; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = W; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = W; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7808; }, { glyphname = X; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (142,0,l), (259,180,ls), (278,209,o), (291,237,o), (297,250,c), (300,237,o), (307,209,o), (317,180,cs), (376,0,l), (536,0,l), (400,373,l), (639,730,l), (473,730,l), (369,570,ls), (350,541,o), (339,515,o), (334,504,c), (333,515,o), (324,540,o), (315,570,cs), (265,730,l), (105,730,l), (232,381,l), (-24,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (100,0,l), (262,233,ls), (277,255,o), (295,284,o), (305,300,c), (309,284,o), (319,255,o), (328,232,cs), (417,0,l), (516,0,l), (367,374,l), (621,730,l), (518,730,l), (369,514,ls), (353,491,o), (336,462,o), (327,447,c), (321,462,o), (310,491,o), (302,514,cs), (223,730,l), (123,730,l), (264,372,l), (-4,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (66,0,l), (246,252,ls), (261,273,o), (292,316,o), (313,344,c), (324,316,o), (345,273,o), (353,252,cs), (449,0,l), (503,0,l), (346,381,l), (604,730,l), (548,730,l), (388,508,ls), (372,485,o), (340,442,o), (321,416,c), (309,443,o), (289,485,o), (280,508,cs), (194,730,l), (140,730,l), (287,381,l), (9,0,l) ); } ); width = 600; } ); unicode = 88; }, { glyphname = Y; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (372,260,l), (657,730,l), (497,730,l), (373,510,ls), (348,466,o), (327,410,o), (316,380,c), (315,410,o), (308,466,o), (297,510,cs), (240,730,l), (87,730,l), (222,260,l), (181,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (344,273,l), (637,730,l), (542,730,l), (352,430,ls), (331,397,o), (318,372,o), (313,362,c), (312,372,o), (306,397,o), (295,430,cs), (198,730,l), (107,730,l), (254,273,l), (211,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (325,280,l), (622,730,l), (568,730,l), (351,400,ls), (331,370,o), (315,342,o), (307,330,c), (303,343,o), (294,371,o), (284,400,cs), (172,730,l), (122,730,l), (275,280,l), (231,0,l) ); } ); width = 600; } ); unicode = 89; }, { glyphname = Yacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 221; }, { glyphname = Ycircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (599,0); ref = circumflexcomb.case; } ); width = 600; } ); unicode = 374; }, { glyphname = Ydieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 376; }, { glyphname = Ydotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (600,0); ref = dotbelowcomb.case; } ); width = 600; } ); unicode = 7924; }, { glyphname = Ygrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (587,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (586,0); ref = gravecomb.case; } ); width = 600; } ); unicode = 7922; }, { glyphname = Yhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (600,0); ref = hookabovecomb.case; } ); width = 600; } ); unicode = 7926; }, { glyphname = Ymacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (599,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); unicode = 562; }, { glyphname = Ytilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Y; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Y; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Y; }, { pos = (600,0); ref = tildecomb.case; } ); width = 600; } ); unicode = 7928; }, { glyphname = Z; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (481,0,l), (503,140,l), (228,140,l), (563,590,l), (586,730,l), (155,730,l), (132,590,l), (388,590,l), (54,140,l), (32,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (471,0,l), (484,82,l), (148,82,l), (562,640,l), (577,730,l), (162,730,l), (149,648,l), (470,648,l), (55,90,l), (41,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (464,0,l), (471,46,l), (108,46,l), (558,673,l), (567,730,l), (167,730,l), (159,684,l), (508,684,l), (55,50,l), (47,0,l) ); } ); width = 600; } ); unicode = 90; }, { glyphname = Zacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Z; }, { pos = (612,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Z; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Z; }, { pos = (611,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 377; }, { glyphname = Zcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = caroncomb.case; } ); width = 600; } ); unicode = 381; }, { glyphname = Zdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Z; }, { pos = (599,0); ref = dotaccentcomb.case; } ); width = 600; } ); unicode = 379; }, { export = 0; glyphname = K.ss00; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (171,0,l), (228,359,l), (239,359,l), (366,0,l), (531,0,l), (385,381,l), (641,730,l), (478,730,l), (245,397,l), (234,397,l), (287,730,l), (137,730,l), (21,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (196,366,l), (213,366,l), (412,0,l), (516,0,l), (309,370,l), (622,730,l), (522,730,l), (220,389,l), (200,389,l), (254,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (175,370,l), (197,370,l), (433,0,l), (496,0,l), (253,375,l), (602,730,l), (539,730,l), (200,387,l), (177,387,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); }, { export = 0; glyphname = Kcommaaccent.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K.ss00; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K.ss00; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K.ss00; }, { pos = (600,0); ref = commaaccentcomb.case; } ); width = 600; } ); }, { glyphname = a; layers = ( { anchors = ( { name = bottom; pos = (261,0); }, { name = ogonek; pos = (390,0); }, { name = top; pos = (348,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-10,o), (352,45,o), (367,140,c), (327,105,l), (362,105,l), (345,0,l), (490,0,l), (577,550,l), (428,550,l), (415,445,l), (380,445,l), (410,410,l), (425,505,o), (379,560,o), (288,560,cs), (177,560,o), (93,476,o), (71,345,cs), (48,205,ls), (26,73,o), (86,-10,o), (197,-10,cs) ); }, { closed = 1; nodes = ( (216,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,397,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (373,210,ls), (364,152,o), (327,120,o), (272,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = ogonek; pos = (410,0); }, { name = top; pos = (348,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (337,-10,o), (414,49,o), (428,140,c), (380,75,l), (408,75,l), (396,0,l), (446,0,l), (533,550,l), (483,550,l), (471,475,l), (453,475,l), (471,410,l), (485,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,480,o), (118,360,cs), (91,189,ls), (72,69,o), (131,-10,o), (241,-10,cs) ); }, { closed = 1; nodes = ( (169,33,o), (126,91,o), (141,189,cs), (168,360,ls), (183,458,o), (246,517,o), (335,517,cs), (426,517,o), (468,458,o), (453,360,cs), (426,189,ls), (411,91,o), (348,33,o), (258,33,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = ogonek; pos = (420,0); }, { name = top; pos = (348,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (314,-10,o), (382,42,o), (395,126,c), (374,105,l), (392,105,l), (375,0,l), (465,0,l), (552,550,l), (462,550,l), (447,445,l), (427,445,l), (442,424,l), (455,507,o), (404,560,o), (314,560,cs), (203,560,o), (121,482,o), (101,355,cs), (76,194,ls), (56,68,o), (113,-10,o), (223,-10,cs) ); }, { closed = 1; nodes = ( (190,68,o), (154,115,o), (167,200,cs), (190,350,ls), (203,435,o), (255,482,o), (331,482,cs), (405,482,o), (443,433,o), (430,350,cs), (407,200,ls), (394,117,o), (340,68,o), (266,68,cs) ); } ); width = 600; } ); unicode = 97; }, { glyphname = aacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (626,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (616,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (617,0); ref = acutecomb; } ); width = 600; } ); unicode = 225; }, { glyphname = abreve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb; } ); width = 600; } ); unicode = 259; }, { glyphname = abreveacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_acutecomb; } ); width = 600; } ); unicode = 7855; }, { glyphname = abrevedotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = brevecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = brevecomb; } ); width = 600; } ); unicode = 7863; }, { glyphname = abrevegrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_gravecomb; } ); width = 600; } ); unicode = 7857; }, { glyphname = abrevehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_hookabovecomb; } ); width = 600; } ); unicode = 7859; }, { glyphname = abrevetilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = brevecomb_tildecomb; } ); width = 600; } ); unicode = 7861; }, { glyphname = acaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (605,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = caroncomb; } ); width = 600; } ); unicode = 462; }, { glyphname = acircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 226; }, { glyphname = acircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_acutecomb; } ); width = 600; } ); unicode = 7845; }, { glyphname = acircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = dotbelowcomb; }, { pos = (604,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 7853; }, { glyphname = acircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_gravecomb; } ); width = 600; } ); unicode = 7847; }, { glyphname = acircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; } ); unicode = 7849; }, { glyphname = acircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = circumflexcomb_tildecomb; } ); width = 600; } ); unicode = 7851; }, { glyphname = adieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (604,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 228; }, { glyphname = adotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = a; }, { pos = (604,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = a; }, { pos = (604,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = a; }, { pos = (604,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7841; }, { glyphname = agrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (593,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (591,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (591,0); ref = gravecomb; } ); width = 600; } ); unicode = 224; }, { glyphname = ahookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (605,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7843; }, { glyphname = amacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = macroncomb; } ); width = 600; } ); unicode = 257; }, { glyphname = aogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (469,-195,l), (476,-153,l), (412,-153,ls), (380,-153,o), (364,-134,o), (369,-103,cs), (373,-75,o), (402,-36,o), (446,0,c), (421,10,l), (365,-27,o), (326,-74,o), (320,-115,cs), (312,-165,o), (341,-195,o), (396,-195,c) ); }, { ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (483,-203,l), (492,-143,l), (432,-143,ls), (398,-143,o), (381,-122,o), (385,-93,cs), (390,-65,o), (413,-37,o), (464,0,c), (402,10,l), (332,-34,o), (304,-72,o), (298,-110,cs), (289,-164,o), (331,-203,o), (405,-203,cs) ); }, { ref = a; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,-225,l), (527,-120,l), (458,-120,ls), (429,-120,o), (415,-103,o), (418,-83,cs), (421,-66,o), (439,-42,o), (492,0,c), (420,11,l), (347,-19,o), (296,-68,o), (289,-115,cs), (278,-180,o), (321,-225,o), (402,-225,cs) ); }, { ref = a; } ); width = 600; } ); unicode = 261; }, { glyphname = aring; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (604,0); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (604,0); ref = ringcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = ringcomb; } ); width = 600; } ); unicode = 229; }, { glyphname = atilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; }, { pos = (605,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; }, { pos = (605,0); ref = tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; }, { pos = (605,0); ref = tildecomb; } ); width = 600; } ); unicode = 227; }, { glyphname = ae; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (207,-10,o), (251,33,o), (262,65,c), (270,65,l), (270,33,o), (297,-10,o), (374,-10,cs), (461,-10,o), (529,50,o), (543,140,c), (428,140,l), (423,106,o), (403,87,o), (374,87,cs), (345,87,o), (330,107,o), (335,140,cs), (353,250,l), (561,250,l), (586,410,ls), (600,500,o), (552,560,o), (465,560,cs), (388,560,o), (347,517,o), (337,485,c), (329,485,l), (329,517,o), (302,560,o), (226,560,cs), (138,560,o), (70,496,o), (54,400,c), (169,400,l), (176,440,o), (197,463,o), (228,463,cs), (256,463,o), (269,443,o), (264,410,cs), (251,330,l), (208,330,ls), (109,330,o), (34,274,o), (21,190,cs), (13,140,ls), (-1,50,o), (44,-10,o), (126,-10,cs) ); }, { closed = 1; nodes = ( (138,87,o), (123,107,o), (128,140,cs), (136,190,ls), (142,228,o), (165,250,o), (196,250,cs), (239,250,l), (221,140,ls), (216,107,o), (197,87,o), (169,87,cs) ); }, { closed = 1; nodes = ( (378,410,ls), (383,443,o), (403,463,o), (433,463,cs), (462,463,o), (477,444,o), (471,410,cs), (458,330,l), (365,330,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (209,-10,o), (257,36,o), (268,70,c), (272,70,l), (272,36,o), (299,-10,o), (374,-10,cs), (461,-10,o), (528,46,o), (542,130,c), (457,130,l), (450,91,o), (420,67,o), (377,67,cs), (337,67,o), (315,100,o), (323,150,cs), (339,255,l), (561,255,l), (584,400,ls), (600,499,o), (555,560,o), (465,560,cs), (391,560,o), (348,514,o), (337,480,c), (333,480,l), (332,514,o), (303,560,o), (225,560,cs), (145,560,o), (83,504,o), (70,420,c), (155,420,l), (161,458,o), (189,483,o), (227,483,cs), (273,483,o), (290,457,o), (281,399,cs), (269,325,l), (195,325,ls), (102,325,o), (34,272,o), (21,190,cs), (12,130,ls), (-2,44,o), (41,-10,o), (124,-10,cs) ); }, { closed = 1; nodes = ( (117,67,o), (95,91,o), (102,130,cs), (111,190,ls), (117,230,o), (145,255,o), (186,255,cs), (258,255,l), (242,150,ls), (234,100,o), (200,67,o), (157,67,cs) ); }, { closed = 1; nodes = ( (362,400,ls), (370,450,o), (400,483,o), (442,483,cs), (486,483,o), (507,450,o), (499,400,cs), (487,325,l), (350,325,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (209,-10,o), (256,38,o), (269,75,c), (272,75,l), (273,38,o), (303,-10,o), (380,-10,cs), (461,-10,o), (517,43,o), (537,125,c), (487,125,l), (473,72,o), (437,35,o), (385,35,cs), (328,35,o), (297,79,o), (306,140,cs), (326,268,l), (558,268,l), (581,410,ls), (595,500,o), (552,560,o), (468,560,cs), (397,560,o), (350,511,o), (335,474,c), (333,474,l), (332,511,o), (302,560,o), (225,560,cs), (144,560,o), (83,507,o), (63,425,c), (113,425,l), (127,478,o), (169,516,o), (221,516,cs), (277,516,o), (309,471,o), (299,410,cs), (284,313,l), (176,313,ls), (95,313,o), (38,263,o), (25,185,cs), (18,139,ls), (4,50,o), (45,-10,o), (128,-10,cs) ); }, { closed = 1; nodes = ( (88,32,o), (58,77,o), (68,139,cs), (75,185,ls), (83,234,o), (121,268,o), (168,268,cs), (276,268,l), (256,140,ls), (246,78,o), (199,32,o), (144,32,cs) ); }, { closed = 1; nodes = ( (349,410,ls), (358,470,o), (404,516,o), (458,516,cs), (512,516,o), (540,470,o), (531,410,cs), (516,313,l), (334,313,l) ); } ); width = 600; } ); unicode = 230; }, { glyphname = aeacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ae; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ae; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ae; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 509; }, { glyphname = b; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (422,-10,o), (508,73,o), (528,205,cs), (551,345,ls), (571,476,o), (513,560,o), (402,560,cs), (311,560,o), (247,505,o), (232,410,c), (272,445,l), (237,445,l), (264,580,l), (288,730,l), (138,730,l), (22,0,l), (167,0,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs) ); }, { closed = 1; nodes = ( (223,120,o), (196,152,o), (205,210,cs), (226,340,ls), (235,397,o), (272,430,o), (327,430,cs), (383,430,o), (409,397,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (396,-10,o), (479,68,o), (499,194,cs), (524,355,ls), (544,482,o), (488,560,o), (377,560,cs), (287,560,o), (218,507,o), (205,424,c), (226,445,l), (206,445,l), (228,570,l), (254,730,l), (164,730,l), (48,0,l), (138,0,l), (155,105,l), (173,105,l), (158,126,l), (145,42,o), (195,-10,o), (286,-10,cs) ); }, { closed = 1; nodes = ( (195,68,o), (157,117,o), (170,200,cs), (193,350,ls), (207,433,o), (260,482,o), (334,482,cs), (410,482,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (345,68,o), (269,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (462,69,o), (481,189,cs), (508,360,ls), (527,480,o), (468,560,o), (358,560,cs), (262,560,o), (185,501,o), (171,410,c), (209,475,l), (191,475,l), (208,580,l), (232,730,l), (182,730,l), (66,0,l), (116,0,l), (128,75,l), (156,75,l), (128,140,l), (114,49,o), (171,-10,o), (267,-10,cs) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,189,cs), (173,360,ls), (189,458,o), (250,517,o), (341,517,cs), (430,517,o), (474,458,o), (458,360,cs), (431,189,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; } ); unicode = 98; }, { glyphname = c; layers = ( { anchors = ( { name = bottom; pos = (259,0); }, { name = top; pos = (346,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (508,68,o), (533,195,c), (383,195,l), (371,147,o), (333,120,o), (278,120,cs), (218,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (267,430,o), (327,430,cs), (381,430,o), (412,402,o), (408,355,c), (558,355,l), (573,482,o), (493,560,o), (348,560,cs), (201,560,o), (91,473,o), (70,340,cs), (49,210,ls), (28,77,o), (110,-10,o), (257,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (260,0); }, { name = top; pos = (347,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (480,63,o), (503,180,c), (413,180,l), (397,110,o), (345,70,o), (271,70,cs), (192,70,o), (153,117,o), (166,200,cs), (190,351,ls), (203,433,o), (257,480,o), (336,480,cs), (410,480,o), (450,440,o), (443,370,c), (533,370,l), (547,487,o), (476,560,o), (349,560,cs), (216,560,o), (120,481,o), (99,350,cs), (76,200,ls), (55,69,o), (125,-10,o), (258,-10,cs) ); } ); visible = 1; width = 600; }, { anchors = ( { name = bottom; pos = (258,0); }, { name = top; pos = (345,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (466,64,o), (485,180,c), (435,180,l), (420,90,o), (356,36,o), (264,36,cs), (173,36,o), (126,94,o), (141,190,cs), (168,360,ls), (183,457,o), (248,514,o), (339,514,cs), (431,514,o), (479,460,o), (465,370,c), (515,370,l), (533,486,o), (468,560,o), (347,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (135,-10,o), (256,-10,cs) ); } ); width = 600; } ); unicode = 99; }, { glyphname = cacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = c; }, { pos = (623,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = c; }, { pos = (615,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = c; }, { pos = (615,0); ref = acutecomb; } ); width = 600; } ); unicode = 263; }, { glyphname = ccaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = c; }, { pos = (602,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = c; }, { pos = (604,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = c; }, { pos = (603,0); ref = caroncomb; } ); width = 600; } ); unicode = 269; }, { glyphname = ccedilla; layers = ( { anchors = ( { name = _bottom; pos = (258,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (217,-195,ls), (277,-195,o), (323,-161,o), (329,-118,cs), (338,-61,o), (279,-37,o), (233,-34,c), (265,26,l), (223,26,l), (174,-64,l), (245,-64,o), (288,-86,o), (283,-118,cs), (280,-140,o), (255,-160,o), (223,-160,cs), (143,-160,l), (137,-195,l) ); }, { ref = c; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (260,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (218,-203,ls), (290,-203,o), (344,-166,o), (351,-120,cs), (359,-68,o), (296,-41,o), (244,-35,c), (275,26,l), (218,26,l), (168,-69,l), (235,-69,o), (270,-89,o), (266,-112,cs), (263,-130,o), (241,-148,o), (212,-148,cs), (142,-148,l), (133,-203,l) ); }, { ref = c; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (259,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (223,-225,ls), (307,-225,o), (370,-182,o), (378,-133,cs), (388,-72,o), (311,-43,o), (251,-39,c), (279,16,l), (206,16,l), (157,-69,l), (230,-69,o), (270,-88,o), (265,-119,cs), (263,-135,o), (237,-155,o), (204,-155,cs), (124,-155,l), (113,-225,l) ); }, { ref = c; } ); width = 600; } ); unicode = 231; }, { glyphname = ccircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = c; }, { pos = (602,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = c; }, { pos = (603,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = c; }, { pos = (601,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 265; }, { glyphname = cdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = c; }, { pos = (603,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = c; }, { pos = (604,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = c; }, { pos = (601,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 267; }, { glyphname = d; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-10,o), (352,45,o), (367,140,c), (327,105,l), (362,105,l), (345,0,l), (490,0,l), (606,730,l), (456,730,l), (432,580,l), (415,445,l), (380,445,l), (410,410,l), (425,505,o), (379,560,o), (288,560,cs), (177,560,o), (91,476,o), (71,345,cs), (48,205,ls), (28,73,o), (86,-10,o), (197,-10,cs) ); }, { closed = 1; nodes = ( (216,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,397,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (373,210,ls), (364,152,o), (327,120,o), (272,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (314,-10,o), (382,42,o), (395,126,c), (374,105,l), (392,105,l), (375,0,l), (465,0,l), (581,730,l), (491,730,l), (465,570,l), (447,445,l), (427,445,l), (442,424,l), (455,507,o), (404,560,o), (314,560,cs), (203,560,o), (121,482,o), (101,355,cs), (76,194,ls), (56,68,o), (113,-10,o), (223,-10,cs) ); }, { closed = 1; nodes = ( (190,68,o), (153,115,o), (167,200,cs), (190,350,ls), (204,435,o), (255,482,o), (331,482,cs), (405,482,o), (444,433,o), (430,350,cs), (407,200,ls), (394,117,o), (340,68,o), (266,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (337,-10,o), (414,49,o), (428,140,c), (380,75,l), (408,75,l), (396,0,l), (446,0,l), (562,730,l), (512,730,l), (488,580,l), (471,475,l), (453,475,l), (471,410,l), (485,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,480,o), (118,360,cs), (91,189,ls), (72,69,o), (131,-10,o), (241,-10,cs) ); }, { closed = 1; nodes = ( (169,33,o), (125,91,o), (141,189,cs), (168,360,ls), (184,458,o), (246,517,o), (335,517,cs), (426,517,o), (469,458,o), (453,360,cs), (426,189,ls), (410,91,o), (348,33,o), (258,33,cs) ); } ); width = 600; } ); unicode = 100; }, { glyphname = eth; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (415,0,o), (531,96,o), (556,251,cs), (569,337,o), (546,429,o), (480,537,cs), (439,604,l), (552,641,l), (567,747,l), (386,687,l), (361,730,l), (208,730,l), (261,642,l), (158,608,l), (143,501,l), (313,558,l), (354,489,ls), (400,412,o), (408,380,o), (406,375,c), (400,375,l), (386,410,o), (340,456,o), (271,456,cs), (150,456,o), (54,368,o), (33,236,cs), (11,94,o), (99,0,o), (256,0,cs) ); }, { closed = 1; nodes = ( (209,125,o), (173,168,o), (183,235,cs), (194,302,o), (244,345,o), (311,345,cs), (377,345,o), (414,301,o), (403,235,cs), (393,168,o), (343,125,o), (276,125,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (499,83,o), (521,223,cs), (535,308,o), (515,410,o), (466,493,cs), (401,604,l), (521,653,l), (533,735,l), (366,668,l), (332,730,l), (237,730,l), (292,633,l), (164,577,l), (151,496,l), (327,569,l), (377,480,ls), (405,430,o), (421,393,o), (425,380,c), (411,380,l), (400,404,o), (364,436,o), (306,436,cs), (179,436,o), (81,348,o), (60,215,cs), (39,80,o), (116,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (183,70,o), (136,128,o), (150,215,cs), (164,302,o), (229,360,o), (312,360,cs), (397,360,o), (444,302,o), (430,215,cs), (416,128,o), (351,70,o), (266,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (388,-10,o), (488,78,o), (510,213,cs), (524,302,o), (499,403,o), (433,517,cs), (379,610,l), (524,673,l), (530,717,l), (360,644,l), (314,730,l), (264,730,l), (323,628,l), (161,557,l), (155,513,l), (342,594,l), (398,491,ls), (437,419,o), (453,366,o), (456,347,c), (453,347,l), (437,385,o), (388,436,o), (315,436,cs), (186,436,o), (91,350,o), (70,215,cs), (49,79,o), (121,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (161,40,o), (108,108,o), (125,215,cs), (142,322,o), (217,390,o), (318,390,cs), (413,390,o), (471,318,o), (455,216,cs), (438,109,o), (362,40,o), (262,40,cs) ); } ); width = 600; } ); unicode = 240; }, { glyphname = dcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (648,550,l), (687,730,l), (577,730,l), (548,550,l) ); }, { closed = 1; nodes = ( (234,-10,o), (293,48,o), (307,140,c), (267,105,l), (302,105,l), (285,0,l), (420,0,l), (536,730,l), (396,730,l), (372,580,l), (355,445,l), (320,445,l), (350,410,l), (365,502,o), (325,560,o), (248,560,cs), (148,560,o), (72,479,o), (52,351,cs), (28,200,ls), (7,71,o), (57,-10,o), (157,-10,cs) ); }, { closed = 1; nodes = ( (182,110,o), (159,145,o), (168,205,cs), (191,346,ls), (200,405,o), (235,440,o), (283,440,cs), (325,440,o), (344,405,o), (335,346,cs), (312,205,ls), (303,145,o), (272,110,o), (230,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (633,550,l), (672,730,l), (582,730,l), (553,550,l) ); }, { closed = 1; nodes = ( (265,-10,o), (326,43,o), (339,126,c), (318,105,l), (336,105,l), (319,0,l), (409,0,l), (525,730,l), (435,730,l), (409,570,l), (391,445,l), (371,445,l), (386,424,l), (399,507,o), (356,560,o), (273,560,cs), (172,560,o), (95,483,o), (76,360,cs), (49,189,ls), (30,67,o), (81,-10,o), (182,-10,cs) ); }, { closed = 1; nodes = ( (159,68,o), (127,115,o), (140,195,cs), (165,355,ls), (178,435,o), (224,482,o), (290,482,cs), (356,482,o), (388,435,o), (375,355,cs), (350,195,ls), (337,115,o), (291,68,o), (225,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (598,550,l), (642,730,l), (592,730,l), (553,550,l) ); }, { closed = 1; nodes = ( (310,-10,o), (379,48,o), (393,140,c), (345,75,l), (373,75,l), (361,0,l), (411,0,l), (527,730,l), (477,730,l), (453,580,l), (436,475,l), (418,475,l), (436,410,l), (451,502,o), (401,560,o), (307,560,cs), (202,560,o), (122,483,o), (103,360,cs), (76,189,ls), (57,67,o), (111,-10,o), (216,-10,cs) ); }, { closed = 1; nodes = ( (152,33,o), (111,93,o), (126,189,cs), (153,360,ls), (168,456,o), (229,517,o), (310,517,cs), (392,517,o), (433,456,o), (418,360,cs), (391,189,ls), (376,93,o), (315,33,o), (233,33,cs) ); } ); width = 600; } ); unicode = 271; }, { glyphname = dcroat; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (28,73,o), (86,-10,o), (197,-10,cs), (276,-10,o), (335,32,o), (359,105,c), (362,105,l), (345,0,l), (490,0,l), (578,555,l), (644,555,l), (658,645,l), (592,645,l), (606,730,l), (456,730,l), (442,645,l), (298,645,l), (284,555,l), (428,555,l), (422,520,l), (406,385,l), (403,385,l), (403,458,o), (357,500,o), (278,500,cs), (167,500,o), (82,416,o), (61,285,cs), (48,205,ls) ); }, { closed = 1; nodes = ( (210,280,ls), (219,337,o), (256,370,o), (312,370,cs), (367,370,o), (393,337,o), (384,280,cs), (373,210,ls), (364,152,o), (327,120,o), (272,120,cs), (216,120,o), (190,152,o), (199,210,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (57,68,o), (112,-10,o), (222,-10,cs), (306,-10,o), (367,33,o), (387,105,c), (389,105,l), (372,0,l), (462,0,l), (552,570,l), (646,570,l), (658,645,l), (564,645,l), (578,730,l), (488,730,l), (474,645,l), (308,645,l), (296,570,l), (462,570,l), (453,510,l), (435,385,l), (432,385,l), (434,456,o), (385,500,o), (303,500,cs), (192,500,o), (113,422,o), (93,295,cs), (77,194,ls) ); }, { closed = 1; nodes = ( (182,290,ls), (195,375,o), (245,422,o), (321,422,cs), (395,422,o), (431,373,o), (418,290,cs), (404,200,ls), (391,117,o), (339,68,o), (265,68,cs), (189,68,o), (154,115,o), (168,200,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (72,69,o), (131,-10,o), (241,-10,cs), (312,-10,o), (372,22,o), (404,75,c), (408,75,l), (396,0,l), (446,0,l), (539,586,l), (639,586,l), (646,631,l), (546,631,l), (562,730,l), (512,730,l), (496,631,l), (316,631,l), (309,586,l), (489,586,l), (478,520,l), (462,415,l), (458,415,l), (443,468,o), (393,500,o), (322,500,cs), (212,500,o), (128,420,o), (109,300,cs), (91,189,ls) ); }, { closed = 1; nodes = ( (159,300,ls), (174,398,o), (236,457,o), (325,457,cs), (416,457,o), (459,398,o), (444,300,cs), (426,189,ls), (410,91,o), (348,33,o), (258,33,cs), (169,33,o), (125,91,o), (141,189,cs) ); } ); width = 600; } ); unicode = 273; }, { glyphname = e; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (374,-10,o), (476,54,o), (515,150,c), (368,150,l), (354,122,o), (323,105,o), (276,105,cs), (209,105,o), (181,141,o), (192,210,cs), (197,240,l), (534,240,l), (550,340,ls), (571,472,o), (492,560,o), (346,560,cs), (199,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (108,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (415,327,l), (210,325,l), (213,340,ls), (224,408,o), (262,447,o), (328,447,cs), (393,447,o), (418,410,o), (407,342,cs), (403,317,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (370,-10,o), (462,48,o), (488,140,c), (398,140,l), (380,91,o), (335,66,o), (266,66,cs), (184,66,o), (150,113,o), (164,200,cs), (172,253,l), (508,253,l), (523,350,ls), (544,477,o), (475,560,o), (345,560,cs), (215,560,o), (120,477,o), (99,350,cs), (76,200,ls), (56,73,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (438,321,l), (183,321,l), (187,350,ls), (201,437,o), (251,485,o), (333,485,cs), (415,485,o), (449,437,o), (435,350,cs), (430,313,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (358,-10,o), (437,46,o), (471,135,c), (421,135,l), (392,72,o), (336,34,o), (262,34,cs), (169,34,o), (126,94,o), (141,190,cs), (153,265,l), (493,265,l), (508,360,ls), (527,481,o), (467,560,o), (346,560,cs), (224,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (132,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (461,308,l), (160,308,l), (168,360,ls), (183,457,o), (245,516,o), (339,516,cs), (431,516,o), (474,456,o), (458,360,cs), (448,299,l) ); } ); width = 600; } ); unicode = 101; }, { glyphname = eacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 233; }, { glyphname = ebreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = brevecomb; } ); width = 600; } ); unicode = 277; }, { glyphname = ecaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = caroncomb; } ); width = 600; } ); unicode = 283; }, { glyphname = ecircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 234; }, { glyphname = ecircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; } ); unicode = 7871; }, { glyphname = ecircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 7879; }, { glyphname = ecircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; } ); unicode = 7873; }, { glyphname = ecircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; } ); unicode = 7875; }, { glyphname = ecircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; } ); unicode = 7877; }, { glyphname = edieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 235; }, { glyphname = edotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 279; }, { glyphname = edotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7865; }, { glyphname = egrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 232; }, { glyphname = ehookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7867; }, { glyphname = emacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = e; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = e; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = e; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 275; }, { glyphname = eogonek; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (388,-225,l), (405,-120,l), (336,-120,ls), (307,-120,o), (293,-103,o), (296,-83,cs), (299,-66,o), (317,-42,o), (347,-18,cs), (406,29,l), (454,58,o), (494,99,o), (515,150,c), (368,150,l), (354,122,o), (323,105,o), (276,105,cs), (209,105,o), (181,141,o), (192,210,cs), (197,240,l), (534,240,l), (550,340,ls), (571,472,o), (492,560,o), (346,560,cs), (199,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (108,-10,o), (255,-10,cs), (290,-10,o), (316,9,o), (320,29,c), (225,-19,o), (174,-68,o), (167,-115,cs), (156,-180,o), (199,-225,o), (280,-225,cs) ); }, { closed = 1; nodes = ( (415,327,l), (210,325,l), (213,340,ls), (224,408,o), (262,447,o), (328,447,cs), (393,447,o), (418,410,o), (407,342,cs), (403,317,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (375,-203,l), (384,-143,l), (324,-143,ls), (290,-143,o), (273,-122,o), (277,-93,cs), (282,-65,o), (305,-36,o), (356,1,cs), (374,14,l), (430,39,o), (472,83,o), (488,140,c), (398,140,l), (380,91,o), (335,66,o), (266,66,cs), (184,66,o), (150,113,o), (164,200,cs), (172,253,l), (508,253,l), (523,350,ls), (544,477,o), (475,560,o), (345,560,cs), (215,560,o), (120,477,o), (99,350,cs), (76,200,ls), (56,73,o), (124,-10,o), (254,-10,cs), (257,-10,o), (261,-10,o), (264,-10,c), (220,-45,o), (194,-80,o), (190,-110,cs), (181,-164,o), (223,-203,o), (297,-203,cs) ); }, { closed = 1; nodes = ( (471,321,l), (183,321,l), (187,350,ls), (201,437,o), (251,485,o), (333,485,cs), (415,485,o), (449,437,o), (435,350,cs), (425,281,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (374,-195,l), (381,-153,l), (317,-153,ls), (285,-153,o), (269,-134,o), (274,-103,cs), (278,-75,o), (307,-36,o), (351,0,cs), (382,24,l), (423,50,o), (453,88,o), (471,135,c), (421,135,l), (392,72,o), (336,34,o), (262,34,cs), (169,34,o), (126,94,o), (141,190,cs), (153,265,l), (493,265,l), (508,360,ls), (527,481,o), (467,560,o), (346,560,cs), (224,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (132,-10,o), (255,-10,cs), (272,-10,o), (290,-8,o), (305,-5,c), (253,-48,o), (230,-84,o), (225,-115,cs), (217,-165,o), (246,-195,o), (301,-195,cs) ); }, { closed = 1; nodes = ( (472,308,l), (160,308,l), (168,360,ls), (183,457,o), (245,516,o), (339,516,cs), (431,516,o), (473,456,o), (458,360,cs), (446,286,l) ); } ); width = 600; } ); unicode = 281; }, { glyphname = etilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 7869; }, { glyphname = schwa; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-10,o), (508,78,o), (529,210,cs), (550,340,ls), (571,472,o), (491,560,o), (344,560,cs), (225,560,o), (124,496,o), (84,400,c), (231,400,l), (245,428,o), (276,445,o), (323,445,cs), (390,445,o), (418,409,o), (407,340,cs), (402,310,l), (65,310,l), (49,210,ls), (28,78,o), (107,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (207,105,o), (181,142,o), (192,210,cs), (196,235,l), (185,225,l), (389,225,l), (386,210,ls), (375,142,o), (338,105,o), (272,105,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (478,73,o), (498,200,cs), (521,350,ls), (542,477,o), (475,560,o), (345,560,cs), (229,560,o), (140,502,o), (113,410,c), (203,410,l), (221,459,o), (264,484,o), (333,484,cs), (415,484,o), (447,437,o), (433,350,cs), (425,297,l), (93,297,l), (78,200,ls), (58,73,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (184,65,o), (152,113,o), (166,200,cs), (172,237,l), (163,229,l), (414,229,l), (410,200,ls), (396,113,o), (348,65,o), (266,65,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-10,o), (462,69,o), (481,190,cs), (508,360,ls), (527,482,o), (467,560,o), (344,560,cs), (241,560,o), (162,504,o), (128,415,c), (178,415,l), (207,478,o), (263,516,o), (337,516,cs), (430,516,o), (473,456,o), (458,360,cs), (446,285,l), (106,285,l), (91,190,ls), (72,69,o), (132,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (168,34,o), (126,94,o), (141,190,cs), (151,251,l), (138,242,l), (439,242,l), (431,190,ls), (416,93,o), (354,34,o), (260,34,cs) ); } ); width = 600; } ); unicode = 601; }, { glyphname = f; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (73,-180,ls), (181,-180,o), (255,-119,o), (271,-20,cs), (342,413,l), (556,413,l), (569,495,l), (355,495,l), (367,570,ls), (375,623,o), (405,648,o), (461,648,cs), (587,648,l), (600,730,l), (475,730,ls), (367,730,o), (293,669,o), (277,570,cs), (265,495,l), (94,495,l), (81,413,l), (252,413,l), (181,-20,ls), (172,-73,o), (143,-98,o), (87,-98,cs), (13,-98,l), (0,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (98,-180,ls), (179,-180,o), (235,-133,o), (248,-55,cs), (331,449,l), (550,449,l), (557,494,l), (338,494,l), (356,605,ls), (364,656,o), (397,685,o), (448,685,cs), (587,685,l), (595,730,l), (456,730,ls), (375,730,o), (319,683,o), (306,605,cs), (288,494,l), (104,494,l), (97,449,l), (281,449,l), (198,-55,ls), (190,-106,o), (157,-135,o), (106,-135,cs), (8,-135,l), (0,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (48,-180,ls), (189,-180,o), (289,-106,o), (308,14,cs), (362,350,l), (557,350,l), (579,485,l), (384,485,l), (395,555,ls), (399,582,o), (420,600,o), (447,600,cs), (579,600,l), (600,730,l), (463,730,ls), (349,730,o), (262,662,o), (246,560,cs), (234,485,l), (82,485,l), (60,350,l), (212,350,l), (159,19,ls), (151,-31,o), (115,-60,o), (62,-60,cs), (19,-60,l), (0,-180,l) ); } ); width = 600; } ); unicode = 102; }, { glyphname = g; layers = ( { anchors = ( { name = top; pos = (340,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,-180,ls), (372,-180,o), (446,-119,o), (462,-20,cs), (552,550,l), (463,550,l), (446,445,l), (429,445,l), (444,430,l), (457,510,o), (407,560,o), (318,560,cs), (205,560,o), (122,481,o), (102,356,cs), (84,240,ls), (64,114,o), (122,35,o), (235,35,cs), (324,35,o), (389,85,o), (402,165,c), (383,150,l), (401,150,l), (383,50,l), (372,-20,ls), (363,-73,o), (334,-98,o), (278,-98,cs), (103,-98,l), (90,-180,l) ); }, { closed = 1; nodes = ( (198,113,o), (161,160,o), (175,245,cs), (191,350,ls), (205,435,o), (256,482,o), (332,482,cs), (406,482,o), (445,433,o), (431,350,cs), (415,245,ls), (402,162,o), (348,113,o), (274,113,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (340,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (246,-180,ls), (358,-180,o), (427,-124,o), (444,-15,cs), (533,550,l), (483,550,l), (468,455,l), (455,455,l), (468,410,l), (482,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,480,o), (118,360,cs), (99,239,ls), (80,119,o), (139,40,o), (249,40,cs), (345,40,o), (419,99,o), (433,190,c), (401,145,l), (419,145,l), (401,30,l), (394,-15,ls), (382,-94,o), (333,-135,o), (254,-135,cs), (109,-135,l), (101,-180,l) ); }, { closed = 1; nodes = ( (177,83,o), (134,141,o), (149,239,cs), (168,360,ls), (183,458,o), (246,517,o), (335,517,cs), (426,517,o), (468,458,o), (453,360,cs), (434,239,ls), (419,141,o), (356,83,o), (266,83,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (340,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (232,-180,ls), (373,-180,o), (473,-106,o), (492,14,cs), (577,550,l), (427,550,l), (415,445,l), (380,445,l), (410,410,l), (425,505,o), (379,560,o), (288,560,cs), (177,560,o), (91,476,o), (71,345,cs), (55,245,ls), (34,113,o), (93,30,o), (204,30,cs), (295,30,o), (358,85,o), (374,180,c), (333,145,l), (368,145,l), (349,40,l), (346,19,ls), (338,-31,o), (302,-60,o), (246,-60,cs), (91,-60,l), (72,-180,l) ); }, { closed = 1; nodes = ( (222,160,o), (196,192,o), (206,250,cs), (220,340,ls), (229,397,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (380,250,ls), (370,192,o), (333,160,o), (278,160,cs) ); } ); width = 600; } ); unicode = 103; }, { glyphname = gacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (609,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (608,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (618,0); ref = acutecomb; } ); width = 600; } ); unicode = 501; }, { glyphname = gbreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = brevecomb; } ); width = 600; } ); unicode = 287; }, { glyphname = gcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = caroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = caroncomb; } ); width = 600; } ); unicode = 487; }, { glyphname = gcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 285; }, { glyphname = gcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = g; }, { pos = (597,0); ref = commaturnedabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = g; }, { pos = (597,0); ref = commaturnedabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = g; }, { pos = (597,0); ref = commaturnedabovecomb; } ); width = 600; } ); unicode = 291; }, { glyphname = gdotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = g; }, { pos = (597,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = g; }, { pos = (596,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 289; }, { glyphname = h; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (342,0,l), (492,0,l), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (259,550,l), (288,730,l), (138,730,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (193,350,ls), (207,435,o), (261,484,o), (336,484,cs), (408,484,o), (445,438,o), (433,360,cs), (376,0,l), (466,0,l), (525,370,ls), (543,487,o), (484,560,o), (374,560,cs), (282,560,o), (219,510,o), (205,424,c), (227,445,l), (208,445,l), (225,550,l), (254,730,l), (164,730,l), (48,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (398,0,l), (448,0,l), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (262,560,o), (188,501,o), (174,410,c), (213,470,l), (190,470,l), (208,580,l), (232,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 104; }, { glyphname = hbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "tshe-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "tshe-cy"; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "tshe-cy"; } ); width = 600; } ); unicode = 295; }, { glyphname = hcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = h; }, { pos = (450,160); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = h; }, { alignment = -1; pos = (450,160); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = h; }, { alignment = -1; pos = (450,160); ref = circumflexcomb; } ); width = 600; } ); unicode = 293; }, { glyphname = i; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 105; }, { glyphname = idotless; layers = ( { anchors = ( { name = bottom; pos = (276,0); }, { name = ogonek; pos = (290,0); }, { name = top; pos = (363,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,136,l), (378,136,l), (443,550,l), (138,550,l), (117,415,l), (282,415,l), (238,136,l), (48,136,l), (26,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (271,0); }, { name = ogonek; pos = (290,0); }, { name = top; pos = (358,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (334,82,l), (408,550,l), (148,550,l), (135,468,l), (305,468,l), (244,82,l), (49,82,l), (36,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (271,0); }, { name = ogonek; pos = (290,0); }, { name = top; pos = (358,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,0,l), (498,45,l), (309,45,l), (389,550,l), (163,550,l), (156,505,l), (332,505,l), (259,45,l), (58,45,l), (51,0,l) ); } ); width = 600; } ); unicode = 305; }, { glyphname = iacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (636,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (626,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (632,0); ref = acutecomb; } ); width = 600; } ); unicode = 237; }, { glyphname = ibreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (619,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (614,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (614,0); ref = brevecomb; } ); width = 600; } ); unicode = 301; }, { glyphname = icircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (619,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 238; }, { glyphname = idieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (619,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 239; }, { glyphname = idotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; } ); }, { glyphname = idotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; }, { pos = (619,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; }, { pos = (614,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; }, { pos = (614,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7883; }, { glyphname = igrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (603,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (601,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (606,0); ref = gravecomb; } ); width = 600; } ); unicode = 236; }, { glyphname = ihookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7881; }, { glyphname = imacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = macroncomb; } ); width = 600; } ); unicode = 299; }, { glyphname = iogonek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (315,-195,l), (322,-153,l), (258,-153,ls), (226,-153,o), (210,-134,o), (215,-103,cs), (219,-75,o), (248,-36,o), (292,0,cs), (305,10,l), (268,10,l), (211,-27,o), (172,-74,o), (166,-115,cs), (158,-165,o), (187,-195,o), (242,-195,c) ); }, { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (324,-203,l), (333,-143,l), (273,-143,ls), (239,-143,o), (222,-122,o), (226,-93,cs), (231,-65,o), (254,-36,o), (305,1,c), (318,10,l), (243,10,l), (173,-34,o), (145,-72,o), (139,-110,cs), (130,-164,o), (172,-203,o), (246,-203,cs) ); }, { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (344,-225,l), (361,-120,l), (292,-120,ls), (263,-120,o), (249,-103,o), (252,-83,cs), (255,-66,o), (273,-42,o), (303,-18,cs), (340,11,l), (254,11,l), (181,-19,o), (130,-68,o), (123,-115,cs), (112,-180,o), (155,-225,o), (236,-225,cs) ); }, { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 303; }, { glyphname = itilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (620,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (615,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = idotless; }, { pos = (615,0); ref = tildecomb; } ); width = 600; } ); unicode = 297; }, { glyphname = j; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = jdotless; }, { pos = (695,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = jdotless; }, { pos = (685,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = jdotless; }, { pos = (693,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 106; }, { glyphname = jdotless; layers = ( { anchors = ( { name = top; pos = (438,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (178,-180,ls), (316,-180,o), (416,-96,o), (437,40,cs), (518,550,l), (153,550,l), (131,410,l), (346,410,l), (288,45,ls), (280,-9,o), (244,-40,o), (190,-40,cs), (30,-40,l), (7,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (428,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,-180,ls), (276,-180,o), (375,-98,o), (396,31,cs), (478,550,l), (158,550,l), (145,468,l), (375,468,l), (306,31,ls), (293,-51,o), (238,-97,o), (155,-97,cs), (26,-97,l), (12,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (437,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (157,-180,ls), (279,-180,o), (363,-109,o), (382,10,cs), (467,550,l), (167,550,l), (160,505,l), (410,505,l), (332,10,ls), (317,-84,o), (259,-135,o), (165,-135,cs), (30,-135,l), (22,-180,l) ); } ); width = 600; } ); unicode = 567; }, { glyphname = jcircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = jdotless; }, { pos = (694,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = jdotless; }, { pos = (684,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = jdotless; }, { pos = (693,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 309; }, { glyphname = k; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (180,245,l), (279,245,l), (400,0,l), (503,0,l), (361,285,l), (587,550,l), (482,550,l), (286,323,l), (192,323,l), (257,730,l), (167,730,l), (51,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (161,264,l), (294,264,l), (429,0,l), (487,0,l), (339,283,l), (570,550,l), (509,550,l), (299,309,l), (168,309,l), (235,730,l), (185,730,l), (69,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (209,216,l), (287,216,l), (371,0,l), (534,0,l), (420,274,l), (618,550,l), (448,550,l), (300,342,l), (229,342,l), (291,730,l), (141,730,l), (25,0,l) ); } ); width = 600; } ); unicode = 107; }, { glyphname = kcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = k; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = k; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = k; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 311; }, { glyphname = kgreenlandic; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy"; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy"; } ); width = 600; } ); unicode = 312; }, { glyphname = l; layers = ( { anchors = ( { name = bottom; pos = (280,0); }, { name = top; pos = (342,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (521,0,l), (542,135,l), (382,135,ls), (346,135,o), (326,159,o), (332,195,cs), (417,730,l), (97,730,l), (75,595,l), (245,595,l), (182,195,ls), (164,78,o), (229,0,o), (346,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (240,0); }, { name = top; pos = (312,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (334,82,ls), (291,82,o), (269,110,o), (276,155,cs), (367,730,l), (112,730,l), (99,648,l), (264,648,l), (186,155,ls), (171,61,o), (224,0,o), (321,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (240,0); }, { name = top; pos = (312,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (496,0,l), (503,45,l), (328,45,ls), (269,45,o), (243,76,o), (252,135,cs), (347,730,l), (122,730,l), (114,685,l), (289,685,l), (202,135,ls), (188,48,o), (231,0,o), (321,0,cs) ); } ); width = 600; } ); unicode = 108; }, { glyphname = lacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l; }, { pos = (551,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l; }, { pos = (551,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l; }, { pos = (582,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 314; }, { glyphname = lambdastroke; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (534,692,l), (542,740,l), (132,550,l), (124,502,l) ); }, { ref = lambda; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (529,660,l), (542,740,l), (132,550,l), (119,470,l) ); }, { ref = lambda; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (525,635,l), (542,740,l), (132,550,l), (115,445,l) ); }, { ref = lambda; } ); width = 600; } ); unicode = 411; }, { glyphname = lcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l; }, { pos = (590,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l; }, { pos = (590,0); ref = caroncomb.alt; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l; }, { pos = (620,0); ref = caroncomb.alt; } ); width = 600; } ); unicode = 318; }, { glyphname = lcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l; }, { pos = (584,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l; }, { pos = (584,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l; }, { pos = (624,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 316; }, { glyphname = ldot; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-20,0); ref = l; }, { alignment = -1; pos = (300,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-20,0); ref = l; }, { alignment = -1; pos = (275,275); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-20,0); ref = l; }, { alignment = -1; pos = (280,275); ref = period; } ); width = 600; } ); unicode = 320; }, { glyphname = lslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (480,420,l), (480,560,l), (100,370,l), (100,230,l) ); }, { alignment = -1; ref = l; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (470,480,l), (470,560,l), (100,310,l), (100,230,l) ); }, { alignment = -1; ref = l; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (470,495,l), (470,550,l), (100,295,l), (100,240,l) ); }, { alignment = -1; ref = l; } ); width = 600; } ); unicode = 322; }, { glyphname = m; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (127,0,l), (190,403,ls), (195,434,o), (212,451,o), (237,451,cs), (262,451,o), (273,434,o), (268,403,cs), (205,0,l), (308,0,l), (371,403,ls), (376,434,o), (393,451,o), (418,451,cs), (443,451,o), (454,434,o), (449,403,cs), (386,0,l), (515,0,l), (581,420,ls), (594,502,o), (556,560,o), (491,560,cs), (435,560,o), (389,517,o), (379,456,c), (390,470,l), (362,470,l), (375,440,l), (386,510,o), (355,560,o), (299,560,cs), (246,560,o), (203,517,o), (193,456,c), (214,470,l), (190,470,l), (203,550,l), (85,550,l), (-2,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (105,0,l), (171,420,ls), (178,465,o), (201,491,o), (238,491,cs), (275,491,o), (293,465,o), (286,419,cs), (220,0,l), (292,0,l), (358,420,ls), (365,465,o), (391,491,o), (427,491,cs), (464,491,o), (480,464,o), (473,419,cs), (407,0,l), (490,0,l), (556,418,ls), (569,503,o), (538,560,o), (469,560,cs), (413,560,o), (370,521,o), (361,460,c), (383,484,l), (341,484,l), (360,430,l), (373,513,o), (345,560,o), (284,560,cs), (228,560,o), (187,521,o), (178,460,c), (195,484,l), (177,484,l), (188,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,0,l), (151,425,ls), (163,482,o), (199,518,o), (243,518,cs), (287,518,o), (308,482,o), (299,425,cs), (232,0,l), (280,0,l), (347,425,ls), (356,481,o), (392,518,o), (439,518,cs), (483,518,o), (504,482,o), (495,425,cs), (428,0,l), (477,0,l), (545,431,ls), (558,511,o), (527,560,o), (461,560,cs), (402,560,o), (361,521,o), (353,461,c), (357,475,l), (349,475,l), (351,461,l), (353,524,o), (322,560,o), (265,560,cs), (206,560,o), (164,521,o), (156,461,c), (160,475,l), (154,475,l), (166,550,l), (122,550,l), (35,0,l) ); } ); width = 600; } ); unicode = 109; }, { glyphname = n; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (344,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (342,0,l), (492,0,l), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (254,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (344,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (398,0,l), (448,0,l), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (260,560,o), (188,499,o), (173,404,c), (211,455,l), (188,455,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (193,350,ls), (207,435,o), (261,484,o), (336,484,cs), (408,484,o), (445,438,o), (433,360,cs), (376,0,l), (466,0,l), (525,370,ls), (543,487,o), (484,560,o), (374,560,cs), (282,560,o), (219,510,o), (205,424,c), (227,445,l), (208,445,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; } ); unicode = 110; }, { glyphname = nacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (622,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (613,0); ref = acutecomb; } ); width = 600; } ); unicode = 324; }, { glyphname = napostrophe; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = n; }, { alignment = -1; pos = (530,885); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = n; }, { alignment = -1; pos = (530,885); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = n; }, { alignment = -1; pos = (530,885); ref = commaaccentcomb; } ); width = 600; } ); unicode = 329; }, { glyphname = ncaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (601,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (601,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (601,0); ref = caroncomb; } ); width = 600; } ); unicode = 328; }, { glyphname = ncommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (600,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 326; }, { glyphname = eng; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (223,-180,ls), (364,-180,o), (477,-96,o), (496,25,cs), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (254,550,l), (109,550,l), (22,0,l), (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (348,41,ls), (341,-7,o), (307,-35,o), (256,-35,cs), (196,-35,l), (173,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (230,-180,ls), (354,-180,o), (448,-103,o), (466,15,cs), (523,370,ls), (541,487,o), (484,560,o), (374,560,cs), (282,560,o), (221,510,o), (207,424,c), (229,445,l), (210,445,l), (227,550,l), (137,550,l), (50,0,l), (140,0,l), (195,350,ls), (209,435,o), (261,484,o), (336,484,cs), (408,484,o), (443,438,o), (431,360,cs), (376,15,ls), (365,-55,o), (314,-98,o), (243,-98,cs), (180,-98,l), (167,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (213,-180,ls), (338,-180,o), (432,-104,o), (450,15,cs), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (260,560,o), (188,499,o), (173,404,c), (211,455,l), (188,455,l), (203,550,l), (153,550,l), (66,0,l), (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (400,15,ls), (386,-78,o), (317,-135,o), (221,-135,cs), (180,-135,l), (172,-180,l) ); } ); width = 600; } ); unicode = 331; }, { glyphname = ntilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = n; }, { pos = (601,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = n; }, { pos = (601,0); ref = tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = n; }, { pos = (601,0); ref = tildecomb; } ); width = 600; } ); unicode = 241; }, { glyphname = o; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (300,275); }, { name = horn; pos = (363,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (550,340,ls), (571,472,o), (492,560,o), (345,560,cs), (198,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (266,430,o), (324,430,cs), (382,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (300,275); }, { name = horn; pos = (375,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (524,351,ls), (544,481,o), (476,560,o), (345,560,cs), (214,560,o), (120,481,o), (99,350,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (152,115,o), (166,200,cs), (189,350,ls), (203,435,o), (254,480,o), (332,480,cs), (410,480,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (345,70,o), (267,70,cs) ); } ); visible = 1; width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (300,275); }, { name = horn; pos = (363,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 111; }, { glyphname = oacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 243; }, { glyphname = obreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = o; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = o; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = o; }, { pos = (599,0); ref = brevecomb; } ); width = 600; } ); unicode = 335; }, { glyphname = ocircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 244; }, { glyphname = ocircumflexacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_acutecomb; } ); width = 600; } ); unicode = 7889; }, { glyphname = ocircumflexdotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 7897; }, { glyphname = ocircumflexgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_gravecomb; } ); width = 600; } ); unicode = 7891; }, { glyphname = ocircumflexhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_hookabovecomb; } ); width = 600; } ); unicode = 7893; }, { glyphname = ocircumflextilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = circumflexcomb_tildecomb; } ); width = 600; } ); unicode = 7895; }, { glyphname = odieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 246; }, { glyphname = odotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7885; }, { glyphname = ograve; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 242; }, { glyphname = ohookabove; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = o; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = o; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = o; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7887; }, { glyphname = ohorn; layers = ( { anchors = ( { name = top; pos = (340,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (475,495,ls), (526,495,o), (565,529,o), (573,580,cs), (583,640,l), (543,640,l), (533,580,ls), (528,550,o), (508,530,o), (481,530,cs), (446,530,l), (440,495,l) ); }, { ref = o; } ); width = 600; }, { anchors = ( { name = top; pos = (333,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (465,465,ls), (528,465,o), (576,503,o), (585,560,cs), (597,640,l), (522,640,l), (510,565,ls), (507,542,o), (493,530,o), (470,530,cs), (436,530,l), (426,465,l) ); }, { ref = o; } ); width = 600; }, { anchors = ( { name = top; pos = (333,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (459,430,ls), (546,430,o), (613,484,o), (625,565,cs), (637,640,l), (517,640,l), (505,565,ls), (502,543,o), (487,530,o), (465,530,cs), (405,530,l), (389,430,l) ); }, { ref = o; } ); width = 600; } ); unicode = 417; }, { glyphname = ohornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (602,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (601,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (618,0); ref = acutecomb; } ); width = 600; } ); unicode = 7899; }, { glyphname = ohorndotbelow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = ohorn; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = ohorn; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = ohorn; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7907; }, { glyphname = ohorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (576,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (576,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (585,0); ref = gravecomb; } ); width = 600; } ); unicode = 7901; }, { glyphname = ohornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = ohorn; }, { pos = (597,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = ohorn; }, { pos = (590,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = ohorn; }, { pos = (590,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7903; }, { glyphname = ohorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (590,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (590,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = ohorn; }, { pos = (597,0); ref = tildecomb; } ); width = 600; } ); unicode = 7905; }, { glyphname = ohungarumlaut; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; } ); unicode = 337; }, { glyphname = omacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 333; }, { glyphname = oogonek; layers = ( { anchors = ( { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (387,-225,l), (404,-120,l), (335,-120,ls), (306,-120,o), (292,-103,o), (295,-83,cs), (298,-66,o), (316,-41,o), (346,-18,cs), (410,31,l), (470,70,o), (517,135,o), (529,210,cs), (550,340,ls), (571,472,o), (492,560,o), (345,560,cs), (198,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs), (275,-10,o), (321,12,o), (324,31,c), (224,-19,o), (173,-68,o), (166,-115,cs), (155,-180,o), (198,-225,o), (279,-225,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (266,430,o), (324,430,cs), (382,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (375,550); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (374,-203,l), (383,-143,l), (323,-143,ls), (289,-143,o), (272,-122,o), (276,-93,cs), (281,-65,o), (304,-36,o), (355,1,cs), (382,21,l), (445,55,o), (487,117,o), (500,200,cs), (524,351,ls), (544,481,o), (476,560,o), (345,560,cs), (214,560,o), (120,481,o), (99,350,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs), (257,-10,o), (260,-10,o), (263,-10,c), (211,-51,o), (193,-81,o), (189,-110,cs), (180,-164,o), (222,-203,o), (296,-203,cs) ); }, { closed = 1; nodes = ( (189,70,o), (152,115,o), (166,200,cs), (189,350,ls), (203,435,o), (254,480,o), (332,480,cs), (410,480,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (345,70,o), (267,70,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (371,-195,l), (378,-153,l), (314,-153,ls), (282,-153,o), (266,-134,o), (271,-103,cs), (275,-75,o), (304,-36,o), (348,0,cs), (379,25,l), (432,59,o), (469,116,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs), (270,-10,o), (287,-9,o), (301,-6,c), (252,-47,o), (227,-83,o), (222,-115,cs), (214,-165,o), (243,-195,o), (298,-195,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 491; }, { glyphname = oslash; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (91,-30,l), (624,590,l), (509,590,l), (-24,-30,l) ); }, { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (550,340,ls), (571,472,o), (492,560,o), (345,560,cs), (198,560,o), (91,472,o), (70,340,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (212,120,o), (180,154,o), (189,210,cs), (210,340,ls), (219,396,o), (261,430,o), (324,430,cs), (387,430,o), (419,396,o), (410,340,cs), (389,210,ls), (380,154,o), (338,120,o), (275,120,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (375,550); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (78,-30,l), (614,590,l), (521,590,l), (-14,-30,l) ); }, { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (524,351,ls), (545,481,o), (476,560,o), (345,560,cs), (214,560,o), (119,481,o), (99,350,cs), (76,200,ls), (56,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (187,70,o), (148,118,o), (161,200,cs), (184,350,ls), (197,432,o), (252,480,o), (332,480,cs), (412,480,o), (451,432,o), (438,350,cs), (415,200,ls), (402,118,o), (347,70,o), (267,70,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (363,550); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (61,-30,l), (590,590,l), (539,590,l), (10,-30,l) ); }, { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; } ); unicode = 248; }, { glyphname = oslashacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = oslash; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = oslash; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = oslash; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 511; }, { glyphname = otilde; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 245; }, { glyphname = oe; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (208,-10,o), (251,33,o), (262,65,c), (270,65,l), (270,33,o), (297,-10,o), (374,-10,cs), (461,-10,o), (529,50,o), (543,140,c), (428,140,l), (423,106,o), (403,87,o), (374,87,cs), (345,87,o), (330,107,o), (335,140,cs), (353,250,l), (561,250,l), (586,410,ls), (600,500,o), (552,560,o), (465,560,cs), (388,560,o), (347,517,o), (337,485,c), (329,485,l), (328,517,o), (299,560,o), (225,560,cs), (138,560,o), (70,500,o), (56,410,cs), (13,140,ls), (-1,50,o), (47,-10,o), (134,-10,cs) ); }, { closed = 1; nodes = ( (138,87,o), (123,107,o), (128,140,cs), (171,410,ls), (176,443,o), (197,463,o), (226,463,cs), (255,463,o), (269,444,o), (264,410,cs), (221,140,ls), (216,106,o), (196,87,o), (167,87,cs) ); }, { closed = 1; nodes = ( (378,410,ls), (383,443,o), (403,463,o), (433,463,cs), (462,463,o), (476,444,o), (471,410,cs), (458,330,l), (365,330,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,-10,o), (257,36,o), (265,70,c), (269,70,l), (267,36,o), (294,-10,o), (374,-10,cs), (448,-10,o), (512,42,o), (538,125,c), (453,125,l), (441,90,o), (411,67,o), (377,67,cs), (336,67,o), (315,99,o), (323,150,cs), (339,250,l), (561,250,l), (584,400,ls), (600,498,o), (554,560,o), (465,560,cs), (385,560,o), (342,514,o), (334,480,c), (330,480,l), (332,514,o), (305,560,o), (225,560,cs), (136,560,o), (70,498,o), (54,400,cs), (15,150,ls), (-1,52,o), (45,-10,o), (134,-10,cs) ); }, { closed = 1; nodes = ( (114,67,o), (92,99,o), (100,150,cs), (139,400,ls), (147,451,o), (179,483,o), (222,483,cs), (263,483,o), (284,451,o), (276,400,cs), (237,150,ls), (229,99,o), (198,67,o), (157,67,cs) ); }, { closed = 1; nodes = ( (362,400,ls), (370,451,o), (401,483,o), (442,483,cs), (485,483,o), (507,451,o), (499,400,cs), (487,323,l), (350,323,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (209,-10,o), (256,38,o), (269,75,c), (272,75,l), (273,38,o), (303,-10,o), (380,-10,cs), (461,-10,o), (527,43,o), (547,125,c), (497,125,l), (483,71,o), (438,34,o), (384,34,cs), (327,34,o), (295,77,o), (305,140,cs), (324,260,l), (562,260,l), (586,410,ls), (600,501,o), (555,560,o), (468,560,cs), (397,560,o), (350,511,o), (335,474,c), (333,474,l), (332,511,o), (302,560,o), (225,560,cs), (137,560,o), (70,500,o), (56,408,cs), (13,139,ls), (-1,48,o), (43,-10,o), (128,-10,cs) ); }, { closed = 1; nodes = ( (86,34,o), (54,76,o), (64,139,cs), (107,408,ls), (117,473,o), (163,516,o), (221,516,cs), (278,516,o), (309,473,o), (299,410,cs), (256,140,ls), (246,77,o), (201,34,o), (144,34,cs) ); }, { closed = 1; nodes = ( (348,410,ls), (358,473,o), (402,516,o), (458,516,cs), (515,516,o), (546,473,o), (536,410,cs), (520,310,l), (332,310,l) ); } ); width = 600; } ); unicode = 339; }, { glyphname = p; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (143,-180,l), (167,-30,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs), (422,-10,o), (508,74,o), (528,205,cs), (551,345,ls), (571,476,o), (513,560,o), (402,560,cs), (311,560,o), (247,505,o), (232,410,c), (272,445,l), (237,445,l), (254,550,l), (109,550,l), (-7,-180,l) ); }, { closed = 1; nodes = ( (223,120,o), (196,153,o), (205,210,cs), (226,340,ls), (235,397,o), (272,430,o), (327,430,cs), (383,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (128,75,l), (146,75,l), (128,140,l), (114,50,o), (170,-10,o), (267,-10,cs), (376,-10,o), (462,70,o), (481,190,cs), (508,361,ls), (527,481,o), (468,560,o), (358,560,cs), (260,560,o), (185,500,o), (171,410,c), (219,475,l), (191,475,l), (203,550,l), (153,550,l), (37,-180,l) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,190,cs), (173,361,ls), (189,459,o), (251,517,o), (341,517,cs), (430,517,o), (474,459,o), (458,361,cs), (431,190,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,-180,l), (135,-20,l), (153,105,l), (173,105,l), (158,126,l), (145,43,o), (197,-10,o), (287,-10,cs), (398,-10,o), (479,68,o), (499,195,cs), (524,356,ls), (544,482,o), (488,560,o), (378,560,cs), (287,560,o), (218,508,o), (205,424,c), (226,445,l), (208,445,l), (225,550,l), (135,550,l), (19,-180,l) ); }, { closed = 1; nodes = ( (196,68,o), (157,117,o), (170,200,cs), (193,350,ls), (207,433,o), (261,482,o), (335,482,cs), (411,482,o), (447,435,o), (433,350,cs), (410,200,ls), (396,115,o), (346,68,o), (270,68,cs) ); } ); width = 600; } ); unicode = 112; }, { glyphname = thorn; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (138,-180,l), (175,50,l), (30,50,l), (-7,-180,l) ); }, { alignment = -1; ref = b; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (104,-180,l), (142,59,l), (52,59,l), (14,-180,l) ); }, { alignment = -1; pos = (-5,0); ref = b; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (88,-180,l), (126,59,l), (76,59,l), (38,-180,l) ); }, { alignment = -1; ref = b; } ); width = 600; } ); unicode = 254; }, { glyphname = q; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (461,-180,l), (577,550,l), (432,550,l), (415,445,l), (380,445,l), (408,410,l), (423,505,o), (379,560,o), (288,560,cs), (177,560,o), (91,476,o), (71,345,cs), (48,205,ls), (28,74,o), (86,-10,o), (197,-10,cs), (288,-10,o), (350,45,o), (365,140,c), (327,105,l), (362,105,l), (335,-30,l), (311,-180,l) ); }, { closed = 1; nodes = ( (216,120,o), (190,152,o), (199,210,cs), (220,340,ls), (229,398,o), (265,430,o), (321,430,cs), (376,430,o), (403,397,o), (394,340,cs), (373,210,ls), (364,153,o), (327,120,o), (272,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (435,-180,l), (551,550,l), (461,550,l), (444,445,l), (426,445,l), (441,424,l), (454,508,o), (404,560,o), (313,560,cs), (203,560,o), (120,482,o), (100,356,cs), (75,195,ls), (55,68,o), (111,-10,o), (222,-10,cs), (312,-10,o), (381,43,o), (394,126,c), (373,105,l), (393,105,l), (371,-20,l), (345,-180,l) ); }, { closed = 1; nodes = ( (189,68,o), (152,115,o), (166,200,cs), (189,350,ls), (203,435,o), (254,482,o), (330,482,cs), (404,482,o), (443,433,o), (429,350,cs), (406,200,ls), (393,117,o), (339,68,o), (265,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (417,-180,l), (533,550,l), (483,550,l), (471,475,l), (443,475,l), (471,410,l), (485,501,o), (428,560,o), (332,560,cs), (222,560,o), (137,481,o), (118,361,cs), (91,190,ls), (72,70,o), (131,-10,o), (241,-10,cs), (337,-10,o), (414,49,o), (428,140,c), (390,75,l), (408,75,l), (391,-30,l), (367,-180,l) ); }, { closed = 1; nodes = ( (169,33,o), (126,92,o), (141,190,cs), (168,361,ls), (184,459,o), (246,517,o), (335,517,cs), (425,517,o), (469,459,o), (453,361,cs), (426,190,ls), (411,92,o), (349,33,o), (258,33,cs) ); } ); width = 600; } ); unicode = 113; }, { glyphname = r; layers = ( { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (157,0,l), (212,350,ls), (226,435,o), (280,484,o), (356,484,cs), (433,484,o), (469,436,o), (455,350,cs), (451,325,l), (541,325,l), (547,358,ls), (566,482,o), (505,560,o), (389,560,cs), (288,560,o), (226,499,o), (207,380,c), (246,445,l), (225,445,l), (242,550,l), (154,550,l), (67,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (133,0,l), (190,360,ls), (206,459,o), (268,517,o), (358,517,cs), (448,517,o), (492,459,o), (476,360,cs), (471,330,l), (526,330,l), (531,360,ls), (550,483,o), (490,560,o), (373,560,cs), (274,560,o), (206,504,o), (191,410,c), (230,475,l), (208,475,l), (220,550,l), (170,550,l), (83,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (188,0,l), (242,340,ls), (251,400,o), (288,435,o), (345,435,cs), (400,435,o), (429,400,o), (420,340,cs), (414,305,l), (574,305,l), (581,350,ls), (602,483,o), (544,560,o), (423,560,cs), (318,560,o), (252,499,o), (233,381,c), (286,445,l), (248,445,l), (265,550,l), (125,550,l), (38,0,l) ); } ); width = 600; } ); unicode = 114; }, { glyphname = racute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = r; }, { pos = (641,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = r; }, { pos = (631,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = r; }, { pos = (632,0); ref = acutecomb; } ); width = 600; } ); unicode = 341; }, { glyphname = rcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = r; }, { pos = (620,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = r; }, { pos = (620,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = r; }, { pos = (620,0); ref = caroncomb; } ); width = 600; } ); unicode = 345; }, { glyphname = rcommaaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = r; }, { pos = (435,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = r; }, { pos = (435,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = r; }, { pos = (435,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 343; }, { glyphname = s; layers = ( { anchors = ( { name = bottom; pos = (255,0); }, { name = top; pos = (345,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (275,-10,ls), (425,-10,o), (514,52,o), (532,164,cs), (548,267,o), (488,311,o), (352,329,cs), (284,338,ls), (239,344,o), (224,362,o), (229,393,cs), (234,426,o), (258,443,o), (308,443,cs), (346,443,ls), (389,443,o), (414,425,o), (410,398,c), (560,398,l), (576,496,o), (499,560,o), (365,560,cs), (327,560,ls), (186,560,o), (101,499,o), (84,392,cs), (68,290,o), (123,249,o), (257,232,cs), (320,224,ls), (372,217,o), (392,197,o), (387,164,cs), (381,128,o), (349,107,o), (294,107,cs), (250,107,ls), (204,107,o), (176,128,o), (181,160,c), (31,160,l), (15,58,o), (95,-10,o), (231,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (257,0); }, { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (274,-10,ls), (404,-10,o), (479,53,o), (496,155,cs), (511,251,o), (465,296,o), (350,315,cs), (278,327,ls), (222,336,o), (201,357,o), (208,402,cs), (216,452,o), (250,480,o), (318,480,cs), (356,480,ls), (410,480,o), (439,456,o), (442,421,c), (532,421,l), (532,505,o), (474,560,o), (369,560,cs), (331,560,ls), (206,560,o), (133,501,o), (118,403,cs), (103,310,o), (149,265,o), (254,248,cs), (326,236,ls), (385,226,o), (412,198,o), (405,151,cs), (397,103,o), (358,70,o), (287,70,cs), (245,70,ls), (186,70,o), (154,96,o), (152,135,c), (62,135,l), (58,47,o), (119,-10,o), (232,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (347,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (293,-10,ls), (397,-10,o), (472,48,o), (487,140,cs), (500,224,o), (456,285,o), (372,297,cs), (270,312,ls), (201,322,o), (172,355,o), (180,412,cs), (189,475,o), (245,515,o), (320,515,cs), (362,515,ls), (432,515,o), (475,477,o), (474,425,c), (524,425,l), (527,506,o), (469,560,o), (369,560,cs), (327,560,ls), (221,560,o), (144,502,o), (129,411,cs), (116,330,o), (163,278,o), (254,265,cs), (358,250,ls), (415,242,o), (445,197,o), (436,140,cs), (426,76,o), (374,35,o), (301,35,cs), (234,35,ls), (165,35,o), (121,77,o), (120,135,c), (70,135,l), (66,50,o), (126,-10,o), (226,-10,cs) ); } ); width = 600; } ); unicode = 115; }, { glyphname = sacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = s; }, { pos = (625,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = s; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = s; }, { pos = (614,0); ref = acutecomb; } ); width = 600; } ); unicode = 347; }, { glyphname = scaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = s; }, { pos = (604,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = s; }, { pos = (601,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = s; }, { pos = (602,0); ref = caroncomb; } ); width = 600; } ); unicode = 353; }, { glyphname = scedilla; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (265,-195,ls), (325,-195,o), (370,-161,o), (377,-118,cs), (386,-61,o), (327,-37,o), (280,-34,c), (313,26,l), (271,26,l), (222,-64,l), (293,-64,o), (336,-86,o), (331,-118,cs), (328,-140,o), (303,-160,o), (271,-160,cs), (191,-160,l), (185,-195,l) ); }, { ref = s; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-203,ls), (372,-203,o), (420,-166,o), (420,-120,cs), (420,-68,o), (352,-41,o), (300,-35,c), (321,26,l), (264,26,l), (229,-69,l), (296,-69,o), (334,-89,o), (334,-112,cs), (334,-130,o), (314,-148,o), (285,-148,cs), (215,-148,l), (215,-203,l) ); }, { ref = s; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (310,-225,ls), (394,-225,o), (450,-182,o), (450,-133,cs), (450,-72,o), (369,-43,o), (308,-39,c), (327,16,l), (254,16,l), (219,-69,l), (292,-69,o), (335,-88,o), (335,-119,cs), (335,-135,o), (313,-155,o), (280,-155,cs), (200,-155,l), (200,-225,l) ); }, { ref = s; } ); width = 600; } ); unicode = 351; }, { glyphname = scircumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = s; }, { pos = (601,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = s; }, { pos = (600,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = s; }, { pos = (603,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 349; }, { glyphname = scommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = s; }, { pos = (599,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = s; }, { pos = (601,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = s; }, { pos = (605,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 537; }, { glyphname = germandbls; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-107,-180,ls), (34,-180,o), (134,-106,o), (153,14,cs), (233,516,ls), (243,577,o), (287,615,o), (348,615,cs), (410,615,o), (443,577,o), (434,517,cs), (425,462,o), (385,428,o), (329,428,cs), (284,428,l), (266,318,l), (313,318,ls), (376,318,o), (410,281,o), (400,221,cs), (390,161,o), (347,125,o), (283,125,cs), (236,125,l), (216,0,l), (268,0,ls), (417,0,o), (529,84,o), (549,209,cs), (567,322,o), (494,397,o), (369,395,c), (366,380,l), (491,380,o), (573,440,o), (589,545,cs), (608,662,o), (520,740,o), (381,740,cs), (227,740,o), (119,650,o), (98,516,cs), (19,19,ls), (11,-29,o), (-32,-60,o), (-93,-60,cs), (-113,-60,l), (-132,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-63,-180,ls), (45,-180,o), (119,-119,o), (135,-20,cs), (223,534,ls), (235,611,o), (289,658,o), (363,658,cs), (436,658,o), (475,613,o), (463,536,cs), (452,465,o), (398,413,o), (324,413,cs), (282,413,l), (270,335,l), (314,335,ls), (395,335,o), (437,288,o), (424,211,cs), (412,134,o), (354,82,o), (274,82,cs), (218,82,l), (205,0,l), (271,0,ls), (400,0,o), (500,86,o), (519,208,cs), (537,325,o), (474,400,o), (359,398,c), (357,383,l), (463,381,o), (544,453,o), (560,554,cs), (579,674,o), (504,740,o), (376,740,cs), (248,740,o), (153,658,o), (133,534,cs), (45,-20,ls), (37,-73,o), (7,-98,o), (-49,-98,cs), (-119,-98,l), (-132,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-43,-180,ls), (38,-180,o), (95,-133,o), (107,-55,cs), (202,543,ls), (217,635,o), (283,695,o), (371,695,cs), (463,695,o), (507,637,o), (492,545,cs), (478,457,o), (413,397,o), (324,397,cs), (284,397,l), (277,352,l), (317,352,ls), (422,352,o), (468,297,o), (453,200,cs), (437,102,o), (373,45,o), (268,45,cs), (206,45,l), (199,0,l), (261,0,ls), (393,0,o), (484,80,o), (504,208,cs), (521,314,o), (464,380,o), (356,380,c), (355,370,l), (449,370,o), (526,444,o), (543,550,cs), (561,666,o), (500,740,o), (378,740,cs), (261,740,o), (171,661,o), (152,543,cs), (57,-55,ls), (49,-106,o), (16,-135,o), (-35,-135,cs), (-124,-135,l), (-132,-180,l) ); } ); width = 600; } ); unicode = 223; }, { glyphname = longs; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (43,-180,ls), (184,-180,o), (284,-106,o), (303,14,c), (389,555,l), (393,582,o), (414,600,o), (441,600,cs), (597,600,l), (618,730,l), (457,730,ls), (343,730,o), (256,662,o), (240,560,c), (154,19,l), (146,-31,o), (110,-60,o), (57,-60,cs), (-41,-60,l), (-60,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (65,-180,ls), (173,-180,o), (248,-119,o), (263,-20,c), (356,570,l), (364,623,o), (394,648,o), (450,648,cs), (625,648,l), (638,730,l), (464,730,ls), (356,730,o), (281,669,o), (266,570,c), (173,-20,l), (165,-73,o), (135,-98,o), (79,-98,cs), (-34,-98,l), (-47,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,ls), (168,-180,o), (225,-133,o), (237,-55,c), (342,605,l), (350,656,o), (383,685,o), (434,685,cs), (587,685,l), (595,730,l), (442,730,ls), (361,730,o), (305,683,o), (292,605,c), (187,-55,l), (179,-106,o), (146,-135,o), (95,-135,cs), (-18,-135,l), (-26,-180,l) ); } ); width = 600; } ); unicode = 383; }, { glyphname = t; layers = ( { anchors = ( { name = bottom; pos = (316,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (481,0,l), (502,135,l), (352,135,ls), (323,135,o), (310,151,o), (315,180,cs), (352,415,l), (557,415,l), (578,550,l), (373,550,l), (397,700,l), (247,700,l), (223,550,l), (78,550,l), (57,415,l), (202,415,l), (165,180,ls), (147,68,o), (204,0,o), (316,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (316,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (466,0,l), (479,82,l), (329,82,ls), (288,82,o), (272,102,o), (279,145,cs), (330,468,l), (550,468,l), (563,550,l), (343,550,l), (367,700,l), (277,700,l), (253,550,l), (98,550,l), (85,468,l), (240,468,l), (189,145,ls), (174,53,o), (221,0,o), (316,0,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (316,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (451,0,l), (458,45,l), (323,45,ls), (271,45,o), (248,73,o), (256,125,cs), (316,505,l), (541,505,l), (548,550,l), (323,550,l), (347,700,l), (297,700,l), (273,550,l), (113,550,l), (106,505,l), (266,505,l), (206,125,ls), (193,44,o), (232,0,o), (316,0,cs) ); } ); width = 600; } ); unicode = 116; }, { glyphname = tbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (481,220,l), (499,335,l), (79,335,l), (61,220,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (469,239,l), (481,314,l), (91,314,l), (79,239,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (462,261,l), (469,304,l), (98,304,l), (91,261,l) ); }, { ref = t; } ); width = 600; } ); unicode = 359; }, { glyphname = tcaron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (548,620,l), (663,775,l), (535,775,l), (430,620,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,620,l), (634,776,l), (538,776,l), (423,620,l) ); }, { alignment = -1; ref = t; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,620,l), (616,776,l), (547,776,l), (442,620,l) ); }, { alignment = -1; ref = t; } ); width = 600; } ); unicode = 357; }, { glyphname = tcedilla; layers = ( { anchors = ( { name = _bottom; pos = (360,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-195,ls), (410,-195,o), (450,-161,o), (450,-118,cs), (450,-61,o), (387,-37,o), (340,-34,c), (363,26,l), (321,26,l), (286,-64,l), (357,-64,o), (404,-86,o), (404,-118,cs), (404,-140,o), (382,-160,o), (350,-160,cs), (270,-160,l), (270,-195,l) ); }, { ref = t; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (360,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-203,ls), (422,-203,o), (470,-166,o), (470,-120,cs), (470,-68,o), (402,-41,o), (350,-35,c), (371,26,l), (314,26,l), (279,-69,l), (346,-69,o), (384,-89,o), (384,-112,cs), (384,-130,o), (364,-148,o), (335,-148,cs), (265,-148,l), (265,-203,l) ); }, { ref = t; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (360,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (360,-225,ls), (444,-225,o), (500,-182,o), (500,-133,cs), (500,-72,o), (419,-43,o), (358,-39,c), (377,16,l), (304,16,l), (269,-69,l), (342,-69,o), (385,-88,o), (385,-119,cs), (385,-135,o), (363,-155,o), (330,-155,cs), (250,-155,l), (250,-225,l) ); }, { ref = t; } ); width = 600; } ); unicode = 355; }, { glyphname = tcommaaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = t; }, { pos = (660,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = t; }, { pos = (660,0); ref = commaaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = t; }, { pos = (660,0); ref = commaaccentcomb; } ); width = 600; } ); unicode = 539; }, { glyphname = u; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (459,68,o), (479,194,cs), (535,550,l), (485,550,l), (429,194,ls), (413,94,o), (350,35,o), (261,35,cs), (173,35,o), (129,94,o), (145,194,cs), (201,550,l), (151,550,l), (95,194,ls), (75,67,o), (134,-10,o), (253,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-10,o), (504,74,o), (526,214,cs), (579,550,l), (429,550,l), (376,215,ls), (366,153,o), (330,120,o), (275,120,cs), (219,120,o), (194,153,o), (204,215,cs), (257,550,l), (107,550,l), (54,214,ls), (32,75,o), (106,-10,o), (254,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (463,550); }, { name = ogonek; pos = (305,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (624,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (380,-10,o), (478,71,o), (498,200,cs), (553,550,l), (463,550,l), (408,200,ls), (395,117,o), (341,69,o), (266,69,cs), (192,69,o), (155,117,o), (168,200,cs), (223,550,l), (133,550,l), (78,200,ls), (58,71,o), (126,-10,o), (253,-10,cs) ); } ); width = 600; } ); unicode = 117; }, { glyphname = uacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 250; }, { glyphname = ubreve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = brevecomb; } ); width = 600; } ); unicode = 365; }, { glyphname = ucircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 251; }, { glyphname = udieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 252; }, { glyphname = udotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { pos = (599,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7909; }, { glyphname = ugrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 249; }, { glyphname = uhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7911; }, { glyphname = uhorn; layers = ( { anchors = ( { name = bottom; pos = (236,0); }, { name = top; pos = (323,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (31,72,o), (99,-10,o), (234,-10,cs), (369,-10,o), (463,72,o), (485,209,cs), (523,450,l), (610,450,o), (671,504,o), (684,585,cs), (696,660,l), (576,660,l), (564,585,ls), (560,563,o), (545,550,o), (523,550,cs), (389,550,l), (335,206,ls), (326,150,o), (298,120,o), (255,120,cs), (212,120,o), (194,150,o), (203,206,cs), (257,550,l), (107,550,l), (53,209,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (57,71,o), (126,-10,o), (253,-10,cs), (380,-10,o), (477,71,o), (498,200,cs), (543,485,l), (606,485,o), (639,523,o), (648,580,cs), (661,660,l), (586,660,l), (574,585,ls), (570,562,o), (556,550,o), (533,550,cs), (463,550,l), (408,200,ls), (395,117,o), (341,69,o), (266,69,cs), (192,69,o), (155,117,o), (168,200,cs), (223,550,l), (133,550,l), (78,200,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (75,67,o), (134,-10,o), (253,-10,cs), (373,-10,o), (459,68,o), (479,194,cs), (530,515,l), (580,515,o), (619,549,o), (627,600,cs), (637,660,l), (597,660,l), (587,600,ls), (582,570,o), (561,550,o), (534,550,cs), (485,550,l), (429,194,ls), (413,94,o), (350,35,o), (261,35,cs), (173,35,o), (129,94,o), (145,194,cs), (201,550,l), (151,550,l), (95,194,ls) ); } ); width = 600; } ); unicode = 432; }, { glyphname = uhornacute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (592,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 7913; }, { glyphname = uhorndotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (579,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7921; }, { glyphname = uhorngrave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (566,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (588,0); ref = gravecomb; } ); width = 600; } ); unicode = 7915; }, { glyphname = uhornhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = uhorn; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = uhorn; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = uhorn; }, { pos = (580,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7917; }, { glyphname = uhorntilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (580,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 7919; }, { glyphname = uhungarumlaut; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; } ); unicode = 369; }, { glyphname = umacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 363; }, { glyphname = uogonek; layers = ( { anchors = ( { name = horn; pos = (453,550); }, { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (371,-195,l), (378,-153,l), (314,-153,ls), (282,-153,o), (266,-134,o), (271,-103,cs), (275,-75,o), (304,-36,o), (348,0,cs), (379,25,l), (432,59,o), (466,116,o), (478,190,cs), (535,550,l), (485,550,l), (428,190,ls), (412,91,o), (353,34,o), (261,34,cs), (169,34,o), (128,91,o), (144,190,cs), (201,550,l), (151,550,l), (94,190,ls), (75,68,o), (136,-10,o), (254,-10,cs), (270,-10,o), (287,-9,o), (301,-6,c), (252,-47,o), (227,-83,o), (222,-115,cs), (214,-165,o), (243,-195,o), (298,-195,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (463,550); }, { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (374,-203,l), (383,-143,l), (323,-143,ls), (289,-143,o), (272,-122,o), (276,-93,cs), (281,-65,o), (304,-36,o), (355,1,cs), (382,21,l), (445,55,o), (485,117,o), (498,200,cs), (553,550,l), (463,550,l), (408,200,ls), (394,115,o), (345,70,o), (267,70,cs), (189,70,o), (154,115,o), (168,200,cs), (223,550,l), (133,550,l), (78,200,ls), (57,69,o), (123,-10,o), (254,-10,cs), (257,-10,o), (260,-10,o), (263,-10,c), (211,-51,o), (193,-81,o), (189,-110,cs), (180,-164,o), (222,-203,o), (296,-203,cs) ); } ); width = 600; }, { anchors = ( { name = horn; pos = (453,550); }, { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (387,-225,l), (404,-120,l), (335,-120,ls), (306,-120,o), (292,-103,o), (295,-83,cs), (298,-66,o), (316,-41,o), (346,-18,cs), (410,31,l), (470,70,o), (513,135,o), (525,210,cs), (579,550,l), (429,550,l), (375,210,ls), (366,152,o), (333,120,o), (275,120,cs), (217,120,o), (194,152,o), (203,210,cs), (257,550,l), (107,550,l), (53,210,ls), (32,78,o), (107,-10,o), (254,-10,cs), (275,-10,o), (321,12,o), (324,31,c), (224,-19,o), (173,-68,o), (166,-115,cs), (155,-180,o), (198,-225,o), (279,-225,cs) ); } ); width = 600; } ); unicode = 371; }, { glyphname = uring; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (599,0); ref = ringcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (600,0); ref = ringcomb; } ); width = 600; } ); unicode = 367; }, { glyphname = utilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 361; }, { glyphname = v; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (351,0,l), (616,550,l), (460,550,l), (320,240,ls), (304,204,o), (287,154,o), (277,127,c), (275,154,o), (270,204,o), (265,241,cs), (222,550,l), (70,550,l), (163,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (317,0,l), (583,550,l), (489,550,l), (317,180,ls), (296,136,o), (275,91,o), (266,69,c), (263,91,o), (258,136,o), (251,180,cs), (192,550,l), (103,550,l), (195,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (287,0,l), (567,550,l), (513,550,l), (309,140,ls), (290,104,o), (270,60,o), (260,37,c), (257,60,o), (249,104,o), (243,140,cs), (168,550,l), (119,550,l), (225,0,l) ); } ); width = 600; } ); unicode = 118; }, { glyphname = w; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (197,0,l), (286,310,ls), (297,347,o), (313,407,o), (324,442,c), (322,407,o), (322,347,o), (321,310,cs), (315,0,l), (465,0,l), (633,550,l), (516,550,l), (427,250,ls), (414,207,o), (397,142,o), (389,105,c), (390,141,o), (393,205,o), (393,250,cs), (396,550,l), (290,550,l), (197,250,ls), (183,205,o), (166,142,o), (157,106,c), (159,142,o), (163,206,o), (164,250,cs), (171,550,l), (53,550,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (178,0,l), (300,380,ls), (312,417,o), (325,459,o), (331,480,c), (331,459,o), (331,417,o), (331,380,cs), (330,0,l), (429,0,l), (608,550,l), (532,550,l), (413,160,ls), (404,131,o), (392,92,o), (385,70,c), (386,92,o), (385,131,o), (385,160,cs), (386,550,l), (298,550,l), (174,160,ls), (165,131,o), (153,92,o), (146,70,c), (147,92,o), (147,131,o), (148,160,cs), (155,550,l), (78,550,l), (79,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (165,0,l), (299,391,ls), (311,427,o), (328,478,o), (337,507,c), (338,478,o), (338,427,o), (339,391,cs), (346,0,l), (412,0,l), (593,550,l), (545,550,l), (412,141,ls), (402,111,o), (390,63,o), (383,35,c), (384,63,o), (384,111,o), (383,140,cs), (368,550,l), (317,550,l), (172,140,ls), (162,111,o), (147,63,o), (140,35,c), (141,63,o), (142,111,o), (142,141,cs), (139,550,l), (93,550,l), (99,0,l) ); } ); width = 600; } ); unicode = 119; }, { glyphname = wacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 7811; }, { glyphname = wcircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 373; }, { glyphname = wdieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 7813; }, { glyphname = wgrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = w; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = w; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = w; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 7809; }, { glyphname = x; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (153,0,l), (255,130,ls), (269,147,o), (281,172,o), (288,185,c), (291,172,o), (300,148,o), (308,130,cs), (367,0,l), (530,0,l), (386,282,l), (604,550,l), (433,550,l), (348,440,ls), (334,422,o), (321,398,o), (314,385,c), (311,398,o), (304,422,o), (296,440,cs), (245,550,l), (82,550,l), (217,288,l), (-18,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,0,l), (260,180,ls), (272,195,o), (285,217,o), (293,229,c), (297,217,o), (305,195,o), (312,180,cs), (397,0,l), (501,0,l), (357,279,l), (577,550,l), (470,550,l), (339,380,ls), (328,365,o), (316,346,o), (310,335,c), (307,346,o), (299,365,o), (292,380,cs), (214,550,l), (110,550,l), (246,286,l), (11,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (91,0,l), (265,210,ls), (275,222,o), (289,239,o), (296,248,c), (301,239,o), (311,222,o), (317,210,cs), (426,0,l), (481,0,l), (330,281,l), (557,550,l), (496,550,l), (333,350,ls), (325,340,o), (313,324,o), (306,315,c), (301,324,o), (294,339,o), (288,350,cs), (186,550,l), (130,550,l), (273,283,l), (31,0,l) ); } ); width = 600; } ); unicode = 120; }, { glyphname = y; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (227,-180,ls), (368,-180,o), (468,-106,o), (487,14,cs), (570,550,l), (420,550,l), (374,260,ls), (365,203,o), (329,170,o), (276,170,cs), (222,170,o), (195,203,o), (204,260,cs), (250,550,l), (100,550,l), (52,245,ls), (32,121,o), (89,40,o), (196,40,cs), (287,40,o), (353,97,o), (368,190,c), (319,155,l), (363,155,l), (344,40,l), (341,19,ls), (334,-31,o), (297,-60,o), (241,-60,cs), (86,-60,l), (67,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,-180,ls), (372,-180,o), (447,-119,o), (462,-20,cs), (553,550,l), (463,550,l), (416,250,ls), (403,165,o), (348,116,o), (273,116,cs), (201,116,o), (163,162,o), (176,240,cs), (225,550,l), (135,550,l), (84,230,ls), (65,113,o), (125,40,o), (235,40,cs), (327,40,o), (390,90,o), (404,176,c), (382,155,l), (401,155,l), (384,55,l), (372,-20,ls), (364,-74,o), (334,-98,o), (278,-98,cs), (103,-98,l), (90,-180,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (239,-180,ls), (351,-180,o), (419,-124,o), (437,-15,cs), (526,550,l), (476,550,l), (427,240,ls), (412,143,o), (347,83,o), (259,83,cs), (173,83,o), (129,141,o), (145,240,cs), (194,550,l), (144,550,l), (94,233,ls), (75,115,o), (134,40,o), (242,40,cs), (340,40,o), (412,101,o), (427,196,c), (389,145,l), (412,145,l), (397,50,l), (387,-15,ls), (374,-94,o), (326,-135,o), (247,-135,cs), (102,-135,l), (94,-180,l) ); } ); width = 600; } ); unicode = 121; }, { glyphname = yacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 253; }, { glyphname = ycircumflex; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (599,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 375; }, { glyphname = ydieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 255; }, { glyphname = ydotbelow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = y; }, { alignment = -1; pos = (870,-40); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = y; }, { alignment = -1; pos = (850,-40); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = y; }, { alignment = -1; pos = (840,-40); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7925; }, { glyphname = ygrave; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (588,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (586,0); ref = gravecomb; } ); width = 600; } ); unicode = 7923; }, { glyphname = yhookabove; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; } ); unicode = 7927; }, { glyphname = ymacron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = y; }, { pos = (599,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = y; }, { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = y; }, { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 563; }, { glyphname = ytilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = y; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = y; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = y; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 7929; }, { glyphname = z; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (507,130,l), (228,130,l), (542,420,l), (562,550,l), (123,550,l), (103,420,l), (361,420,l), (47,130,l), (26,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (466,0,l), (479,82,l), (158,82,l), (528,460,l), (542,550,l), (141,550,l), (128,468,l), (424,468,l), (60,90,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (453,0,l), (460,45,l), (124,45,l), (520,503,l), (527,550,l), (155,550,l), (148,505,l), (461,505,l), (66,46,l), (59,0,l) ); } ); width = 600; } ); unicode = 122; }, { glyphname = zacute; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = z; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = z; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = z; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); unicode = 378; }, { glyphname = zcaron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = z; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = z; }, { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = z; }, { pos = (600,0); ref = caroncomb; } ); width = 600; } ); unicode = 382; }, { glyphname = zdotaccent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = z; }, { pos = (599,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = z; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = z; }, { pos = (600,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 380; }, { glyphname = germandbls.calt; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Germandbls; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Germandbls; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Germandbls; } ); width = 600; } ); }, { export = 0; glyphname = k.ss00; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (163,279,l), (179,279,l), (419,0,l), (484,0,l), (237,285,l), (565,550,l), (496,550,l), (182,299,l), (166,299,l), (235,730,l), (185,730,l), (69,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (185,276,l), (204,276,l), (399,0,l), (509,0,l), (306,285,l), (591,550,l), (477,550,l), (207,302,l), (189,302,l), (257,730,l), (167,730,l), (51,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (219,276,l), (225,276,l), (365,0,l), (534,0,l), (386,281,l), (617,550,l), (449,550,l), (230,302,l), (223,302,l), (291,730,l), (141,730,l), (25,0,l) ); } ); width = 600; } ); }, { export = 0; glyphname = kcommaaccent.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = commaaccentcomb; }, { ref = k.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = commaaccentcomb; }, { ref = k.ss00; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = commaaccentcomb; }, { ref = k.ss00; } ); width = 600; } ); }, { export = 0; glyphname = kgreenlandic.ss00; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; } ); width = 600; } ); }, { export = 0; glyphname = l.ss01; layers = ( { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (322,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (511,0,l), (524,82,l), (319,82,l), (422,730,l), (162,730,l), (149,648,l), (319,648,l), (229,82,l), (14,82,l), (1,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (322,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (496,0,l), (503,45,l), (294,45,l), (403,730,l), (177,730,l), (169,685,l), (345,685,l), (244,45,l), (23,45,l), (16,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (342,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,136,l), (353,136,l), (447,730,l), (152,730,l), (130,595,l), (285,595,l), (213,136,l), (18,136,l), (-4,0,l) ); } ); width = 600; } ); }, { export = 0; glyphname = lacute.ss01; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = l.ss01; }, { pos = (561,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = l.ss01; }, { pos = (561,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = l.ss01; }, { pos = (582,0); ref = acutecomb.case; } ); width = 600; } ); }, { export = 0; glyphname = lcaron.ss01; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = caroncomb.alt; }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = caroncomb.alt; }, { ref = l.ss01; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (620,0); ref = caroncomb.alt; }, { ref = l.ss01; } ); width = 600; } ); }, { export = 0; glyphname = lcommaaccent.ss01; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (605,0); ref = commaaccentcomb; }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (605,0); ref = commaaccentcomb; }, { ref = l.ss01; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (605,0); ref = commaaccentcomb; }, { ref = l.ss01; } ); width = 600; } ); }, { export = 0; glyphname = ldot.ss01; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (345,275); ref = period; }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (345,275); ref = period; }, { ref = l.ss01; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (340,275); ref = period; }, { ref = l.ss01; } ); width = 600; } ); }, { export = 0; glyphname = lslash.ss01; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,416,l), (533,560,l), (123,370,l), (100,226,l) ); }, { ref = l.ss01; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (514,475,l), (528,560,l), (119,310,l), (105,225,l) ); }, { ref = l.ss01; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (520,492,l), (530,550,l), (119,295,l), (109,237,l) ); }, { ref = l.ss01; } ); width = 600; } ); }, { export = 0; glyphname = r.ss03; layers = ( { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (417,0,l), (424,45,l), (233,45,l), (281,350,ls), (297,446,o), (361,505,o), (449,505,cs), (591,505,l), (598,550,l), (464,550,ls), (368,550,o), (292,483,o), (275,381,c), (308,439,l), (294,439,l), (311,550,l), (118,550,l), (111,505,l), (256,505,l), (183,45,l), (38,45,l), (31,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (91,0); }, { name = top; pos = (363,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (432,0,l), (453,135,l), (297,135,l), (327,320,ls), (336,380,o), (372,413,o), (429,413,cs), (576,413,l), (598,550,l), (509,550,ls), (404,550,o), (338,489,o), (320,371,c), (373,434,l), (330,434,l), (348,550,l), (98,550,l), (77,415,l), (192,415,l), (147,135,l), (32,135,l), (11,0,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (201,0); }, { name = top; pos = (363,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (431,0,l), (444,80,l), (264,80,l), (306,345,ls), (318,421,o), (375,468,o), (457,468,cs), (585,468,l), (598,551,l), (481,550,ls), (388,549,o), (319,483,o), (301,369,c), (340,440,l), (317,440,l), (334,550,l), (113,550,l), (100,470,l), (235,470,l), (174,80,l), (39,80,l), (26,0,l) ); } ); width = 600; } ); }, { export = 0; glyphname = racute.ss03; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (640,0); ref = acutecomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (630,0); ref = acutecomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (630,0); ref = acutecomb; }, { ref = r.ss03; } ); width = 600; } ); }, { export = 0; glyphname = rcaron.ss03; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (620,0); ref = caroncomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (620,0); ref = caroncomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (620,0); ref = caroncomb; }, { ref = r.ss03; } ); width = 600; } ); }, { export = 0; glyphname = rcommaaccent.ss03; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (540,0); ref = commaaccentcomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (540,0); ref = commaaccentcomb; }, { ref = r.ss03; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (540,0); ref = commaaccentcomb; }, { ref = r.ss03; } ); width = 600; } ); }, { export = 0; glyphname = u.ss04; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (414,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (483,550,l), (426,190,ls), (411,93,o), (346,33,o), (258,33,cs), (172,33,o), (128,91,o), (144,190,cs), (201,550,l), (151,550,l), (93,183,ls), (74,65,o), (133,-10,o), (241,-10,cs), (339,-10,o), (411,51,o), (426,146,c), (388,95,l), (411,95,l), (396,0,l), (446,0,l), (533,550,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (391,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (427,550,l), (373,210,ls), (364,153,o), (327,120,o), (274,120,cs), (221,120,o), (194,153,o), (203,210,cs), (257,550,l), (107,550,l), (51,195,ls), (31,71,o), (88,-10,o), (195,-10,cs), (286,-10,o), (353,49,o), (367,140,c), (318,105,l), (362,105,l), (345,0,l), (490,0,l), (577,550,l) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (256,0); }, { name = horn; pos = (463,550); }, { name = ogonek; pos = (417,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (461,550,l), (406,200,ls), (392,115,o), (339,68,o), (264,68,cs), (192,68,o), (154,112,o), (166,190,cs), (223,550,l), (133,550,l), (75,180,ls), (56,63,o), (115,-10,o), (225,-10,cs), (317,-10,o), (380,40,o), (394,126,c), (372,105,l), (391,105,l), (374,0,l), (464,0,l), (551,550,l) ); } ); width = 600; } ); }, { export = 0; glyphname = uacute.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u.ss04; }, { pos = (621,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u.ss04; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u.ss04; }, { pos = (612,0); ref = acutecomb; } ); width = 600; } ); }, { export = 0; glyphname = ubreve.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = brevecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = brevecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = brevecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = ucircumflex.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = circumflexcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = circumflexcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = circumflexcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = udieresis.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = udotbelow.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dotbelowcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dotbelowcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dotbelowcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = ugrave.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (590,0); ref = gravecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (590,0); ref = gravecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (590,0); ref = gravecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = uhookabove.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = hookabovecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = hookabovecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = hookabovecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = uhorn.ss04; layers = ( { anchors = ( { name = bottom; pos = (236,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (301,0); }, { name = top; pos = (323,550); }, { name = topright; pos = (623,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (255,-10,o), (315,48,o), (329,140,c), (280,105,l), (324,105,l), (307,0,l), (452,0,l), (523,450,l), (610,450,o), (671,504,o), (684,585,cs), (696,660,l), (576,660,l), (564,585,ls), (560,563,o), (545,550,o), (523,550,cs), (389,550,l), (335,210,ls), (326,153,o), (297,120,o), (255,120,cs), (213,120,o), (194,153,o), (203,210,cs), (257,550,l), (107,550,l), (51,195,ls), (31,69,o), (79,-10,o), (176,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = horn; pos = (463,550); }, { name = ogonek; pos = (306,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (317,-10,o), (380,40,o), (394,126,c), (372,105,l), (391,105,l), (374,0,l), (464,0,l), (541,485,l), (604,485,o), (639,523,o), (648,580,cs), (661,660,l), (586,660,l), (574,585,ls), (570,562,o), (556,550,o), (533,550,cs), (461,550,l), (406,200,ls), (392,115,o), (339,68,o), (264,68,cs), (192,68,o), (154,112,o), (166,190,cs), (223,550,l), (133,550,l), (75,180,ls), (56,63,o), (115,-10,o), (225,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (255,0); }, { name = horn; pos = (453,550); }, { name = ogonek; pos = (311,0); }, { name = top; pos = (343,550); }, { name = topright; pos = (623,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (339,-10,o), (411,51,o), (426,146,c), (388,95,l), (411,95,l), (396,0,l), (446,0,l), (528,515,l), (578,515,o), (619,549,o), (627,600,cs), (637,660,l), (597,660,l), (587,600,ls), (582,570,o), (561,550,o), (534,550,cs), (483,550,l), (426,190,ls), (411,93,o), (346,33,o), (258,33,cs), (172,33,o), (128,91,o), (144,190,cs), (201,550,l), (151,550,l), (93,183,ls), (74,65,o), (133,-10,o), (241,-10,cs) ); } ); width = 600; } ); }, { export = 0; glyphname = uhornacute.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (592,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); }, { export = 0; glyphname = uhorndotbelow.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (579,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (598,0); ref = dotbelowcomb; } ); width = 600; } ); }, { export = 0; glyphname = uhorngrave.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (566,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (586,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (588,0); ref = gravecomb; } ); width = 600; } ); }, { export = 0; glyphname = uhornhookabove.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = uhorn.ss04; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = uhorn.ss04; }, { pos = (600,0); ref = hookabovecomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = uhorn.ss04; }, { pos = (580,0); ref = hookabovecomb; } ); width = 600; } ); }, { export = 0; glyphname = uhorntilde.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (580,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = uhorn.ss04; }, { pos = (600,0); ref = tildecomb; } ); width = 600; } ); }, { export = 0; glyphname = uhungarumlaut.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = umacron.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = macroncomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = macroncomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = macroncomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = uogonek.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (457,-195,l), (463,-153,l), (399,-153,ls), (367,-153,o), (351,-134,o), (356,-103,cs), (361,-75,o), (390,-36,o), (434,0,cs), (446,10,l), (409,10,l), (352,-27,o), (314,-74,o), (307,-115,cs), (300,-165,o), (329,-195,o), (384,-195,c) ); }, { ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (470,-203,l), (480,-143,l), (420,-143,ls), (386,-143,o), (368,-122,o), (373,-93,cs), (377,-65,o), (401,-36,o), (451,1,c), (464,10,l), (389,10,l), (319,-34,o), (291,-72,o), (285,-110,cs), (276,-164,o), (318,-203,o), (392,-203,cs) ); }, { ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (459,-225,l), (476,-120,l), (407,-120,ls), (378,-120,o), (364,-103,o), (367,-83,cs), (369,-66,o), (388,-42,o), (418,-18,cs), (455,11,l), (369,11,l), (296,-19,o), (245,-68,o), (238,-115,cs), (227,-180,o), (270,-225,o), (351,-225,cs) ); }, { ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = uring.ss04; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = ringcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = ringcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ringcomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { export = 0; glyphname = utilde.ss04; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = tildecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = tildecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = tildecomb; }, { alignment = -1; ref = u.ss04; } ); width = 600; } ); }, { glyphname = ordfeminine; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (458,455,l), (489,650,ls), (498,704,o), (453,740,o), (378,740,cs), (313,740,o), (258,706,o), (240,655,c), (320,655,l), (324,670,o), (344,680,o), (369,680,cs), (396,680,o), (412,668,o), (409,650,cs), (387,510,l), (390,510,l), (381,455,l) ); }, { closed = 1; nodes = ( (330,450,o), (366,472,o), (387,510,c), (398,510,l), (405,555,l), (394,555,l), (389,525,o), (360,505,o), (323,505,cs), (299,505,o), (283,520,o), (287,540,cs), (290,562,o), (306,575,o), (327,575,cs), (408,575,l), (416,625,l), (335,625,ls), (266,625,o), (214,590,o), (206,538,cs), (198,485,o), (232,450,o), (291,450,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (448,455,l), (479,650,ls), (488,706,o), (449,740,o), (378,740,cs), (312,740,o), (266,711,o), (251,660,c), (301,660,l), (308,684,o), (337,700,o), (372,700,cs), (412,700,o), (434,681,o), (429,650,cs), (407,510,l), (410,510,l), (401,455,l) ); }, { closed = 1; nodes = ( (347,450,o), (387,473,o), (407,510,c), (418,510,l), (425,555,l), (414,555,l), (407,513,o), (372,488,o), (320,488,cs), (282,488,o), (261,506,o), (266,536,cs), (270,564,o), (293,581,o), (328,581,cs), (429,581,l), (435,621,l), (334,621,ls), (269,621,o), (224,588,o), (216,536,cs), (208,484,o), (241,450,o), (301,450,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (443,455,l), (474,650,ls), (483,704,o), (444,740,o), (378,740,cs), (321,740,o), (272,708,o), (256,660,c), (291,660,l), (301,690,o), (334,710,o), (373,710,cs), (418,710,o), (445,686,o), (439,650,cs), (417,510,l), (420,510,l), (411,455,l) ); }, { closed = 1; nodes = ( (351,450,o), (398,474,o), (417,510,c), (428,510,l), (435,555,l), (424,555,l), (416,508,o), (375,478,o), (319,478,cs), (275,478,o), (250,500,o), (256,535,cs), (261,568,o), (288,590,o), (324,590,cs), (440,590,l), (445,620,l), (329,620,ls), (272,620,o), (229,586,o), (221,535,cs), (212,483,o), (243,450,o), (301,450,cs) ); } ); width = 600; } ); unicode = 170; }, { glyphname = ordmasculine; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (408,450,o), (471,502,o), (481,571,cs), (489,620,ls), (501,692,o), (454,740,o), (373,740,cs), (292,740,o), (231,692,o), (219,620,cs), (211,571,ls), (201,502,o), (246,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (305,520,o), (287,540,o), (291,571,cs), (299,620,ls), (304,650,o), (329,670,o), (362,670,cs), (395,670,o), (414,650,o), (409,620,cs), (401,571,ls), (397,540,o), (371,520,o), (338,520,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (395,445,o), (448,487,o), (458,550,cs), (471,630,ls), (481,693,o), (441,735,o), (372,735,cs), (303,735,o), (251,693,o), (241,630,cs), (228,550,ls), (218,487,o), (257,445,o), (326,445,cs) ); }, { closed = 1; nodes = ( (294,485,o), (272,511,o), (278,550,cs), (291,630,ls), (297,669,o), (327,695,o), (366,695,cs), (405,695,o), (427,669,o), (421,630,cs), (408,550,ls), (402,511,o), (372,485,o), (333,485,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (391,445,o), (441,483,o), (451,540,cs), (467,645,ls), (476,702,o), (438,740,o), (373,740,cs), (308,740,o), (258,702,o), (249,645,cs), (233,540,ls), (223,483,o), (261,445,o), (326,445,cs) ); }, { closed = 1; nodes = ( (286,475,o), (260,501,o), (267,540,cs), (283,645,ls), (289,684,o), (323,710,o), (368,710,cs), (413,710,o), (439,684,o), (433,645,cs), (417,540,ls), (410,501,o), (376,475,o), (331,475,cs) ); } ); width = 600; } ); unicode = 186; }, { glyphname = "A-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = A; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = A; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = A; } ); width = 600; } ); unicode = 1040; }, { glyphname = "Be-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (416,0,o), (530,89,o), (551,223,cs), (572,356,o), (486,444,o), (335,444,cs), (237,444,l), (260,590,l), (577,590,l), (600,730,l), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (218,319,l), (317,319,ls), (378,319,o), (411,281,o), (401,221,cs), (392,162,o), (347,125,o), (286,125,cs), (187,125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (261,0,ls), (400,0,o), (499,84,o), (520,214,cs), (540,344,o), (468,428,o), (329,428,cs), (208,428,l), (243,648,l), (559,648,l), (572,730,l), (166,730,l), (50,0,l) ); }, { closed = 1; nodes = ( (195,346,l), (316,346,ls), (398,346,o), (440,296,o), (427,214,cs), (414,132,o), (356,82,o), (274,82,cs), (153,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (262,0,ls), (390,0,o), (485,80,o), (504,204,cs), (524,327,o), (454,405,o), (326,405,cs), (180,405,l), (224,685,l), (550,685,l), (558,730,l), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (173,360,l), (319,360,ls), (419,360,o), (470,301,o), (454,203,cs), (438,104,o), (369,45,o), (269,45,cs), (123,45,l) ); } ); width = 600; } ); unicode = 1041; }, { glyphname = "Ve-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = B; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = B; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = B; } ); width = 600; } ); unicode = 1042; }, { glyphname = "Ge-cy"; layers = ( { anchors = ( { name = bottomright; pos = (556,0); }, { name = top; pos = (392,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (221,0,l), (314,590,l), (609,590,l), (632,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (556,0); }, { name = top; pos = (392,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (176,0,l), (279,648,l), (614,648,l), (627,730,l), (202,730,l), (86,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (556,0); }, { name = top; pos = (392,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,0,l), (254,685,l), (609,685,l), (617,730,l), (212,730,l), (96,0,l) ); } ); width = 600; } ); unicode = 1043; }, { glyphname = "Gje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "Ge-cy"; }, { pos = (632,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "Ge-cy"; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "Ge-cy"; }, { pos = (631,0); ref = acutecomb.case; } ); width = 600; } ); unicode = 1027; }, { glyphname = "Gheupturn-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (221,0,l), (314,590,l), (609,590,l), (647,825,l), (502,825,l), (487,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (176,0,l), (279,648,l), (614,648,l), (642,825,l), (557,825,l), (542,730,l), (202,730,l), (86,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,0,l), (254,685,l), (609,685,l), (632,825,l), (582,825,l), (567,730,l), (212,730,l), (96,0,l) ); } ); width = 600; } ); unicode = 1168; }, { glyphname = "De-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (96,-140,l), (118,0,l), (394,0,l), (372,-140,l), (512,-140,l), (554,128,l), (494,128,l), (590,730,l), (185,730,l), (117,340,ls), (101,244,o), (57,163,o), (29,128,c), (-2,128,l), (-44,-140,l) ); }, { closed = 1; nodes = ( (201,165,o), (241,248,o), (257,341,cs), (302,602,l), (429,602,l), (354,128,l), (176,128,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (39,-140,l), (61,0,l), (451,0,l), (429,-140,l), (509,-140,l), (543,77,l), (473,77,l), (577,730,l), (203,730,l), (127,298,ls), (110,204,o), (67,117,o), (38,77,c), (-7,77,l), (-41,-140,l) ); }, { closed = 1; nodes = ( (158,111,o), (198,195,o), (215,298,cs), (276,650,l), (474,650,l), (383,77,l), (132,77,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (27,-140,l), (49,0,l), (461,0,l), (439,-140,l), (484,-140,l), (513,45,l), (441,45,l), (550,730,l), (233,730,l), (151,276,ls), (132,168,o), (79,81,o), (45,45,c), (11,45,l), (-18,-140,l) ); }, { closed = 1; nodes = ( (131,81,o), (181,168,o), (201,276,cs), (275,685,l), (492,685,l), (391,45,l), (98,45,ls) ); } ); width = 600; } ); unicode = 1044; }, { glyphname = "Ie-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = E; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = E; } ); width = 600; } ); unicode = 1045; }, { glyphname = "Io-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; }, { pos = (619,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { pos = (621,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 1025; }, { glyphname = "Zhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (89,0,l), (225,343,l), (257,343,l), (208,0,l), (310,0,l), (359,343,l), (398,343,l), (430,0,l), (546,0,l), (506,369,l), (652,730,l), (532,730,l), (399,397,l), (368,397,l), (421,730,l), (319,730,l), (266,397,l), (230,397,l), (205,730,l), (88,730,l), (119,372,l), (-34,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (62,0,l), (229,342,l), (272,342,l), (218,0,l), (294,0,l), (348,342,l), (395,342,l), (453,0,l), (544,0,l), (473,372,l), (650,730,l), (554,730,l), (399,406,l), (358,406,l), (410,730,l), (334,730,l), (282,406,l), (238,406,l), (186,730,l), (94,730,l), (160,379,l), (-32,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (38,0,l), (219,354,l), (289,354,l), (233,0,l), (277,0,l), (333,354,l), (406,354,l), (475,0,l), (526,0,l), (450,376,l), (632,730,l), (580,730,l), (410,396,l), (340,396,l), (393,730,l), (349,730,l), (296,396,l), (223,396,l), (160,730,l), (110,730,l), (180,382,l), (-15,0,l) ); } ); width = 600; } ); unicode = 1046; }, { glyphname = "Ze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (411,-10,o), (530,80,o), (551,217,cs), (568,325,o), (517,392,o), (420,390,c), (419,383,l), (510,383,o), (577,444,o), (593,540,cs), (612,660,o), (527,740,o), (380,740,cs), (225,740,o), (109,654,o), (88,523,c), (238,523,l), (246,575,o), (292,610,o), (352,610,cs), (412,610,o), (445,575,o), (437,523,cs), (429,471,o), (384,437,o), (324,437,cs), (221,437,l), (202,317,l), (303,317,ls), (370,317,o), (408,278,o), (399,218,cs), (389,159,o), (339,120,o), (273,120,cs), (212,120,o), (175,154,o), (179,205,c), (29,205,l), (13,76,o), (104,-10,o), (255,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (499,76,o), (519,205,cs), (538,321,o), (474,394,o), (357,392,c), (356,382,l), (462,380,o), (540,444,o), (556,546,cs), (575,663,o), (499,740,o), (365,740,cs), (227,740,o), (123,658,o), (104,535,c), (194,535,l), (206,610,o), (268,660,o), (350,660,cs), (431,660,o), (477,612,o), (466,540,cs), (454,468,o), (393,420,o), (312,420,cs), (222,420,l), (209,340,l), (300,340,ls), (390,340,o), (441,286,o), (428,205,cs), (416,124,o), (347,70,o), (257,70,cs), (172,70,o), (122,119,o), (131,192,c), (41,192,l), (24,71,o), (105,-10,o), (244,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (378,-10,o), (484,74,o), (503,196,cs), (520,305,o), (456,380,o), (346,380,c), (345,370,l), (445,370,o), (524,442,o), (541,547,cs), (559,661,o), (484,740,o), (358,740,cs), (232,740,o), (133,661,o), (115,547,c), (165,547,l), (179,635,o), (254,696,o), (351,696,cs), (448,696,o), (505,635,o), (491,547,cs), (477,459,o), (401,398,o), (304,398,cs), (234,398,l), (227,353,l), (302,353,ls), (406,353,o), (468,288,o), (453,193,cs), (438,99,o), (356,35,o), (252,35,cs), (148,35,o), (86,99,o), (101,193,c), (51,193,l), (32,73,o), (110,-10,o), (244,-10,cs) ); } ); width = 600; } ); unicode = 1047; }, { glyphname = "Ii-cy"; layers = ( { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (193,0,l), (469,565,l), (451,492,o), (423,369,o), (412,300,cs), (364,0,l), (496,0,l), (612,730,l), (435,730,l), (160,165,l), (176,230,o), (202,341,o), (213,410,cs), (264,730,l), (132,730,l), (16,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (166,0,l), (488,625,l), (476,576,o), (455,483,o), (444,410,cs), (379,0,l), (466,0,l), (582,730,l), (462,730,l), (141,105,l), (152,154,o), (172,247,o), (184,320,cs), (249,730,l), (162,730,l), (46,0,l) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (134,0,l), (510,675,l), (502,635,o), (490,575,o), (488,560,cs), (399,0,l), (447,0,l), (563,730,l), (493,730,l), (120,55,l), (124,74,o), (132,119,o), (140,170,cs), (229,730,l), (181,730,l), (65,0,l) ); } ); width = 600; } ); unicode = 1048; }, { glyphname = "Iishort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "Ii-cy"; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "Ii-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "Ii-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 1049; }, { glyphname = "Ka-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = K; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = K; } ); width = 600; } ); unicode = 1050; }, { glyphname = "Kje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = acutecomb.case; }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = acutecomb.case; }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = acutecomb.case; }, { alignment = -1; ref = K; } ); width = 600; } ); unicode = 1036; }, { glyphname = "El-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (10,-5,ls), (130,-5,o), (223,86,o), (247,230,cs), (308,590,l), (433,590,l), (340,0,l), (490,0,l), (606,730,l), (184,730,l), (98,230,ls), (88,171,o), (57,130,o), (22,130,cs), (-8,130,l), (-30,-5,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-2,-5,ls), (113,-5,o), (178,75,o), (208,254,cs), (276,648,l), (475,648,l), (372,0,l), (462,0,l), (578,730,l), (200,730,l), (118,254,ls), (96,126,o), (66,79,o), (7,79,cs), (-11,79,l), (-25,-5,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (10,-5,ls), (91,-5,o), (154,61,o), (171,164,cs), (258,684,l), (504,684,l), (396,0,l), (446,0,l), (562,730,l), (216,730,l), (121,164,ls), (109,92,o), (68,45,o), (18,45,cs), (-12,45,l), (-20,-5,l) ); } ); width = 600; } ); unicode = 1051; }, { glyphname = "Em-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = M; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = M; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = M; } ); width = 600; } ); unicode = 1052; }, { glyphname = "En-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = H; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = H; } ); width = 600; } ); unicode = 1053; }, { glyphname = "O-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = O; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = O; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = O; } ); width = 600; } ); unicode = 1054; }, { glyphname = "Pe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (265,590,l), (433,590,l), (340,0,l), (490,0,l), (606,730,l), (138,730,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (140,0,l), (243,648,l), (475,648,l), (372,0,l), (462,0,l), (578,730,l), (166,730,l), (50,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (224,685,l), (504,685,l), (396,0,l), (446,0,l), (562,730,l), (182,730,l), (66,0,l) ); } ); width = 600; } ); unicode = 1055; }, { glyphname = "Er-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = P; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = P; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = P; } ); width = 600; } ); unicode = 1056; }, { glyphname = "Es-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = C; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = C; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = C; } ); width = 600; } ); unicode = 1057; }, { glyphname = "Te-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = T; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = T; } ); width = 600; } ); unicode = 1058; }, { glyphname = "U-cy"; layers = ( { anchors = ( { name = top; pos = (372,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (274,0,l), (647,730,l), (488,730,l), (350,433,ls), (336,402,o), (321,354,o), (314,327,c), (314,354,o), (311,401,o), (306,433,cs), (257,730,l), (97,730,l), (215,187,l), (117,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (243,0,l), (622,730,l), (522,730,l), (350,373,ls), (328,327,o), (313,283,o), (307,263,c), (307,283,o), (303,327,o), (293,373,cs), (218,730,l), (122,730,l), (250,189,l), (147,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (372,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (222,0,l), (604,730,l), (548,730,l), (363,373,ls), (340,329,o), (315,274,o), (303,246,c), (298,274,o), (286,329,o), (276,373,cs), (195,730,l), (140,730,l), (267,192,l), (163,0,l) ); } ); width = 600; } ); unicode = 1059; }, { glyphname = "Ushort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "U-cy"; }, { alignment = 1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "U-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "U-cy"; }, { alignment = 1; pos = (599,0); ref = brevecomb.case; } ); width = 600; } ); unicode = 1038; }, { glyphname = "Ef-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (312,-25,l), (323,45,l), (448,45,o), (547,133,o), (568,264,cs), (602,481,ls), (623,612,o), (552,700,o), (427,700,c), (438,770,l), (318,770,l), (307,700,l), (182,700,o), (83,612,o), (62,481,cs), (28,264,ls), (7,133,o), (78,45,o), (203,45,c), (192,-25,l) ); }, { closed = 1; nodes = ( (174,161,o), (145,202,o), (155,264,cs), (189,481,ls), (199,543,o), (242,585,o), (295,585,c), (227,161,l) ); }, { closed = 1; nodes = ( (403,585,l), (456,585,o), (485,543,o), (475,481,cs), (441,264,ls), (431,202,o), (388,161,o), (335,161,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (294,-25,l), (305,45,l), (428,45,o), (522,127,o), (542,253,cs), (579,487,ls), (600,616,o), (533,700,o), (409,700,c), (420,770,l), (336,770,l), (325,700,l), (201,700,o), (108,616,o), (87,487,cs), (50,253,ls), (30,127,o), (98,45,o), (221,45,c), (210,-25,l) ); }, { closed = 1; nodes = ( (158,121,o), (121,171,o), (134,253,cs), (171,487,ls), (185,572,o), (238,624,o), (313,624,c), (233,121,l) ); }, { closed = 1; nodes = ( (397,624,l), (472,624,o), (509,572,o), (495,487,cs), (458,253,ls), (445,171,o), (392,121,o), (317,121,c) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (277,-25,l), (288,45,l), (417,45,o), (509,123,o), (529,247,cs), (569,500,ls), (589,622,o), (522,700,o), (392,700,c), (403,770,l), (353,770,l), (342,700,l), (212,700,o), (121,622,o), (101,500,cs), (61,247,ls), (41,123,o), (109,45,o), (238,45,c), (227,-25,l) ); }, { closed = 1; nodes = ( (152,90,o), (97,156,o), (111,247,cs), (151,500,ls), (165,589,o), (241,655,o), (335,655,c), (245,90,l) ); }, { closed = 1; nodes = ( (385,655,l), (479,655,o), (533,589,o), (519,500,cs), (479,247,ls), (465,156,o), (388,90,o), (295,90,c) ); } ); width = 600; } ); unicode = 1060; }, { glyphname = "Ha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = X; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = X; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = X; } ); width = 600; } ); unicode = 1061; }, { glyphname = "Che-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (602,730,l), (452,730,l), (401,410,l), (386,404,o), (354,400,o), (324,400,cs), (251,400,o), (222,422,o), (231,475,cs), (272,730,l), (122,730,l), (80,466,ls), (60,338,o), (127,265,o), (268,265,cs), (313,265,o), (359,270,o), (380,276,c), (336,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (461,0,l), (577,730,l), (487,730,l), (429,365,l), (410,357,o), (354,351,o), (304,351,cs), (219,351,o), (181,383,o), (192,451,cs), (237,730,l), (147,730,l), (102,451,ls), (83,336,o), (147,271,o), (276,271,cs), (328,271,o), (391,278,o), (416,286,c), (371,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (446,0,l), (562,730,l), (512,730,l), (452,356,l), (416,349,o), (363,345,o), (320,345,cs), (200,345,o), (157,387,o), (174,491,cs), (212,730,l), (162,730,l), (124,491,ls), (104,366,o), (166,300,o), (303,300,cs), (352,300,o), (409,305,o), (446,312,c), (396,0,l) ); } ); width = 600; } ); unicode = 1063; }, { glyphname = "Tse-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (512,-140,l), (556,140,l), (481,140,l), (575,730,l), (425,730,l), (331,140,l), (194,140,l), (288,730,l), (138,730,l), (22,0,l), (394,0,l), (372,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (534,80,l), (459,80,l), (562,730,l), (472,730,l), (369,80,l), (153,80,l), (256,730,l), (166,730,l), (50,0,l), (441,0,l), (419,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,-140,l), (513,45,l), (436,45,l), (545,730,l), (495,730,l), (386,45,l), (123,45,l), (232,730,l), (182,730,l), (66,0,l), (456,0,l), (434,-140,l) ); } ); width = 600; } ); unicode = 1062; }, { glyphname = "Sha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (632,730,l), (509,730,l), (409,100,l), (324,100,l), (424,730,l), (320,730,l), (220,100,l), (135,100,l), (235,730,l), (112,730,l), (-4,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (492,0,l), (608,730,l), (525,730,l), (420,68,l), (304,68,l), (409,730,l), (337,730,l), (232,68,l), (115,68,l), (220,730,l), (136,730,l), (22,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,0,l), (596,730,l), (548,730,l), (439,43,l), (287,43,l), (396,730,l), (348,730,l), (239,43,l), (87,43,l), (196,730,l), (148,730,l), (32,0,l) ); } ); width = 600; } ); unicode = 1064; }, { glyphname = "Shcha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (521,-140,l), (559,100,l), (494,100,l), (594,730,l), (481,730,l), (381,100,l), (302,100,l), (402,730,l), (303,730,l), (203,100,l), (124,100,l), (224,730,l), (111,730,l), (-5,0,l), (413,0,l), (391,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,-140,l), (543,76,l), (496,76,l), (600,730,l), (519,730,l), (415,76,l), (299,76,l), (403,730,l), (333,730,l), (229,76,l), (113,76,l), (217,730,l), (136,730,l), (20,0,l), (451,0,l), (429,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (528,43,l), (481,43,l), (590,730,l), (542,730,l), (433,43,l), (284,43,l), (393,730,l), (345,730,l), (236,43,l), (87,43,l), (196,730,l), (148,730,l), (32,0,l), (471,0,l), (449,-140,l) ); } ); width = 600; } ); unicode = 1065; }, { glyphname = "Dzhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (311,-125,l), (331,0,l), (490,0,l), (606,730,l), (456,730,l), (362,140,l), (194,140,l), (288,730,l), (138,730,l), (22,0,l), (181,0,l), (161,-125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (281,-125,l), (301,0,l), (462,0,l), (578,730,l), (488,730,l), (385,82,l), (153,82,l), (256,730,l), (166,730,l), (50,0,l), (211,0,l), (191,-125,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-125,l), (284,0,l), (446,0,l), (562,730,l), (507,730,l), (399,50,l), (129,50,l), (237,730,l), (182,730,l), (66,0,l), (229,0,l), (209,-125,l) ); } ); width = 600; } ); unicode = 1039; }, { glyphname = "Softsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (424,0,o), (540,88,o), (561,223,cs), (583,358,o), (494,445,o), (336,445,cs), (242,445,l), (288,730,l), (138,730,l), (22,0,l) ); }, { closed = 1; nodes = ( (222,315,l), (316,315,ls), (383,315,o), (420,279,o), (411,222,cs), (402,166,o), (354,130,o), (287,130,cs), (193,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (286,0,ls), (417,0,o), (520,87,o), (540,215,cs), (560,344,o), (485,430,o), (354,430,cs), (208,430,l), (256,730,l), (166,730,l), (50,0,l) ); }, { closed = 1; nodes = ( (195,348,l), (336,348,ls), (415,348,o), (460,295,o), (447,215,cs), (434,135,o), (373,82,o), (294,82,cs), (153,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (397,0,o), (494,82,o), (514,210,cs), (535,338,o), (464,420,o), (333,420,cs), (183,420,l), (232,730,l), (182,730,l), (66,0,l) ); }, { closed = 1; nodes = ( (175,375,l), (325,375,ls), (425,375,o), (479,310,o), (463,210,cs), (447,110,o), (373,45,o), (273,45,cs), (123,45,l) ); } ); width = 600; } ); unicode = 1068; }, { glyphname = "Hardsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (424,0,o), (540,88,o), (561,223,cs), (583,358,o), (494,445,o), (336,445,cs), (286,445,l), (332,730,l), (67,730,l), (48,610,l), (163,610,l), (66,0,l) ); }, { closed = 1; nodes = ( (266,315,l), (316,315,ls), (383,315,o), (420,279,o), (411,222,cs), (402,166,o), (354,130,o), (287,130,cs), (237,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (286,0,ls), (417,0,o), (520,87,o), (540,215,cs), (560,344,o), (485,430,o), (354,430,cs), (249,430,l), (297,730,l), (67,730,l), (54,648,l), (194,648,l), (91,0,l) ); }, { closed = 1; nodes = ( (236,348,l), (336,348,ls), (415,348,o), (460,295,o), (447,215,cs), (434,135,o), (373,82,o), (294,82,cs), (194,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (266,0,ls), (397,0,o), (494,82,o), (514,210,cs), (535,338,o), (464,420,o), (333,420,cs), (213,420,l), (262,730,l), (82,730,l), (74,680,l), (204,680,l), (96,0,l) ); }, { closed = 1; nodes = ( (205,375,l), (325,375,ls), (425,375,o), (479,310,o), (463,210,cs), (447,110,o), (373,45,o), (273,45,cs), (153,45,l) ); } ); width = 600; } ); unicode = 1066; }, { glyphname = "Yeru-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (146,0,ls), (264,0,o), (347,72,o), (366,190,cs), (376,254,ls), (395,372,o), (334,445,o), (216,445,cs), (191,445,l), (237,730,l), (112,730,l), (-4,0,l) ); }, { closed = 1; nodes = ( (173,330,l), (198,330,ls), (242,330,o), (264,302,o), (256,252,cs), (246,191,ls), (238,142,o), (208,115,o), (164,115,cs), (139,115,l) ); }, { closed = 1; nodes = ( (516,0,l), (632,730,l), (507,730,l), (391,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (146,0,ls), (268,0,o), (353,71,o), (372,189,cs), (380,240,ls), (399,357,o), (335,430,o), (214,430,cs), (173,430,l), (221,730,l), (137,730,l), (21,0,l) ); }, { closed = 1; nodes = ( (161,351,l), (202,351,ls), (272,351,o), (305,310,o), (294,240,cs), (286,190,ls), (275,120,o), (229,79,o), (159,79,cs), (118,79,l) ); }, { closed = 1; nodes = ( (491,0,l), (607,730,l), (523,730,l), (407,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (141,0,ls), (260,0,o), (348,75,o), (366,190,cs), (372,230,ls), (391,345,o), (327,420,o), (208,420,cs), (153,420,l), (202,730,l), (152,730,l), (36,0,l) ); }, { closed = 1; nodes = ( (145,375,l), (200,375,ls), (290,375,o), (337,320,o), (322,230,cs), (316,190,ls), (302,100,o), (238,45,o), (148,45,cs), (93,45,l) ); }, { closed = 1; nodes = ( (476,0,l), (592,730,l), (542,730,l), (426,0,l) ); } ); width = 600; } ); unicode = 1067; }, { glyphname = "Lje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-25,-5,ls), (76,-5,o), (157,79,o), (178,205,cs), (249,620,l), (329,620,l), (231,0,l), (356,0,ls), (473,0,o), (557,69,o), (575,185,cs), (587,259,ls), (606,376,o), (543,445,o), (426,445,cs), (421,445,l), (467,730,l), (149,730,l), (58,205,ls), (48,147,o), (19,110,o), (-17,110,cs), (-37,110,l), (-55,-5,l) ); }, { closed = 1; nodes = ( (404,335,l), (409,335,ls), (453,335,o), (475,307,o), (467,257,cs), (455,186,ls), (448,137,o), (417,110,o), (373,110,cs), (368,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-35,-5,ls), (49,-5,o), (114,71,o), (135,194,cs), (213,655,l), (340,655,l), (236,0,l), (376,0,ls), (472,0,o), (546,62,o), (561,155,cs), (580,275,ls), (594,368,o), (540,430,o), (444,430,cs), (384,430,l), (432,730,l), (146,730,l), (56,194,ls), (43,120,o), (15,75,o), (-19,75,cs), (-37,75,l), (-50,-5,l) ); }, { closed = 1; nodes = ( (372,355,l), (432,355,ls), (480,355,o), (507,323,o), (500,275,cs), (481,155,ls), (473,107,o), (436,75,o), (388,75,cs), (328,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-25,-5,ls), (47,-5,o), (105,59,o), (122,158,cs), (214,685,l), (361,685,l), (253,0,l), (371,0,ls), (463,0,o), (530,58,o), (545,150,cs), (564,270,ls), (578,362,o), (530,420,o), (438,420,cs), (370,420,l), (419,730,l), (172,730,l), (72,158,ls), (60,87,o), (27,45,o), (-17,45,cs), (-42,45,l), (-50,-5,l) ); }, { closed = 1; nodes = ( (362,375,l), (430,375,ls), (492,375,o), (524,335,o), (514,270,cs), (495,150,ls), (484,85,o), (440,45,o), (378,45,cs), (310,45,l) ); } ); width = 600; } ); unicode = 1033; }, { glyphname = "Nje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (116,0,l), (171,345,l), (286,345,l), (231,0,l), (356,0,ls), (474,0,o), (557,70,o), (575,185,cs), (589,269,ls), (607,385,o), (546,455,o), (428,455,cs), (423,455,l), (467,730,l), (347,730,l), (303,455,l), (188,455,l), (232,730,l), (112,730,l), (-4,0,l) ); }, { closed = 1; nodes = ( (406,345,l), (411,345,ls), (455,345,o), (476,317,o), (468,267,cs), (455,186,ls), (448,138,o), (418,110,o), (373,110,cs), (368,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (89,0,l), (145,355,l), (292,355,l), (236,0,l), (376,0,ls), (474,0,o), (546,60,o), (561,155,cs), (580,275,ls), (595,370,o), (542,430,o), (444,430,cs), (384,430,l), (432,730,l), (352,730,l), (304,430,l), (157,430,l), (205,730,l), (125,730,l), (9,0,l) ); }, { closed = 1; nodes = ( (372,355,l), (432,355,ls), (482,355,o), (507,325,o), (500,275,cs), (481,155,ls), (473,105,o), (438,75,o), (388,75,cs), (328,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (68,0,l), (127,375,l), (312,375,l), (253,0,l), (366,0,ls), (461,0,o), (530,58,o), (545,150,cs), (564,270,ls), (578,362,o), (528,420,o), (433,420,cs), (370,420,l), (419,730,l), (369,730,l), (320,420,l), (135,420,l), (184,730,l), (134,730,l), (18,0,l) ); }, { closed = 1; nodes = ( (362,375,l), (425,375,ls), (490,375,o), (524,335,o), (514,270,cs), (495,150,ls), (484,85,o), (438,45,o), (373,45,cs), (310,45,l) ); } ); width = 600; } ); unicode = 1034; }, { glyphname = "Dze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = S; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = S; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = S; } ); width = 600; } ); unicode = 1029; }, { glyphname = "E-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (405,-10,o), (516,77,o), (537,210,c), (387,210,l), (378,152,o), (339,120,o), (279,120,cs), (219,120,o), (190,152,o), (199,210,cs), (214,300,l), (419,300,l), (440,435,l), (235,435,l), (248,520,ls), (258,578,o), (297,610,o), (357,610,cs), (417,610,o), (446,578,o), (436,520,c), (586,520,l), (607,653,o), (524,740,o), (377,740,cs), (230,740,o), (119,653,o), (98,520,cs), (49,210,ls), (28,78,o), (111,-10,o), (258,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (483,71,o), (504,200,c), (414,200,l), (401,117,o), (349,70,o), (271,70,cs), (192,70,o), (155,117,o), (168,200,cs), (188,327,l), (413,327,l), (426,409,l), (201,409,l), (220,531,ls), (233,613,o), (286,660,o), (365,660,cs), (443,660,o), (479,613,o), (466,530,c), (556,530,l), (576,659,o), (508,740,o), (377,740,cs), (244,740,o), (151,661,o), (130,530,cs), (78,200,ls), (57,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,200,c), (448,200,l), (432,98,o), (364,35,o), (268,35,cs), (174,35,o), (126,94,o), (141,190,cs), (166,346,l), (401,346,l), (408,391,l), (173,391,l), (197,540,ls), (212,636,o), (279,695,o), (372,695,cs), (467,695,o), (516,632,o), (500,530,c), (550,530,l), (570,658,o), (503,740,o), (379,740,cs), (257,740,o), (166,662,o), (147,540,cs), (91,190,ls), (72,69,o), (138,-10,o), (260,-10,cs) ); } ); width = 600; } ); unicode = 1028; }, { glyphname = "Ereversed-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (397,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,653,o), (516,740,o), (369,740,cs), (222,740,o), (111,653,o), (90,520,c), (240,520,l), (250,578,o), (289,610,o), (349,610,cs), (409,610,o), (438,578,o), (428,520,cs), (415,435,l), (210,435,l), (189,300,l), (394,300,l), (379,210,ls), (370,152,o), (331,120,o), (271,120,cs), (211,120,o), (182,152,o), (191,210,c), (41,210,l), (20,77,o), (103,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (477,69,o), (498,200,cs), (550,530,ls), (571,661,o), (502,740,o), (369,740,cs), (238,740,o), (144,659,o), (124,530,c), (214,530,l), (227,613,o), (279,660,o), (357,660,cs), (436,660,o), (473,613,o), (460,531,cs), (441,409,l), (216,409,l), (203,327,l), (428,327,l), (408,200,ls), (395,117,o), (342,70,o), (263,70,cs), (185,70,o), (149,117,o), (162,200,c), (72,200,l), (51,71,o), (119,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-10,o), (467,69,o), (486,190,cs), (542,540,ls), (561,662,o), (494,740,o), (372,740,cs), (248,740,o), (155,658,o), (135,530,c), (185,530,l), (201,632,o), (270,695,o), (365,695,cs), (458,695,o), (507,636,o), (492,540,cs), (468,391,l), (233,391,l), (226,346,l), (461,346,l), (436,190,ls), (421,94,o), (355,35,o), (261,35,cs), (165,35,o), (117,98,o), (133,200,c), (83,200,l), (62,72,o), (129,-10,o), (253,-10,cs) ); } ); width = 600; } ); unicode = 1069; }, { glyphname = "I-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = I; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = I; } ); width = 600; } ); unicode = 1030; }, { glyphname = "Yi-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb.case; }, { alignment = -1; ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb.case; }, { alignment = -1; ref = I; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb.case; }, { alignment = -1; ref = I; } ); width = 600; } ); unicode = 1031; }, { glyphname = "Je-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = J; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = J; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = J; } ); width = 600; } ); unicode = 1032; }, { glyphname = "Tshe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (206,0,l), (252,290,l), (290,323,ls), (324,352,o), (351,365,o), (377,365,cs), (417,365,o), (433,337,o), (425,285,cs), (381,0,l), (531,0,l), (576,290,ls), (596,414,o), (540,495,o), (436,495,cs), (384,495,o), (336,475,o), (289,434,cs), (273,420,l), (299,590,l), (409,590,l), (432,730,l), (72,730,l), (49,590,l), (149,590,l), (56,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (156,0,l), (205,310,l), (257,357,ls), (302,399,o), (342,419,o), (380,419,cs), (436,419,o), (461,377,o), (448,296,cs), (401,0,l), (491,0,l), (541,316,ls), (558,425,o), (507,495,o), (413,495,cs), (355,495,o), (298,469,o), (237,413,cs), (219,396,l), (259,651,l), (379,651,l), (392,730,l), (72,730,l), (59,651,l), (169,651,l), (66,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (136,0,l), (185,310,l), (272,388,ls), (319,429,o), (366,452,o), (405,452,cs), (460,452,o), (486,408,o), (474,336,cs), (421,0,l), (471,0,l), (526,346,ls), (540,437,o), (498,495,o), (419,495,cs), (364,495,o), (306,468,o), (249,416,cs), (194,366,l), (244,685,l), (369,685,l), (377,730,l), (72,730,l), (64,685,l), (194,685,l), (86,0,l) ); } ); width = 600; } ); unicode = 1035; }, { glyphname = "Iu-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (455,-10,o), (536,60,o), (553,170,cs), (615,561,ls), (632,671,o), (574,740,o), (465,740,cs), (369,740,o), (296,670,o), (279,561,cs), (258,427,l), (187,427,l), (235,730,l), (112,730,l), (-4,0,l), (119,0,l), (170,322,l), (241,322,l), (217,170,ls), (200,60,o), (250,-10,o), (346,-10,cs) ); }, { closed = 1; nodes = ( (331,100,o), (313,123,o), (319,160,cs), (384,571,ls), (390,607,o), (415,630,o), (448,630,cs), (481,630,o), (499,607,o), (493,571,cs), (428,160,ls), (422,123,o), (398,100,o), (364,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (449,-10,o), (526,63,o), (545,180,cs), (603,550,ls), (622,667,o), (568,740,o), (462,740,cs), (358,740,o), (284,668,o), (265,550,cs), (244,415,l), (165,415,l), (215,730,l), (132,730,l), (16,0,l), (99,0,l), (152,335,l), (231,335,l), (207,180,ls), (188,63,o), (240,-10,o), (343,-10,cs) ); }, { closed = 1; nodes = ( (299,68,o), (274,108,o), (286,180,cs), (344,550,ls), (356,622,o), (393,662,o), (450,662,cs), (507,662,o), (532,622,o), (520,550,cs), (462,180,ls), (450,108,o), (413,68,o), (356,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (435,-10,o), (502,53,o), (519,160,cs), (584,570,ls), (601,677,o), (554,740,o), (459,740,cs), (365,740,o), (297,677,o), (280,570,cs), (253,396,l), (143,396,l), (196,730,l), (148,730,l), (32,0,l), (80,0,l), (136,356,l), (246,356,l), (215,160,ls), (198,53,o), (246,-10,o), (340,-10,cs) ); }, { closed = 1; nodes = ( (284,35,o), (251,83,o), (263,160,cs), (328,570,ls), (340,647,o), (388,695,o), (452,695,cs), (516,695,o), (548,647,o), (536,570,cs), (471,160,ls), (459,83,o), (412,35,o), (348,35,cs) ); } ); width = 600; } ); unicode = 1070; }, { glyphname = "Ia-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (149,0,l), (315,276,l), (385,276,l), (341,0,l), (490,0,l), (606,730,l), (372,730,ls), (217,730,o), (103,644,o), (81,508,cs), (64,396,o), (117,304,o), (217,288,c), (218,362,l), (-7,0,l) ); }, { closed = 1; nodes = ( (254,406,o), (221,441,o), (230,501,cs), (240,563,o), (285,600,o), (351,600,cs), (436,600,l), (405,406,l), (320,406,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (113,0,l), (304,310,l), (420,310,l), (371,0,l), (461,0,l), (577,730,l), (353,730,ls), (223,730,o), (122,645,o), (102,520,cs), (85,410,o), (139,331,o), (242,313,c), (238,354,l), (12,0,l) ); }, { closed = 1; nodes = ( (224,390,o), (183,442,o), (195,520,cs), (208,598,o), (266,650,o), (340,650,cs), (474,650,l), (433,390,l), (299,390,ls) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (88,0,l), (304,330,l), (448,330,l), (396,0,l), (446,0,l), (562,730,l), (357,730,ls), (228,730,o), (134,652,o), (115,528,cs), (97,416,o), (155,339,o), (266,330,c), (261,351,l), (28,0,l) ); }, { closed = 1; nodes = ( (203,375,o), (150,436,o), (165,530,cs), (180,624,o), (252,685,o), (349,685,cs), (504,685,l), (455,375,l), (300,375,ls) ); } ); width = 600; } ); unicode = 1071; }, { glyphname = "Dje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (262,-180,ls), (403,-180,o), (516,-96,o), (535,25,cs), (576,290,ls), (596,414,o), (540,495,o), (436,495,cs), (384,495,o), (336,475,o), (289,434,cs), (273,420,l), (299,590,l), (409,590,l), (432,730,l), (72,730,l), (49,590,l), (149,590,l), (56,0,l), (206,0,l), (252,290,l), (290,323,ls), (324,352,o), (351,365,o), (377,365,cs), (417,365,o), (433,337,o), (425,285,cs), (387,41,ls), (380,-7,o), (346,-35,o), (295,-35,cs), (235,-35,l), (212,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,-180,ls), (381,-180,o), (475,-103,o), (493,15,cs), (541,316,ls), (558,425,o), (507,495,o), (413,495,cs), (355,495,o), (298,469,o), (237,413,cs), (219,396,l), (259,651,l), (379,651,l), (392,730,l), (72,730,l), (59,651,l), (169,651,l), (66,0,l), (156,0,l), (205,310,l), (257,357,ls), (302,399,o), (342,419,o), (380,419,cs), (436,419,o), (461,377,o), (448,296,cs), (403,15,ls), (392,-55,o), (341,-98,o), (270,-98,cs), (200,-98,l), (187,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (236,-180,ls), (361,-180,o), (455,-104,o), (473,15,cs), (526,346,ls), (540,437,o), (498,495,o), (418,495,cs), (363,495,o), (305,468,o), (249,417,cs), (194,367,l), (244,685,l), (369,685,l), (377,730,l), (72,730,l), (64,685,l), (194,685,l), (86,0,l), (136,0,l), (185,310,l), (272,388,ls), (319,429,o), (366,452,o), (405,452,cs), (460,452,o), (486,408,o), (474,336,cs), (423,15,ls), (408,-79,o), (342,-135,o), (244,-135,cs), (202,-135,l), (194,-180,l) ); } ); width = 600; } ); unicode = 1026; }, { glyphname = "Ghestroke-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (381,347,l), (388,392,l), (58,392,l), (51,347,l) ); }, { pos = (10,0); ref = "Ge-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (388,326,l), (400,406,l), (50,406,l), (38,326,l) ); }, { ref = "Ge-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (394,305,l), (414,430,l), (54,430,l), (34,305,l) ); }, { ref = "Ge-cy"; } ); width = 600; } ); unicode = 1170; }, { glyphname = "Kadescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (494,-140,l), (523,45,l), (473,45,l), (444,-140,l) ); }, { alignment = -1; pos = (-5,0); ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (519,-140,l), (554,80,l), (474,80,l), (439,-140,l) ); }, { alignment = -1; pos = (-11,0); ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (529,-140,l), (573,140,l), (443,140,l), (399,-140,l) ); }, { alignment = -1; pos = (-15,0); ref = K; } ); width = 600; } ); unicode = 1178; }, { glyphname = "Endescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (469,-140,l), (498,45,l), (448,45,l), (419,-140,l) ); }, { alignment = -1; pos = (-2,0); ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (484,-140,l), (519,80,l), (439,80,l), (404,-140,l) ); }, { alignment = -1; pos = (-4,0); ref = H; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (524,-140,l), (568,140,l), (438,140,l), (394,-140,l) ); }, { alignment = -1; pos = (-10,0); ref = H; } ); width = 600; } ); unicode = 1186; }, { glyphname = "Ustraight-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = Y; } ); width = 600; } ); unicode = 1198; }, { glyphname = "Ustraightstroke-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (458,235,l), (465,280,l), (135,280,l), (128,235,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,198,l), (474,273,l), (124,273,l), (112,198,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (463,170,l), (477,260,l), (117,260,l), (103,170,l) ); }, { alignment = -1; ref = Y; } ); width = 600; } ); unicode = 1200; }, { glyphname = "Chedescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (461,-140,l), (490,45,l), (440,45,l), (411,-140,l) ); }, { pos = (-10,0); ref = "Che-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (476,-140,l), (511,80,l), (431,80,l), (396,-140,l) ); }, { pos = (-10,0); ref = "Che-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (509,-140,l), (553,140,l), (423,140,l), (379,-140,l) ); }, { pos = (-10,0); ref = "Che-cy"; } ); width = 600; } ); unicode = 1206; }, { glyphname = "Shha-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = "Che-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = "Che-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = "Che-cy"; } ); width = 600; } ); unicode = 1210; }, { glyphname = "Schwa-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (376,-10,o), (467,67,o), (486,190,cs), (542,540,ls), (561,663,o), (495,740,o), (371,740,cs), (246,740,o), (155,659,o), (135,530,c), (185,530,l), (201,632,o), (270,695,o), (364,695,cs), (458,695,o), (507,635,o), (492,540,cs), (468,391,l), (113,391,l), (83,200,ls), (62,71,o), (127,-10,o), (252,-10,cs) ); }, { closed = 1; nodes = ( (166,35,o), (117,98,o), (133,200,cs), (156,346,l), (461,346,l), (436,190,ls), (421,95,o), (354,35,o), (260,35,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (382,-10,o), (477,71,o), (498,200,cs), (550,530,ls), (570,659,o), (501,740,o), (370,740,cs), (239,740,o), (144,659,o), (124,530,c), (214,530,l), (227,610,o), (282,660,o), (358,660,cs), (434,660,o), (473,610,o), (460,531,cs), (441,409,l), (105,409,l), (72,200,ls), (51,71,o), (120,-10,o), (251,-10,cs) ); }, { closed = 1; nodes = ( (188,70,o), (149,120,o), (162,200,cs), (182,327,l), (428,327,l), (408,200,ls), (395,120,o), (340,70,o), (264,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (397,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,653,o), (516,740,o), (369,740,cs), (222,740,o), (111,653,o), (90,520,c), (240,520,l), (250,578,o), (289,610,o), (349,610,cs), (409,610,o), (438,578,o), (428,520,cs), (415,435,l), (77,435,l), (41,210,ls), (20,77,o), (103,-10,o), (250,-10,cs) ); }, { closed = 1; nodes = ( (211,120,o), (182,152,o), (191,210,cs), (206,300,l), (394,300,l), (379,210,ls), (370,152,o), (331,120,o), (271,120,cs) ); } ); width = 600; } ); unicode = 1240; }, { glyphname = "Obarred-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (404,-10,o), (509,81,o), (530,215,cs), (578,516,ls), (599,651,o), (525,740,o), (373,740,cs), (221,740,o), (119,651,o), (98,516,cs), (50,215,ls), (29,79,o), (102,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (208,120,o), (181,161,o), (191,220,cs), (205,310,l), (405,310,l), (391,220,ls), (381,161,o), (342,120,o), (275,120,cs) ); }, { closed = 1; nodes = ( (237,510,ls), (246,570,o), (286,610,o), (353,610,cs), (420,610,o), (446,570,o), (437,510,cs), (425,435,l), (225,435,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,71,o), (498,201,cs), (550,530,ls), (571,661,o), (504,740,o), (373,740,cs), (242,740,o), (151,661,o), (130,530,cs), (78,201,ls), (57,70,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,69,o), (153,116,o), (167,201,cs), (188,334,l), (430,334,l), (409,201,ls), (395,116,o), (345,69,o), (267,69,cs) ); }, { closed = 1; nodes = ( (219,530,ls), (232,615,o), (282,661,o), (361,661,cs), (440,661,o), (474,615,o), (461,530,cs), (443,414,l), (201,414,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (166,350,l), (456,350,l), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (464,395,l), (174,395,l) ); } ); width = 600; } ); unicode = 1256; }, { export = 0; glyphname = "Zhe-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (87,0,l), (225,354,l), (259,354,l), (208,0,l), (310,0,l), (361,354,l), (396,354,l), (426,0,l), (546,0,l), (507,372,l), (652,730,l), (534,730,l), (399,386,l), (366,386,l), (421,730,l), (319,730,l), (264,386,l), (232,386,l), (209,730,l), (88,730,l), (118,369,l), (-34,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (62,0,l), (242,363,l), (275,363,l), (218,0,l), (294,0,l), (351,363,l), (385,363,l), (453,0,l), (544,0,l), (470,371,l), (650,730,l), (554,730,l), (387,385,l), (355,385,l), (410,730,l), (334,730,l), (279,385,l), (249,385,l), (186,730,l), (94,730,l), (164,381,l), (-32,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (39,0,l), (243,367,l), (291,367,l), (233,0,l), (277,0,l), (335,367,l), (383,367,l), (474,0,l), (526,0,l), (429,373,l), (632,730,l), (580,730,l), (386,383,l), (338,383,l), (393,730,l), (349,730,l), (294,383,l), (246,383,l), (160,730,l), (110,730,l), (201,385,l), (-15,0,l) ); } ); width = 600; } ); }, { export = 0; glyphname = "Ka-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = K.ss00; } ); width = 600; } ); }, { export = 0; glyphname = "Kje-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (610,0); ref = acutecomb.case; }, { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (610,0); ref = acutecomb.case; }, { alignment = -1; ref = K.ss00; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (610,0); ref = acutecomb.case; }, { alignment = -1; ref = K.ss00; } ); width = 600; } ); }, { export = 0; glyphname = "Kadescender-cy.ss00"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (494,-140,l), (523,45,l), (473,45,l), (444,-140,l) ); }, { alignment = -1; pos = (-5,0); ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (519,-140,l), (554,80,l), (474,80,l), (439,-140,l) ); }, { alignment = -1; pos = (-11,0); ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (529,-140,l), (573,140,l), (443,140,l), (399,-140,l) ); }, { alignment = -1; pos = (-15,0); ref = K; } ); width = 600; } ); }, { glyphname = "a-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = a; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = a; } ); width = 600; } ); unicode = 1072; }, { glyphname = "be-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-13,o), (508,75,o), (529,210,cs), (540,279,ls), (562,414,o), (506,494,o), (390,494,cs), (296,494,o), (238,446,o), (227,371,c), (241,385,l), (227,385,l), (238,455,ls), (252,540,o), (306,585,o), (394,585,cs), (559,585,l), (582,730,l), (417,730,ls), (234,730,o), (116,631,o), (88,455,cs), (49,210,ls), (28,75,o), (108,-7,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (210,279,ls), (219,337,o), (256,369,o), (314,369,cs), (372,369,o), (399,337,o), (390,279,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (477,71,o), (498,205,cs), (511,285,ls), (532,416,o), (476,495,o), (360,495,cs), (270,495,o), (208,449,o), (195,370,c), (212,390,l), (198,390,l), (208,455,ls), (227,575,o), (294,640,o), (402,640,cs), (542,640,l), (557,730,l), (417,730,ls), (253,730,o), (146,631,o), (118,455,cs), (78,205,ls), (57,72,o), (124,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (190,70,o), (155,118,o), (168,205,cs), (181,285,ls), (195,373,o), (245,420,o), (323,420,cs), (400,420,o), (435,372,o), (421,285,cs), (408,205,ls), (395,118,o), (344,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (379,-10,o), (461,66,o), (483,200,cs), (496,285,ls), (518,421,o), (464,495,o), (345,495,cs), (246,495,o), (181,445,o), (168,358,c), (187,393,l), (173,393,l), (186,475,ls), (207,606,o), (287,680,o), (409,680,cs), (534,680,l), (542,730,l), (417,730,ls), (262,730,o), (162,640,o), (136,475,cs), (93,200,ls), (71,66,o), (130,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (172,35,o), (126,97,o), (143,200,cs), (156,285,ls), (172,385,o), (235,452,o), (329,452,cs), (419,452,o), (463,389,o), (446,285,cs), (433,200,ls), (416,97,o), (353,35,o), (263,35,cs) ); } ); width = 600; } ); unicode = 1073; }, { glyphname = "ve-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (295,0,ls), (424,0,o), (516,62,o), (531,158,cs), (544,237,o), (497,288,o), (411,290,c), (412,297,l), (487,299,o), (541,341,o), (551,407,cs), (565,494,o), (493,550,o), (364,550,cs), (110,550,l), (23,0,l) ); }, { closed = 1; nodes = ( (208,239,l), (320,239,ls), (369,239,o), (394,214,o), (387,172,cs), (381,130,o), (348,105,o), (299,105,cs), (187,105,l) ); }, { closed = 1; nodes = ( (240,445,l), (342,445,ls), (386,445,o), (409,423,o), (403,386,cs), (397,349,o), (368,327,o), (324,327,cs), (222,327,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (293,0,ls), (409,0,o), (492,60,o), (507,155,cs), (519,236,o), (474,289,o), (391,291,c), (392,295,l), (465,298,o), (518,343,o), (529,411,cs), (543,496,o), (482,550,o), (372,550,cs), (136,550,l), (49,0,l) ); }, { closed = 1; nodes = ( (176,246,l), (332,246,ls), (395,246,o), (427,215,o), (419,163,cs), (410,110,o), (369,79,o), (306,79,cs), (150,79,l) ); }, { closed = 1; nodes = ( (212,471,l), (360,471,ls), (416,471,o), (445,443,o), (438,396,cs), (430,348,o), (392,320,o), (336,320,cs), (188,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (295,0,ls), (402,0,o), (479,59,o), (494,153,cs), (507,233,o), (466,285,o), (393,288,c), (393,291,l), (459,297,o), (507,344,o), (518,412,cs), (532,497,o), (476,550,o), (375,550,cs), (154,550,l), (67,0,l) ); }, { closed = 1; nodes = ( (159,263,l), (337,263,ls), (412,263,o), (455,219,o), (444,154,cs), (434,89,o), (377,45,o), (302,45,cs), (124,45,l) ); }, { closed = 1; nodes = ( (197,505,l), (368,505,ls), (437,505,o), (477,465,o), (467,406,cs), (458,347,o), (406,308,o), (337,308,cs), (166,308,l) ); } ); width = 600; } ); unicode = 1074; }, { glyphname = "ge-cy"; layers = ( { anchors = ( { name = bottom; pos = (266,0); }, { name = top; pos = (373,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-10,o), (516,58,o), (532,160,c), (382,160,l), (377,128,o), (342,107,o), (296,107,cs), (252,107,ls), (197,107,o), (172,128,o), (177,164,cs), (183,197,o), (210,214,o), (264,221,cs), (330,229,ls), (469,246,o), (536,290,o), (552,392,cs), (569,499,o), (504,560,o), (363,560,cs), (325,560,ls), (191,560,o), (93,496,o), (78,398,c), (228,398,l), (233,425,o), (263,443,o), (306,443,cs), (344,443,ls), (394,443,o), (413,426,o), (408,393,cs), (403,362,o), (381,347,o), (334,341,cs), (263,332,ls), (122,314,o), (49,267,o), (32,164,cs), (15,52,o), (84,-10,o), (234,-10,cs), (278,-10,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (266,0); }, { name = top; pos = (373,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (390,-10,o), (469,47,o), (493,135,c), (403,135,l), (389,96,o), (348,70,o), (289,70,cs), (247,70,ls), (176,70,o), (148,103,o), (155,151,cs), (163,198,o), (199,226,o), (261,236,cs), (337,248,ls), (447,265,o), (507,310,o), (522,403,cs), (538,501,o), (484,560,o), (359,560,cs), (321,560,ls), (216,560,o), (140,505,o), (114,421,c), (204,421,l), (218,456,o), (254,480,o), (308,480,cs), (346,480,ls), (414,480,o), (439,452,o), (432,402,cs), (424,357,o), (396,337,o), (337,328,cs), (262,316,ls), (141,297,o), (81,251,o), (65,155,cs), (50,53,o), (105,-10,o), (235,-10,cs), (277,-10,ls) ); } ); width = 600; }, { anchors = ( { name = bottom; pos = (266,0); }, { name = top; pos = (373,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (462,50,o), (485,135,c), (435,135,l), (416,77,o), (358,35,o), (289,35,cs), (222,35,ls), (149,35,o), (110,76,o), (121,140,cs), (130,197,o), (174,241,o), (233,249,cs), (342,264,ls), (438,277,o), (500,329,o), (513,411,cs), (527,502,o), (469,560,o), (363,560,cs), (321,560,ls), (221,560,o), (145,506,o), (123,425,c), (173,425,l), (188,477,o), (243,515,o), (313,515,cs), (355,515,ls), (430,515,o), (473,475,o), (463,412,cs), (453,357,o), (411,323,o), (341,313,cs), (235,298,ls), (149,286,o), (85,228,o), (73,147,cs), (58,52,o), (114,-10,o), (216,-10,cs), (283,-10,ls) ); } ); width = 600; } ); unicode = 1075; }, { glyphname = "gje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ge-cy"; }, { pos = (642,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ge-cy"; }, { pos = (641,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ge-cy"; }, { pos = (651,0); ref = acutecomb; } ); width = 600; } ); unicode = 1107; }, { glyphname = "gheupturn-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (221,0,l), (286,410,l), (556,410,l), (595,655,l), (450,655,l), (433,550,l), (158,550,l), (71,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (176,0,l), (250,468,l), (555,468,l), (585,655,l), (500,655,l), (483,550,l), (173,550,l), (86,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (151,0,l), (231,505,l), (556,505,l), (580,655,l), (530,655,l), (513,550,l), (188,550,l), (101,0,l) ); } ); width = 600; } ); unicode = 1169; }, { glyphname = "de-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-7,o), (508,75,o), (530,210,cs), (568,455,ls), (596,631,o), (509,730,o), (326,730,cs), (161,730,l), (139,585,l), (304,585,ls), (392,585,o), (431,540,o), (418,455,cs), (407,385,l), (393,385,l), (403,371,l), (415,446,o), (373,494,o), (279,494,cs), (163,494,o), (81,414,o), (61,279,cs), (50,210,ls), (28,75,o), (107,-13,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (200,210,cs), (211,279,ls), (220,337,o), (257,369,o), (315,369,cs), (373,369,o), (400,337,o), (391,279,cs), (380,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,205,cs), (537,455,ls), (565,631,o), (489,730,o), (325,730,cs), (185,730,l), (172,640,l), (312,640,ls), (420,640,o), (466,575,o), (447,455,cs), (437,390,l), (423,390,l), (433,370,l), (445,449,o), (398,495,o), (308,495,cs), (192,495,o), (111,416,o), (90,285,cs), (78,205,ls), (57,71,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (154,118,o), (168,205,cs), (180,285,ls), (194,372,o), (244,420,o), (321,420,cs), (399,420,o), (434,373,o), (420,285,cs), (408,205,ls), (394,118,o), (343,70,o), (266,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (379,-10,o), (462,66,o), (483,200,cs), (527,475,ls), (553,640,o), (481,730,o), (326,730,cs), (201,730,l), (194,680,l), (319,680,ls), (441,680,o), (497,606,o), (477,475,cs), (464,393,l), (450,393,l), (458,358,l), (472,445,o), (423,495,o), (324,495,cs), (205,495,o), (128,421,o), (106,285,cs), (93,200,ls), (72,66,o), (130,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (170,35,o), (127,97,o), (143,200,cs), (156,285,ls), (172,389,o), (236,452,o), (326,452,cs), (420,452,o), (462,385,o), (446,285,cs), (433,200,ls), (417,97,o), (351,35,o), (260,35,cs) ); } ); width = 600; } ); unicode = 1076; }, { glyphname = "ie-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = e; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = e; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = e; } ); width = 600; } ); unicode = 1077; }, { glyphname = "io-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = e; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = e; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb; }, { alignment = -1; ref = e; } ); width = 600; } ); unicode = 1105; }, { glyphname = "zhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (93,0,l), (219,255,l), (245,255,l), (205,0,l), (307,0,l), (347,255,l), (378,255,l), (430,0,l), (553,0,l), (493,282,l), (632,550,l), (508,550,l), (380,305,l), (355,305,l), (394,550,l), (292,550,l), (253,305,l), (223,305,l), (181,550,l), (54,550,l), (109,285,l), (-41,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (65,0,l), (206,250,l), (258,250,l), (218,0,l), (294,0,l), (334,250,l), (390,250,l), (450,0,l), (538,0,l), (463,282,l), (617,550,l), (529,550,l), (392,310,l), (343,310,l), (381,550,l), (305,550,l), (267,310,l), (212,310,l), (154,550,l), (69,550,l), (139,285,l), (-26,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (45,0,l), (197,260,l), (275,260,l), (234,0,l), (278,0,l), (319,260,l), (399,260,l), (472,0,l), (521,0,l), (443,282,l), (600,550,l), (548,550,l), (402,300,l), (326,300,l), (365,550,l), (321,550,l), (282,300,l), (202,300,l), (136,550,l), (86,550,l), (159,285,l), (-9,0,l) ); } ); width = 600; } ); unicode = 1078; }, { glyphname = "ze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (284,-7,ls), (419,-7,o), (515,57,o), (531,157,cs), (544,239,o), (487,294,o), (389,294,c), (387,284,l), (478,284,o), (546,333,o), (557,407,cs), (572,499,o), (498,557,o), (367,557,cs), (321,557,ls), (198,557,o), (103,493,o), (70,390,c), (215,390,l), (229,421,o), (262,440,o), (303,440,cs), (349,440,ls), (391,440,o), (411,422,o), (406,389,cs), (401,357,o), (374,338,o), (333,338,cs), (210,338,l), (191,224,l), (320,224,ls), (364,224,o), (388,203,o), (383,168,cs), (377,132,o), (346,110,o), (302,110,cs), (245,110,ls), (204,110,o), (175,129,o), (171,160,c), (26,160,l), (27,57,o), (104,-7,o), (227,-7,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (276,-7,ls), (397,-7,o), (485,54,o), (500,152,cs), (513,234,o), (479,278,o), (386,285,c), (387,289,l), (465,294,o), (517,339,o), (527,405,cs), (542,499,o), (481,557,o), (363,557,cs), (313,557,ls), (207,557,o), (118,498,o), (92,415,c), (187,415,l), (200,450,o), (247,477,o), (301,477,cs), (351,477,ls), (411,477,o), (439,449,o), (431,400,cs), (424,352,o), (386,320,o), (325,320,cs), (207,320,l), (194,242,l), (315,242,ls), (383,242,o), (414,209,o), (406,156,cs), (398,107,o), (354,73,o), (289,73,cs), (242,73,ls), (180,73,o), (140,96,o), (137,130,c), (42,130,l), (42,46,o), (113,-7,o), (229,-7,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (284,-10,ls), (389,-10,o), (470,55,o), (484,146,cs), (495,217,o), (463,274,o), (395,279,c), (396,283,l), (459,287,o), (505,339,o), (516,410,cs), (529,495,o), (469,560,o), (370,560,cs), (314,560,ls), (203,560,o), (144,509,o), (114,425,c), (164,425,l), (189,479,o), (229,515,o), (307,515,cs), (363,515,ls), (429,515,o), (474,464,o), (465,406,cs), (456,348,o), (405,306,o), (339,306,cs), (211,306,l), (204,261,l), (332,261,ls), (404,261,o), (444,210,o), (434,146,cs), (424,85,o), (364,35,o), (292,35,cs), (236,35,ls), (158,35,o), (119,71,o), (112,125,c), (62,125,l), (64,41,o), (117,-10,o), (228,-10,cs) ); } ); width = 600; } ); unicode = 1079; }, { glyphname = "ii-cy"; layers = ( { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (344,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (287,-10,o), (353,47,o), (368,140,c), (319,105,l), (363,105,l), (346,0,l), (491,0,l), (578,550,l), (428,550,l), (374,210,ls), (365,153,o), (329,120,o), (276,120,cs), (222,120,o), (195,153,o), (204,210,cs), (258,550,l), (108,550,l), (52,195,ls), (32,71,o), (89,-10,o), (196,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (318,-10,o), (381,40,o), (395,126,c), (373,105,l), (392,105,l), (375,0,l), (465,0,l), (552,550,l), (462,550,l), (407,200,ls), (393,115,o), (339,66,o), (264,66,cs), (192,66,o), (155,112,o), (167,190,cs), (224,550,l), (134,550,l), (75,180,ls), (57,63,o), (116,-10,o), (226,-10,cs) ); } ); width = 600; }, { anchors = ( { name = bottomright; pos = (536,0); }, { name = top; pos = (344,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (340,-10,o), (412,51,o), (427,146,c), (389,95,l), (412,95,l), (397,0,l), (447,0,l), (534,550,l), (484,550,l), (427,190,ls), (412,93,o), (347,33,o), (259,33,cs), (173,33,o), (129,91,o), (145,190,cs), (202,550,l), (152,550,l), (94,183,ls), (75,65,o), (134,-10,o), (242,-10,cs) ); } ); width = 600; } ); unicode = 1080; }, { glyphname = "iishort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ii-cy"; }, { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ii-cy"; }, { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ii-cy"; }, { pos = (600,0); ref = brevecomb; } ); width = 600; } ); unicode = 1081; }, { glyphname = "ka-cy"; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (209,216,l), (286,216,l), (368,0,l), (534,0,l), (421,276,l), (618,550,l), (448,550,l), (300,342,l), (229,342,l), (262,550,l), (112,550,l), (25,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (143,0,l), (182,245,l), (279,245,l), (400,0,l), (503,0,l), (361,285,l), (587,550,l), (482,550,l), (286,323,l), (194,323,l), (230,550,l), (140,550,l), (53,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (161,264,l), (295,264,l), (429,0,l), (487,0,l), (343,284,l), (570,550,l), (508,550,l), (298,309,l), (168,309,l), (206,550,l), (156,550,l), (69,0,l) ); } ); width = 600; } ); unicode = 1082; }, { glyphname = "kje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy"; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy"; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy"; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); unicode = 1116; }, { glyphname = "el-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (16,-5,ls), (134,-5,o), (227,77,o), (249,200,cs), (286,410,l), (405,410,l), (340,0,l), (490,0,l), (577,550,l), (161,550,l), (101,210,ls), (93,162,o), (63,130,o), (28,130,cs), (-2,130,l), (-24,-5,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (3,-5,ls), (120,-5,o), (179,65,o), (211,240,cs), (252,468,l), (446,468,l), (372,0,l), (462,0,l), (549,550,l), (176,550,l), (122,244,ls), (100,120,o), (73,79,o), (12,79,cs), (-6,79,l), (-20,-5,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (15,-5,ls), (98,-5,o), (160,64,o), (179,169,cs), (241,505,l), (476,505,l), (396,0,l), (446,0,l), (533,550,l), (198,550,l), (130,169,ls), (116,96,o), (74,45,o), (23,45,cs), (-2,45,l), (-10,-5,l) ); } ); width = 600; } ); unicode = 1083; }, { glyphname = "em-cy"; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (119,0,l), (132,85,ls), (152,216,o), (175,385,o), (186,476,c), (236,165,l), (331,165,l), (479,478,l), (459,380,o), (424,205,o), (406,85,cs), (393,0,l), (480,0,l), (567,550,l), (443,550,l), (342,340,ls), (321,296,o), (302,250,o), (293,227,c), (291,250,o), (286,296,o), (278,339,cs), (239,550,l), (119,550,l), (32,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (97,0,l), (138,260,ls), (154,362,o), (169,471,o), (174,525,c), (256,165,l), (309,165,l), (503,525,l), (493,471,o), (472,362,o), (456,260,cs), (415,0,l), (464,0,l), (551,550,l), (475,550,l), (333,290,ls), (316,260,o), (297,221,o), (287,199,c), (283,221,o), (276,261,o), (269,290,cs), (208,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (135,0,l), (151,100,ls), (166,195,o), (178,338,o), (183,420,c), (218,155,l), (345,155,l), (460,420,l), (439,334,o), (407,188,o), (393,100,cs), (377,0,l), (514,0,l), (601,550,l), (430,550,l), (334,345,ls), (312,298,o), (300,257,o), (295,239,c), (296,257,o), (293,298,o), (285,345,cs), (252,550,l), (85,550,l), (-2,0,l) ); } ); width = 600; } ); unicode = 1084; }, { glyphname = "en-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (205,209,l), (373,209,l), (340,0,l), (490,0,l), (577,550,l), (427,550,l), (395,349,l), (227,349,l), (259,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (140,0,l), (178,239,l), (410,239,l), (372,0,l), (462,0,l), (549,550,l), (459,550,l), (423,321,l), (191,321,l), (227,550,l), (137,550,l), (50,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (157,259,l), (436,259,l), (395,0,l), (446,0,l), (533,550,l), (482,550,l), (443,304,l), (164,304,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; } ); unicode = 1085; }, { glyphname = "o-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = o; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = o; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = o; } ); width = 600; } ); unicode = 1086; }, { glyphname = "pe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (237,410,l), (405,410,l), (340,0,l), (490,0,l), (577,550,l), (109,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (140,0,l), (214,468,l), (446,468,l), (372,0,l), (462,0,l), (549,550,l), (137,550,l), (50,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (196,505,l), (476,505,l), (396,0,l), (446,0,l), (533,550,l), (153,550,l), (66,0,l) ); } ); width = 600; } ); unicode = 1087; }, { glyphname = "er-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = p; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = p; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = p; } ); width = 600; } ); unicode = 1088; }, { glyphname = "es-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = c; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-2,0); ref = c; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-2,0); ref = c; } ); width = 600; } ); unicode = 1089; }, { glyphname = "te-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (396,410,l), (576,410,l), (598,550,l), (88,550,l), (66,410,l), (246,410,l), (181,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (376,471,l), (576,471,l), (588,550,l), (98,550,l), (86,471,l), (286,471,l), (211,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (360,500,l), (560,500,l), (568,550,l), (118,550,l), (110,500,l), (310,500,l), (231,0,l) ); } ); width = 600; } ); unicode = 1090; }, { glyphname = "u-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = y; } ); width = 600; } ); unicode = 1091; }, { glyphname = "ushort-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = brevecomb; }, { ref = y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = brevecomb; }, { ref = y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = brevecomb; }, { ref = y; } ); width = 600; } ); unicode = 1118; }, { glyphname = "ef-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (169,118,o), (142,151,o), (151,207,cs), (172,344,ls), (181,400,o), (219,433,o), (271,433,c), (221,118,l) ); }, { closed = 1; nodes = ( (379,433,l), (431,433,o), (457,400,o), (448,344,cs), (427,207,ls), (418,151,o), (381,118,o), (329,118,c) ); }, { closed = 1; nodes = ( (188,-45,o), (169,-60,o), (141,-60,cs), (-3,-60,l), (-23,-180,l), (98,-180,ls), (215,-180,o), (298,-120,o), (313,-25,cs), (317,0,l), (443,0,o), (534,79,o), (554,207,cs), (575,344,ls), (594,470,o), (531,550,o), (404,550,c), (407,569,ls), (411,595,o), (430,610,o), (458,610,cs), (602,610,l), (622,730,l), (501,730,ls), (384,730,o), (301,670,o), (286,575,cs), (282,550,l), (156,550,o), (64,471,o), (45,344,cs), (24,207,ls), (4,79,o), (68,0,o), (195,0,c), (192,-19,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (151,71,o), (113,120,o), (126,202,cs), (149,350,ls), (162,431,o), (216,479,o), (294,479,c), (229,71,l) ); }, { closed = 1; nodes = ( (370,479,l), (448,479,o), (486,431,o), (473,350,cs), (450,202,ls), (437,120,o), (383,71,o), (305,71,c) ); }, { closed = 1; nodes = ( (207,-74,o), (174,-101,o), (119,-101,cs), (4,-101,l), (-9,-180,l), (105,-180,ls), (213,-180,o), (283,-119,o), (293,-20,cs), (296,0,l), (424,0,o), (514,77,o), (534,202,cs), (557,350,ls), (577,474,o), (511,550,o), (383,550,c), (386,570,ls), (394,624,o), (426,651,o), (480,651,cs), (595,651,l), (608,730,l), (494,730,ls), (386,730,o), (321,669,o), (306,570,cs), (303,550,l), (176,550,o), (85,474,o), (65,350,cs), (42,202,ls), (22,77,o), (88,0,o), (216,0,c), (213,-20,ls) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (139,43,o), (88,102,o), (104,202,cs), (127,350,ls), (142,449,o), (212,507,o), (312,507,c), (239,43,l) ); }, { closed = 1; nodes = ( (360,507,l), (460,507,o), (510,449,o), (495,350,cs), (472,202,ls), (456,102,o), (387,43,o), (287,43,c) ); }, { closed = 1; nodes = ( (215,-106,o), (181,-135,o), (130,-135,cs), (17,-135,l), (9,-180,l), (122,-180,ls), (203,-180,o), (261,-133,o), (272,-55,cs), (280,0,l), (408,0,o), (501,77,o), (520,202,cs), (543,350,ls), (562,474,o), (495,550,o), (367,550,c), (376,605,ls), (384,656,o), (418,685,o), (469,685,cs), (585,685,l), (593,730,l), (477,730,ls), (396,730,o), (338,683,o), (327,605,cs), (319,550,l), (191,550,o), (98,474,o), (79,350,cs), (56,202,ls), (37,77,o), (104,0,o), (232,0,c), (223,-55,ls) ); } ); width = 600; } ); unicode = 1092; }, { glyphname = "ha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = x; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = x; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = x; } ); width = 600; } ); unicode = 1093; }, { glyphname = "che-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (573,550,l), (423,550,l), (385,310,l), (366,304,o), (334,300,o), (304,300,cs), (234,300,o), (207,324,o), (216,380,cs), (243,550,l), (93,550,l), (65,370,ls), (44,236,o), (110,165,o), (260,165,cs), (300,165,o), (339,169,o), (364,175,c), (336,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (456,0,l), (543,550,l), (453,550,l), (410,275,l), (397,272,o), (349,270,o), (295,270,cs), (206,270,o), (171,297,o), (181,360,cs), (211,550,l), (121,550,l), (91,360,ls), (73,247,o), (137,188,o), (279,189,cs), (331,189,o), (382,193,o), (397,196,c), (366,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (442,0,l), (529,550,l), (479,550,l), (433,256,l), (402,250,o), (349,246,o), (302,246,cs), (189,246,o), (146,288,o), (162,386,cs), (188,550,l), (138,550,l), (112,386,ls), (92,260,o), (150,200,o), (293,200,cs), (342,200,o), (395,204,o), (426,210,c), (392,0,l) ); } ); width = 600; } ); unicode = 1095; }, { glyphname = "tse-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (512,-140,l), (556,140,l), (481,140,l), (546,550,l), (396,550,l), (331,140,l), (194,140,l), (259,550,l), (109,550,l), (22,0,l), (394,0,l), (372,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (534,80,l), (459,80,l), (533,550,l), (443,550,l), (369,80,l), (153,80,l), (227,550,l), (137,550,l), (50,0,l), (441,0,l), (419,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,-140,l), (513,45,l), (436,45,l), (516,550,l), (466,550,l), (386,45,l), (123,45,l), (203,550,l), (153,550,l), (66,0,l), (456,0,l), (434,-140,l) ); } ); width = 600; } ); unicode = 1094; }, { glyphname = "sha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (603,550,l), (480,550,l), (409,100,l), (324,100,l), (395,550,l), (291,550,l), (220,100,l), (135,100,l), (206,550,l), (83,550,l), (-4,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (492,0,l), (579,550,l), (496,550,l), (420,68,l), (304,68,l), (380,550,l), (308,550,l), (232,68,l), (115,68,l), (191,550,l), (107,550,l), (22,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,0,l), (567,550,l), (519,550,l), (439,43,l), (287,43,l), (367,550,l), (319,550,l), (239,43,l), (87,43,l), (167,550,l), (119,550,l), (32,0,l) ); } ); width = 600; } ); unicode = 1096; }, { glyphname = "shcha-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (521,-140,l), (559,100,l), (494,100,l), (565,550,l), (452,550,l), (381,100,l), (302,100,l), (373,550,l), (274,550,l), (203,100,l), (124,100,l), (195,550,l), (82,550,l), (-5,0,l), (413,0,l), (391,-140,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,-140,l), (543,76,l), (496,76,l), (571,550,l), (490,550,l), (415,76,l), (299,76,l), (374,550,l), (304,550,l), (229,76,l), (113,76,l), (188,550,l), (107,550,l), (20,0,l), (451,0,l), (429,-140,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (499,-140,l), (528,43,l), (481,43,l), (561,550,l), (513,550,l), (433,43,l), (284,43,l), (364,550,l), (316,550,l), (236,43,l), (87,43,l), (167,550,l), (119,550,l), (32,0,l), (471,0,l), (449,-140,l) ); } ); width = 600; } ); unicode = 1097; }, { glyphname = "dzhe-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (311,-125,l), (331,0,l), (490,0,l), (577,550,l), (427,550,l), (362,140,l), (194,140,l), (259,550,l), (109,550,l), (22,0,l), (181,0,l), (161,-125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (281,-125,l), (301,0,l), (462,0,l), (549,550,l), (459,550,l), (385,82,l), (153,82,l), (227,550,l), (137,550,l), (50,0,l), (211,0,l), (191,-125,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-125,l), (284,0,l), (446,0,l), (533,550,l), (478,550,l), (399,50,l), (129,50,l), (208,550,l), (153,550,l), (66,0,l), (229,0,l), (209,-125,l) ); } ); width = 600; } ); unicode = 1119; }, { glyphname = "softsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (441,0,o), (538,73,o), (556,191,cs), (575,312,o), (504,385,o), (366,385,cs), (237,385,l), (263,550,l), (113,550,l), (26,0,l) ); }, { closed = 1; nodes = ( (216,255,l), (336,255,ls), (386,255,o), (412,232,o), (406,193,cs), (399,153,o), (367,130,o), (317,130,cs), (197,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (429,0,o), (517,67,o), (534,174,cs), (551,282,o), (485,348,o), (361,348,cs), (199,348,l), (231,550,l), (141,550,l), (54,0,l) ); }, { closed = 1; nodes = ( (186,266,l), (348,266,ls), (417,266,o), (450,234,o), (441,174,cs), (431,114,o), (388,82,o), (319,82,cs), (157,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (296,0,ls), (414,0,o), (502,68,o), (519,174,cs), (535,280,o), (469,348,o), (351,348,cs), (176,348,l), (208,550,l), (158,550,l), (71,0,l) ); }, { closed = 1; nodes = ( (169,303,l), (344,303,ls), (434,303,o), (481,254,o), (469,174,cs), (456,94,o), (393,45,o), (303,45,cs), (128,45,l) ); } ); width = 600; } ); unicode = 1100; }, { glyphname = "hardsign-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (441,0,o), (538,73,o), (556,191,cs), (575,312,o), (504,385,o), (366,385,cs), (287,385,l), (313,550,l), (43,550,l), (21,410,l), (141,410,l), (76,0,l) ); }, { closed = 1; nodes = ( (266,255,l), (336,255,ls), (386,255,o), (412,232,o), (406,193,cs), (399,153,o), (367,130,o), (317,130,cs), (247,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (306,0,ls), (429,0,o), (517,67,o), (534,174,cs), (551,282,o), (485,348,o), (361,348,cs), (241,348,l), (273,550,l), (43,550,l), (30,470,l), (170,470,l), (96,0,l) ); }, { closed = 1; nodes = ( (228,266,l), (348,266,ls), (417,266,o), (450,234,o), (441,174,cs), (431,114,o), (388,82,o), (319,82,cs), (199,82,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (296,0,ls), (414,0,o), (502,68,o), (519,174,cs), (536,281,o), (471,348,o), (351,348,cs), (201,348,l), (233,550,l), (53,550,l), (45,500,l), (170,500,l), (91,0,l) ); }, { closed = 1; nodes = ( (193,298,l), (343,298,ls), (429,298,o), (476,251,o), (464,174,cs), (452,98,o), (390,50,o), (304,50,cs), (154,50,l) ); } ); width = 600; } ); unicode = 1098; }, { glyphname = "yeru-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (151,0,ls), (268,0,o), (358,73,o), (375,184,cs), (394,300,o), (328,375,o), (210,375,cs), (180,375,l), (208,550,l), (83,550,l), (-4,0,l) ); }, { closed = 1; nodes = ( (162,260,l), (192,260,ls), (240,260,o), (263,233,o), (255,185,cs), (248,140,o), (217,115,o), (169,115,cs), (139,115,l) ); }, { closed = 1; nodes = ( (516,0,l), (603,550,l), (478,550,l), (391,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (150,0,ls), (269,0,o), (352,66,o), (370,174,cs), (387,282,o), (324,348,o), (205,348,cs), (160,348,l), (192,550,l), (108,550,l), (21,0,l) ); }, { closed = 1; nodes = ( (149,276,l), (194,276,ls), (264,276,o), (300,238,o), (290,174,cs), (279,110,o), (231,72,o), (161,72,cs), (116,72,l) ); }, { closed = 1; nodes = ( (491,0,l), (578,550,l), (494,550,l), (407,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,0,ls), (263,0,o), (346,66,o), (363,170,cs), (379,274,o), (316,340,o), (200,340,cs), (140,340,l), (173,550,l), (123,550,l), (36,0,l) ); }, { closed = 1; nodes = ( (133,295,l), (193,295,ls), (281,295,o), (325,249,o), (313,170,cs), (300,91,o), (241,45,o), (153,45,cs), (93,45,l) ); }, { closed = 1; nodes = ( (476,0,l), (563,550,l), (513,550,l), (426,0,l) ); } ); width = 600; } ); unicode = 1099; }, { glyphname = "lje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-21,-5,ls), (83,-5,o), (163,75,o), (185,200,cs), (226,440,l), (304,440,l), (234,0,l), (384,0,ls), (484,0,o), (560,59,o), (575,150,cs), (585,216,ls), (601,313,o), (542,375,o), (442,375,cs), (407,375,l), (435,550,l), (122,550,l), (62,205,ls), (52,145,o), (24,110,o), (-13,110,cs), (-33,110,l), (-51,-5,l) ); }, { closed = 1; nodes = ( (390,264,l), (425,264,ls), (452,264,o), (467,245,o), (462,217,cs), (452,151,ls), (448,126,o), (427,110,o), (400,110,cs), (365,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-25,-5,ls), (61,-5,o), (126,73,o), (146,194,cs), (193,473,l), (316,473,l), (241,0,l), (381,0,ls), (477,0,o), (551,62,o), (565,154,cs), (572,196,ls), (587,288,o), (532,350,o), (436,350,cs), (376,350,l), (408,550,l), (126,550,l), (66,194,ls), (54,125,o), (25,80,o), (-8,80,cs), (-26,80,l), (-40,-5,l) ); }, { closed = 1; nodes = ( (365,276,l), (425,276,ls), (473,276,o), (500,244,o), (492,196,cs), (485,154,ls), (478,106,o), (441,74,o), (393,74,cs), (333,74,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-20,-5,ls), (53,-5,o), (107,59,o), (127,169,cs), (187,505,l), (339,505,l), (259,0,l), (366,0,ls), (462,0,o), (530,57,o), (545,150,cs), (551,190,ls), (566,283,o), (516,340,o), (420,340,cs), (361,340,l), (394,550,l), (146,550,l), (80,169,ls), (65,90,o), (32,45,o), (-12,45,cs), (-32,45,l), (-40,-5,l) ); }, { closed = 1; nodes = ( (354,295,l), (413,295,ls), (480,295,o), (514,256,o), (503,190,cs), (497,150,ls), (486,84,o), (440,45,o), (373,45,cs), (314,45,l) ); } ); width = 600; } ); unicode = 1113; }, { glyphname = "nje-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (119,0,l), (160,260,l), (275,260,l), (234,0,l), (384,0,ls), (482,0,o), (561,60,o), (575,150,cs), (584,211,ls), (600,308,o), (542,370,o), (442,370,cs), (407,370,l), (435,550,l), (321,550,l), (293,370,l), (178,370,l), (206,550,l), (83,550,l), (-4,0,l) ); }, { closed = 1; nodes = ( (389,260,l), (424,260,ls), (451,260,o), (466,241,o), (462,213,cs), (452,151,ls), (448,126,o), (427,110,o), (400,110,cs), (365,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (103,0,l), (147,275,l), (284,275,l), (240,0,l), (374,0,ls), (470,0,o), (544,62,o), (559,155,cs), (565,195,ls), (580,288,o), (525,350,o), (429,350,cs), (368,350,l), (400,550,l), (327,550,l), (295,350,l), (158,350,l), (190,550,l), (107,550,l), (20,0,l) ); }, { closed = 1; nodes = ( (357,275,l), (418,275,ls), (466,275,o), (489,243,o), (482,195,cs), (476,155,ls), (468,107,o), (434,75,o), (386,75,cs), (325,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (79,0,l), (126,297,l), (306,297,l), (259,0,l), (366,0,ls), (462,0,o), (530,57,o), (545,150,cs), (551,190,ls), (566,283,o), (515,340,o), (420,340,cs), (361,340,l), (394,550,l), (346,550,l), (313,340,l), (133,340,l), (166,550,l), (118,550,l), (31,0,l) ); }, { closed = 1; nodes = ( (354,297,l), (413,297,ls), (480,297,o), (514,257,o), (503,190,cs), (497,150,ls), (486,83,o), (440,44,o), (373,44,cs), (314,44,l) ); } ); width = 600; } ); unicode = 1114; }, { glyphname = "dze-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = s; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = s; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = s; } ); width = 600; } ); unicode = 1109; }, { glyphname = "e-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (409,-10,o), (515,68,o), (540,195,c), (390,195,l), (378,147,o), (340,120,o), (285,120,cs), (225,120,o), (197,152,o), (206,210,cs), (208,220,l), (365,220,l), (383,334,l), (226,334,l), (227,340,ls), (236,398,o), (274,430,o), (334,430,cs), (388,430,o), (419,402,o), (415,355,c), (565,355,l), (580,482,o), (500,560,o), (355,560,cs), (208,560,o), (98,473,o), (77,340,cs), (56,210,ls), (35,77,o), (117,-10,o), (264,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (478,63,o), (501,180,c), (411,180,l), (395,110,o), (345,70,o), (271,70,cs), (192,70,o), (155,117,o), (168,200,cs), (174,240,l), (369,240,l), (382,320,l), (187,320,l), (192,351,ls), (205,433,o), (257,480,o), (336,480,cs), (410,480,o), (448,440,o), (441,370,c), (531,370,l), (545,487,o), (476,560,o), (349,560,cs), (216,560,o), (122,481,o), (101,350,cs), (78,200,ls), (57,69,o), (125,-10,o), (258,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (466,64,o), (485,180,c), (435,180,l), (420,90,o), (355,34,o), (263,34,cs), (172,34,o), (126,94,o), (141,190,cs), (151,250,l), (361,250,l), (369,300,l), (159,300,l), (168,360,ls), (183,457,o), (249,516,o), (340,516,cs), (432,516,o), (479,460,o), (465,370,c), (515,370,l), (533,486,o), (468,560,o), (347,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (135,-10,o), (256,-10,cs) ); } ); width = 600; } ); unicode = 1108; }, { glyphname = "ereversed-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (398,-10,o), (508,77,o), (529,210,cs), (550,340,ls), (571,473,o), (489,560,o), (342,560,cs), (197,560,o), (91,482,o), (66,355,c), (216,355,l), (228,402,o), (267,430,o), (321,430,cs), (381,430,o), (409,398,o), (400,340,cs), (399,334,l), (242,334,l), (224,220,l), (381,220,l), (379,210,ls), (370,152,o), (332,120,o), (272,120,cs), (217,120,o), (187,147,o), (191,195,c), (41,195,l), (26,68,o), (106,-10,o), (251,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (477,69,o), (498,200,cs), (521,350,ls), (542,481,o), (474,560,o), (341,560,cs), (214,560,o), (121,487,o), (99,370,c), (189,370,l), (204,440,o), (254,480,o), (328,480,cs), (407,480,o), (445,433,o), (432,351,cs), (427,320,l), (232,320,l), (219,240,l), (414,240,l), (408,200,ls), (395,117,o), (342,70,o), (263,70,cs), (189,70,o), (151,110,o), (159,180,c), (69,180,l), (54,63,o), (123,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (343,560,cs), (222,560,o), (133,486,o), (115,370,c), (165,370,l), (179,460,o), (244,516,o), (336,516,cs), (427,516,o), (473,457,o), (458,360,cs), (449,300,l), (239,300,l), (231,250,l), (441,250,l), (431,190,ls), (416,94,o), (350,34,o), (259,34,cs), (167,34,o), (120,90,o), (135,180,c), (85,180,l), (66,64,o), (131,-10,o), (252,-10,cs) ); } ); width = 600; } ); unicode = 1101; }, { glyphname = "i-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = idotless; }, { pos = (620,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = idotless; }, { pos = (615,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = idotless; }, { pos = (614,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 1110; }, { glyphname = "yi-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = idotless; }, { alignment = 1; pos = (619,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = idotless; }, { alignment = 1; pos = (615,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = idotless; }, { alignment = 1; pos = (614,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 1111; }, { glyphname = "je-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = jdotless; }, { pos = (695,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = jdotless; }, { pos = (685,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = jdotless; }, { pos = (693,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 1112; }, { glyphname = "tshe-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (159,586,l), (66,0,l), (116,0,l), (164,300,ls), (179,397,o), (243,457,o), (331,457,cs), (417,457,o), (461,399,o), (446,300,cs), (398,0,l), (448,0,l), (497,307,ls), (515,425,o), (456,500,o), (348,500,cs), (275,500,o), (216,466,o), (185,410,c), (181,410,l), (194,490,l), (209,586,l), (388,586,l), (395,631,l), (216,631,l), (232,730,l), (182,730,l), (166,631,l), (65,631,l), (58,586,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,570,l), (48,0,l), (138,0,l), (184,290,ls), (197,375,o), (251,424,o), (326,424,cs), (398,424,o), (436,378,o), (424,300,cs), (376,0,l), (466,0,l), (515,310,ls), (534,427,o), (474,500,o), (364,500,cs), (280,500,o), (221,458,o), (200,385,c), (199,385,l), (216,490,l), (228,570,l), (396,570,l), (408,645,l), (240,645,l), (254,730,l), (164,730,l), (150,645,l), (58,645,l), (46,570,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (110,555,l), (22,0,l), (172,0,l), (216,280,ls), (225,337,o), (262,370,o), (315,370,cs), (369,370,o), (395,337,o), (386,280,cs), (342,0,l), (492,0,l), (539,295,ls), (558,419,o), (501,500,o), (394,500,cs), (315,500,o), (255,457,o), (231,385,c), (228,385,l), (250,490,l), (260,555,l), (404,555,l), (418,645,l), (274,645,l), (288,730,l), (138,730,l), (124,645,l), (58,645,l), (44,555,l) ); } ); width = 600; } ); unicode = 1115; }, { glyphname = "iu-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (451,-10,o), (535,56,o), (551,156,cs), (589,395,ls), (604,495,o), (543,560,o), (437,560,cs), (332,560,o), (262,494,o), (247,395,cs), (235,325,l), (160,325,l), (196,550,l), (73,550,l), (-14,0,l), (109,0,l), (145,230,l), (220,230,l), (209,156,ls), (193,56,o), (241,-10,o), (346,-10,cs) ); }, { closed = 1; nodes = ( (332,100,o), (312,123,o), (318,156,cs), (356,395,ls), (361,427,o), (387,450,o), (419,450,cs), (451,450,o), (471,427,o), (466,395,cs), (428,156,ls), (422,123,o), (396,100,o), (364,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (439,-10,o), (515,58,o), (531,160,cs), (568,390,ls), (584,492,o), (530,560,o), (431,560,cs), (338,560,o), (267,493,o), (251,390,cs), (239,315,l), (151,315,l), (188,550,l), (105,550,l), (18,0,l), (101,0,l), (139,243,l), (227,243,l), (214,160,ls), (198,58,o), (248,-10,o), (340,-10,cs) ); }, { closed = 1; nodes = ( (302,60,o), (278,97,o), (288,160,cs), (325,390,ls), (335,453,o), (370,490,o), (420,490,cs), (471,490,o), (495,453,o), (485,390,cs), (448,160,ls), (438,97,o), (403,60,o), (352,60,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (435,-10,o), (502,53,o), (519,160,cs), (556,390,ls), (573,497,o), (526,560,o), (431,560,cs), (337,560,o), (270,497,o), (253,390,cs), (238,299,l), (127,299,l), (167,550,l), (119,550,l), (32,0,l), (80,0,l), (121,259,l), (232,259,l), (216,160,ls), (199,53,o), (246,-10,o), (340,-10,cs) ); }, { closed = 1; nodes = ( (284,35,o), (251,83,o), (263,160,cs), (300,390,ls), (312,467,o), (360,515,o), (424,515,cs), (488,515,o), (520,467,o), (508,390,cs), (471,160,ls), (459,83,o), (412,35,o), (348,35,cs) ); } ); width = 600; } ); unicode = 1102; }, { glyphname = "ia-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (163,0,l), (303,174,l), (369,174,l), (341,0,l), (490,0,l), (577,550,l), (330,550,ls), (186,550,o), (89,478,o), (70,357,cs), (54,262,o), (107,193,o), (207,181,c), (206,245,l), (6,0,l) ); }, { closed = 1; nodes = ( (241,288,o), (212,314,o), (219,359,cs), (226,404,o), (264,431,o), (320,431,cs), (410,431,l), (388,288,l), (298,288,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,0,l), (283,205,l), (404,205,l), (372,0,l), (462,0,l), (549,550,l), (312,550,ls), (188,550,o), (102,485,o), (85,377,cs), (69,280,o), (120,218,o), (223,206,c), (220,243,l), (16,0,l) ); }, { closed = 1; nodes = ( (203,285,o), (168,320,o), (177,377,cs), (186,435,o), (232,470,o), (299,470,cs), (446,470,l), (417,285,l), (270,285,ls) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (100,0,l), (263,208,l), (429,208,l), (396,0,l), (446,0,l), (533,550,l), (323,550,ls), (204,550,o), (118,484,o), (101,379,cs), (86,285,o), (135,223,o), (230,211,c), (227,233,l), (43,0,l) ); }, { closed = 1; nodes = ( (188,254,o), (139,303,o), (151,379,cs), (163,454,o), (229,505,o), (316,505,cs), (476,505,l), (436,254,l), (276,254,ls) ); } ); width = 600; } ); unicode = 1103; }, { glyphname = "dje-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (225,-180,ls), (347,-180,o), (431,-109,o), (450,10,cs), (497,307,ls), (515,425,o), (456,500,o), (348,500,cs), (252,500,o), (179,441,o), (164,350,c), (204,410,l), (181,410,l), (198,520,l), (209,586,l), (388,586,l), (395,631,l), (216,631,l), (232,730,l), (182,730,l), (166,631,l), (65,631,l), (58,586,l), (159,586,l), (66,0,l), (116,0,l), (164,300,ls), (179,397,o), (243,457,o), (331,457,cs), (417,457,o), (461,399,o), (446,300,cs), (400,10,ls), (385,-84,o), (327,-135,o), (233,-135,cs), (165,-135,l), (157,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,-180,ls), (349,-180,o), (448,-98,o), (469,31,cs), (513,310,ls), (532,427,o), (474,500,o), (364,500,cs), (272,500,o), (211,450,o), (198,364,c), (220,385,l), (201,385,l), (218,490,l), (230,570,l), (396,570,l), (408,645,l), (242,645,l), (256,730,l), (166,730,l), (152,645,l), (58,645,l), (46,570,l), (140,570,l), (50,0,l), (140,0,l), (186,290,ls), (199,375,o), (251,424,o), (326,424,cs), (398,424,o), (434,378,o), (422,300,cs), (379,31,ls), (366,-51,o), (311,-97,o), (228,-97,cs), (191,-97,l), (177,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (239,-180,ls), (377,-180,o), (477,-96,o), (498,40,cs), (539,295,ls), (558,419,o), (501,500,o), (394,500,cs), (303,500,o), (237,443,o), (222,350,c), (272,385,l), (228,385,l), (250,490,l), (260,555,l), (404,555,l), (418,645,l), (274,645,l), (288,730,l), (138,730,l), (124,645,l), (58,645,l), (44,555,l), (110,555,l), (22,0,l), (172,0,l), (216,280,ls), (225,337,o), (262,370,o), (315,370,cs), (369,370,o), (395,337,o), (386,280,cs), (349,45,ls), (341,-9,o), (305,-40,o), (251,-40,cs), (200,-40,l), (177,-180,l) ); } ); width = 600; } ); unicode = 1106; }, { glyphname = "ghestroke-cy"; layers = ( { anchors = ( { name = top; pos = (383,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (166,0,l), (208,265,l), (398,265,l), (405,310,l), (215,310,l), (246,505,l), (571,505,l), (578,550,l), (203,550,l), (165,310,l), (65,310,l), (58,265,l), (158,265,l), (116,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (378,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (191,0,l), (229,242,l), (409,242,l), (420,310,l), (240,310,l), (265,468,l), (570,468,l), (583,550,l), (188,550,l), (150,310,l), (60,310,l), (49,242,l), (139,242,l), (101,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (373,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (236,0,l), (265,185,l), (410,185,l), (430,310,l), (285,310,l), (301,410,l), (571,410,l), (593,550,l), (173,550,l), (135,310,l), (50,310,l), (30,185,l), (115,185,l), (86,0,l) ); } ); width = 600; } ); unicode = 1171; }, { glyphname = "kadescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (158,264,l), (291,264,l), (425,0,l), (451,0,l), (429,-140,l), (479,-140,l), (508,45,l), (462,45,l), (339,284,l), (567,550,l), (507,550,l), (297,309,l), (165,309,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (177,245,l), (278,245,l), (399,0,l), (446,0,l), (424,-140,l), (504,-140,l), (539,80,l), (463,80,l), (359,282,l), (586,550,l), (483,550,l), (287,323,l), (189,323,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (206,216,l), (284,216,l), (366,0,l), (416,0,l), (394,-140,l), (524,-140,l), (568,140,l), (479,140,l), (420,275,l), (618,550,l), (451,550,l), (303,342,l), (226,342,l), (259,550,l), (109,550,l), (22,0,l) ); } ); width = 600; } ); unicode = 1179; }, { glyphname = "endescender-cy"; layers = ( { anchors = ( { name = "stick-cy"; pos = (446,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (114,0,l), (155,259,l), (434,259,l), (393,0,l), (444,0,l), (531,550,l), (480,550,l), (441,304,l), (162,304,l), (201,550,l), (151,550,l), (64,0,l) ); }, { closed = 1; nodes = ( (469,-140,l), (498,45,l), (448,45,l), (419,-140,l) ); } ); width = 600; }, { anchors = ( { name = "stick-cy"; pos = (462,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (137,0,l), (175,239,l), (407,239,l), (369,0,l), (459,0,l), (546,550,l), (456,550,l), (420,321,l), (188,321,l), (224,550,l), (134,550,l), (47,0,l) ); }, { closed = 1; nodes = ( (484,-140,l), (519,80,l), (439,80,l), (404,-140,l) ); } ); width = 600; }, { anchors = ( { name = "stick-cy"; pos = (490,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (162,0,l), (195,209,l), (363,209,l), (330,0,l), (480,0,l), (567,550,l), (417,550,l), (385,349,l), (217,349,l), (249,550,l), (99,550,l), (12,0,l) ); }, { closed = 1; nodes = ( (523,-140,l), (567,140,l), (437,140,l), (393,-140,l) ); } ); width = 600; } ); unicode = 1187; }, { glyphname = "ustraight-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = gamma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = gamma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = gamma; } ); width = 600; } ); unicode = 1199; }, { glyphname = "ustraightstroke-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (414,-45,l), (421,0,l), (91,0,l), (84,-45,l) ); }, { ref = gamma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (419,-75,l), (431,0,l), (81,0,l), (69,-75,l) ); }, { ref = gamma; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (422,-90,l), (436,0,l), (76,0,l), (62,-90,l) ); }, { ref = gamma; } ); width = 600; } ); unicode = 1201; }, { glyphname = "chedescender-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (464,-140,l), (493,45,l), (443,45,l), (414,-140,l) ); }, { pos = (-3,0); ref = "che-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (474,-140,l), (509,80,l), (429,80,l), (394,-140,l) ); }, { pos = (-5,0); ref = "che-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (519,-140,l), (563,140,l), (433,140,l), (389,-140,l) ); }, { pos = (-10,0); ref = "che-cy"; } ); width = 600; } ); unicode = 1207; }, { glyphname = "schwa-cy"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,550); ref = e; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,550); ref = e; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,550); ref = e; } ); width = 600; } ); unicode = 1241; }, { glyphname = "obarred-cy"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (399,-10,o), (508,77,o), (529,210,cs), (550,341,ls), (571,472,o), (489,560,o), (345,560,cs), (201,560,o), (91,472,o), (70,341,cs), (49,210,ls), (28,77,o), (109,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (207,113,o), (174,148,o), (184,210,cs), (187,230,l), (397,230,l), (394,210,ls), (384,148,o), (341,113,o), (274,113,cs) ); }, { closed = 1; nodes = ( (205,341,ls), (215,402,o), (258,437,o), (325,437,cs), (392,437,o), (425,402,o), (415,341,cs), (412,325,l), (202,325,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (382,-10,o), (477,72,o), (498,201,cs), (522,351,ls), (542,478,o), (473,560,o), (345,560,cs), (216,560,o), (122,480,o), (101,350,cs), (78,201,ls), (57,71,o), (125,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,69,o), (152,116,o), (166,201,cs), (172,240,l), (416,240,l), (410,201,ls), (396,116,o), (345,69,o), (267,69,cs) ); }, { closed = 1; nodes = ( (189,350,ls), (203,434,o), (254,481,o), (332,481,cs), (410,481,o), (447,434,o), (433,350,cs), (428,315,l), (184,315,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (527,481,o), (463,560,o), (345,560,cs), (227,560,o), (137,481,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (152,257,l), (442,257,l), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (168,360,ls), (184,458,o), (247,516,o), (338,516,cs), (429,516,o), (474,458,o), (458,360,cs), (449,302,l), (159,302,l) ); } ); width = 600; } ); unicode = 1257; }, { export = 0; glyphname = "zhe-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (97,0,l), (226,268,l), (247,268,l), (205,0,l), (307,0,l), (349,268,l), (369,268,l), (432,0,l), (553,0,l), (488,275,l), (632,550,l), (504,550,l), (372,292,l), (353,292,l), (394,550,l), (292,550,l), (251,292,l), (232,292,l), (178,550,l), (54,550,l), (111,292,l), (-41,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (65,0,l), (221,268,l), (260,268,l), (218,0,l), (294,0,l), (336,268,l), (375,268,l), (448,0,l), (538,0,l), (453,280,l), (617,550,l), (529,550,l), (376,292,l), (340,292,l), (381,550,l), (305,550,l), (264,292,l), (226,292,l), (154,550,l), (69,550,l), (148,287,l), (-26,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (44,0,l), (222,271,l), (277,271,l), (234,0,l), (278,0,l), (321,271,l), (373,271,l), (469,0,l), (521,0,l), (422,278,l), (600,550,l), (546,550,l), (376,289,l), (324,289,l), (365,550,l), (321,550,l), (280,289,l), (225,289,l), (136,550,l), (86,550,l), (180,287,l), (-9,0,l) ); } ); width = 600; } ); }, { export = 0; glyphname = "ka-cy.ss00"; layers = ( { anchors = ( { name = top; pos = (343,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (175,0,l), (218,269,l), (224,269,l), (363,0,l), (534,0,l), (385,272,l), (617,550,l), (449,550,l), (229,295,l), (222,295,l), (262,550,l), (112,550,l), (25,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,0,l), (162,272,l), (178,272,l), (419,0,l), (484,0,l), (235,279,l), (565,550,l), (496,550,l), (181,292,l), (165,292,l), (206,550,l), (156,550,l), (69,0,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (343,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (141,0,l), (184,269,l), (203,269,l), (397,0,l), (509,0,l), (304,278,l), (591,550,l), (477,550,l), (206,295,l), (188,295,l), (228,550,l), (138,550,l), (51,0,l) ); } ); width = 600; } ); }, { export = 0; glyphname = "kje-cy.ss00"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; }, { pos = (612,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; }, { pos = (611,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "ka-cy.ss00"; }, { pos = (621,0); ref = acutecomb; } ); width = 600; } ); }, { export = 0; glyphname = "kadescender-cy.ss00"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (158,264,l), (290,264,l), (424,0,l), (451,0,l), (429,-140,l), (479,-140,l), (508,45,l), (462,45,l), (341,289,l), (567,550,l), (507,550,l), (297,309,l), (165,309,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (177,245,l), (276,245,l), (397,0,l), (446,0,l), (424,-140,l), (504,-140,l), (539,80,l), (463,80,l), (360,288,l), (586,550,l), (483,550,l), (287,323,l), (189,323,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (206,216,l), (282,216,l), (364,0,l), (416,0,l), (394,-140,l), (524,-140,l), (568,140,l), (479,140,l), (423,281,l), (618,550,l), (451,550,l), (303,342,l), (226,342,l), (259,550,l), (109,550,l), (22,0,l) ); } ); width = 600; } ); }, { glyphname = Alpha; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; } ); width = 600; } ); unicode = 913; }, { glyphname = Beta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = B; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = B; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = B; } ); width = 600; } ); unicode = 914; }, { glyphname = Gamma; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "Ge-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "Ge-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "Ge-cy"; } ); width = 600; } ); unicode = 915; }, { glyphname = Delta; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (531,0,l), (466,730,l), (276,730,l), (-19,0,l) ); }, { closed = 1; nodes = ( (306,462,ls), (320,501,o), (339,558,o), (349,590,c), (350,558,o), (353,501,o), (355,461,cs), (373,130,l), (184,130,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (433,730,l), (312,730,l), (6,0,l) ); }, { closed = 1; nodes = ( (301,496,ls), (329,565,o), (351,630,o), (362,660,c), (363,630,o), (366,564,o), (372,495,cs), (410,80,l), (132,80,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (488,0,l), (403,730,l), (341,730,l), (24,0,l) ); }, { closed = 1; nodes = ( (311,550,ls), (335,608,o), (357,664,o), (367,690,c), (368,664,o), (372,608,o), (378,550,cs), (433,45,l), (95,45,l) ); } ); width = 600; } ); unicode = 916; }, { glyphname = Epsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = E; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; } ); width = 600; } ); unicode = 917; }, { glyphname = Zeta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Z; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Z; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Z; } ); width = 600; } ); unicode = 918; }, { glyphname = Eta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = H; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = H; } ); width = 600; } ); unicode = 919; }, { glyphname = Theta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (407,352,l), (414,397,l), (224,397,l), (217,352,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (552,531,ls), (573,661,o), (504,740,o), (373,740,cs), (242,740,o), (149,661,o), (128,530,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,71,o), (153,117,o), (166,200,cs), (218,530,ls), (231,613,o), (282,659,o), (360,659,cs), (438,659,o), (475,613,o), (462,530,cs), (410,200,ls), (397,117,o), (345,71,o), (267,71,cs) ); }, { closed = 1; nodes = ( (397,325,l), (410,407,l), (230,407,l), (217,325,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-10,o), (509,78,o), (530,210,cs), (579,520,ls), (600,652,o), (521,740,o), (374,740,cs), (227,740,o), (120,652,o), (99,520,cs), (50,210,ls), (29,78,o), (108,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (216,120,o), (191,152,o), (200,210,cs), (249,520,ls), (259,578,o), (293,610,o), (354,610,cs), (415,610,o), (439,578,o), (429,520,cs), (380,210,ls), (371,152,o), (336,120,o), (276,120,cs) ); }, { closed = 1; nodes = ( (365,304,l), (387,444,l), (266,444,l), (244,304,l) ); } ); width = 600; } ); unicode = 920; }, { glyphname = Iota; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; } ); width = 600; } ); unicode = 921; }, { glyphname = Kappa; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K; } ); width = 600; } ); unicode = 922; }, { glyphname = Lambda; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (77,0,l), (312,550,ls), (346,630,o), (367,690,o), (367,690,c), (367,690,o), (370,630,o), (379,550,cs), (439,0,l), (488,0,l), (403,730,l), (341,730,l), (24,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (101,0,l), (302,496,ls), (340,590,o), (362,660,o), (362,660,c), (362,660,o), (364,590,o), (373,495,cs), (418,0,l), (506,0,l), (433,730,l), (312,730,l), (6,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (137,0,l), (307,462,ls), (327,516,o), (350,590,o), (350,590,c), (350,590,o), (353,516,o), (356,461,cs), (381,0,l), (531,0,l), (466,730,l), (276,730,l), (-19,0,l) ); } ); width = 600; } ); unicode = 923; }, { glyphname = Mu; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = M; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = M; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = M; } ); width = 600; } ); unicode = 924; }, { glyphname = Nu; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = N; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = N; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = N; } ); width = 600; } ); unicode = 925; }, { glyphname = Xi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (579,680,l), (587,730,l), (157,730,l), (149,680,l) ); }, { closed = 1; nodes = ( (471,0,l), (479,50,l), (49,50,l), (41,0,l) ); }, { closed = 1; nodes = ( (486,345,l), (494,395,l), (144,395,l), (136,345,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (579,648,l), (592,730,l), (152,730,l), (139,648,l) ); }, { closed = 1; nodes = ( (476,0,l), (489,82,l), (49,82,l), (36,0,l) ); }, { closed = 1; nodes = ( (498,329,l), (511,411,l), (131,411,l), (118,329,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (584,590,l), (607,730,l), (137,730,l), (114,590,l) ); }, { closed = 1; nodes = ( (491,0,l), (513,140,l), (43,140,l), (21,0,l) ); }, { closed = 1; nodes = ( (509,300,l), (531,440,l), (121,440,l), (99,300,l) ); } ); width = 600; } ); unicode = 926; }, { glyphname = Omicron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = O; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = O; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = O; } ); width = 600; } ); unicode = 927; }, { glyphname = Pi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "Pe-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "Pe-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "Pe-cy"; } ); width = 600; } ); unicode = 928; }, { glyphname = Rho; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = P; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = P; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = P; } ); width = 600; } ); unicode = 929; }, { glyphname = Sigma; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (511,0,l), (518,46,l), (106,46,l), (405,373,l), (203,684,l), (619,684,l), (627,730,l), (157,730,l), (149,682,l), (346,378,l), (49,48,l), (41,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,80,l), (154,80,l), (431,375,l), (237,650,l), (609,650,l), (622,730,l), (147,730,l), (134,650,l), (321,380,l), (44,80,l), (31,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (506,0,l), (527,135,l), (227,135,l), (444,375,l), (295,595,l), (600,595,l), (622,730,l), (137,730,l), (116,600,l), (269,382,l), (42,130,l), (21,0,l) ); } ); width = 600; } ); unicode = 931; }, { glyphname = Tau; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = T; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = T; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = T; } ); width = 600; } ); unicode = 932; }, { glyphname = Upsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; } ); width = 600; } ); unicode = 933; }, { glyphname = Phi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = "Ef-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = "Ef-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = "Ef-cy"; } ); width = 600; } ); unicode = 934; }, { glyphname = Chi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = X; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = X; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = X; } ); width = 600; } ); unicode = 935; }, { glyphname = Psi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (308,170,l), (437,170,o), (529,248,o), (549,372,cs), (606,730,l), (556,730,l), (499,372,ls), (485,281,o), (408,215,o), (315,215,c), (397,730,l), (347,730,l), (265,215,l), (172,215,o), (117,281,o), (131,372,cs), (188,730,l), (138,730,l), (81,372,ls), (61,248,o), (129,170,o), (258,170,c), (231,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (298,0,l), (325,170,l), (448,170,o), (542,252,o), (562,378,cs), (618,730,l), (534,730,l), (478,378,ls), (465,296,o), (412,246,o), (337,246,c), (414,730,l), (330,730,l), (253,246,l), (178,246,o), (141,296,o), (154,378,cs), (210,730,l), (126,730,l), (70,378,ls), (50,252,o), (118,170,o), (241,170,c), (214,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (316,0,l), (343,170,l), (470,173,o), (567,260,o), (588,389,cs), (642,730,l), (515,730,l), (461,389,ls), (451,327,o), (408,286,o), (355,286,c), (426,730,l), (318,730,l), (247,286,l), (194,286,o), (165,327,o), (175,389,cs), (229,730,l), (102,730,l), (48,389,ls), (27,260,o), (96,173,o), (223,170,c), (196,0,l) ); } ); width = 600; } ); unicode = 936; }, { glyphname = Omega; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (216,0,l), (252,230,l), (215,230,o), (195,258,o), (202,300,cs), (236,516,ls), (245,573,o), (291,610,o), (353,610,cs), (415,610,o), (449,573,o), (440,516,cs), (406,300,ls), (399,258,o), (369,230,o), (332,230,c), (296,0,l), (507,0,l), (529,140,l), (383,140,l), (384,146,l), (448,152,o), (540,199,o), (556,305,cs), (590,516,ls), (611,651,o), (525,740,o), (373,740,cs), (221,740,o), (107,651,o), (86,516,cs), (52,305,ls), (36,199,o), (112,151,o), (174,145,c), (173,140,l), (28,140,l), (6,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (216,0,l), (233,110,l), (180,110,o), (152,164,o), (164,240,cs), (209,525,ls), (222,607,o), (282,660,o), (361,660,cs), (440,660,o), (482,607,o), (469,525,cs), (424,240,ls), (412,164,o), (366,110,o), (313,110,c), (296,0,l), (507,0,l), (520,80,l), (374,80,l), (375,86,l), (425,92,o), (498,139,o), (515,245,cs), (559,525,ls), (580,656,o), (508,740,o), (373,740,cs), (238,740,o), (140,656,o), (119,525,cs), (75,245,ls), (58,139,o), (116,91,o), (164,85,c), (164,80,l), (19,80,l), (6,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (216,0,l), (229,85,l), (167,85,o), (137,133,o), (149,210,cs), (201,538,ls), (217,636,o), (280,695,o), (367,695,cs), (453,695,o), (497,636,o), (481,538,cs), (429,210,ls), (417,132,o), (371,84,o), (309,84,c), (296,0,l), (506,0,l), (513,45,l), (348,45,l), (351,60,l), (396,62,o), (462,104,o), (479,210,cs), (531,538,ls), (551,661,o), (489,740,o), (374,740,cs), (257,740,o), (171,661,o), (151,538,cs), (99,210,ls), (82,104,o), (136,62,o), (181,60,c), (178,45,l), (13,45,l), (6,0,l) ); } ); width = 600; } ); unicode = 937; }, { glyphname = Alphatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = A; }, { alignment = -1; pos = (-180,0); ref = tonos.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = A; }, { alignment = -1; pos = (-215,0); ref = tonos.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = A; }, { alignment = -1; pos = (-240,0); ref = tonos.case; } ); width = 600; } ); unicode = 902; }, { glyphname = Epsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = E; }, { alignment = -1; pos = (-300,0); ref = tonos.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = E; }, { alignment = -1; pos = (-340,0); ref = tonos.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = E; }, { alignment = -1; pos = (-350,0); ref = tonos.case; } ); width = 600; } ); unicode = 904; }, { glyphname = Etatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-300,0); ref = tonos.case; }, { ref = H; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-340,0); ref = tonos.case; }, { ref = H; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-350,0); ref = tonos.case; }, { ref = H; } ); width = 600; } ); unicode = 905; }, { glyphname = Iotatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-300,0); ref = tonos.case; }, { ref = I; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-340,0); ref = tonos.case; }, { ref = I; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-350,0); ref = tonos.case; }, { ref = I; } ); width = 600; } ); unicode = 906; }, { glyphname = Omicrontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-270,0); ref = tonos.case; }, { ref = O; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-305,0); ref = tonos.case; }, { ref = O; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-320,0); ref = tonos.case; }, { ref = O; } ); width = 600; } ); unicode = 908; }, { glyphname = Upsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-320,0); ref = tonos.case; }, { ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-350,0); ref = tonos.case; }, { ref = Y; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-390,0); ref = tonos.case; }, { ref = Y; } ); width = 600; } ); unicode = 910; }, { glyphname = Omegatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Omega; }, { alignment = -1; pos = (-270,0); ref = tonos.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Omega; }, { alignment = -1; pos = (-305,0); ref = tonos.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Omega; }, { alignment = -1; pos = (-320,0); ref = tonos.case; } ); width = 600; } ); unicode = 911; }, { glyphname = Iotadieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = I; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = I; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 938; }, { glyphname = Upsilondieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = Y; }, { pos = (601,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = Y; }, { pos = (599,0); ref = dieresiscomb.case; } ); width = 600; } ); unicode = 939; }, { glyphname = KaiSymbol; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (337,-180,ls), (434,-180,o), (496,-129,o), (510,-35,cs), (524,51,l), (474,51,l), (460,-35,ls), (450,-99,o), (409,-135,o), (345,-135,cs), (300,-135,l), (292,-180,l) ); }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,-180,ls), (442,-180,o), (517,-117,o), (536,0,cs), (547,71,l), (461,71,l), (450,0,ls), (440,-62,o), (393,-101,o), (333,-101,cs), (304,-101,l), (291,-180,l) ); }, { alignment = -1; ref = K; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (330,-180,ls), (445,-180,o), (517,-120,o), (534,-10,cs), (552,100,l), (420,100,l), (404,0,ls), (398,-37,o), (377,-55,o), (340,-55,cs), (283,-55,l), (263,-180,l) ); }, { alignment = -1; ref = K; } ); width = 600; } ); unicode = 975; }, { export = 0; glyphname = Kappa.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = K.ss00; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = K.ss00; } ); width = 600; } ); }, { export = 0; glyphname = KaiSymbol.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (326,-180,ls), (423,-180,o), (484,-129,o), (499,-35,cs), (512,51,l), (462,51,l), (449,-35,ls), (439,-99,o), (397,-135,o), (333,-135,cs), (288,-135,l), (281,-180,l) ); }, { ref = K.ss00; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,-180,ls), (442,-180,o), (517,-117,o), (536,0,cs), (547,71,l), (461,71,l), (450,0,ls), (440,-62,o), (393,-101,o), (333,-101,cs), (304,-101,l), (291,-180,l) ); }, { ref = K.ss00; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,-180,ls), (446,-180,o), (517,-120,o), (535,-10,cs), (552,100,l), (420,100,l), (404,0,ls), (398,-37,o), (378,-55,o), (341,-55,cs), (284,-55,l), (264,-180,l) ); }, { ref = K.ss00; } ); width = 600; } ); }, { glyphname = alpha; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = a; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = a; } ); width = 600; } ); unicode = 945; }, { glyphname = beta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (261,0,ls), (393,0,o), (484,80,o), (504,208,cs), (518,299,o), (479,360,o), (400,376,c), (473,395,o), (529,462,o), (543,550,cs), (561,666,o), (500,740,o), (378,740,cs), (261,740,o), (171,661,o), (152,543,cs), (37,-180,l) ); }, { closed = 1; nodes = ( (202,543,ls), (217,635,o), (283,695,o), (371,695,cs), (463,695,o), (507,637,o), (492,545,cs), (478,457,o), (413,397,o), (324,397,cs), (284,397,l), (277,352,l), (317,352,ls), (422,352,o), (468,297,o), (453,200,cs), (437,102,o), (373,45,o), (268,45,cs), (123,45,l) ); } ); width = 600; }, { hints = ( { place = (20,46); type = Stem; }, { place = (393,51); type = Stem; }, { place = (380,51); type = Stem; }, { horizontal = 1; place = (-54,36); type = Stem; }, { horizontal = 1; place = (281,38); type = Stem; }, { horizontal = 1; place = (606,36); type = Stem; }, { place = (20,46); type = Stem; }, { place = (393,51); type = Stem; }, { place = (380,51); type = Stem; }, { horizontal = 1; place = (-54,36); type = Stem; }, { horizontal = 1; place = (281,38); type = Stem; }, { horizontal = 1; place = (606,36); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,-180,l), (138,0,l), (271,0,ls), (400,0,o), (500,86,o), (519,208,cs), (534,304,o), (495,370,o), (417,391,c), (493,412,o), (547,473,o), (560,554,cs), (579,674,o), (504,740,o), (376,740,cs), (248,740,o), (152,658,o), (133,534,cs), (19,-180,l) ); }, { closed = 1; nodes = ( (223,534,ls), (235,611,o), (289,658,o), (363,658,cs), (436,658,o), (475,613,o), (463,536,cs), (452,465,o), (398,413,o), (324,413,cs), (282,413,l), (270,335,l), (314,335,ls), (395,335,o), (437,288,o), (424,211,cs), (412,134,o), (354,82,o), (274,82,cs), (151,82,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (122,-180,l), (151,0,l), (268,0,ls), (417,0,o), (529,84,o), (549,209,cs), (564,300,o), (519,365,o), (435,387,c), (521,406,o), (576,461,o), (589,545,cs), (608,662,o), (520,740,o), (369,740,cs), (227,740,o), (119,650,o), (98,516,cs), (-13,-180,l) ); }, { closed = 1; nodes = ( (233,516,ls), (242,577,o), (287,615,o), (348,615,cs), (410,615,o), (443,577,o), (434,517,cs), (425,462,o), (385,428,o), (329,428,cs), (284,428,l), (266,318,l), (313,318,ls), (376,318,o), (410,281,o), (400,221,cs), (390,161,o), (347,125,o), (283,125,cs), (171,125,l) ); } ); width = 600; } ); unicode = 946; }, { glyphname = gamma; layers = ( { hints = ( { horizontal = 1; place = (-43,21); target = up; type = BottomGhost; }, { horizontal = 1; place = (507,-20); target = down; type = TopGhost; } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (253,-180,l), (282,0,l), (568,550,l), (514,550,l), (310,150,ls), (295,123,o), (282,86,o), (266,52,c), (262,86,o), (254,123,o), (249,150,cs), (170,550,l), (120,550,l), (232,0,l), (203,-180,l) ); } ); width = 600; }, { hints = ( { place = (212,47); type = Stem; }, { horizontal = 1; place = (677,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (-43,21); target = up; type = BottomGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (273,-180,l), (302,0,l), (584,550,l), (489,550,l), (310,185,ls), (288,139,o), (281,103,o), (274,81,c), (273,103,o), (271,139,o), (262,185,cs), (196,550,l), (104,550,l), (212,0,l), (183,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (304,-180,l), (333,0,l), (617,550,l), (461,550,l), (318,240,ls), (301,204,o), (288,154,o), (279,127,c), (277,154,o), (277,204,o), (271,241,cs), (223,550,l), (71,550,l), (183,0,l), (154,-180,l) ); } ); width = 600; } ); unicode = 947; }, { glyphname = delta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (380,-10,o), (462,66,o), (484,200,cs), (498,292,ls), (511,370,o), (490,438,o), (437,492,cs), (245,685,l), (535,685,l), (543,730,l), (198,730,l), (190,683,l), (398,469,l), (394,466,l), (372,483,o), (349,495,o), (313,495,cs), (198,495,o), (129,420,o), (108,292,cs), (94,200,ls), (72,66,o), (131,-10,o), (256,-10,cs) ); }, { closed = 1; nodes = ( (171,35,o), (127,95,o), (144,200,cs), (158,292,ls), (175,397,o), (237,457,o), (329,457,cs), (421,457,o), (465,397,o), (448,292,cs), (434,200,ls), (417,95,o), (356,35,o), (264,35,cs) ); } ); width = 600; }, { hints = ( { horizontal = 1; place = (727,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (652,21); target = up; type = BottomGhost; }, { horizontal = 1; place = (727,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (652,21); target = up; type = BottomGhost; }, { place = (27,47); type = Stem; }, { place = (397,47); type = Stem; }, { horizontal = 1; place = (-53,37); type = Stem; }, { horizontal = 1; place = (317,33); type = Stem; }, { horizontal = 1; place = (717,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (642,21); target = up; type = BottomGhost; }, { place = (27,47); type = Stem; }, { place = (397,47); type = Stem; }, { horizontal = 1; place = (-53,37); type = Stem; }, { horizontal = 1; place = (317,33); type = Stem; }, { horizontal = 1; place = (727,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (652,21); target = up; type = BottomGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (386,-10,o), (478,71,o), (499,205,cs), (513,291,ls), (525,366,o), (503,427,o), (449,481,cs), (280,655,l), (541,655,l), (553,730,l), (181,730,l), (169,655,l), (357,458,l), (352,454,l), (341,464,o), (313,486,o), (268,486,cs), (181,486,o), (111,407,o), (93,288,cs), (79,205,ls), (58,72,o), (125,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (192,70,o), (156,119,o), (169,205,cs), (183,291,ls), (197,380,o), (248,431,o), (324,431,cs), (401,431,o), (437,380,o), (423,291,cs), (409,205,ls), (396,119,o), (344,70,o), (268,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-13,o), (509,75,o), (530,210,cs), (547,316,ls), (560,399,o), (538,449,o), (485,492,cs), (339,610,l), (549,610,l), (568,730,l), (167,730,l), (149,620,l), (341,452,l), (334,445,l), (319,460,o), (287,490,o), (244,490,cs), (154,490,o), (84,426,o), (66,310,cs), (50,210,ls), (29,75,o), (109,-7,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (219,120,o), (191,153,o), (200,210,cs), (217,316,ls), (226,373,o), (264,406,o), (321,406,cs), (378,406,o), (406,373,o), (397,316,cs), (380,210,ls), (371,153,o), (333,120,o), (276,120,cs) ); } ); width = 600; } ); unicode = 948; }, { glyphname = epsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (461,41,o), (491,125,c), (441,125,l), (416,71,o), (367,35,o), (289,35,cs), (233,35,ls), (161,35,o), (115,85,o), (125,146,cs), (135,210,o), (191,261,o), (263,261,cs), (391,261,l), (398,306,l), (270,306,ls), (204,306,o), (167,348,o), (176,406,cs), (185,464,o), (248,515,o), (314,515,cs), (370,515,ls), (448,515,o), (476,479,o), (483,425,c), (533,425,l), (531,509,o), (488,560,o), (377,560,cs), (321,560,ls), (222,560,o), (140,495,o), (127,410,cs), (116,339,o), (144,287,o), (207,283,c), (206,279,l), (136,274,o), (86,217,o), (75,146,cs), (61,55,o), (120,-10,o), (225,-10,cs), (281,-10,ls) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (398,-7,o), (485,46,o), (513,130,c), (418,130,l), (403,96,o), (357,73,o), (295,73,cs), (248,73,ls), (184,73,o), (149,105,o), (157,159,cs), (166,212,o), (211,246,o), (275,246,cs), (386,246,l), (398,324,l), (285,324,ls), (227,324,o), (196,354,o), (204,401,cs), (211,448,o), (253,477,o), (312,477,cs), (362,477,ls), (418,477,o), (450,453,o), (451,415,c), (546,415,l), (547,503,o), (483,557,o), (374,557,cs), (324,557,ls), (206,557,o), (124,500,o), (110,413,cs), (99,342,o), (140,298,o), (218,293,c), (218,289,l), (133,283,o), (74,231,o), (61,152,cs), (46,54,o), (112,-7,o), (235,-7,cs), (282,-7,ls) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (407,-7,o), (504,57,o), (537,160,c), (392,160,l), (378,129,o), (343,110,o), (302,110,cs), (245,110,ls), (201,110,o), (178,132,o), (184,168,cs), (189,203,o), (219,224,o), (263,224,cs), (392,224,l), (411,338,l), (288,338,ls), (247,338,o), (226,357,o), (231,389,cs), (236,422,o), (262,440,o), (304,440,cs), (350,440,ls), (391,440,o), (418,421,o), (422,390,c), (567,390,l), (566,493,o), (491,557,o), (368,557,cs), (322,557,ls), (191,557,o), (99,499,o), (84,407,cs), (73,333,o), (125,284,o), (216,284,c), (218,294,l), (120,294,o), (45,239,o), (32,157,cs), (16,57,o), (92,-7,o), (227,-7,cs), (284,-7,ls) ); } ); width = 600; } ); unicode = 949; }, { glyphname = zeta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,-180,l), (466,-46,ls), (475,10,o), (443,45,o), (383,45,cs), (229,45,ls), (144,45,o), (105,89,o), (118,171,cs), (129,243,o), (175,322,o), (428,554,cs), (559,674,l), (568,730,l), (168,730,l), (160,685,l), (512,685,l), (398,583,ls), (125,332,o), (81,251,o), (68,171,cs), (51,60,o), (104,0,o), (222,0,cs), (376,0,ls), (405,0,o), (420,-18,o), (416,-46,cs), (394,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (487,-180,l), (511,-34,ls), (528,70,o), (477,130,o), (371,130,cs), (261,130,ls), (201,130,o), (173,159,o), (182,212,cs), (190,266,o), (228,317,o), (375,438,cs), (565,594,l), (587,730,l), (151,730,l), (128,590,l), (381,590,l), (291,520,ls), (117,384,o), (46,310,o), (29,200,cs), (8,70,o), (82,0,o), (240,0,cs), (312,0,ls), (346,0,o), (362,-20,o), (357,-54,cs), (337,-180,l) ); } ); width = 600; }, { hints = ( { horizontal = 1; place = (-43,36); type = Stem; }, { horizontal = 1; place = (598,36); type = Stem; }, { horizontal = 1; place = (-43,36); type = Stem; }, { horizontal = 1; place = (598,36); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (463,-180,l), (484,-48,ls), (499,45,o), (465,80,o), (367,80,cs), (240,80,ls), (169,80,o), (133,116,o), (143,174,cs), (154,248,o), (232,350,o), (349,452,cs), (563,640,l), (578,730,l), (163,730,l), (150,648,l), (462,648,l), (290,503,ls), (149,385,o), (67,267,o), (52,168,cs), (36,68,o), (98,0,o), (226,0,cs), (354,0,ls), (388,0,o), (399,-17,o), (394,-48,cs), (373,-180,l) ); } ); width = 600; } ); unicode = 950; }, { glyphname = eta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (116,0,l), (173,360,ls), (188,457,o), (253,517,o), (341,517,cs), (427,517,o), (471,459,o), (455,360,cs), (369,-180,l), (419,-180,l), (506,367,ls), (525,485,o), (466,560,o), (358,560,cs), (260,560,o), (188,499,o), (173,404,c), (211,455,l), (188,455,l), (203,550,l), (153,550,l), (66,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (138,0,l), (193,350,ls), (207,435,o), (261,484,o), (336,484,cs), (408,484,o), (445,438,o), (433,360,cs), (347,-180,l), (437,-180,l), (525,370,ls), (543,487,o), (484,560,o), (374,560,cs), (282,560,o), (219,510,o), (205,424,c), (227,445,l), (208,445,l), (225,550,l), (135,550,l), (48,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (172,0,l), (226,340,ls), (235,397,o), (271,430,o), (324,430,cs), (378,430,o), (405,397,o), (396,340,cs), (313,-180,l), (463,-180,l), (548,355,ls), (568,479,o), (511,560,o), (404,560,cs), (313,560,o), (247,503,o), (232,410,c), (281,445,l), (237,445,l), (254,550,l), (109,550,l), (22,0,l) ); } ); width = 600; } ); unicode = 951; }, { glyphname = theta; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (535,530,ls), (554,651,o), (490,730,o), (372,730,cs), (254,730,o), (164,651,o), (145,530,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (167,352,l), (457,352,l), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (195,530,ls), (210,628,o), (274,686,o), (365,686,cs), (456,686,o), (500,628,o), (485,530,cs), (464,397,l), (174,397,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (479,69,o), (500,200,cs), (551,521,ls), (571,651,o), (503,730,o), (372,730,cs), (241,730,o), (147,651,o), (126,520,cs), (76,200,ls), (55,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (152,115,o), (166,200,cs), (185,325,l), (429,325,l), (410,200,ls), (396,115,o), (345,70,o), (267,70,cs) ); }, { closed = 1; nodes = ( (216,520,ls), (230,605,o), (281,650,o), (359,650,cs), (437,650,o), (474,605,o), (460,520,cs), (442,403,l), (198,403,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (577,510,ls), (598,642,o), (519,730,o), (372,730,cs), (225,730,o), (118,642,o), (97,510,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (214,304,l), (394,304,l), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); }, { closed = 1; nodes = ( (247,510,ls), (256,568,o), (293,600,o), (351,600,cs), (409,600,o), (436,568,o), (427,510,cs), (414,429,l), (234,429,l) ); } ); width = 600; } ); unicode = 952; }, { glyphname = iota; layers = ( { anchors = ( { name = top; pos = (344,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (496,0,l), (503,45,l), (381,45,ls), (322,45,o), (296,76,o), (305,135,cs), (371,550,l), (113,550,l), (106,505,l), (314,505,l), (255,135,ls), (242,48,o), (284,0,o), (374,0,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (344,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (384,82,ls), (341,82,o), (318,110,o), (326,155,cs), (388,550,l), (98,550,l), (85,468,l), (285,468,l), (236,155,ls), (221,61,o), (274,0,o), (371,0,cs) ); } ); width = 600; }, { anchors = ( { name = top; pos = (344,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (537,135,l), (411,135,ls), (375,135,o), (355,159,o), (361,195,cs), (417,550,l), (83,550,l), (62,415,l), (246,415,l), (211,195,ls), (192,78,o), (258,0,o), (375,0,cs) ); } ); width = 600; } ); unicode = 953; }, { glyphname = kappa; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "ka-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "ka-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "ka-cy"; } ); width = 600; } ); unicode = 954; }, { glyphname = lambda; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,0,l), (291,297,ls), (306,329,o), (322,376,o), (329,403,c), (329,376,o), (330,328,o), (335,297,cs), (379,0,l), (532,0,l), (391,730,l), (234,730,l), (279,545,l), (-18,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (108,0,l), (290,357,ls), (313,403,o), (321,441,o), (323,461,c), (327,441,o), (330,403,o), (340,357,cs), (414,0,l), (507,0,l), (349,730,l), (253,730,l), (297,541,l), (7,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,0,l), (279,357,ls), (303,401,o), (328,455,o), (341,483,c), (346,455,o), (357,401,o), (366,357,cs), (437,0,l), (489,0,l), (339,730,l), (282,730,l), (326,539,l), (25,0,l) ); } ); width = 600; } ); unicode = 955; }, { glyphname = mu; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (144,-180,l), (168,-30,l), (185,105,l), (220,105,l), (190,140,l), (175,47,o), (201,-10,o), (258,-10,cs), (315,-10,o), (359,47,o), (374,140,c), (334,105,l), (369,105,l), (347,0,l), (497,0,l), (584,550,l), (434,550,l), (380,210,ls), (371,153,o), (334,120,o), (279,120,cs), (224,120,o), (197,153,o), (206,210,cs), (260,550,l), (110,550,l), (-6,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,-180,l), (137,-20,l), (155,105,l), (175,105,l), (160,126,l), (147,43,o), (162,-10,o), (252,-10,cs), (342,-10,o), (381,43,o), (394,126,c), (373,105,l), (393,105,l), (376,0,l), (464,0,l), (551,550,l), (461,550,l), (406,200,ls), (393,117,o), (340,68,o), (266,68,cs), (192,68,o), (159,117,o), (172,200,cs), (227,550,l), (137,550,l), (21,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (88,-180,l), (117,0,l), (129,75,l), (147,75,l), (129,140,l), (115,50,o), (166,-10,o), (257,-10,cs), (349,-10,o), (420,50,o), (434,140,c), (396,75,l), (414,75,l), (402,0,l), (452,0,l), (539,550,l), (489,550,l), (432,190,ls), (416,91,o), (354,33,o), (264,33,cs), (174,33,o), (131,91,o), (147,190,c), (204,550,l), (154,550,l), (38,-180,l) ); } ); width = 600; } ); unicode = 956; }, { glyphname = nu; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = v; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = v; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = v; } ); width = 600; } ); unicode = 957; }, { glyphname = xi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,-180,l), (499,-46,ls), (508,10,o), (476,45,o), (416,45,cs), (284,45,ls), (182,45,o), (128,107,o), (144,206,cs), (159,305,o), (233,367,o), (335,367,cs), (484,367,l), (491,412,l), (342,412,ls), (249,412,o), (199,464,o), (213,548,cs), (226,632,o), (294,685,o), (390,685,cs), (566,685,l), (574,730,l), (398,730,ls), (271,730,o), (181,660,o), (163,548,cs), (147,449,o), (200,387,o), (301,387,c), (302,393,l), (192,393,o), (112,321,o), (94,206,cs), (74,79,o), (144,0,o), (277,0,cs), (409,0,ls), (438,0,o), (453,-18,o), (449,-46,cs), (427,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (492,-180,l), (516,-34,ls), (532,70,o), (478,135,o), (376,135,cs), (295,135,ls), (232,135,o), (198,171,o), (207,228,cs), (216,285,o), (262,320,o), (325,320,cs), (487,320,l), (507,450,l), (327,450,ls), (277,450,o), (251,478,o), (258,522,cs), (265,567,o), (300,595,o), (350,595,cs), (564,595,l), (586,730,l), (379,730,ls), (238,730,o), (139,661,o), (121,552,cs), (105,451,o), (168,388,o), (285,388,c), (288,404,l), (163,404,o), (73,331,o), (55,215,cs), (34,83,o), (117,0,o), (269,0,cs), (317,0,ls), (350,0,o), (368,-21,o), (362,-54,cs), (342,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (493,-178,l), (513,-48,ls), (526,32,o), (481,82,o), (396,82,cs), (300,82,ls), (207,82,o), (157,133,o), (170,214,cs), (183,296,o), (246,347,o), (334,347,cs), (483,347,l), (496,427,l), (343,427,ls), (267,427,o), (226,470,o), (237,538,cs), (248,606,o), (302,648,o), (378,648,cs), (563,648,l), (576,730,l), (391,730,ls), (258,730,o), (163,660,o), (145,549,cs), (129,449,o), (189,388,o), (301,390,c), (302,400,l), (181,402,o), (93,330,o), (75,214,cs), (54,83,o), (136,0,o), (287,0,cs), (383,0,ls), (412,0,o), (428,-19,o), (423,-48,cs), (403,-178,l) ); } ); width = 600; } ); unicode = 958; }, { glyphname = omicron; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; } ); width = 600; } ); unicode = 959; }, { glyphname = pi; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (531,-5,l), (553,130,l), (529,130,ls), (490,130,o), (469,155,o), (475,195,cs), (511,422,l), (598,422,l), (618,550,l), (54,550,l), (34,422,l), (107,422,l), (40,0,l), (185,0,l), (252,422,l), (366,422,l), (329,190,ls), (310,70,o), (373,-5,o), (493,-5,cs) ); } ); width = 600; }, { hints = ( { place = (57,47); type = Stem; }, { place = (342,47); type = Stem; }, { place = (342,147); type = Stem; }, { horizontal = 1; place = (-48,41); type = Stem; }, { horizontal = 1; place = (425,39); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (511,-5,l), (525,79,l), (501,79,ls), (454,79,o), (429,109,o), (438,164,cs), (486,470,l), (586,470,l), (598,550,l), (69,550,l), (57,470,l), (141,470,l), (66,0,l), (153,0,l), (227,470,l), (400,470,l), (353,170,ls), (336,64,o), (391,-5,o), (492,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (501,-5,l), (508,40,l), (480,40,ls), (434,40,o), (411,73,o), (419,125,cs), (479,505,l), (582,505,l), (589,550,l), (79,550,l), (72,505,l), (162,505,l), (82,0,l), (132,0,l), (212,505,l), (429,505,l), (369,125,ls), (356,45,o), (396,-5,o), (473,-5,cs) ); } ); width = 600; } ); unicode = 960; }, { glyphname = rho; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (128,75,l), (146,75,l), (128,140,l), (114,50,o), (170,-10,o), (267,-10,cs), (376,-10,o), (462,70,o), (481,190,cs), (508,361,ls), (527,482,o), (465,560,o), (348,560,cs), (228,560,o), (142,484,o), (123,361,cs), (37,-180,l) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,190,cs), (173,361,ls), (188,458,o), (251,517,o), (341,517,cs), (430,517,o), (474,459,o), (458,361,cs), (431,190,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,-180,l), (135,-20,l), (153,105,l), (173,105,l), (158,126,l), (145,43,o), (194,-10,o), (284,-10,cs), (395,-10,o), (475,68,o), (495,195,cs), (520,356,ls), (540,483,o), (475,560,o), (346,560,cs), (217,560,o), (124,482,o), (104,356,cs), (19,-180,l) ); }, { closed = 1; nodes = ( (193,68,o), (157,117,o), (170,200,cs), (193,350,ls), (207,435,o), (256,482,o), (332,482,cs), (408,482,o), (443,435,o), (429,350,cs), (406,200,ls), (392,115,o), (343,68,o), (267,68,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (143,-180,l), (167,-30,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs), (422,-10,o), (508,74,o), (528,205,cs), (551,345,ls), (571,475,o), (490,560,o), (348,560,cs), (206,560,o), (97,475,o), (77,345,cs), (-7,-180,l) ); }, { closed = 1; nodes = ( (223,120,o), (196,153,o), (205,210,cs), (226,340,ls), (235,398,o), (271,430,o), (327,430,cs), (383,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; } ); unicode = 961; }, { glyphname = sigmafinal; layers = ( { hints = ( { horizontal = 1; origin = (0,0); target = (0,0); type = Stem; }, { place = (407,-43); type = Stem; }, { horizontal = 1; place = (-223,21); target = up; type = BottomGhost; } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,-180,l), (466,-46,ls), (475,10,o), (443,46,o), (383,46,cs), (266,46,ls), (175,46,o), (128,104,o), (144,200,cs), (169,360,ls), (184,457,o), (249,514,o), (340,514,cs), (432,514,o), (480,460,o), (466,370,c), (516,370,l), (534,486,o), (469,560,o), (348,560,cs), (228,560,o), (138,481,o), (119,360,cs), (94,200,ls), (74,78,o), (138,0,o), (259,0,cs), (376,0,ls), (405,0,o), (420,-18,o), (416,-46,cs), (394,-180,l) ); } ); width = 600; }, { hints = ( { place = (45,47); type = Stem; }, { horizontal = 1; place = (-53,37); type = Stem; }, { horizontal = 1; place = (437,37); type = Stem; }, { place = (142,42); type = Stem; }, { horizontal = 1; place = (27,37); type = Stem; }, { horizontal = 1; place = (-223,-20); target = down; type = TopGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (468,-180,l), (489,-48,ls), (502,33,o), (460,80,o), (372,80,cs), (274,80,ls), (195,80,o), (151,117,o), (164,200,cs), (188,351,ls), (201,433,o), (258,480,o), (337,480,cs), (411,480,o), (451,440,o), (444,370,c), (534,370,l), (548,487,o), (477,560,o), (350,560,cs), (217,560,o), (118,481,o), (97,350,cs), (74,200,ls), (53,69,o), (128,0,o), (261,0,cs), (359,0,ls), (390,0,o), (404,-17,o), (399,-48,cs), (378,-180,l) ); } ); width = 600; }, { hints = ( { horizontal = 1; origin = (0,5); target = (0,0); type = Stem; }, { origin = (0,1); target = (0,4); type = Stem; }, { horizontal = 1; place = (-223,-43); type = Stem; }, { horizontal = 1; place = (-223,21); target = up; type = BottomGhost; } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (509,-180,l), (533,-34,ls), (549,70,o), (499,130,o), (393,130,cs), (281,130,ls), (221,130,o), (193,162,o), (202,220,cs), (221,340,ls), (230,398,o), (268,430,o), (328,430,cs), (382,430,o), (413,402,o), (409,355,c), (559,355,l), (574,482,o), (494,560,o), (349,560,cs), (202,560,o), (92,473,o), (71,340,cs), (52,220,ls), (31,87,o), (113,0,o), (260,0,cs), (334,0,ls), (368,0,o), (385,-20,o), (379,-54,cs), (359,-180,l) ); } ); width = 600; } ); unicode = 962; }, { glyphname = sigma; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (508,360,ls), (522,450,o), (479,512,o), (402,512,c), (436,488,l), (439,506,l), (556,506,l), (563,550,l), (343,550,ls), (227,550,o), (136,473,o), (118,360,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (168,360,ls), (184,458,o), (245,506,o), (336,506,cs), (447,506,o), (474,458,o), (458,360,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (379,-10,o), (477,74,o), (497,200,cs), (519,340,ls), (531,417,o), (492,466,o), (416,466,c), (429,452,l), (431,468,l), (600,468,l), (613,550,l), (340,550,ls), (212,550,o), (115,466,o), (95,340,cs), (73,200,ls), (53,74,o), (123,-10,o), (251,-10,cs) ); }, { closed = 1; nodes = ( (188,70,o), (150,120,o), (163,200,cs), (185,340,ls), (198,420,o), (251,470,o), (327,470,cs), (403,470,o), (442,420,o), (429,340,cs), (407,200,ls), (394,120,o), (340,70,o), (264,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (539,270,ls), (554,366,o), (501,427,o), (400,427,c), (440,385,l), (446,425,l), (578,425,l), (598,550,l), (343,550,ls), (196,550,o), (89,462,o), (68,330,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (218,330,ls), (227,388,o), (265,420,o), (323,420,cs), (381,420,o), (410,402,o), (398,330,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; } ); unicode = 963; }, { glyphname = tau; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (451,0,l), (458,45,l), (348,45,ls), (296,45,o), (273,73,o), (281,125,cs), (341,505,l), (541,505,l), (548,550,l), (113,550,l), (106,505,l), (291,505,l), (231,125,ls), (218,44,o), (257,0,o), (341,0,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (466,0,l), (479,82,l), (354,82,ls), (313,82,o), (297,102,o), (304,145,cs), (355,468,l), (550,468,l), (563,550,l), (98,550,l), (85,468,l), (265,468,l), (214,145,ls), (199,53,o), (246,0,o), (341,0,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (507,135,l), (377,135,ls), (348,135,o), (335,151,o), (340,180,cs), (377,415,l), (562,415,l), (583,550,l), (83,550,l), (62,415,l), (227,415,l), (190,180,ls), (172,68,o), (229,0,o), (341,0,cs) ); } ); width = 600; } ); unicode = 964; }, { glyphname = upsilon; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; } ); width = 600; } ); unicode = 965; }, { glyphname = phi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (252,-180,l), (281,0,l), (412,0,o), (498,75,o), (518,202,cs), (547,382,ls), (563,487,o), (510,550,o), (405,550,cs), (320,550,l), (240,44,l), (138,44,o), (90,103,o), (106,202,cs), (161,550,l), (113,550,l), (58,202,ls), (38,75,o), (100,0,o), (231,0,c), (202,-180,l) ); }, { closed = 1; nodes = ( (359,506,l), (398,506,ls), (473,506,o), (511,460,o), (499,382,cs), (470,202,ls), (454,103,o), (388,44,o), (286,44,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (268,-180,l), (297,0,l), (425,0,o), (513,78,o), (533,202,cs), (563,390,ls), (578,488,o), (521,550,o), (415,550,cs), (307,550,l), (231,71,l), (151,71,o), (113,120,o), (126,202,cs), (181,550,l), (98,550,l), (43,202,ls), (23,78,o), (87,0,o), (215,0,c), (186,-180,l) ); }, { closed = 1; nodes = ( (368,480,l), (404,480,ls), (460,480,o), (489,446,o), (480,390,cs), (450,202,ls), (437,120,o), (382,71,o), (303,71,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-180,l), (317,0,l), (439,0,o), (529,80,o), (549,207,cs), (574,364,ls), (592,478,o), (531,550,o), (417,550,cs), (291,550,l), (222,115,l), (170,115,o), (143,151,o), (152,207,cs), (206,550,l), (83,550,l), (29,207,ls), (9,80,o), (73,0,o), (195,0,c), (166,-180,l) ); }, { closed = 1; nodes = ( (377,435,l), (393,435,ls), (436,435,o), (458,409,o), (451,364,cs), (426,207,ls), (417,149,o), (379,115,o), (326,115,c) ); } ); width = 600; } ); unicode = 966; }, { glyphname = chi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-180); ref = X; } ); width = 600; }, { hints = ( { horizontal = 1; place = (550.803,-20); target = down; type = TopGhost; }, { horizontal = 1; place = (-165,21); target = up; type = BottomGhost; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-180); ref = X; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-180); ref = X; } ); width = 600; } ); unicode = 967; }, { glyphname = psi; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (252,-180,l), (281,0,l), (410,0,o), (494,78,o), (514,202,cs), (569,550,l), (521,550,l), (466,202,ls), (450,101,o), (386,48,o), (287,48,c), (366,550,l), (320,550,l), (241,48,l), (142,48,o), (94,101,o), (110,202,cs), (165,550,l), (117,550,l), (62,202,ls), (42,78,o), (102,0,o), (231,0,c), (202,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (268,-180,l), (297,0,l), (426,0,o), (514,78,o), (534,202,cs), (589,550,l), (506,550,l), (451,202,ls), (438,121,o), (382,71,o), (303,71,c), (379,550,l), (307,550,l), (231,71,l), (152,71,o), (112,121,o), (125,202,cs), (180,550,l), (97,550,l), (42,202,ls), (22,78,o), (86,0,o), (215,0,c), (186,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (288,-180,l), (317,0,l), (447,0,o), (535,79,o), (555,207,cs), (609,550,l), (486,550,l), (432,207,ls), (423,152,o), (380,118,o), (327,118,c), (395,550,l), (291,550,l), (223,118,l), (170,118,o), (137,152,o), (146,207,cs), (200,550,l), (77,550,l), (23,207,ls), (2,78,o), (65,0,o), (195,0,c), (166,-180,l) ); } ); width = 600; } ); unicode = 968; }, { glyphname = omega; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (216,-10,o), (266,38,o), (278,115,c), (272,115,l), (260,38,o), (294,-10,o), (362,-10,cs), (437,-10,o), (495,48,o), (509,140,cs), (548,382,ls), (563,478,o), (522,544,o), (438,560,c), (430,514,l), (484,497,o), (510,448,o), (500,382,cs), (461,140,ls), (450,70,o), (414,34,o), (364,34,cs), (314,34,o), (291,70,o), (302,140,cs), (341,382,l), (295,382,l), (256,140,ls), (245,70,o), (209,34,o), (159,34,cs), (109,34,o), (86,70,o), (97,140,cs), (136,382,ls), (146,448,o), (188,497,o), (246,514,c), (254,560,l), (164,544,o), (103,478,o), (88,382,cs), (49,140,ls), (35,48,o), (73,-10,o), (148,-10,cs) ); } ); width = 600; }, { hints = ( { place = (-24,-43); type = Stem; }, { place = (-24,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { horizontal = 1; place = (464,-43); type = Stem; }, { place = (-28,-43); type = Stem; }, { place = (-28,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; }, { horizontal = 1; place = (454,-43); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (211,-10,o), (266,42,o), (279,126,c), (275,126,l), (262,42,o), (299,-10,o), (374,-10,cs), (452,-10,o), (510,51,o), (526,151,cs), (559,358,ls), (576,466,o), (533,541,o), (445,555,c), (430,460,l), (467,452,o), (482,413,o), (474,358,cs), (441,150,ls), (432,96,o), (405,66,o), (366,66,cs), (327,66,o), (309,96,o), (318,150,cs), (349,345,l), (275,345,l), (244,150,ls), (235,96,o), (207,66,o), (168,66,cs), (129,66,o), (112,96,o), (121,150,cs), (154,358,ls), (163,417,o), (190,458,o), (226,465,c), (241,560,l), (151,546,o), (86,469,o), (69,358,cs), (36,151,ls), (20,51,o), (58,-10,o), (136,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (205,-10,o), (265,46,o), (279,130,c), (277,130,l), (262,46,o), (304,-10,o), (377,-10,cs), (461,-10,o), (527,60,o), (543,165,cs), (570,335,ls), (590,458,o), (533,543,o), (433,560,c), (411,420,l), (439,411,o), (454,377,o), (447,335,cs), (418,152,ls), (413,120,o), (395,102,o), (369,102,cs), (341,102,o), (328,120,o), (333,152,cs), (362,335,l), (258,335,l), (229,152,ls), (224,120,o), (205,102,o), (177,102,cs), (151,102,o), (139,120,o), (144,152,cs), (173,335,ls), (180,377,o), (205,411,o), (237,420,c), (259,560,l), (153,543,o), (70,458,o), (50,335,cs), (23,165,ls), (7,60,o), (49,-10,o), (131,-10,cs) ); } ); width = 600; } ); unicode = 969; }, { glyphname = iotatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = iota; }, { pos = (41,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = iota; }, { pos = (31,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = iota; }, { pos = (31,0); ref = tonos; } ); width = 600; } ); unicode = 943; }, { glyphname = iotadieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = iota; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = iota; }, { pos = (601,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = iota; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 970; }, { glyphname = iotadieresistonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = iota; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = iota; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = iota; }, { alignment = -1; ref = dieresistonos; } ); width = 600; } ); unicode = 912; }, { glyphname = upsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (40,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (30,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (30,0); ref = tonos; } ); width = 600; } ); unicode = 973; }, { glyphname = upsilondieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = u; }, { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = u; }, { pos = (599,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 971; }, { glyphname = upsilondieresistonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = u; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = u; }, { alignment = -1; ref = dieresistonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = u; }, { alignment = -1; ref = dieresistonos; } ); width = 600; } ); unicode = 944; }, { glyphname = omicrontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = o; }, { pos = (40,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = o; }, { pos = (30,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = o; }, { pos = (30,0); ref = tonos; } ); width = 600; } ); unicode = 972; }, { glyphname = omegatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = omega; }, { alignment = -1; pos = (20,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = omega; }, { alignment = -1; pos = (20,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = omega; }, { alignment = -1; pos = (17,0); ref = tonos; } ); width = 600; } ); unicode = 974; }, { glyphname = alphatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (23,0); ref = tonos; }, { alignment = -1; ref = a; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (24,0); ref = tonos; }, { alignment = -1; ref = a; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (21,0); ref = tonos; }, { alignment = -1; ref = a; } ); width = 600; } ); unicode = 940; }, { glyphname = epsilontonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = epsilon; }, { alignment = -1; pos = (11,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = epsilon; }, { alignment = -1; pos = (14,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = epsilon; }, { alignment = -1; pos = (13,0); ref = tonos; } ); width = 600; } ); unicode = 941; }, { glyphname = etatonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = eta; }, { alignment = -1; pos = (45,0); ref = tonos; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = eta; }, { alignment = -1; pos = (35,0); ref = tonos; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = eta; }, { alignment = -1; pos = (35,0); ref = tonos; } ); width = 600; } ); unicode = 942; }, { glyphname = kaiSymbol; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (297,-180,ls), (394,-180,o), (456,-129,o), (470,-35,cs), (484,51,l), (454,51,l), (533,550,l), (465,550,l), (119,45,l), (127,82,o), (140,149,o), (148,200,cs), (203,550,l), (153,550,l), (66,0,l), (133,0,l), (480,505,l), (472,468,o), (460,401,o), (451,350,cs), (396,0,l), (426,0,l), (420,-35,ls), (410,-99,o), (369,-135,o), (305,-135,cs), (260,-135,l), (252,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (290,-180,ls), (412,-180,o), (487,-117,o), (506,0,cs), (517,71,l), (473,71,l), (549,550,l), (434,550,l), (138,80,l), (149,119,o), (166,192,o), (176,250,cs), (223,550,l), (137,550,l), (50,0,l), (165,0,l), (462,471,l), (450,432,o), (433,358,o), (424,300,cs), (376,0,l), (420,0,l), (420,-2,ls), (410,-62,o), (363,-101,o), (303,-101,cs), (274,-101,l), (261,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (330,-180,ls), (445,-180,o), (517,-120,o), (534,-10,cs), (552,100,l), (506,100,l), (577,550,l), (395,550,l), (149,95,l), (167,153,o), (193,249,o), (202,300,cs), (241,550,l), (109,550,l), (22,0,l), (204,0,l), (445,435,l), (429,386,o), (406,301,o), (398,250,cs), (358,0,l), (404,0,l), (404,-1,ls), (398,-38,o), (377,-55,o), (340,-55,cs), (283,-55,l), (263,-180,l) ); } ); width = 600; } ); unicode = 983; }, { glyphname = phiSymbol; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "ef-cy"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "ef-cy"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "ef-cy"; } ); width = 600; } ); unicode = 981; }, { glyphname = piSymbol; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (261,-10,o), (303,38,o), (303,115,c), (297,115,l), (297,38,o), (339,-10,o), (407,-10,cs), (482,-10,o), (530,48,o), (530,140,cs), (530,382,ls), (530,478,o), (479,544,o), (392,560,c), (392,514,l), (448,497,o), (482,448,o), (482,382,cs), (482,140,ls), (482,70,o), (452,34,o), (402,34,cs), (352,34,o), (323,70,o), (323,140,cs), (323,382,l), (277,382,l), (277,140,ls), (277,70,o), (247,34,o), (197,34,cs), (147,34,o), (118,70,o), (118,140,cs), (118,382,ls), (118,448,o), (152,497,o), (208,514,c), (208,560,l), (121,544,o), (70,478,o), (70,382,cs), (70,140,ls), (70,48,o), (118,-10,o), (193,-10,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (204,-10,o), (249,24,o), (269,81,c), (271,24,o), (304,-10,o), (361,-10,cs), (436,-10,o), (494,48,o), (508,140,cs), (548,393,ls), (561,471,o), (519,522,o), (443,522,c), (486,502,l), (486,505,l), (616,505,l), (623,550,l), (63,550,l), (56,505,l), (185,505,l), (185,502,l), (235,522,l), (159,522,o), (101,471,o), (88,393,cs), (48,140,ls), (34,48,o), (72,-10,o), (147,-10,cs) ); }, { closed = 1; nodes = ( (108,34,o), (85,70,o), (96,140,cs), (137,399,ls), (148,469,o), (183,505,o), (233,505,cs), (438,505,ls), (488,505,o), (512,469,o), (501,399,cs), (460,140,ls), (449,70,o), (413,34,o), (363,34,cs), (313,34,o), (290,70,o), (301,140,cs), (340,382,l), (294,382,l), (255,140,ls), (244,70,o), (208,34,o), (158,34,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (198,-10,o), (254,37,o), (273,109,c), (269,37,o), (309,-10,o), (376,-10,cs), (460,-10,o), (526,60,o), (542,165,cs), (560,275,ls), (576,377,o), (530,440,o), (438,440,c), (487,404,l), (490,422,l), (613,422,l), (633,550,l), (53,550,l), (33,422,l), (156,422,l), (153,402,l), (214,440,l), (122,440,o), (56,377,o), (40,275,cs), (22,165,ls), (6,60,o), (48,-10,o), (130,-10,cs) ); }, { closed = 1; nodes = ( (150,102,o), (138,120,o), (143,152,cs), (178,372,ls), (183,404,o), (201,422,o), (227,422,c), (419,422,l), (445,422,o), (457,404,o), (452,372,cs), (417,152,ls), (412,120,o), (394,102,o), (368,102,cs), (340,102,o), (327,120,o), (332,152,cs), (359,325,l), (255,325,l), (228,152,ls), (223,120,o), (204,102,o), (176,102,cs) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (580,468,l), (580,550,l), (20,550,l), (20,468,l) ); }, { closed = 1; nodes = ( (256,-10,o), (302,42,o), (302,126,c), (298,126,l), (298,42,o), (344,-10,o), (419,-10,cs), (497,-10,o), (545,51,o), (545,151,cs), (545,348,ls), (545,459,o), (487,536,o), (400,550,c), (400,468,l), (435,461,o), (460,420,o), (460,361,cs), (460,150,ls), (460,96,o), (438,66,o), (399,66,cs), (360,66,o), (337,96,o), (337,150,cs), (337,345,l), (263,345,l), (263,150,ls), (263,96,o), (240,66,o), (201,66,cs), (162,66,o), (140,96,o), (140,150,cs), (140,361,ls), (140,420,o), (160,461,o), (195,468,c), (195,550,l), (108,536,o), (55,459,o), (55,348,cs), (55,151,ls), (55,51,o), (103,-10,o), (181,-10,cs) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (202,-10,o), (252,30,o), (272,97,c), (272,30,o), (308,-10,o), (374,-10,cs), (452,-10,o), (510,51,o), (526,151,cs), (556,339,ls), (570,429,o), (520,484,o), (425,484,c), (487,459,l), (488,468,l), (616,468,l), (629,550,l), (59,550,l), (46,468,l), (174,468,l), (173,459,l), (243,484,l), (148,484,o), (80,429,o), (66,339,cs), (36,151,ls), (20,51,o), (58,-10,o), (136,-10,cs) ); }, { closed = 1; nodes = ( (129,66,o), (112,96,o), (121,150,cs), (158,384,ls), (166,438,o), (193,468,o), (232,468,cs), (430,468,ls), (469,468,o), (486,438,o), (478,384,cs), (441,150,ls), (432,96,o), (405,66,o), (366,66,cs), (327,66,o), (309,96,o), (318,150,cs), (349,345,l), (275,345,l), (244,150,ls), (235,96,o), (207,66,o), (168,66,cs) ); } ); width = 600; } ); unicode = 982; }, { export = 0; glyphname = kappa.ss00; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = "ka-cy.ss00"; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = "ka-cy.ss00"; } ); width = 600; } ); }, { glyphname = FdoubleStruck; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (236,0,l), (237,361,l), (500,361,l), (500,407,l), (237,407,l), (238,684,l), (525,684,l), (525,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (133,684,l), (193,684,l), (193,46,l), (133,46,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (236,0,l), (237,361,l), (500,361,l), (500,407,l), (237,407,l), (238,684,l), (525,684,l), (525,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (133,684,l), (193,684,l), (193,46,l), (133,46,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (236,0,l), (237,361,l), (500,361,l), (500,407,l), (237,407,l), (238,684,l), (525,684,l), (525,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (133,684,l), (193,684,l), (193,46,l), (133,46,l) ); } ); width = 600; } ); unicode = 120125; }, { glyphname = NdoubleStruck; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (139,0,l), (139,430,ls), (139,467,o), (137,526,o), (135,560,c), (381,0,l), (510,0,l), (510,730,l), (461,730,l), (461,300,ls), (461,264,o), (463,204,o), (465,170,c), (219,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (124,691,l), (190,691,l), (476,39,l), (410,39,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (139,0,l), (139,430,ls), (139,467,o), (137,526,o), (135,560,c), (381,0,l), (510,0,l), (510,730,l), (461,730,l), (461,300,ls), (461,264,o), (463,204,o), (465,170,c), (219,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (124,691,l), (190,691,l), (476,39,l), (410,39,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (139,0,l), (139,430,ls), (139,467,o), (137,526,o), (135,560,c), (381,0,l), (510,0,l), (510,730,l), (461,730,l), (461,300,ls), (461,264,o), (463,204,o), (465,170,c), (219,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (124,691,l), (190,691,l), (476,39,l), (410,39,l) ); } ); width = 600; } ); unicode = 8469; }, { glyphname = QdoubleStruck; layers = ( { anchors = ( { name = top; pos = (300,730); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (510,-180,l), (395,10,l), (459,40,o), (495,106,o), (495,190,cs), (495,540,ls), (495,656,o), (420,740,o), (301,740,cs), (181,740,o), (105,662,o), (105,540,cs), (105,190,ls), (105,69,o), (182,-10,o), (301,-10,cs), (321,-10,o), (343,-7,o), (354,-5,c), (339,0,l), (449,-180,l) ); }, { closed = 1; nodes = ( (249,27,l), (249,709,l), (207,709,l), (207,27,l) ); }, { closed = 1; nodes = ( (209,35,o), (147,92,o), (147,190,cs), (147,540,ls), (147,638,o), (209,695,o), (301,695,cs), (391,695,o), (453,637,o), (453,540,cs), (453,190,ls), (453,92,o), (392,35,o), (301,35,cs) ); }, { closed = 1; nodes = ( (393,27,l), (393,709,l), (351,709,l), (351,27,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (300,730); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (510,-180,l), (395,10,l), (459,40,o), (495,106,o), (495,190,cs), (495,540,ls), (495,656,o), (420,740,o), (301,740,cs), (181,740,o), (105,662,o), (105,540,cs), (105,190,ls), (105,69,o), (182,-10,o), (301,-10,cs), (321,-10,o), (343,-7,o), (354,-5,c), (339,0,l), (449,-180,l) ); }, { closed = 1; nodes = ( (249,27,l), (249,709,l), (207,709,l), (207,27,l) ); }, { closed = 1; nodes = ( (209,35,o), (147,92,o), (147,190,cs), (147,540,ls), (147,638,o), (209,695,o), (301,695,cs), (391,695,o), (453,637,o), (453,540,cs), (453,190,ls), (453,92,o), (392,35,o), (301,35,cs) ); }, { closed = 1; nodes = ( (393,27,l), (393,709,l), (351,709,l), (351,27,l) ); } ); width = 600; }, { anchors = ( { name = top; pos = (300,730); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,-180,l), (395,10,l), (459,40,o), (495,106,o), (495,190,cs), (495,540,ls), (495,656,o), (420,740,o), (301,740,cs), (181,740,o), (105,662,o), (105,540,cs), (105,190,ls), (105,69,o), (182,-10,o), (301,-10,cs), (321,-10,o), (343,-7,o), (354,-5,c), (339,0,l), (449,-180,l) ); }, { closed = 1; nodes = ( (249,27,l), (249,709,l), (207,709,l), (207,27,l) ); }, { closed = 1; nodes = ( (209,35,o), (147,92,o), (147,190,cs), (147,540,ls), (147,638,o), (209,695,o), (301,695,cs), (391,695,o), (453,637,o), (453,540,cs), (453,190,ls), (453,92,o), (392,35,o), (301,35,cs) ); }, { closed = 1; nodes = ( (393,27,l), (393,709,l), (351,709,l), (351,27,l) ); } ); width = 600; } ); unicode = 8474; }, { glyphname = SdoubleStruck; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (78,64,o), (167,-10,o), (287,-10,cs), (428,-10,o), (524,81,o), (524,218,cs), (524,304,o), (480,379,o), (409,413,cs), (295,468,ls), (248,491,o), (219,536,o), (219,586,cs), (219,651,o), (263,695,o), (326,695,cs), (397,695,o), (450,641,o), (457,563,c), (507,563,l), (497,668,o), (413,740,o), (301,740,cs), (172,740,o), (83,654,o), (83,527,cs), (83,451,o), (124,384,o), (189,353,cs), (305,298,ls), (354,275,o), (384,225,o), (384,167,cs), (384,88,o), (335,35,o), (263,35,cs), (186,35,o), (127,91,o), (118,172,c), (68,172,l) ); }, { closed = 1; nodes = ( (126,619,o), (173,681,o), (246,703,c), (203,680,o), (177,636,o), (176,580,cs), (175,517,o), (214,458,o), (278,428,cs), (387,377,ls), (446,349,o), (483,285,o), (483,211,cs), (483,128,o), (439,65,o), (369,37,c), (405,66,o), (427,113,o), (427,173,cs), (427,244,o), (389,306,o), (328,335,cs), (215,389,ls), (160,415,o), (126,471,o), (126,536,cs) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (453,-10,o), (553,77,o), (553,206,cs), (553,324,o), (485,402,o), (356,432,cs), (278,450,ls), (233,460,o), (207,491.999,o), (207,535,cs), (207,583,o), (239,610,o), (296,610,cs), (357,610,o), (391,581,o), (391,535,c), (541,535,l), (541,660,o), (447,740,o), (298,740,cs), (150,740,o), (57,657,o), (57,529,cs), (57,414,o), (129,331,o), (253,302,cs), (327,285,ls), (375,274,o), (403,242,o), (403,199,cs), (403,149,o), (366,120,o), (303,120,cs), (238,120,o), (197,151,o), (197,200,c), (47,200,l), (47,72,o), (146,-10,o), (300,-10,cs) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (78,64,o), (167,-10,o), (287,-10,cs), (428,-10,o), (524,81,o), (524,218,cs), (524,304,o), (480,379,o), (409,413,cs), (295,468,ls), (248,491,o), (219,536,o), (219,586,cs), (219,651,o), (263,695,o), (326,695,cs), (397,695,o), (450,641,o), (457,563,c), (507,563,l), (497,668,o), (413,740,o), (301,740,cs), (172,740,o), (83,654,o), (83,527,cs), (83,451,o), (124,384,o), (189,353,cs), (305,298,ls), (354,275,o), (384,225,o), (384,167,cs), (384,88,o), (335,35,o), (263,35,cs), (186,35,o), (127,91,o), (118,172,c), (68,172,l) ); }, { closed = 1; nodes = ( (126,619,o), (173,681,o), (246,703,c), (203,680,o), (177,636,o), (176,580,cs), (175,517,o), (214,458,o), (278,428,cs), (387,377,ls), (446,349,o), (483,285,o), (483,211,cs), (483,128,o), (439,65,o), (369,37,c), (405,66,o), (427,113,o), (427,173,cs), (427,244,o), (389,306,o), (328,335,cs), (215,389,ls), (160,415,o), (126,471,o), (126,536,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (78,64,o), (167,-10,o), (287,-10,cs), (428,-10,o), (524,81,o), (524,218,cs), (524,304,o), (480,379,o), (409,413,cs), (295,468,ls), (248,491,o), (219,536,o), (219,586,cs), (219,651,o), (263,695,o), (326,695,cs), (397,695,o), (450,641,o), (457,563,c), (507,563,l), (497,668,o), (413,740,o), (301,740,cs), (172,740,o), (83,654,o), (83,527,cs), (83,451,o), (124,384,o), (189,353,cs), (305,298,ls), (354,275,o), (384,225,o), (384,167,cs), (384,88,o), (335,35,o), (263,35,cs), (186,35,o), (127,91,o), (118,172,c), (68,172,l) ); }, { closed = 1; nodes = ( (126,619,o), (173,681,o), (246,703,c), (203,680,o), (177,636,o), (176,580,cs), (175,517,o), (214,458,o), (278,428,cs), (387,377,ls), (446,349,o), (483,285,o), (483,211,cs), (483,128,o), (439,65,o), (369,37,c), (405,66,o), (427,113,o), (427,173,cs), (427,244,o), (389,306,o), (328,335,cs), (215,389,ls), (160,415,o), (126,471,o), (126,536,cs) ); } ); width = 600; } ); unicode = 120138; }, { glyphname = ZdoubleStruck; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (509,0,l), (509,46,l), (244,46,l), (495,680,l), (495,730,l), (95,730,l), (95,684,l), (342,684,l), (91,50,l), (91,0,l) ); }, { closed = 1; nodes = ( (134,46,l), (387,684,l), (452,684,l), (199,46,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (509,0,l), (509,46,l), (244,46,l), (495,680,l), (495,730,l), (95,730,l), (95,684,l), (342,684,l), (91,50,l), (91,0,l) ); }, { closed = 1; nodes = ( (134,46,l), (387,684,l), (452,684,l), (199,46,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (509,0,l), (509,46,l), (244,46,l), (495,680,l), (495,730,l), (95,730,l), (95,684,l), (342,684,l), (91,50,l), (91,0,l) ); }, { closed = 1; nodes = ( (134,46,l), (387,684,l), (452,684,l), (199,46,l) ); } ); width = 600; } ); unicode = 8484; }, { glyphname = zero; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (213,120,o), (180,154,o), (189,210,cs), (238,520,ls), (247,576,o), (290,610,o), (353,610,cs), (416,610,o), (447,576,o), (438,520,cs), (389,210,ls), (380,154,o), (337,120,o), (275,120,cs) ); }, { closed = 1; nodes = ( (354,296,o), (382,325,o), (382,368,cs), (382,410,o), (354,438,o), (312,438,cs), (270,438,o), (242,410,o), (242,368,cs), (242,325,o), (270,296,o), (312,296,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (388,-10,o), (487,75,o), (508,205,cs), (559,525,ls), (580,656,o), (508,740,o), (373,740,cs), (238,740,o), (140,656,o), (119,525,cs), (68,205,ls), (47,74,o), (119,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (187,67,o), (142,124,o), (155,205,cs), (206,525,ls), (219,606,o), (281,663,o), (361,663,cs), (441,663,o), (485,606,o), (472,525,cs), (421,205,ls), (408,124,o), (347,67,o), (267,67,cs) ); }, { closed = 1; nodes = ( (350,306,o), (374,331,o), (374,368,cs), (374,404,o), (350,428,o), (314,428,cs), (278,428,o), (254,404,o), (254,368,cs), (254,331,o), (278,306,o), (314,306,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (383,-10,o), (474,71,o), (495,205,cs), (546,525,ls), (567,659,o), (502,740,o), (374,740,cs), (245,740,o), (153,658,o), (132,525,cs), (81,205,ls), (60,72,o), (126,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (168,40,o), (120,103,o), (136,205,cs), (187,525,ls), (203,627,o), (271,690,o), (366,690,cs), (460,690,o), (507,627,o), (491,525,cs), (440,205,ls), (424,102,o), (357,40,o), (263,40,cs) ); }, { closed = 1; nodes = ( (347,318,o), (367,338,o), (367,368,cs), (367,398,o), (347,418,o), (317,418,cs), (287,418,o), (267,398,o), (267,368,cs), (267,338,o), (287,318,o), (317,318,cs) ); } ); width = 600; } ); unicode = 48; }, { glyphname = one; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (537,130,l), (391,130,l), (486,730,l), (321,730,l), (131,610,l), (106,455,l), (314,593,l), (241,130,l), (57,130,l), (36,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (496,0,l), (509,82,l), (347,82,l), (450,730,l), (327,730,l), (142,607,l), (126,507,l), (348,655,l), (257,82,l), (59,82,l), (46,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (320,45,l), (429,730,l), (363,730,l), (158,595,l), (149,539,l), (371,685,l), (270,45,l), (63,45,l), (56,0,l) ); } ); width = 600; } ); unicode = 49; }, { glyphname = two; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (498,0,l), (519,135,l), (237,135,l), (418,286,ls), (515,367,o), (559,438,o), (573,521,cs), (594,656,o), (513,740,o), (370,740,cs), (220,740,o), (109,648,o), (86,505,c), (236,505,l), (246,568,o), (288,605,o), (346,605,cs), (402,605,o), (430,570,o), (420,507,cs), (414,465,o), (388,426,o), (345,389,cs), (47,132,l), (26,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (482,0,l), (495,82,l), (166,82,l), (392,288,ls), (498,385,o), (543,458,o), (554,528,cs), (574,658,o), (502,740,o), (367,740,cs), (235,740,o), (136,657,o), (111,525,c), (201,525,l), (214,608,o), (274,660,o), (355,660,cs), (435,660,o), (476,609,o), (464,529,cs), (455,473,o), (416,418,o), (335,343,cs), (62,89,l), (48,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (119,45,l), (361,258,ls), (477,360,o), (537,449,o), (551,539,cs), (571,662,o), (500,740,o), (370,740,cs), (241,740,o), (145,660,o), (125,535,c), (175,535,l), (190,634,o), (263,696,o), (363,696,cs), (463,696,o), (516,634,o), (501,536,cs), (488,457,o), (435,382,o), (330,289,cs), (60,50,l), (52,0,l) ); } ); width = 600; } ); unicode = 50; }, { glyphname = three; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (403,-10,o), (508,69,o), (528,200,cs), (537,259,ls), (557,389,o), (477,471,o), (327,471,c), (316,399,l), (565,614,l), (584,730,l), (159,730,l), (139,605,l), (402,605,l), (235,460,l), (216,344,l), (306,344,ls), (366,344,o), (396,313,o), (387,258,cs), (378,200,ls), (369,145,o), (331,115,o), (270,115,cs), (210,115,o), (181,146,o), (190,200,c), (40,200,l), (19,71,o), (100,-10,o), (250,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (380,-10,o), (478,71,o), (498,200,cs), (506,250,ls), (526,378,o), (454,460,o), (321,460,c), (317,433,l), (545,646,l), (559,730,l), (172,730,l), (159,648,l), (444,648,l), (240,458,l), (227,380,l), (306,380,ls), (388,380,o), (429,332,o), (416,250,cs), (408,200,ls), (395,122,o), (339,70,o), (257,70,cs), (176,70,o), (135,119,o), (148,200,c), (58,200,l), (38,74,o), (111,-10,o), (243,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (367,-10,o), (458,68,o), (477,190,cs), (488,261,ls), (507,381,o), (441,456,o), (316,456,c), (315,446,l), (544,682,l), (552,730,l), (188,730,l), (180,685,l), (490,685,l), (268,454,l), (261,411,l), (312,411,ls), (407,411,o), (453,356,o), (438,261,cs), (427,190,ls), (412,94,o), (346,35,o), (253,35,cs), (160,35,o), (112,93,o), (127,190,c), (77,190,l), (58,68,o), (123,-10,o), (245,-10,cs) ); } ); width = 600; } ); unicode = 51; }, { glyphname = four; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (476,0,l), (543,420,l), (393,420,l), (368,264,l), (188,264,l), (193,298,l), (561,730,l), (396,730,l), (60,343,l), (27,134,l), (347,134,l), (326,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (446,0,l), (513,420,l), (423,420,l), (394,242,l), (154,242,l), (160,280,l), (507,730,l), (408,730,l), (74,301,l), (51,160,l), (381,160,l), (356,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (426,0,l), (493,420,l), (443,420,l), (410,215,l), (125,215,l), (132,255,l), (499,729,l), (443,729,l), (84,270,l), (68,170,l), (403,170,l), (376,0,l) ); } ); width = 600; } ); unicode = 52; }, { glyphname = five; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (404,-10,o), (507,71,o), (528,205,cs), (540,276,ls), (560,404,o), (503,479,o), (384,479,cs), (302,479,o), (246,441,o), (236,380,c), (272,405,l), (241,405,l), (273,595,l), (563,595,l), (585,730,l), (154,730,l), (85,330,l), (230,330,l), (248,350,o), (276,360,o), (312,360,cs), (372,360,o), (398,330,o), (390,276,cs), (378,205,ls), (370,151,o), (333,120,o), (274,120,cs), (219,120,o), (191,146,o), (196,190,c), (46,190,l), (30,67,o), (108,-10,o), (253,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-10,o), (483,71,o), (503,200,cs), (514,271,ls), (534,403,o), (477,481,o), (359,480,cs), (275,480,o), (215,441,o), (205,379,c), (237,405,l), (209,405,l), (251,648,l), (548,648,l), (561,730,l), (177,730,l), (108,326,l), (198,326,l), (222,371,o), (268,401,o), (320,401,cs), (403,401,o), (437,354,o), (424,271,cs), (413,200,ls), (400,117,o), (350,70,o), (266,70,cs), (192,70,o), (154,103,o), (156,160,c), (66,160,l), (63,56,o), (133,-10,o), (252,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,-10,o), (468,73,o), (488,204,cs), (499,270,ls), (520,404,o), (468,480,o), (352,480,cs), (256,480,o), (185,427,o), (172,347,c), (202,380,l), (181,380,l), (232,685,l), (544,685,l), (552,730,l), (192,730,l), (123,326,l), (173,326,l), (201,395,o), (255,435,o), (325,435,cs), (421,435,o), (465,374,o), (449,270,cs), (438,204,ls), (421,97,o), (357,35,o), (262,35,cs), (171,35,o), (124,84,o), (132,166,c), (82,166,l), (73,57,o), (137,-10,o), (254,-10,cs) ); } ); width = 600; } ); unicode = 53; }, { glyphname = six; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (408,-10,o), (525,85,o), (547,226,cs), (568,358,o), (505,446,o), (391,446,cs), (334,446,o), (293,421,o), (257,378,c), (251,382,l), (510,730,l), (346,730,l), (145,456,ls), (84,372,o), (49,302,o), (40,242,cs), (16,91,o), (102,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (210,115,o), (173,160,o), (183,224,cs), (193,289,o), (245,335,o), (310,335,cs), (375,335,o), (411,289,o), (401,224,cs), (391,160,o), (340,115,o), (275,115,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (397,-10,o), (506,85,o), (529,227,cs), (550,360,o), (483,449,o), (363,449,cs), (306,449,o), (256,426,o), (226,390,c), (223,393,l), (474,730,l), (375,730,l), (152,427,ls), (99,354,o), (66,287,o), (56,223,cs), (34,84,o), (114,-10,o), (256,-10,cs) ); }, { closed = 1; nodes = ( (181,70,o), (131,132,o), (146,225,cs), (161,318,o), (230,380,o), (317,380,cs), (404,380,o), (453,318,o), (438,225,cs), (423,132,o), (355,70,o), (268,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (386,-9,o), (489,81,o), (511,215,cs), (532,348,o), (465,437,o), (345,437,cs), (278,437,o), (221,408,o), (197,384,c), (194,387,l), (453,730,l), (397,730,l), (160,406,ls), (115,345,o), (79,282,o), (69,220,cs), (48,82,o), (122,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (156,35,o), (98,104,o), (119,215,cs), (136,320,o), (217,395,o), (318,395,cs), (420,395,o), (477,320,o), (461,215,cs), (443,104,o), (363,35,o), (261,35,cs) ); } ); width = 600; } ); unicode = 54; }, { glyphname = seven; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (256,0,l), (615,596,l), (637,730,l), (127,730,l), (87,480,l), (237,480,l), (255,595,l), (455,595,l), (90,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (248,0,l), (603,646,l), (617,730,l), (152,730,l), (120,530,l), (210,530,l), (229,648,l), (509,648,l), (147,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (231,0,l), (598,675,l), (607,730,l), (162,730,l), (130,530,l), (185,530,l), (209,679,l), (546,679,l), (172,0,l) ); } ); width = 600; } ); unicode = 55; }, { glyphname = eight; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (481,61,o), (499,176,cs), (513,261,o), (473,317,o), (369,374,cs), (287,419,ls), (219,456,o), (189,501,o), (199,563,cs), (212,644,o), (280,695,o), (367,695,cs), (457,695,o), (515,641,o), (503,563,cs), (493,504,o), (449,458,o), (361,418,cs), (263,374,ls), (142,320,o), (83,261,o), (69,176,cs), (51,61,o), (126,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (164,35,o), (106,89,o), (119,174,cs), (130,244,o), (186,300,o), (275,340,cs), (372,383,ls), (477,429,o), (542,492,o), (553,566,cs), (569,664,o), (487,740,o), (374,740,cs), (263,740,o), (165,666,o), (149,566,cs), (137,490,o), (179,429,o), (263,384,cs), (345,340,ls), (422,299,o), (460,242,o), (449,173,cs), (436,88,o), (360,35,o), (262,35,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (395,-10,o), (501,69,o), (519,183,cs), (533,272,o), (480,354,o), (386,391,cs), (294,427,ls), (238,449,o), (204,496,o), (213,551,cs), (223,615,o), (283,661,o), (360,661,cs), (437,661,o), (483,616,o), (473,551,cs), (464,498,o), (414,450,o), (348,426,cs), (245,389,ls), (141,352,o), (65,271,o), (51,183,cs), (33,69,o), (113,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (179,70,o), (129,120,o), (140,195,cs), (149,252,o), (194,303,o), (262,328,cs), (363,365,ls), (482,408,o), (549,478,o), (561,554,cs), (579,663,o), (499,741,o), (373,741,cs), (247,741,o), (143,663,o), (125,554,cs), (113,477,o), (157,408,o), (261,366,cs), (351,329,ls), (412,304,o), (442,254,o), (432,195,cs), (421,120,o), (355,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (407,-10,o), (521,68,o), (541,192,cs), (554,276,o), (514,338,o), (418,384,cs), (305,438,ls), (266,457,o), (242,492,o), (248,534,cs), (256,582,o), (299,616,o), (354,616,cs), (408,616,o), (440,582,o), (432,534,cs), (425,491,o), (391,455,o), (347,437,cs), (216,384,ls), (117,344,o), (47,282,o), (33,192,cs), (14,71,o), (103,-10,o), (255,-10,cs) ); }, { closed = 1; nodes = ( (215,114,o), (173,153,o), (181,205,cs), (187,245,o), (231,287,o), (277,306,cs), (424,367,ls), (507,402,o), (566,459,o), (580,544,cs), (597,654,o), (519,740,o), (374,740,cs), (228,740,o), (121,654,o), (104,544,cs), (91,462,o), (132,403,o), (207,367,cs), (333,306,ls), (373,287,o), (403,244,o), (397,204,cs), (389,153,o), (335,114,o), (275,114,cs) ); } ); width = 600; } ); unicode = 56; }, { glyphname = nine; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (292,0,l), (486,275,ls), (545,359,o), (580,430,o), (590,492,cs), (613,637,o), (523,740,o), (374,740,cs), (225,740,o), (104,641,o), (81,501,cs), (61,371,o), (125,278,o), (237,278,cs), (294,278,o), (326,303,o), (362,346,c), (368,342,l), (112,0,l) ); }, { closed = 1; nodes = ( (255,389,o), (217,436,o), (228,503,cs), (238,568,o), (290,615,o), (354,615,cs), (418,615,o), (456,568,o), (446,503,cs), (435,436,o), (383,389,o), (319,389,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (258,0,l), (477,303,ls), (530,376,o), (563,443,o), (573,507,cs), (595,646,o), (515,740,o), (373,740,cs), (232,740,o), (123,645,o), (101,503,cs), (80,370,o), (147,281,o), (267,281,cs), (324,281,o), (370,304,o), (400,340,c), (403,337,l), (154,0,l) ); }, { closed = 1; nodes = ( (225,350,o), (176,412,o), (191,505,cs), (206,598,o), (275,660,o), (362,660,cs), (449,660,o), (498,598,o), (483,505,cs), (468,412,o), (399,350,o), (312,350,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (226,0,l), (468,324,ls), (514,386,o), (542,448,o), (552,510,cs), (574,648,o), (502,740,o), (373,740,cs), (245,740,o), (144,647,o), (122,510,cs), (101,382,o), (174,294,o), (282,294,cs), (349,294,o), (406,322,o), (430,346,c), (433,343,l), (170,0,l) ); }, { closed = 1; nodes = ( (210,334,o), (155,405,o), (172,510,cs), (190,622,o), (267,695,o), (366,695,cs), (468,695,o), (523,622,o), (503,511,cs), (484,404,o), (407,334,o), (309,334,cs) ); } ); width = 600; } ); unicode = 57; }, { glyphname = zero.zero; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (401,-10,o), (508,78,o), (529,210,cs), (578,520,ls), (599,652,o), (520,740,o), (373,740,cs), (226,740,o), (119,652,o), (98,520,cs), (49,210,ls), (28,78,o), (107,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (214,115,o), (180,152,o), (189,210,cs), (238,520,ls), (248,578,o), (292,615,o), (353,615,cs), (414,615,o), (448,578,o), (438,520,cs), (389,210,ls), (380,152,o), (334,115,o), (274,115,cs) ); }, { closed = 1; nodes = ( (160,180,l), (558,550,l), (468,550,l), (70,180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (385,-10,o), (477,69,o), (498,200,cs), (550,531,ls), (571,661,o), (504,740,o), (373,740,cs), (242,740,o), (151,661,o), (130,530,cs), (78,200,ls), (57,69,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (189,70,o), (154,115,o), (168,200,cs), (220,530,ls), (233,615,o), (283,660,o), (361,660,cs), (439,660,o), (473,615,o), (460,530,cs), (408,200,ls), (394,115,o), (345,70,o), (267,70,cs) ); }, { closed = 1; nodes = ( (156,190,l), (547,540,l), (472,540,l), (81,190,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (373,-10,o), (462,68,o), (481,190,cs), (537,540,ls), (556,661,o), (491,740,o), (373,740,cs), (255,740,o), (166,661,o), (147,540,cs), (91,190,ls), (72,68,o), (136,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (169,34,o), (125,91,o), (141,190,cs), (197,540,ls), (212,638,o), (275,696,o), (366,696,cs), (457,696,o), (502,638,o), (487,540,cs), (431,190,ls), (415,91,o), (353,34,o), (261,34,cs) ); }, { closed = 1; nodes = ( (136,190,l), (530,530,l), (492,540,l), (98,201,l) ); } ); width = 600; } ); }, { glyphname = zeroinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = zerosuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = zerosuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = zerosuperior; } ); width = 600; } ); unicode = 8320; }, { glyphname = oneinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-515); ref = onesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-515); ref = onesuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-515); ref = onesuperior; } ); width = 600; } ); unicode = 8321; }, { glyphname = twoinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-515); ref = twosuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-515); ref = twosuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-515); ref = twosuperior; } ); width = 600; } ); unicode = 8322; }, { glyphname = threeinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,-515); ref = threesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,-515); ref = threesuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,-515); ref = threesuperior; } ); width = 600; } ); unicode = 8323; }, { glyphname = fourinferior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = foursuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = foursuperior; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = foursuperior; } ); width = 600; } ); unicode = 8324; }, { glyphname = fiveinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = fivesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = fivesuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = fivesuperior; } ); width = 600; } ); metricLeft = five; metricRight = five; unicode = 8325; }, { glyphname = sixinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = sixsuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = sixsuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = sixsuperior; } ); width = 600; } ); metricLeft = six; metricRight = six; unicode = 8326; }, { glyphname = seveninferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = sevensuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = sevensuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = sevensuperior; } ); width = 600; } ); metricLeft = seven; metricRight = seven; unicode = 8327; }, { glyphname = eightinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-83,-525); ref = eightsuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-83,-525); ref = eightsuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-83,-525); ref = eightsuperior; } ); width = 600; } ); metricLeft = eight; metricRight = eight; unicode = 8328; }, { glyphname = nineinferior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (-82,-515); ref = ninesuperior; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (-82,-515); ref = ninesuperior; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (-82,-515); ref = ninesuperior; } ); width = 600; } ); metricLeft = nine; metricRight = nine; unicode = 8329; }, { glyphname = zerosuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (420,395,o), (493,453,o), (507,545,cs), (530,690,ls), (545,782,o), (490,840,o), (389,840,cs), (288,840,o), (215,782,o), (200,690,cs), (177,545,ls), (163,453,o), (218,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (289,480,o), (266,505,o), (272,545,cs), (295,690,ls), (302,730,o), (333,755,o), (376,755,cs), (419,755,o), (442,730,o), (435,690,cs), (412,545,ls), (406,505,o), (375,480,o), (332,480,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (415,395,o), (482,451,o), (497,544,cs), (521,692,ls), (535,784,o), (485,840,o), (389,840,cs), (293,840,o), (225,784,o), (211,692,cs), (187,544,ls), (172,451,o), (223,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (276,458,o), (249,491,o), (257,544,cs), (281,692,ls), (289,745,o), (326,777,o), (379,777,cs), (432,777,o), (459,745,o), (451,692,cs), (427,544,ls), (419,491,o), (382,458,o), (329,458,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (404,395,o), (467,448,o), (480,530,cs), (508,705,ls), (521,787,o), (474,840,o), (389,840,cs), (304,840,o), (241,787,o), (228,705,cs), (200,530,ls), (187,448,o), (234,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (267,435,o), (236,472,o), (245,530,cs), (273,705,ls), (282,763,o), (325,800,o), (383,800,cs), (441,800,o), (472,763,o), (463,705,cs), (435,530,ls), (426,472,o), (383,435,o), (325,435,cs) ); } ); width = 600; } ); unicode = 8304; }, { glyphname = onesuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,405,l), (509,490,l), (407,490,l), (460,830,l), (340,830,l), (230,756,l), (214,658,l), (352,747,l), (312,490,l), (179,490,l), (165,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,405,l), (490,469,l), (386,469,l), (443,830,l), (348,830,l), (240,759,l), (228,680,l), (363,767,l), (316,469,l), (185,469,l), (175,405,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (470,405,l), (476,445,l), (370,445,l), (431,830,l), (364,830,l), (253,751,l), (245,700,l), (381,795,l), (325,445,l), (196,445,l), (190,405,l) ); } ); width = 600; } ); unicode = 185; }, { glyphname = twosuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (488,405,l), (501,488,l), (300,488,l), (418,553,ls), (482,588,o), (519,635,o), (528,695,cs), (542,783,o), (488,840,o), (391,840,cs), (294,840,o), (222,783,o), (208,694,c), (303,694,l), (309,733,o), (339,758,o), (378,758,cs), (417,758,o), (439,733,o), (433,694,cs), (428,665,o), (408,635,o), (381,619,cs), (189,502,l), (173,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (475,405,l), (485,469,l), (268,469,l), (411,561,ls), (466,597,o), (503,651,o), (511,698,cs), (524,785,o), (477,840,o), (387,840,cs), (301,840,o), (235,784,o), (217,696,c), (287,696,l), (295,746,o), (330,777,o), (377,777,cs), (424,777,o), (449,746,o), (441,696,cs), (436,666,o), (413,634,o), (381,613,cs), (200,492,l), (186,405,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (470,405,l), (476,445,l), (247,445,l), (386,541,ls), (450,585,o), (495,648,o), (504,704,cs), (517,788,o), (472,840,o), (387,840,cs), (302,840,o), (240,785,o), (227,698,c), (272,698,l), (282,761,o), (324,800,o), (381,800,cs), (438,800,o), (468,762,o), (458,701,cs), (452,660,o), (416,611,o), (366,575,cs), (198,456,l), (190,405,l) ); } ); width = 600; } ); unicode = 178; }, { glyphname = threesuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (399,395,o), (472,451,o), (487,542,cs), (500,622,o), (451,674,o), (368,674,c), (362,635,l), (490,741,l), (504,830,l), (240,830,l), (227,747,l), (404,747,l), (318,675,l), (307,609,l), (337,609,ls), (377,609,o), (398,584,o), (392,542,cs), (385,498,o), (357,477,o), (316,477,cs), (274,477,o), (250,498,o), (257,540,c), (162,540,l), (147,451,o), (205,395,o), (303,395,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (394,395,o), (459,449,o), (473,535,cs), (486,617,o), (438,669,o), (350,669,c), (346,639,l), (480,754,l), (493,831,l), (253,831,l), (242,767,l), (422,767,l), (318,678,l), (308,611,l), (338,611,ls), (384,611,o), (408,582,o), (401,535,cs), (393,488,o), (360,458,o), (313,458,cs), (264,458,o), (238,488,o), (246,535,c), (177,535,l), (163,449,o), (212,395,o), (303,395,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (387,395,o), (449,448,o), (462,530,cs), (475,612,o), (429,665,o), (345,665,c), (343,650,l), (476,786,l), (483,830,l), (262,830,l), (256,790,l), (432,790,l), (318,673,l), (310,627,l), (339,627,ls), (395,627,o), (426,589,o), (417,530,cs), (408,472,o), (365,435,o), (309,435,cs), (251,435,o), (220,472,o), (229,530,c), (184,530,l), (171,448,o), (218,395,o), (303,395,cs) ); } ); width = 600; } ); unicode = 179; }, { glyphname = foursuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (460,405,l), (501,660,l), (406,660,l), (391,570,l), (276,570,l), (279,586,l), (489,830,l), (386,830,l), (186,601,l), (169,490,l), (379,490,l), (365,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (448,405,l), (489,665,l), (419,665,l), (403,561,l), (261,561,l), (263,575,l), (484,831,l), (404,831,l), (195,590,l), (181,497,l), (393,497,l), (378,405,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (435,405,l), (475,656,l), (430,656,l), (413,550,l), (248,550,l), (251,566,l), (471,830,l), (419,830,l), (208,580,l), (197,510,l), (407,510,l), (390,405,l) ); } ); width = 600; } ); unicode = 8308; }, { glyphname = fivesuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (390,395,o), (452,450,o), (466,534,cs), (479,617,o), (436,672,o), (356,672,cs), (309,672,o), (269,648,o), (252,612,c), (264,612,l), (292,790,l), (487,790,l), (493,830,l), (253,830,l), (216,593,l), (261,593,l), (275,617,o), (307,633,o), (343,633,cs), (398,633,o), (430,596,o), (421,534,cs), (411,474,o), (368,435,o), (312,435,cs), (260,435,o), (228,470,o), (232,524,c), (187,524,l), (180,446,o), (227,395,o), (306,395,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (396,395,o), (462,450,o), (476,538,cs), (489,620,o), (449,672,o), (373,672,cs), (322,672,o), (280,644,o), (264,599,c), (276,604,l), (301,766,l), (493,766,l), (503,830,l), (241,830,l), (203,588,l), (268,588,l), (283,606,o), (310,618,o), (337,618,cs), (386,618,o), (412,587,o), (404,538,cs), (396,489,o), (362,458,o), (314,458,cs), (272,458,o), (245,480,o), (245,515,c), (175,515,l), (172,441,o), (222,395,o), (304,395,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,395,o), (473,452,o), (486,539,cs), (500,622,o), (456,675,o), (381,675,cs), (325,675,o), (285,644,o), (273,596,c), (286,596,l), (310,745,l), (500,745,l), (513,830,l), (228,830,l), (189,582,l), (284,582,l), (298,597,o), (318,606,o), (339,606,cs), (376,606,o), (398,580,o), (391,539,cs), (385,498,o), (355,472,o), (314,472,cs), (277,472,o), (253,489,o), (254,515,c), (159,515,l), (155,442,o), (212,395,o), (302,395,cs) ); } ); width = 600; } ); unicode = 8309; }, { glyphname = sixsuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (407,395,o), (471,449,o), (484,533,cs), (497,614,o), (455,667,o), (376,667,cs), (336,667,o), (297,647,o), (279,616,c), (309,626,l), (282,626,l), (444,830,l), (394,830,l), (259,658,ls), (232,623,o), (203,577,o), (196,533,cs), (183,449,o), (232,395,o), (320,395,cs) ); }, { closed = 1; nodes = ( (265,435,o), (232,473,o), (241,533,cs), (251,593,o), (296,631,o), (356,631,cs), (416,631,o), (449,593,o), (439,533,cs), (430,473,o), (385,435,o), (325,435,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (414,395,o), (482,451,o), (496,538,cs), (509,619,o), (470,671,o), (397,671,cs), (351,671,o), (310,650,o), (294,617,c), (334,637,l), (300,637,l), (455,830,l), (379,830,l), (247,668,ls), (217,631,o), (193,579,o), (186,538,cs), (172,451,o), (226,395,o), (320,395,cs) ); }, { closed = 1; nodes = ( (277,457,o), (249,488,o), (257,538,cs), (265,588,o), (303,619,o), (354,619,cs), (406,619,o), (433,588,o), (425,538,cs), (417,488,o), (380,457,o), (328,457,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (419,395,o), (494,453,o), (508,540,cs), (520,621,o), (478,675,o), (407,675,cs), (366,675,o), (332,657,o), (309,623,c), (358,643,l), (320,643,l), (471,830,l), (373,830,l), (240,668,ls), (207,628,o), (181,577,o), (176,540,cs), (162,453,o), (220,395,o), (320,395,cs) ); }, { closed = 1; nodes = ( (288,477,o), (263,502,o), (269,540,cs), (275,578,o), (308,603,o), (352,603,cs), (397,603,o), (421,578,o), (415,540,cs), (409,502,o), (377,477,o), (332,477,cs) ); } ); width = 600; } ); unicode = 8310; }, { glyphname = sevensuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (292,405,l), (525,785,l), (532,830,l), (252,830,l), (232,703,l), (277,703,l), (291,790,l), (480,790,l), (241,405,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (312,405,l), (520,750,l), (532,830,l), (242,830,l), (222,703,l), (291,703,l), (301,766,l), (453,766,l), (231,405,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,405,l), (529,732,l), (544,830,l), (222,830,l), (199,683,l), (289,683,l), (299,746,l), (440,746,l), (209,405,l) ); } ); width = 600; } ); unicode = 8311; }, { glyphname = eightsuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (407,395,o), (465,436,o), (476,505,cs), (483,550,o), (455,593,o), (401,621,cs), (320,664,ls), (294,678,o), (283,704,o), (287,735,cs), (294,776,o), (330,800,o), (383,800,cs), (436,800,o), (464,776,o), (457,735,cs), (453,704,o), (431,678,o), (400,664,cs), (302,620,ls), (243,593,o), (203,550,o), (196,505,cs), (185,436,o), (231,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (265,435,o), (234,461,o), (241,504,cs), (247,540,o), (273,572,o), (310,589,cs), (408,632,ls), (461,655,o), (496,694,o), (503,737,cs), (513,802,o), (471,840,o), (389,840,cs), (307,840,o), (253,802,o), (243,737,cs), (236,695,o), (258,657,o), (301,634,cs), (383,590,ls), (418,571,o), (436,539,o), (431,504,cs), (424,461,o), (385,435,o), (325,435,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (411,395,o), (476,440,o), (487,511,cs), (495,561,o), (464,607,o), (407,631,cs), (338,660,ls), (309,672,o), (294,696,o), (298,721,cs), (304,757,o), (335,780,o), (379,780,cs), (424,780,o), (449,758,o), (443,722,cs), (439,695,o), (418,671,o), (389,660,cs), (306,629,ls), (241,605,o), (195,559,o), (187,511,cs), (176,440,o), (227,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (279,457,o), (252,481,o), (258,520,cs), (263,549,o), (284,574,o), (314,586,cs), (396,618,ls), (462,644,o), (508,688,o), (515,733,cs), (526,799,o), (477,840,o), (389,840,cs), (302,840,o), (241,799,o), (230,733,cs), (223,689,o), (255,644,o), (314,617,cs), (382,586,ls), (409,574,o), (423,548,o), (418,519,cs), (412,481,o), (377,457,o), (328,457,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (418,395,o), (491,443,o), (503,515,cs), (510,560,o), (486,612,o), (416,634,cs), (347,656,ls), (315,666,o), (300,692,o), (303,715,cs), (308,742,o), (337,762,o), (377,762,cs), (416,762,o), (439,742,o), (434,715,cs), (431,692,o), (407,666,o), (373,656,cs), (296,634,ls), (221,612,o), (180,561,o), (173,515,cs), (161,443,o), (220,395,o), (319,395,cs) ); }, { closed = 1; nodes = ( (288,473,o), (263,494,o), (268,524,cs), (272,548,o), (297,577,o), (333,588,cs), (417,614,ls), (486,635,o), (520,682,o), (527,724,cs), (538,793,o), (482,840,o), (389,840,cs), (294,840,o), (224,793,o), (213,724,cs), (206,682,o), (227,635,o), (289,614,cs), (365,588,ls), (397,577,o), (415,548,o), (411,524,cs), (406,494,o), (374,473,o), (331,473,cs) ); } ); width = 600; } ); unicode = 8312; }, { glyphname = ninesuperior; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (313,405,l), (448,577,ls), (476,612,o), (504,658,o), (511,702,cs), (524,786,o), (476,840,o), (388,840,cs), (301,840,o), (236,786,o), (223,702,cs), (210,621,o), (253,568,o), (332,568,cs), (372,568,o), (410,588,o), (429,619,c), (398,609,l), (426,609,l), (265,405,l) ); }, { closed = 1; nodes = ( (292,604,o), (259,642,o), (268,702,cs), (278,762,o), (323,800,o), (383,800,cs), (443,800,o), (476,762,o), (466,702,cs), (457,642,o), (412,604,o), (352,604,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (329,405,l), (461,569,ls), (492,607,o), (516,658,o), (522,697,cs), (536,784,o), (484,840,o), (389,840,cs), (295,840,o), (226,784,o), (212,697,cs), (200,616,o), (238,564,o), (311,564,cs), (358,564,o), (399,585,o), (415,618,c), (375,598,l), (409,598,l), (252,405,l) ); }, { closed = 1; nodes = ( (303,616,o), (275,647,o), (283,697,cs), (291,747,o), (328,778,o), (380,778,cs), (431,778,o), (459,747,o), (451,697,cs), (443,647,o), (406,616,o), (355,616,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (335,405,l), (469,567,ls), (501,607,o), (527,658,o), (533,695,cs), (547,782,o), (489,840,o), (389,840,cs), (288,840,o), (213,782,o), (199,695,cs), (186,614,o), (231,560,o), (310,560,cs), (346,560,o), (383,581,o), (403,612,c), (354,592,l), (392,592,l), (237,405,l) ); }, { closed = 1; nodes = ( (312,632,o), (286,657,o), (292,695,cs), (298,733,o), (332,758,o), (377,758,cs), (421,758,o), (446,733,o), (440,695,cs), (434,657,o), (401,632,o), (357,632,cs) ); } ); width = 600; } ); unicode = 8313; }, { glyphname = fraction; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (114,0,l), (602,730,l), (514,730,l), (26,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (112,0,l), (582,730,l), (516,730,l), (46,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (105,0,l), (572,730,l), (523,730,l), (56,0,l) ); } ); width = 600; } ); unicode = 8260; }, { glyphname = onehalf; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,0,l), (553,75,l), (453,75,ls), (435,75,o), (407,72,o), (392,70,c), (394,79,l), (456,110,ls), (528,145,o), (565,180,o), (572,227,cs), (582,289,o), (535,330,o), (456,330,cs), (375,330,o), (311,283,o), (300,216,c), (390,216,l), (394,242,o), (416,260,o), (445,260,cs), (470,260,o), (485,244,o), (481,219,cs), (478,199,o), (464,184,o), (436,169,cs), (280,89,l), (266,0,l) ); }, { closed = 1; nodes = ( (351,405,l), (363,480,l), (273,480,l), (313,730,l), (198,730,l), (114,676,l), (99,578,l), (167,625,ls), (184,637,o), (203,656,o), (213,668,c), (183,480,l), (69,480,l), (57,405,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (526,0,l), (532,40,l), (409,40,ls), (400,40,o), (371,40,o), (351,40,c), (352,44,l), (436,92,ls), (505,132,o), (544,177,o), (552,227,cs), (561,287,o), (523,330,o), (456,330,cs), (385,330,o), (331,284,o), (320,216,c), (365,216,l), (372,260,o), (406,290,o), (450,290,cs), (491,290,o), (513,264,o), (506,224,cs), (501,188,o), (475,158,o), (421,126,cs), (294,51,l), (286,0,l) ); }, { closed = 1; nodes = ( (343,405,l), (349,445,l), (228,445,l), (274,730,l), (204,730,l), (123,669,l), (114,614,l), (186,668,ls), (203,681,o), (217,694,o), (224,700,c), (183,445,l), (64,445,l), (58,405,l) ); }, { alignment = -1; pos = (-44,0); ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (526,0,l), (534,50,l), (425,50,ls), (396,50,o), (364,45,o), (349,42,c), (350,52,l), (451,104,ls), (511,135,o), (549,177,o), (556,218,cs), (566,285,o), (523,330,o), (448,330,cs), (376,330,o), (319,285,o), (305,216,c), (365,216,l), (371,255,o), (401,280,o), (440,280,cs), (479,280,o), (501,255,o), (495,216,cs), (491,187,o), (463,160,o), (412,133,cs), (281,64,l), (271,0,l) ); }, { closed = 1; nodes = ( (335,405,l), (343,455,l), (236,455,l), (280,730,l), (195,730,l), (115,669,l), (104,599,l), (174,653,ls), (191,666,o), (206,682,o), (213,691,c), (176,455,l), (58,455,l), (50,405,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; } ); unicode = 189; }, { glyphname = onequarter; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (351,404,l), (363,479,l), (273,479,l), (312,729,l), (197,729,l), (114,675,l), (98,577,l), (167,624,ls), (184,636,o), (203,655,o), (213,667,c), (183,479,l), (69,479,l), (57,404,l) ); }, { closed = 1; nodes = ( (505,0,l), (537,205,l), (447,205,l), (436,130,l), (361,130,l), (363,146,l), (526,325,l), (427,325,l), (275,160,l), (260,60,l), (425,60,l), (415,0,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (325,405,l), (333,455,l), (236,455,l), (280,730,l), (195,730,l), (115,669,l), (104,599,l), (174,653,ls), (191,666,o), (206,682,o), (213,691,c), (176,455,l), (58,455,l), (50,405,l) ); }, { closed = 1; nodes = ( (496,0,l), (529,209,l), (469,209,l), (455,120,l), (340,120,l), (343,136,l), (507,325,l), (438,325,l), (285,150,l), (272,70,l), (447,70,l), (436,0,l) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,405,l), (331,445,l), (220,445,l), (266,730,l), (196,730,l), (115,669,l), (106,614,l), (178,668,ls), (195,681,o), (209,694,o), (216,700,c), (175,445,l), (56,445,l), (50,405,l) ); }, { closed = 1; nodes = ( (491,0,l), (525,216,l), (480,216,l), (463,110,l), (328,110,l), (331,126,l), (499,325,l), (449,325,l), (288,140,l), (277,70,l), (457,70,l), (446,0,l) ); }, { alignment = -1; pos = (-44,0); ref = fraction; } ); width = 600; } ); unicode = 188; }, { glyphname = threequarters; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (505,0,l), (537,205,l), (447,205,l), (436,130,l), (361,130,l), (363,146,l), (526,325,l), (427,325,l), (275,160,l), (260,60,l), (425,60,l), (415,0,l) ); }, { closed = 1; nodes = ( (256,400,o), (317,444,o), (328,510,cs), (337,570,o), (298,610,o), (229,610,c), (225,590,l), (338,668,l), (348,730,l), (113,730,l), (102,665,l), (249,665,l), (180,616,l), (169,550,l), (199,550,ls), (226,550,o), (242,534,o), (238,510,cs), (234,486,o), (213,470,o), (185,470,cs), (156,470,o), (140,484,o), (143,505,c), (53,505,l), (43,442,o), (91,400,o), (174,400,cs) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (496,0,l), (529,209,l), (469,209,l), (455,120,l), (340,120,l), (343,136,l), (507,325,l), (438,325,l), (285,150,l), (272,70,l), (447,70,l), (436,0,l) ); }, { closed = 1; nodes = ( (249,400,o), (307,442,o), (317,505,cs), (327,568,o), (284,610,o), (211,610,c), (208,592,l), (328,675,l), (337,730,l), (122,730,l), (114,680,l), (270,680,l), (179,617,l), (170,560,l), (200,560,ls), (239,560,o), (262,538,o), (257,505,cs), (252,472,o), (221,450,o), (181,450,cs), (140,450,o), (117,472,o), (122,505,c), (62,505,l), (52,442,o), (96,400,o), (173,400,cs) ); }, { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,0,l), (525,216,l), (480,216,l), (463,110,l), (328,110,l), (331,126,l), (499,325,l), (449,325,l), (288,140,l), (277,70,l), (457,70,l), (446,0,l) ); }, { closed = 1; nodes = ( (243,400,o), (296,444,o), (307,510,cs), (316,569,o), (274,609,o), (207,609,c), (206,599,l), (321,685,l), (329,730,l), (129,730,l), (122,690,l), (278,690,l), (179,618,l), (172,575,l), (202,575,ls), (244,575,o), (268,549,o), (262,510,cs), (255,468,o), (223,440,o), (180,440,cs), (136,440,o), (111,466,o), (117,505,c), (72,505,l), (62,442,o), (102,400,o), (173,400,cs) ); }, { alignment = -1; pos = (-44,0); ref = fraction; } ); width = 600; } ); unicode = 190; }, { glyphname = "four-gujarati"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (419,-10,o), (500,67,o), (500,174,cs), (500,230,o), (471,286,o), (431,332,cs), (155,650,l), (96,650,l), (393,305,ls), (426,267,o), (450,223,o), (450,177,cs), (450,96,o), (389,34,o), (300,34,cs), (211,34,o), (150,96,o), (150,177,cs), (150,224,o), (168,260,o), (205,303,cs), (504,650,l), (447,650,l), (171,332,ls), (125,279,o), (100,225,o), (100,174,cs), (100,67,o), (181,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (435,-10,o), (520,73,o), (520,178,cs), (520,237,o), (492,289,o), (445,344,cs), (180,650,l), (76,650,l), (382,295,ls), (413,260,o), (430,223,o), (430,186,cs), (430,122,o), (380,70,o), (300,70,cs), (220,70,o), (170,122,o), (170,186,cs), (170,225,o), (188,262,o), (217,295,cs), (524,650,l), (422,650,l), (157,345,ls), (111,292,o), (80,239,o), (80,178,cs), (80,73,o), (165,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (442,-10,o), (540,67,o), (540,182,cs), (540,235,o), (520,288,o), (481,335,cs), (224,650,l), (56,650,l), (361,278,ls), (381,254,o), (390,232,o), (390,207,cs), (390,155,o), (353,120,o), (300,120,cs), (247,120,o), (210,155,o), (210,207,cs), (210,229,o), (217,252,o), (237,277,cs), (544,650,l), (381,650,l), (127,342,ls), (82,287,o), (60,238,o), (60,182,cs), (60,67,o), (158,-10,o), (300,-10,cs) ); } ); width = 600; } ); unicode = 2794; }, { glyphname = period; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (316,-10,o), (362,29,o), (371,91,cs), (381,153,o), (348,192,o), (286,192,cs), (224,192,o), (179,153,o), (169,91,cs), (160,29,o), (192,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (305,-10,o), (342,21,o), (350,71,cs), (358,123,o), (332,156,o), (281,156,cs), (230,156,o), (192,123,o), (184,71,cs), (176,21,o), (203,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (299,-10,o), (332,19,o), (339,65,cs), (346,110,o), (323,138,o), (278,138,cs), (233,138,o), (200,110,o), (193,65,cs), (186,19,o), (209,-10,o), (254,-10,cs) ); } ); visible = 1; width = 600; } ); unicode = 46; }, { glyphname = comma; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (201,-160,l), (380,151,l), (200,151,l), (71,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (178,-160,l), (357,151,l), (223,151,l), (94,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (164,-160,l), (338,151,l), (245,151,l), (121,-160,l) ); } ); width = 600; } ); unicode = 44; }, { glyphname = colon; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (376,380,o), (422,416,o), (430,470,cs), (439,524,o), (405,560,o), (345,560,cs), (285,560,o), (239,524,o), (230,470,cs), (222,416,o), (256,380,o), (316,380,cs) ); }, { closed = 1; nodes = ( (314,-10,o), (360,26,o), (369,80,cs), (377,134,o), (343,170,o), (283,170,cs), (223,170,o), (177,134,o), (169,80,cs), (160,26,o), (194,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (366,416,o), (399,445,o), (406,488,cs), (413,531,o), (389,560,o), (345,560,cs), (301,560,o), (267,531,o), (260,488,cs), (253,445,o), (278,416,o), (322,416,cs) ); }, { closed = 1; nodes = ( (298,-10,o), (332,19,o), (339,62,cs), (346,105,o), (321,134,o), (277,134,cs), (233,134,o), (200,105,o), (193,62,cs), (186,19,o), (210,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (371,410,o), (409,440,o), (416,485,cs), (423,530,o), (395,560,o), (345,560,cs), (295,560,o), (257,530,o), (250,485,cs), (243,440,o), (271,410,o), (321,410,cs) ); }, { closed = 1; nodes = ( (304,-10,o), (342,20,o), (349,65,cs), (356,110,o), (328,140,o), (278,140,cs), (228,140,o), (190,110,o), (183,65,cs), (176,20,o), (204,-10,o), (254,-10,cs) ); } ); width = 600; } ); unicode = 58; }, { glyphname = semicolon; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (206,-160,l), (385,151,l), (205,151,l), (76,-160,l) ); }, { closed = 1; nodes = ( (326,380,ls), (378,380,o), (422,418,o), (430,470,cs), (439,522,o), (407,560,o), (355,560,cs), (335,560,ls), (283,560,o), (239,522,o), (230,470,cs), (222,418,o), (254,380,o), (306,380,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (181,-160,l), (360,151,l), (230,151,l), (101,-160,l) ); }, { closed = 1; nodes = ( (331,410,ls), (375,410,o), (411,441,o), (418,485,cs), (425,528,o), (398,560,o), (355,560,cs), (335,560,ls), (292,560,o), (255,528,o), (248,485,cs), (241,441,o), (267,410,o), (311,410,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (164,-160,l), (338,151,l), (245,151,l), (121,-160,l) ); }, { closed = 1; nodes = ( (328,420,ls), (370,420,o), (402,448,o), (409,490,cs), (415,532,o), (392,560,o), (350,560,cs), (340,560,ls), (297,560,o), (264,532,o), (258,490,cs), (251,448,o), (275,420,o), (318,420,cs) ); } ); width = 600; } ); unicode = 59; }, { glyphname = ellipsis; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (483,-10,o), (514,16,o), (520,55,cs), (529,115,ls), (535,154,o), (514,180,o), (474,180,cs), (436,180,o), (405,154,o), (399,115,cs), (390,55,ls), (384,16,o), (405,-10,o), (443,-10,cs) ); }, { closed = 1; nodes = ( (103,-10,o), (134,16,o), (140,55,cs), (149,115,ls), (155,154,o), (134,180,o), (94,180,cs), (56,180,o), (25,154,o), (19,115,cs), (10,55,ls), (4,16,o), (25,-10,o), (63,-10,cs) ); }, { closed = 1; nodes = ( (293,-10,o), (324,16,o), (330,55,cs), (339,115,ls), (345,154,o), (324,180,o), (284,180,cs), (246,180,o), (215,154,o), (209,115,cs), (200,55,ls), (194,16,o), (215,-10,o), (253,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (474,-10,o), (498,12,o), (503,45,cs), (514,115,ls), (519,148,o), (503,170,o), (473,170,cs), (443,170,o), (419,148,o), (414,115,cs), (403,45,ls), (398,12,o), (414,-10,o), (444,-10,cs) ); }, { closed = 1; nodes = ( (94,-10,o), (118,12,o), (123,45,cs), (134,115,ls), (139,148,o), (123,170,o), (93,170,cs), (63,170,o), (39,148,o), (34,115,cs), (23,45,ls), (18,12,o), (34,-10,o), (64,-10,cs) ); }, { closed = 1; nodes = ( (284,-10,o), (308,12,o), (313,45,cs), (324,115,ls), (329,148,o), (313,170,o), (283,170,cs), (253,170,o), (229,148,o), (224,115,cs), (213,45,ls), (208,12,o), (224,-10,o), (254,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (474,-10,o), (498,12,o), (503,45,cs), (514,115,ls), (519,148,o), (503,170,o), (473,170,cs), (443,170,o), (419,148,o), (414,115,cs), (403,45,ls), (398,12,o), (414,-10,o), (444,-10,cs) ); }, { closed = 1; nodes = ( (94,-10,o), (118,12,o), (123,45,cs), (134,115,ls), (139,148,o), (123,170,o), (93,170,cs), (63,170,o), (39,148,o), (34,115,cs), (23,45,ls), (18,12,o), (34,-10,o), (64,-10,cs) ); }, { closed = 1; nodes = ( (284,-10,o), (308,12,o), (313,45,cs), (324,115,ls), (329,148,o), (313,170,o), (283,170,cs), (253,170,o), (229,148,o), (224,115,cs), (213,45,ls), (208,12,o), (224,-10,o), (254,-10,cs) ); } ); width = 600; } ); unicode = 8230; }, { glyphname = exclam; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (351,245,l), (427,580,l), (451,730,l), (293,730,l), (269,580,l), (239,245,l) ); }, { closed = 1; nodes = ( (269,-5,ls), (315,-5,o), (349,22,o), (356,65,cs), (363,107,o), (337,135,o), (292,135,cs), (262,135,ls), (217,135,o), (183,107,o), (176,65,cs), (170,23,o), (195,-5,o), (240,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (322,215,l), (406,610,l), (425,730,l), (319,730,l), (300,610,l), (258,215,l) ); }, { closed = 1; nodes = ( (270,-5,ls), (305,-5,o), (334,21,o), (340,56,cs), (345,90,o), (327,115,o), (289,115,cs), (259,115,ls), (224,115,o), (195,90,o), (190,55,cs), (184,20,o), (205,-5,o), (240,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (303,205,l), (377,570,l), (403,730,l), (341,730,l), (315,570,l), (273,205,l) ); }, { closed = 1; nodes = ( (261,-5,ls), (294,-5,o), (320,17,o), (325,50,cs), (330,83,o), (312,105,o), (279,105,cs), (274,105,ls), (241,105,o), (215,83,o), (210,50,cs), (205,17,o), (223,-5,o), (256,-5,cs) ); } ); width = 600; } ); unicode = 33; }, { glyphname = exclamdown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,-180,l), (332,-20,l), (360,305,l), (248,305,l), (174,-20,l), (148,-180,l) ); }, { closed = 1; nodes = ( (337,415,ls), (382,415,o), (416,443,o), (423,485,cs), (429,527,o), (404,555,o), (359,555,cs), (330,555,ls), (284,555,o), (250,528,o), (243,486,cs), (236,443,o), (262,415,o), (307,415,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (280,-180,l), (300,-55,l), (341,336,l), (277,336,l), (194,-55,l), (174,-180,l) ); }, { closed = 1; nodes = ( (335,436,ls), (374,436,o), (404,461,o), (410,498,cs), (416,534,o), (393,556,o), (354,556,cs), (334,556,ls), (295,556,o), (265,533,o), (260,497,cs), (254,461,o), (276,436,o), (315,436,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (261,-180,l), (287,-20,l), (329,345,l), (299,345,l), (225,-20,l), (199,-180,l) ); }, { closed = 1; nodes = ( (328,445,ls), (361,445,o), (387,467,o), (392,500,cs), (397,533,o), (379,555,o), (346,555,cs), (341,555,ls), (308,555,o), (282,533,o), (277,500,cs), (272,467,o), (290,445,o), (323,445,cs) ); } ); width = 600; } ); unicode = 161; }, { glyphname = question; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (298,225,l), (310,305,l), (436,305,o), (533,389,o), (553,515,cs), (573,646,o), (490,730,o), (337,730,cs), (182,730,l), (159,590,l), (324,590,ls), (379,590,o), (410,561,o), (403,515,cs), (395,470,o), (356,440,o), (302,440,cs), (202,440,l), (173,225,l) ); }, { closed = 1; nodes = ( (213,-5,ls), (259,-5,o), (293,22,o), (300,65,cs), (307,107,o), (281,135,o), (236,135,cs), (206,135,ls), (161,135,o), (127,107,o), (120,65,cs), (114,23,o), (139,-5,o), (184,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (289,205,l), (306,310,l), (419,316,o), (509,400,o), (528,515,cs), (548,646,o), (472,730,o), (332,730,cs), (207,730,l), (193,645,l), (318,645,ls), (404,645,o), (450,594,o), (438,515,cs), (425,436,o), (363,385,o), (278,385,cs), (228,385,l), (199,205,l) ); }, { closed = 1; nodes = ( (225,-5,ls), (260,-5,o), (289,21,o), (295,56,cs), (300,90,o), (282,115,o), (244,115,cs), (214,115,ls), (179,115,o), (150,90,o), (145,55,cs), (139,20,o), (160,-5,o), (195,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (279,205,l), (299,330,l), (427,330,o), (521,408,o), (540,530,cs), (559,651,o), (489,730,o), (362,730,cs), (242,730,l), (234,685,l), (354,685,ls), (451,685,o), (505,624,o), (490,530,cs), (475,436,o), (403,375,o), (306,375,cs), (256,375,l), (229,205,l) ); }, { closed = 1; nodes = ( (221,-5,ls), (254,-5,o), (280,17,o), (285,50,cs), (290,83,o), (272,105,o), (239,105,cs), (234,105,ls), (201,105,o), (175,83,o), (170,50,cs), (165,17,o), (183,-5,o), (216,-5,cs) ); } ); width = 600; } ); unicode = 63; }, { glyphname = questiondown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-170,l), (436,-30,l), (271,-30,ls), (215,-30,o), (185,-4,o), (192,40,cs), (199,84,o), (237,110,o), (292,110,cs), (392,110,l), (421,325,l), (296,325,l), (284,245,l), (159,245,o), (62,163,o), (42,40,cs), (22,-86,o), (109,-170,o), (259,-170,cs) ); }, { closed = 1; nodes = ( (393,415,ls), (438,415,o), (472,443,o), (479,485,cs), (485,527,o), (460,555,o), (415,555,cs), (386,555,ls), (340,555,o), (306,528,o), (299,486,cs), (292,443,o), (318,415,o), (363,415,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (394,-170,l), (408,-85,l), (283,-85,ls), (196,-85,o), (150,-38,o), (162,40,cs), (175,118,o), (235,165,o), (321,165,cs), (371,165,l), (400,345,l), (310,345,l), (293,240,l), (179,234,o), (90,154,o), (72,40,cs), (52,-89,o), (127,-170,o), (269,-170,cs) ); }, { closed = 1; nodes = ( (380,435,ls), (419,435,o), (449,460,o), (455,497,cs), (460,533,o), (438,555,o), (399,555,cs), (379,555,ls), (340,555,o), (310,532,o), (305,496,cs), (299,460,o), (321,435,o), (360,435,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (359,-169,l), (366,-124,l), (246,-124,ls), (149,-124,o), (95,-68,o), (110,26,cs), (125,120,o), (196,176,o), (293,176,cs), (343,176,l), (370,345,l), (320,345,l), (300,221,l), (172,221,o), (79,148,o), (60,26,cs), (41,-95,o), (112,-169,o), (239,-169,cs) ); }, { closed = 1; nodes = ( (366,446,ls), (399,446,o), (424,468,o), (429,501,cs), (435,534,o), (416,556,o), (383,556,cs), (378,556,ls), (345,556,o), (320,534,o), (314,501,cs), (309,468,o), (328,446,o), (361,446,cs) ); } ); width = 600; } ); unicode = 191; }, { glyphname = periodcentered; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,262); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,270); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,275); ref = period; } ); width = 600; } ); unicode = 183; }, { glyphname = bullet; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (372,230,o), (436,285,o), (449,365,cs), (461,445,o), (415,500,o), (335,500,cs), (255,500,o), (191,445,o), (179,365,cs), (166,285,o), (212,230,o), (292,230,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (365,245,o), (423,295,o), (434,365,cs), (445,435,o), (403,485,o), (333,485,cs), (263,485,o), (205,435,o), (194,365,cs), (183,295,o), (225,245,o), (295,245,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (356,270,o), (400,308,o), (409,365,cs), (418,422,o), (386,460,o), (329,460,cs), (272,460,o), (228,422,o), (219,365,cs), (210,308,o), (242,270,o), (299,270,cs) ); } ); width = 600; } ); unicode = 8226; }, { glyphname = asterisk; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (206,127,ls), (247,174,o), (284,257,o), (301,299,c), (307,299,l), (312,257,o), (323,174,o), (348,127,cs), (373,82,l), (491,156,l), (467,202,ls), (441,248,o), (382,297,o), (350,322,c), (353,326,l), (398,326,o), (478,329,o), (533,348,cs), (588,367,l), (562,489,l), (507,470,ls), (452,451,o), (381,401,o), (342,372,c), (338,375,l), (360,416,o), (401,497,o), (410,555,cs), (419,610,l), (289,610,l), (280,555,ls), (271,497,o), (286,416,o), (294,375,c), (289,371,l), (259,400,o), (203,451,o), (154,470,cs), (105,489,l), (42,367,l), (90,348,ls), (139,329,o), (220,326,o), (265,326,c), (266,322,l), (226,297,o), (151,248,o), (111,201,cs), (73,156,l), (167,82,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (219,172,ls), (250,209,o), (282,264,o), (301,300,c), (308,300,l), (314,264,o), (327,208,o), (347,172,cs), (390,94,l), (470,144,l), (427,222,ls), (407,258,o), (370,298,o), (344,322,c), (349,330,l), (388,333,o), (446,340,o), (489,355,cs), (583,387,l), (566,470,l), (472,438,ls), (428,423,o), (373,390,o), (338,367,c), (334,371,l), (351,408,o), (376,469,o), (383,515,cs), (398,610,l), (310,610,l), (295,515,ls), (288,469,o), (293,408,o), (297,371,c), (291,367,l), (264,390,o), (219,423,o), (179,438,cs), (96,470,l), (53,387,l), (136,355,ls), (175,340,o), (232,333,o), (269,330,c), (271,323,l), (238,299,o), (187,259,o), (155,222,cs), (89,144,l), (153,94,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (228,207,ls), (273,260,o), (283,287,o), (299,310,c), (310,310,l), (318,286,o), (321,260,o), (349,207,cs), (405,103,l), (454,134,l), (398,238,ls), (370,289,o), (349,305,o), (334,323,c), (341,337,l), (365,341,o), (393,340,o), (450,360,cs), (578,404,l), (567,456,l), (438,413,ls), (383,395,o), (359,377,o), (337,364,c), (329,371,l), (338,395,o), (349,421,o), (359,480,cs), (380,610,l), (326,610,l), (305,480,ls), (295,421,o), (301,395,o), (301,371,c), (291,365,l), (273,378,o), (253,395,o), (202,414,cs), (89,457,l), (62,407,l), (175,363,ls), (226,343,o), (254,342,o), (277,339,c), (279,324,l), (258,306,o), (233,291,o), (188,239,cs), (98,136,l), (139,104,l) ); } ); width = 600; } ); unicode = 42; }, { glyphname = bracketleftwithquill; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (383,-110,l), (390,-65,l), (215,-65,l), (281,355,l), (456,355,l), (463,400,l), (288,400,l), (349,785,l), (524,785,l), (531,830,l), (306,830,l), (158,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (378,-110,l), (390,-30,l), (240,-30,l), (298,335,l), (453,335,l), (466,415,l), (311,415,l), (364,750,l), (519,750,l), (531,830,l), (286,830,l), (138,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (403,-110,l), (425,30,l), (270,30,l), (313,305,l), (468,305,l), (490,445,l), (335,445,l), (374,690,l), (529,690,l), (551,830,l), (246,830,l), (98,-110,l) ); } ); width = 600; } ); unicode = 8261; }, { glyphname = bracketrightwithquill; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (321,-110,l), (469,830,l), (244,830,l), (237,785,l), (412,785,l), (351,400,l), (176,400,l), (169,355,l), (344,355,l), (278,-65,l), (103,-65,l), (96,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (341,-110,l), (489,830,l), (244,830,l), (232,750,l), (387,750,l), (334,415,l), (179,415,l), (166,335,l), (321,335,l), (263,-30,l), (113,-30,l), (101,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (403,-110,l), (551,830,l), (246,830,l), (224,690,l), (379,690,l), (340,445,l), (185,445,l), (163,305,l), (318,305,l), (275,30,l), (120,30,l), (98,-110,l) ); } ); width = 600; } ); unicode = 8262; }, { glyphname = numbersign; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (131,0,l), (187,170,l), (312,170,l), (256,0,l), (361,0,l), (417,170,l), (533,170,l), (549,270,l), (450,270,l), (513,460,l), (609,460,l), (625,560,l), (546,560,l), (602,730,l), (497,730,l), (441,560,l), (316,560,l), (372,730,l), (267,730,l), (211,560,l), (95,560,l), (79,460,l), (178,460,l), (115,270,l), (19,270,l), (3,170,l), (82,170,l), (26,0,l) ); }, { closed = 1; nodes = ( (283,460,l), (408,460,l), (345,270,l), (220,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,0,l), (180,200,l), (336,200,l), (267,0,l), (340,0,l), (409,200,l), (518,200,l), (528,265,l), (431,265,l), (499,465,l), (595,465,l), (605,530,l), (521,530,l), (590,730,l), (517,730,l), (448,530,l), (292,530,l), (361,730,l), (288,730,l), (219,530,l), (110,530,l), (100,465,l), (197,465,l), (129,265,l), (33,265,l), (23,200,l), (107,200,l), (38,0,l) ); }, { closed = 1; nodes = ( (270,465,l), (426,465,l), (358,265,l), (202,265,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (96,0,l), (169,210,l), (349,210,l), (276,0,l), (327,0,l), (400,210,l), (519,210,l), (526,254,l), (416,254,l), (493,476,l), (596,476,l), (603,520,l), (509,520,l), (586,730,l), (532,730,l), (458,520,l), (278,520,l), (352,730,l), (301,730,l), (227,520,l), (108,520,l), (101,476,l), (211,476,l), (134,254,l), (31,254,l), (24,210,l), (118,210,l), (45,0,l) ); }, { closed = 1; nodes = ( (262,476,l), (442,476,l), (365,254,l), (185,254,l) ); } ); width = 600; } ); unicode = 35; }, { glyphname = onedotenleader; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = period; } ); width = 600; } ); unicode = 8228; }, { glyphname = overline; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (691,785,l), (698,830,l), (78,830,l), (71,785,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (685,750,l), (698,830,l), (78,830,l), (65,750,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (676,690,l), (698,830,l), (78,830,l), (56,690,l) ); } ); width = 600; } ); unicode = 8254; }, { glyphname = slash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,-110,l), (637,830,l), (478,830,l), (-11,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,-110,l), (612,830,l), (515,830,l), (14,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (90,-110,l), (592,830,l), (536,830,l), (34,-110,l) ); } ); width = 600; } ); unicode = 47; }, { glyphname = backslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (488,-110,l), (287,830,l), (136,830,l), (337,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (464,-110,l), (252,830,l), (162,830,l), (374,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,-110,l), (234,830,l), (182,830,l), (392,-110,l) ); } ); width = 600; } ); unicode = 92; }, { glyphname = undertie; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (405,-180,ls), (609,-180,o), (714,-194,o), (760,-10,c), (710,-10,l), (674,-154,o), (580,-135,o), (405,-135,cs), (195,-135,ls), (23,-135,o), (-74,-152,o), (-110,-10,c), (-160,-10,l), (-114,-194,o), (-9,-180,o), (195,-180,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-180,ls), (553,-180,o), (620,-113,o), (620,-10,c), (570,-10,l), (570,-86,o), (521,-135,o), (445,-135,cs), (155,-135,ls), (79,-135,o), (30,-86,o), (30,-10,c), (-20,-10,l), (-20,-113,o), (47,-180,o), (150,-180,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-180,ls), (553,-180,o), (620,-113,o), (620,-10,c), (530,-10,l), (530,-64,o), (494,-100,o), (440,-100,cs), (160,-100,ls), (106,-100,o), (70,-64,o), (70,-10,c), (-20,-10,l), (-20,-113,o), (47,-180,o), (150,-180,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-180,ls), (553,-180,o), (620,-113,o), (620,-10,c), (470,-10,l), (470,-46,o), (451,-65,o), (415,-65,cs), (185,-65,ls), (149,-65,o), (130,-46,o), (130,-10,c), (-20,-10,l), (-20,-113,o), (47,-180,o), (150,-180,cs) ); } ); width = 600; } ); unicode = 8255; }, { glyphname = colon.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (389,460,o), (435,496,o), (443,550,cs), (452,604,o), (418,640,o), (358,640,cs), (298,640,o), (252,604,o), (243,550,cs), (235,496,o), (269,460,o), (329,460,cs) ); }, { closed = 1; nodes = ( (327,70,o), (373,106,o), (382,160,cs), (390,214,o), (356,250,o), (296,250,cs), (236,250,o), (190,214,o), (182,160,cs), (173,106,o), (207,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (379,496,o), (412,525,o), (419,568,cs), (426,611,o), (402,640,o), (358,640,cs), (314,640,o), (280,611,o), (273,568,cs), (266,525,o), (291,496,o), (335,496,cs) ); }, { closed = 1; nodes = ( (311,70,o), (345,99,o), (352,142,cs), (359,185,o), (334,214,o), (290,214,cs), (246,214,o), (213,185,o), (206,142,cs), (199,99,o), (223,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,490,o), (422,520,o), (429,565,cs), (436,610,o), (408,640,o), (358,640,cs), (308,640,o), (270,610,o), (263,565,cs), (256,520,o), (284,490,o), (334,490,cs) ); }, { closed = 1; nodes = ( (317,70,o), (355,100,o), (362,145,cs), (369,190,o), (341,220,o), (291,220,cs), (241,220,o), (203,190,o), (196,145,cs), (189,100,o), (217,70,o), (267,70,cs) ); } ); width = 600; } ); }, { glyphname = periodcentered.loclCAT.case; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-455,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-448,275); ref = period; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-431,275); ref = period; } ); width = 600; } ); }, { glyphname = periodcentered.loclCAT; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-350,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-353,275); ref = period; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-331,275); ref = period; } ); width = 600; } ); }, { glyphname = parenleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (445,27,l), (338,54,o), (284,144,o), (303,264,cs), (333,455,ls), (353,578,o), (434,667,o), (551,695,c), (575,845,l), (359,789,o), (213,645,o), (183,455,cs), (153,264,ls), (122,71,o), (218,-68,o), (421,-125,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (435,-36,l), (311,-6,o), (248,110,o), (273,265,cs), (303,455,ls), (328,612,o), (429,730,o), (561,760,c), (575,845,l), (383,799,o), (244,650,o), (213,455,cs), (183,265,ls), (151,66,o), (240,-78,o), (421,-125,c) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (429,-76,l), (292,-40,o), (229,84,o), (257,260,cs), (289,460,ls), (317,636,o), (418,756,o), (567,792,c), (574,840,l), (392,797,o), (271,658,o), (239,460,cs), (207,260,ls), (175,62,o), (254,-76,o), (422,-120,c) ); } ); width = 600; } ); unicode = 40; }, { glyphname = parenright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (272,-68,o), (412,71,o), (443,264,cs), (473,455,ls), (503,645,o), (403,789,o), (205,845,c), (181,695,l), (290,667,o), (343,578,o), (323,455,cs), (293,264,ls), (274,144,o), (192,54,o), (75,27,c), (51,-125,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (248,-78,o), (381,66,o), (413,265,cs), (443,455,ls), (474,650,o), (383,799,o), (205,845,c), (191,760,l), (315,730,o), (378,612,o), (353,455,cs), (323,265,ls), (298,110,o), (199,-6,o), (65,-36,c), (51,-125,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (235,-76,o), (356,62,o), (388,260,cs), (420,460,ls), (452,658,o), (373,797,o), (205,840,c), (198,796,l), (335,760,o), (398,636,o), (370,460,cs), (338,260,ls), (310,84,o), (209,-36,o), (60,-72,c), (53,-120,l) ); } ); width = 600; } ); unicode = 41; }, { glyphname = braceleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (463,-111,l), (486,29,l), (431,29,ls), (395,29,o), (372,53,o), (380,89,cs), (414,239,ls), (431,314,o), (377,364,o), (279,364,c), (278,357,l), (376,357,o), (445,406,o), (452,479,cs), (466,630,ls), (470,673,o), (497,690,o), (535,690,cs), (590,690,l), (612,830,l), (527,830,ls), (417,830,o), (329,760,o), (319,650,cs), (305,499,ls), (301,457,o), (266,429,o), (224,429,cs), (99,429,l), (77,289,l), (202,289,ls), (244,289,o), (270,261,o), (261,219,cs), (228,74,ls), (202,-38,o), (269,-111,o), (378,-111,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (454,-110,l), (466,-30,l), (421,-30,ls), (358,-30,o), (328,-1,o), (340,56,cs), (376,220,ls), (394,306,o), (352,363,o), (268,363,c), (268,358,l), (353,358,o), (411,413,o), (420,500,cs), (436,664,ls), (442,721,o), (482,750,o), (545,750,cs), (590,750,l), (602,830,l), (557,830,ls), (439,830,o), (357,769,o), (346,664,cs), (330,500,ls), (323,429,o), (301,400,o), (214,400,cs), (104,400,l), (92,320,l), (202,320,ls), (288,320,o), (301,291,o), (286,220,cs), (250,56,ls), (227,-49,o), (291,-110,o), (409,-110,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (439,-110,l), (446,-65,l), (391,-65,ls), (329,-65,o), (292,-25,o), (307,40,cs), (354,237,ls), (372,313,o), (336,364,o), (269,364,c), (268,357,l), (335,357,o), (386,407,o), (392,482,cs), (409,680,ls), (414,745,o), (463,785,o), (525,785,cs), (580,785,l), (587,830,l), (532,830,ls), (436,830,o), (367,775,o), (359,680,cs), (342,482,ls), (337,408,o), (309,382,o), (227,382,cs), (117,382,l), (109,336,l), (219,336,ls), (305,336,o), (320,308,o), (304,237,cs), (257,40,ls), (235,-55,o), (288,-110,o), (384,-110,cs) ); } ); width = 600; } ); unicode = 123; }, { glyphname = braceright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (98,-111,ls), (207,-111,o), (298,-38,o), (308,74,cs), (321,219,ls), (324,261,o), (360,289,o), (402,289,cs), (527,289,l), (549,429,l), (424,429,ls), (382,429,o), (355,457,o), (365,499,cs), (399,650,ls), (423,760,o), (357,830,o), (247,830,cs), (162,830,l), (140,690,l), (195,690,ls), (233,690,o), (256,673,o), (246,630,cs), (212,479,ls), (195,406,o), (250,357,o), (348,357,c), (349,364,l), (251,364,o), (181,314,o), (174,239,cs), (160,89,ls), (156,53,o), (127,29,o), (91,29,cs), (36,29,l), (13,-111,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (69,-110,ls), (187,-110,o), (269,-49,o), (280,56,cs), (296,220,ls), (303,291,o), (326,320,o), (412,320,cs), (522,320,l), (534,400,l), (424,400,ls), (337,400,o), (325,429,o), (340,500,cs), (376,664,ls), (399,769,o), (335,830,o), (217,830,cs), (172,830,l), (160,750,l), (205,750,ls), (268,750,o), (298,721,o), (286,664,cs), (250,500,ls), (231,413,o), (273,358,o), (358,358,c), (358,363,l), (274,363,o), (214,306,o), (206,220,cs), (190,56,ls), (184,-1,o), (144,-30,o), (81,-30,cs), (36,-30,l), (24,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (93,-110,ls), (189,-110,o), (258,-55,o), (266,40,cs), (284,237,ls), (290,308,o), (313,336,o), (399,336,cs), (509,336,l), (517,382,l), (407,382,ls), (325,382,o), (306,408,o), (322,482,cs), (368,680,ls), (390,775,o), (337,830,o), (241,830,cs), (187,830,l), (180,785,l), (234,785,ls), (296,785,o), (333,745,o), (318,680,cs), (272,482,ls), (255,407,o), (291,357,o), (358,357,c), (359,364,l), (292,364,o), (241,313,o), (234,237,cs), (216,40,ls), (211,-25,o), (162,-65,o), (100,-65,cs), (46,-65,l), (39,-110,l) ); } ); width = 600; } ); unicode = 125; }, { glyphname = bracketleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-110,l), (436,30,l), (281,30,l), (385,690,l), (540,690,l), (562,830,l), (257,830,l), (109,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-110,l), (401,-30,l), (246,-30,l), (370,750,l), (525,750,l), (537,830,l), (292,830,l), (144,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-110,l), (391,-65,l), (216,-65,l), (350,785,l), (525,785,l), (532,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; } ); unicode = 91; }, { glyphname = bracketright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (369,-110,l), (517,830,l), (212,830,l), (190,690,l), (345,690,l), (241,30,l), (86,30,l), (64,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (334,-110,l), (482,830,l), (237,830,l), (225,750,l), (380,750,l), (256,-30,l), (101,-30,l), (89,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (319,-110,l), (467,830,l), (242,830,l), (235,785,l), (410,785,l), (276,-65,l), (101,-65,l), (94,-110,l) ); } ); width = 600; } ); unicode = 93; }, { glyphname = heavyleftpointinganglebracketornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (495,0,l), (362,365,l), (495,730,l), (243,730,l), (110,363,l), (243,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (495,0,l), (362,365,l), (495,730,l), (243,730,l), (110,363,l), (243,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,0,l), (362,365,l), (495,730,l), (243,730,l), (110,363,l), (243,0,l) ); } ); width = 600; } ); unicode = 10096; }, { glyphname = heavyleftpointinganglequotationmarkornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (453,0,l), (318,365,l), (453,730,l), (285,730,l), (150,363,l), (285,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (453,0,l), (318,365,l), (453,730,l), (285,730,l), (150,363,l), (285,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (453,0,l), (318,365,l), (453,730,l), (285,730,l), (150,363,l), (285,0,l) ); } ); width = 600; } ); unicode = 10094; }, { glyphname = heavyrightpointinganglebracketornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglebracketornament; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglebracketornament; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglebracketornament; scale = (-1,1); } ); width = 600; } ); unicode = 10097; }, { glyphname = heavyrightpointinganglequotationmarkornament; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglequotationmarkornament; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglequotationmarkornament; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = heavyleftpointinganglequotationmarkornament; scale = (-1,1); } ); width = 600; } ); unicode = 10095; }, { glyphname = leftCeiling; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (209,-110,l), (350,785,l), (525,785,l), (532,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (234,-110,l), (370,750,l), (525,750,l), (537,830,l), (292,830,l), (144,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (259,-110,l), (385,690,l), (540,690,l), (562,830,l), (257,830,l), (109,-110,l) ); } ); width = 600; } ); unicode = 8968; }, { glyphname = leftFloor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-110,l), (391,-65,l), (216,-65,l), (357,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (389,-110,l), (401,-30,l), (246,-30,l), (382,830,l), (292,830,l), (144,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (414,-110,l), (436,30,l), (281,30,l), (407,830,l), (257,830,l), (109,-110,l) ); } ); width = 600; } ); unicode = 8970; }, { glyphname = rightCeiling; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (319,-110,l), (467,830,l), (242,830,l), (235,785,l), (410,785,l), (269,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (334,-110,l), (482,830,l), (237,830,l), (225,750,l), (380,750,l), (244,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (369,-110,l), (517,830,l), (212,830,l), (190,690,l), (345,690,l), (219,-110,l) ); } ); width = 600; } ); unicode = 8969; }, { glyphname = rightFloor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (319,-110,l), (467,830,l), (417,830,l), (276,-65,l), (101,-65,l), (94,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (334,-110,l), (482,830,l), (392,830,l), (256,-30,l), (101,-30,l), (89,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (369,-110,l), (517,830,l), (367,830,l), (241,30,l), (86,30,l), (64,-110,l) ); } ); width = 600; } ); unicode = 8971; }, { glyphname = znotationleftimagebracket; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (395,-75,l), (307,-75,o), (250,-18,o), (250,70,cs), (250,370,ls), (250,458,o), (307,515,o), (395,515,c), (395,560,l), (277,560,o), (200,483,o), (200,365,cs), (200,75,ls), (200,-43,o), (277,-120,o), (395,-120,c) ); }, { closed = 1; nodes = ( (395,-93,l), (395,538,l), (345,538,l), (345,-93,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,840,l), (294,792,o), (185,653,o), (185,460,cs), (185,260,ls), (185,67,o), (294,-72,o), (485,-120,c) ); }, { closed = 1; nodes = ( (307,-3,o), (235,109,o), (235,260,cs), (235,460,ls), (235,612,o), (307,724,o), (435,774,c), (435,-54,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (485,840,l), (288,808,o), (160,655,o), (160,450,cs), (160,270,ls), (160,65,o), (288,-88,o), (485,-120,c) ); }, { closed = 1; nodes = ( (307,42,o), (250,143,o), (250,270,cs), (250,450,ls), (250,579,o), (307,681,o), (400,729,c), (400,-5,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,840,l), (260,788,o), (125,646,o), (125,450,cs), (125,269,ls), (125,73,o), (260,-69,o), (495,-120,c) ); }, { closed = 1; nodes = ( (308,103,o), (265,176,o), (265,269,cs), (265,450,ls), (265,543,o), (308,615,o), (385,660,c), (385,59,l) ); } ); width = 600; } ); unicode = 10631; }, { glyphname = znotationrightimagebracket; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = znotationleftimagebracket; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = znotationleftimagebracket; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = znotationleftimagebracket; scale = (-1,1); } ); width = 600; } ); unicode = 10632; }, { glyphname = hyphen; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (472,260,l), (494,400,l), (144,400,l), (122,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,290,l), (475,370,l), (155,370,l), (142,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (465,308,l), (472,353,l), (152,353,l), (145,308,l) ); } ); width = 600; } ); unicode = 45; }, { glyphname = softhyphen; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = hyphen; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = hyphen; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = hyphen; } ); width = 600; } ); unicode = 173; }, { glyphname = endash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (517,260,l), (539,400,l), (99,400,l), (77,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (522,290,l), (535,370,l), (95,370,l), (82,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (526,310,l), (533,355,l), (93,355,l), (86,310,l) ); } ); width = 600; } ); unicode = 8211; }, { glyphname = emdash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (598,260,l), (620,400,l), (20,400,l), (-2,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (602,290,l), (615,370,l), (15,370,l), (2,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (605,309,l), (612,354,l), (13,354,l), (6,309,l) ); } ); width = 600; } ); unicode = 8212; }, { glyphname = hyphentwo; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; } ); unicode = 8208; }, { glyphname = underscore; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (470,-165,l), (492,-25,l), (12,-25,l), (-10,-165,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (12,-25,l), (0,-100,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,-70,l), (492,-25,l), (12,-25,l), (5,-70,l) ); } ); width = 600; } ); unicode = 95; }, { glyphname = quotesinglbase; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = comma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = comma; } ); width = 600; } ); unicode = 8218; }, { glyphname = quotedblbase; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (366,-160,l), (545,151,l), (365,151,l), (236,-160,l) ); }, { closed = 1; nodes = ( (106,-160,l), (285,151,l), (105,151,l), (-24,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (326,-160,l), (505,151,l), (375,151,l), (246,-160,l) ); }, { closed = 1; nodes = ( (96,-160,l), (275,151,l), (145,151,l), (16,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (306,-160,l), (480,151,l), (390,151,l), (266,-160,l) ); }, { closed = 1; nodes = ( (81,-160,l), (255,151,l), (165,151,l), (41,-160,l) ); } ); width = 600; } ); unicode = 8222; }, { glyphname = quotedblleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (505,465,l), (634,776,l), (504,776,l), (325,465,l) ); }, { closed = 1; nodes = ( (245,465,l), (374,776,l), (244,776,l), (65,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (465,465,l), (594,776,l), (514,776,l), (335,465,l) ); }, { closed = 1; nodes = ( (235,465,l), (364,776,l), (284,776,l), (105,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (445,465,l), (569,776,l), (529,776,l), (355,465,l) ); }, { closed = 1; nodes = ( (220,465,l), (344,776,l), (304,776,l), (130,465,l) ); } ); width = 600; } ); unicode = 8220; }, { glyphname = quotedblright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (465,465,l), (644,776,l), (464,776,l), (335,465,l) ); }, { closed = 1; nodes = ( (205,465,l), (384,776,l), (204,776,l), (75,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (425,465,l), (604,776,l), (474,776,l), (345,465,l) ); }, { closed = 1; nodes = ( (195,465,l), (374,776,l), (244,776,l), (115,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (405,465,l), (579,776,l), (489,776,l), (365,465,l) ); }, { closed = 1; nodes = ( (180,465,l), (354,776,l), (264,776,l), (140,465,l) ); } ); width = 600; } ); unicode = 8221; }, { glyphname = quoteleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (702,615); ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (702,615); ref = comma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (702,615); ref = comma; } ); width = 600; } ); unicode = 8216; }, { glyphname = quoteright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (94,625); ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (94,625); ref = comma; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (94,625); ref = comma; } ); width = 600; } ); unicode = 8217; }, { glyphname = guillemetleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (542,40,l), (418,274,l), (628,520,l), (468,520,l), (265,280,l), (390,40,l) ); }, { closed = 1; nodes = ( (292,40,l), (168,274,l), (378,520,l), (218,520,l), (15,280,l), (140,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (528,40,l), (365,277,l), (612,520,l), (502,520,l), (263,280,l), (427,40,l) ); }, { closed = 1; nodes = ( (295,40,l), (132,277,l), (379,520,l), (269,520,l), (30,280,l), (194,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (512,40,l), (341,279,l), (588,520,l), (526,520,l), (280,280,l), (453,40,l) ); }, { closed = 1; nodes = ( (282,40,l), (111,279,l), (358,520,l), (296,520,l), (50,280,l), (223,40,l) ); } ); width = 600; } ); unicode = 171; }, { glyphname = guillemetright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (382,40,l), (585,280,l), (460,520,l), (308,520,l), (430,287,l), (222,40,l) ); }, { closed = 1; nodes = ( (132,40,l), (335,280,l), (210,520,l), (58,520,l), (180,287,l), (-28,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (331,40,l), (570,280,l), (406,520,l), (305,520,l), (467,286,l), (222,40,l) ); }, { closed = 1; nodes = ( (98,40,l), (337,280,l), (173,520,l), (72,520,l), (234,286,l), (-11,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,40,l), (550,280,l), (377,520,l), (318,520,l), (488,284,l), (242,40,l) ); }, { closed = 1; nodes = ( (74,40,l), (320,280,l), (147,520,l), (88,520,l), (258,284,l), (12,40,l) ); } ); width = 600; } ); unicode = 187; }, { glyphname = guilsinglleft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (422,40,l), (290,274,l), (503,520,l), (348,520,l), (135,280,l), (272,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (412,40,l), (248,278,l), (493,520,l), (387,520,l), (147,280,l), (311,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (390,40,l), (230,277,l), (465,520,l), (406,520,l), (170,280,l), (333,40,l) ); } ); width = 600; } ); unicode = 8249; }, { glyphname = guilsinglright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (252,40,l), (465,280,l), (328,520,l), (178,520,l), (311,284,l), (97,40,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (214,40,l), (454,280,l), (290,520,l), (189,520,l), (354,282,l), (108,40,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (194,40,l), (430,280,l), (267,520,l), (210,520,l), (370,283,l), (135,40,l) ); } ); width = 600; } ); unicode = 8250; }, { glyphname = tripleprime; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (195,0); ref = minute; }, { pos = (-140,0); ref = minute; }, { pos = (27,0); ref = minute; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (215,0); ref = minute; }, { pos = (-145,0); ref = minute; }, { pos = (35,0); ref = minute; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (225,0); ref = minute; }, { pos = (-155,0); ref = minute; }, { pos = (35,0); ref = minute; } ); width = 600; } ); unicode = 8244; }, { glyphname = quotedbl; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (501,430,l), (536,570,l), (562,730,l), (414,730,l), (388,570,l), (380,430,l) ); }, { closed = 1; nodes = ( (269,430,l), (304,570,l), (330,730,l), (182,730,l), (156,570,l), (148,430,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (463,430,l), (507,640,l), (522,730,l), (425,730,l), (410,640,l), (389,430,l) ); }, { closed = 1; nodes = ( (260,430,l), (304,640,l), (319,730,l), (222,730,l), (207,640,l), (186,430,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (448,430,l), (490,640,l), (505,730,l), (439,730,l), (424,640,l), (401,430,l) ); }, { closed = 1; nodes = ( (248,430,l), (290,640,l), (305,730,l), (239,730,l), (224,640,l), (201,430,l) ); } ); width = 600; } ); unicode = 34; }, { glyphname = quotesingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (385,430,l), (420,570,l), (446,730,l), (298,730,l), (272,570,l), (264,430,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (356,430,l), (391,580,l), (415,730,l), (318,730,l), (294,580,l), (282,430,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (348,430,l), (378,560,l), (405,730,l), (339,730,l), (312,560,l), (301,430,l) ); } ); width = 600; } ); unicode = 39; }, { glyphname = hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,260,l), (479,400,l), (64,400,l), (42,260,l) ); }, { closed = 1; nodes = ( (-48,260,l), (-26,400,l), (-441,400,l), (-463,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,290,l), (475,370,l), (60,370,l), (47,290,l) ); }, { closed = 1; nodes = ( (-43,290,l), (-30,370,l), (-445,370,l), (-458,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (465,310,l), (472,355,l), (57,355,l), (50,310,l) ); }, { closed = 1; nodes = ( (-40,310,l), (-33,355,l), (-448,355,l), (-455,310,l) ); } ); width = 600; } ); }, { glyphname = hyphen_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,260,l), (479,400,l), (34,400,l), (12,260,l) ); }, { closed = 1; nodes = ( (-618,260,l), (-596,400,l), (-1041,400,l), (-1063,260,l) ); }, { closed = 1; nodes = ( (-83,260,l), (-61,400,l), (-501,400,l), (-523,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (462,290,l), (475,370,l), (30,370,l), (17,290,l) ); }, { closed = 1; nodes = ( (-613,290,l), (-600,370,l), (-1045,370,l), (-1058,290,l) ); }, { closed = 1; nodes = ( (-78,290,l), (-65,370,l), (-505,370,l), (-518,290,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (465,310,l), (472,355,l), (27,355,l), (20,310,l) ); }, { closed = 1; nodes = ( (-610,310,l), (-603,355,l), (-1048,355,l), (-1055,310,l) ); }, { closed = 1; nodes = ( (-75,310,l), (-68,355,l), (-508,355,l), (-515,310,l) ); } ); width = 600; } ); }, { glyphname = hyphen_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (326,400,l), (-1101,400,l), (-1123,260,l), (296,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (414,370,l), (-1099,370,l), (-1112,290,l), (391,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (453,353,l), (-1093,353,l), (-1100,308,l), (442,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (268,625,l) ); } ); width = 600; } ); }, { glyphname = hyphen_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (313,-85,l), (445,750,l), (295,750,l), (239,400,l), (-401,400,l), (-423,260,l), (217,260,l), (163,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (288,-85,l), (420,750,l), (330,750,l), (270,370,l), (-405,370,l), (-418,290,l), (257,290,l), (198,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (268,-85,l), (400,750,l), (350,750,l), (287,355,l), (-408,355,l), (-415,310,l), (280,310,l), (218,-85,l) ); } ); width = 600; } ); }, { glyphname = hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (323,400,l), (-501,400,l), (-523,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (411,370,l), (-500,370,l), (-513,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (451,353,l), (-493,353,l), (-500,308,l), (440,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l) ); } ); width = 600; } ); }, { glyphname = hyphen_greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-49,35,l), (218,330,l), (45,625,l), (-127,625,l), (3,400,l), (-1101,400,l), (-1123,260,l), (-27,260,l), (-230,35,l) ); }, { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (364,334,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-45,35,l), (233,330,l), (49,625,l), (-52,625,l), (111,370,l), (-1100,370,l), (-1113,290,l), (88,290,l), (-155,35,l) ); }, { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (431,337,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-48,35,l), (243,331,l), (46,625,l), (-11,625,l), (171,353,l), (-1093,353,l), (-1100,308,l), (160,308,l), (-110,35,l) ); }, { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (463,335,l), (170,35,l) ); } ); width = 600; } ); }, { glyphname = hyphen_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (468,35,l), (298,324,l), (570,625,l), (389,625,l), (184,400,l), (-501,400,l), (-523,260,l), (162,260,l), (295,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (457,35,l), (277,323,l), (560,625,l), (450,625,l), (209,370,l), (-500,370,l), (-513,290,l), (196,290,l), (356,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (455,35,l), (258,328,l), (551,625,l), (491,625,l), (222,353,l), (-493,353,l), (-500,308,l), (214,308,l), (397,35,l) ); } ); width = 600; } ); }, { glyphname = hyphen_less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (124,35,l), (-45,324,l), (227,625,l), (46,625,l), (-159,400,l), (-1101,400,l), (-1123,260,l), (-181,260,l), (-48,35,l) ); }, { closed = 1; nodes = ( (467,35,l), (298,324,l), (570,625,l), (389,625,l), (121,330,l), (295,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (157,35,l), (-27,325,l), (260,625,l), (150,625,l), (-91,370,l), (-1100,370,l), (-1113,290,l), (-104,290,l), (56,35,l) ); }, { closed = 1; nodes = ( (457,35,l), (272,325,l), (560,625,l), (450,625,l), (171,330,l), (356,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (173,35,l), (-25,327,l), (273,625,l), (211,625,l), (-58,353,l), (-1093,353,l), (-1100,308,l), (-66,308,l), (117,35,l) ); }, { closed = 1; nodes = ( (453,35,l), (258,327,l), (554,625,l), (491,625,l), (199,330,l), (397,35,l) ); } ); width = 600; } ); }, { glyphname = hyphen_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (212,195,o), (256,350,o), (346,350,cs), (379,350,o), (398,329,o), (393,295,cs), (383,235,l), (503,235,l), (515,310,ls), (529,397,o), (469,465,o), (370,465,cs), (210,465,o), (165,310,o), (76,310,cs), (40,310,o), (24,334,o), (30,375,cs), (34,400,l), (-491,400,l), (-513,260,l), (-76,260,l), (-52,220,o), (-7,195,o), (52,195,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (228,220,o), (264,365,o), (354,365,cs), (396,365,o), (419,337,o), (413,295,cs), (403,235,l), (488,235,l), (498,295,ls), (512,382,o), (459,440,o), (366,440,cs), (226,440,o), (191,295,o), (103,295,cs), (61,295,o), (37,320,o), (44,365,cs), (45,370,l), (-480,370,l), (-493,290,l), (-35,290,l), (-17,245,o), (28,220,o), (91,220,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (225,245,o), (303,393,o), (388,393,cs), (426,393,o), (444,368,o), (437,325,cs), (426,250,l), (471,250,l), (482,325,ls), (493,393,o), (460,435,o), (395,435,cs), (280,435,o), (201,287,o), (101,287,cs), (55,287,o), (25,312,o), (31,350,cs), (32,355,l), (-483,355,l), (-490,310,l), (-12,310,l), (-1,270,o), (39,245,o), (95,245,cs) ); } ); width = 600; } ); }, { glyphname = braceleft_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-2,-111,l), (21,29,l), (-104,29,ls), (-140,29,o), (-163,53,o), (-155,89,cs), (-121,239,ls), (-104,314,o), (-158,364,o), (-256,364,c), (-257,357,l), (-159,357,o), (-90,406,o), (-83,479,cs), (-69,630,ls), (-65,673,o), (-38,690,o), (0,690,cs), (125,690,l), (147,830,l), (-8,830,ls), (-118,830,o), (-206,760,o), (-216,650,cs), (-230,499,ls), (-234,457,o), (-269,429,o), (-311,429,cs), (-436,429,l), (-458,289,l), (-333,289,ls), (-291,289,o), (-265,261,o), (-274,219,cs), (-307,74,ls), (-333,-38,o), (-266,-111,o), (-157,-111,cs) ); }, { closed = 1; nodes = ( (289,-110,l), (437,830,l), (287,830,l), (139,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-6,-110,l), (6,-30,l), (-109,-30,ls), (-172,-30,o), (-202,-1,o), (-190,56,cs), (-154,220,ls), (-136,306,o), (-178,363,o), (-262,363,c), (-262,358,l), (-177,358,o), (-119,413,o), (-110,500,cs), (-94,664,ls), (-88,721,o), (-48,750,o), (15,750,cs), (130,750,l), (142,830,l), (27,830,ls), (-91,830,o), (-173,769,o), (-184,664,cs), (-200,500,ls), (-207,429,o), (-229,400,o), (-316,400,cs), (-426,400,l), (-438,320,l), (-328,320,ls), (-242,320,o), (-229,291,o), (-244,220,cs), (-280,56,ls), (-303,-49,o), (-239,-110,o), (-121,-110,cs) ); }, { closed = 1; nodes = ( (264,-110,l), (412,830,l), (322,830,l), (174,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-31,-110,l), (-24,-65,l), (-138,-65,ls), (-200,-65,o), (-237,-25,o), (-222,40,cs), (-176,237,ls), (-159,313,o), (-194,364,o), (-261,364,c), (-262,357,l), (-195,357,o), (-145,407,o), (-138,482,cs), (-120,680,ls), (-115,745,o), (-66,785,o), (-4,785,cs), (110,785,l), (117,830,l), (3,830,ls), (-93,830,o), (-162,775,o), (-170,680,cs), (-188,482,ls), (-194,408,o), (-221,382,o), (-303,382,cs), (-413,382,l), (-421,336,l), (-311,336,ls), (-225,336,o), (-210,308,o), (-226,237,cs), (-272,40,ls), (-294,-55,o), (-241,-110,o), (-145,-110,cs) ); }, { closed = 1; nodes = ( (244,-110,l), (392,830,l), (342,830,l), (194,-110,l) ); } ); width = 600; } ); }, { glyphname = bracketleft_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-16,-110,l), (6,30,l), (-259,30,l), (-155,690,l), (110,690,l), (132,830,l), (-283,830,l), (-431,-110,l) ); }, { closed = 1; nodes = ( (309,-110,l), (457,830,l), (307,830,l), (159,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1,-110,l), (11,-30,l), (-284,-30,l), (-160,750,l), (135,750,l), (147,830,l), (-238,830,l), (-386,-110,l) ); }, { closed = 1; nodes = ( (264,-110,l), (412,830,l), (322,830,l), (174,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-11,-110,l), (-4,-65,l), (-309,-65,l), (-175,785,l), (130,785,l), (137,830,l), (-218,830,l), (-366,-110,l) ); }, { closed = 1; nodes = ( (244,-110,l), (392,830,l), (342,830,l), (194,-110,l) ); } ); width = 600; } ); }, { glyphname = bracketleft_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-575,0); ref = bracketleft; }, { alignment = -1; pos = (-115,15); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-575,0); ref = bracketleft; }, { alignment = -1; pos = (-100,15); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-575,0); ref = bracketleft; }, { alignment = -1; pos = (-100,15); ref = less; } ); width = 600; } ); }, { glyphname = bracketright_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (129,0,l), (187,175,l), (317,175,l), (259,0,l), (359,0,l), (417,175,l), (514,175,l), (530,275,l), (450,275,l), (507,455,l), (593,455,l), (609,555,l), (540,555,l), (599,730,l), (499,730,l), (440,555,l), (310,555,l), (369,730,l), (269,730,l), (210,555,l), (-221,555,l), (-237,455,l), (177,455,l), (120,275,l), (-265,275,l), (-281,175,l), (87,175,l), (29,0,l) ); }, { closed = 1; nodes = ( (277,455,l), (407,455,l), (350,275,l), (220,275,l) ); }, { alignment = -1; pos = (-600,0); ref = bracketright; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (109,0,l), (181,210,l), (341,210,l), (269,0,l), (339,0,l), (411,210,l), (519,210,l), (530,275,l), (433,275,l), (495,455,l), (593,455,l), (603,520,l), (516,520,l), (589,730,l), (519,730,l), (446,520,l), (286,520,l), (359,730,l), (289,730,l), (216,520,l), (-217,520,l), (-227,455,l), (195,455,l), (133,275,l), (-255,275,l), (-266,210,l), (111,210,l), (39,0,l) ); }, { closed = 1; nodes = ( (265,455,l), (425,455,l), (363,275,l), (203,275,l) ); }, { alignment = -1; pos = (-600,0); ref = bracketright; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (137,0,l), (181,230,l), (367,230,l), (323,0,l), (368,0,l), (412,230,l), (530,230,l), (530,270,l), (420,270,l), (456,460,l), (565,460,l), (565,500,l), (464,500,l), (508,730,l), (463,730,l), (419,500,l), (233,500,l), (277,730,l), (232,730,l), (188,500,l), (-265,500,l), (-265,460,l), (180,460,l), (144,270,l), (-265,270,l), (-265,230,l), (136,230,l), (92,0,l) ); }, { closed = 1; nodes = ( (225,460,l), (411,460,l), (375,270,l), (189,270,l) ); }, { alignment = -1; pos = (-635,0); ref = bracketright; } ); width = 600; } ); }, { glyphname = period_period.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-520,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-518,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-520,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; } ); }, { glyphname = period_period_period.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1120,0); ref = period; }, { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1098,0); ref = period; }, { alignment = -1; pos = (-599,0); ref = period; }, { alignment = -1; pos = (-100,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1060,0); ref = period; }, { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-140,0); ref = period; } ); width = 600; } ); }, { glyphname = period_period_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-190,0); ref = less; }, { alignment = -1; pos = (-1130,0); ref = period; }, { alignment = -1; pos = (-690,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-190,0); ref = less; }, { alignment = -1; pos = (-1129,0); ref = period; }, { alignment = -1; pos = (-691,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-190,0); ref = less; }, { alignment = -1; pos = (-1129,0); ref = period; }, { alignment = -1; pos = (-691,0); ref = period; } ); width = 600; } ); }, { glyphname = period_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-90,0); ref = question; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-100,0); ref = question; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,0); ref = period; }, { alignment = -1; pos = (-100,0); ref = question; } ); width = 600; } ); }, { glyphname = period_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,-35); ref = bullet; }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,-35); ref = bullet; }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,-35); ref = bullet; }, { alignment = -1; ref = equal; } ); width = 600; } ); }, { glyphname = colon_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-520,0); ref = colon; }, { alignment = -1; pos = (-80,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-520,0); ref = colon; }, { alignment = -1; pos = (-80,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-520,0); ref = colon; }, { alignment = -1; pos = (-80,0); ref = colon; } ); width = 600; } ); }, { glyphname = colon_colon_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1040,0); ref = colon; }, { alignment = -1; pos = (-600,0); ref = colon; }, { alignment = -1; pos = (-160,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1040,0); ref = colon; }, { alignment = -1; pos = (-600,0); ref = colon; }, { alignment = -1; pos = (-160,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1040,0); ref = colon; }, { alignment = -1; pos = (-600,0); ref = colon; }, { alignment = -1; pos = (-160,0); ref = colon; } ); width = 600; } ); }, { glyphname = colon_colon_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1170,55); ref = colon; }, { alignment = -1; pos = (-720,55); ref = colon; }, { alignment = -1; pos = (-130,0); ref = equal; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1173,55); ref = colon; }, { alignment = -1; pos = (-721,55); ref = colon; }, { alignment = -1; pos = (-130,0); ref = equal; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1173,55); ref = colon; }, { alignment = -1; pos = (-721,55); ref = colon; }, { alignment = -1; pos = (-130,0); ref = equal; } ); width = 600; } ); }, { glyphname = colon_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-90,0); ref = question; }, { alignment = -1; pos = (-550,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-100,0); ref = question; }, { alignment = -1; pos = (-550,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-110,0); ref = question; }, { alignment = -1; pos = (-550,0); ref = colon; } ); width = 600; } ); }, { glyphname = colon_question_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-709,0); ref = question; }, { pos = (-1195,0); ref = colon; }, { pos = (-85,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-709,0); ref = question; }, { pos = (-1195,0); ref = colon; }, { pos = (-85,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-709,0); ref = question; }, { pos = (-1195,0); ref = colon; }, { pos = (-85,0); ref = greater; } ); width = 600; } ); }, { glyphname = colon_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (487,385,l), (509,525,l), (-41,525,l), (-63,385,l) ); }, { closed = 1; nodes = ( (-321,85,o), (-275,123,o), (-265,180,cs), (-256,241,o), (-289,281,o), (-349,281,cs), (-409,281,o), (-456,241,o), (-465,180,cs), (-475,123,o), (-441,85,o), (-381,85,cs) ); }, { closed = 1; nodes = ( (-274,379,o), (-228,417,o), (-219,474,cs), (-209,535,o), (-243,575,o), (-303,575,cs), (-363,575,o), (-409,535,o), (-419,474,cs), (-428,417,o), (-394,379,o), (-334,379,cs) ); }, { closed = 1; nodes = ( (447,135,l), (470,275,l), (-80,275,l), (-103,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (491,410,l), (504,490,l), (-46,490,l), (-59,410,l) ); }, { closed = 1; nodes = ( (-330,100,o), (-293,132,o), (-285,181,cs), (-278,229,o), (-305,260,o), (-353,260,cs), (-401,260,o), (-438,229,o), (-445,181,cs), (-453,132,o), (-426,100,o), (-378,100,cs) ); }, { closed = 1; nodes = ( (-283,400,o), (-246,431,o), (-238,480,cs), (-230,528,o), (-257,560,o), (-305,560,cs), (-353,560,o), (-390,528,o), (-398,480,cs), (-406,431,o), (-379,400,o), (-331,400,cs) ); }, { closed = 1; nodes = ( (453,170,l), (466,250,l), (-84,250,l), (-97,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (493,420,l), (500,465,l), (-50,465,l), (-57,420,l) ); }, { closed = 1; nodes = ( (-333,110,o), (-297,139,o), (-290,180,cs), (-284,221,o), (-311,250,o), (-354,250,cs), (-398,250,o), (-435,221,o), (-441,180,cs), (-448,139,o), (-421,110,o), (-377,110,cs) ); }, { closed = 1; nodes = ( (-285,410,o), (-249,439,o), (-243,480,cs), (-236,521,o), (-264,550,o), (-307,550,cs), (-351,550,o), (-387,521,o), (-394,480,cs), (-400,439,o), (-373,410,o), (-329,410,cs) ); }, { closed = 1; nodes = ( (457,195,l), (464,240,l), (-86,240,l), (-93,195,l) ); } ); width = 600; } ); }, { glyphname = colon_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-100,0); ref = greater; }, { alignment = -1; pos = (-600,55); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-100,0); ref = greater; }, { alignment = -1; pos = (-600,55); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-100,0); ref = greater; }, { alignment = -1; pos = (-600,55); ref = colon; } ); width = 600; } ); }, { glyphname = colon_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,55); ref = colon; }, { alignment = -1; pos = (-140,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,55); ref = colon; }, { alignment = -1; pos = (-140,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,55); ref = colon; }, { alignment = -1; pos = (-140,0); ref = less; } ); width = 600; } ); }, { glyphname = semicolon_semicolon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-520,0); ref = semicolon; }, { alignment = -1; pos = (-80,0); ref = semicolon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-520,0); ref = semicolon; }, { alignment = -1; pos = (-80,0); ref = semicolon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-520,0); ref = semicolon; }, { alignment = -1; pos = (-80,0); ref = semicolon; } ); width = 600; } ); }, { glyphname = semicolon_semicolon_semicolon.liga; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,0); ref = semicolon; }, { alignment = -1; pos = (-160,0); ref = semicolon; }, { alignment = -1; pos = (-1040,0); ref = semicolon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,0); ref = semicolon; }, { alignment = -1; pos = (-160,0); ref = semicolon; }, { alignment = -1; pos = (-1040,0); ref = semicolon; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,0); ref = semicolon; }, { alignment = -1; pos = (-160,0); ref = semicolon; }, { alignment = -1; pos = (-1040,0); ref = semicolon; } ); width = 600; } ); }, { glyphname = exclam_exclam.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-540,0); ref = exclam; }, { alignment = -1; pos = (-60,0); ref = exclam; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-540,0); ref = exclam; }, { alignment = -1; pos = (-60,0); ref = exclam; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-542,0); ref = exclam; }, { alignment = -1; pos = (-60,0); ref = exclam; } ); width = 600; } ); }, { glyphname = exclam_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-188,0,l), (-80,135,l), (497,135,l), (520,275,l), (34,275,l), (122,385,l), (537,385,l), (559,525,l), (234,525,l), (347,665,l), (197,665,l), (84,525,l), (-481,525,l), (-503,385,l), (-28,385,l), (-116,275,l), (-520,275,l), (-543,135,l), (-230,135,l), (-338,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-214,0,l), (-77,170,l), (503,170,l), (516,250,l), (-12,250,l), (116,410,l), (541,410,l), (554,490,l), (181,490,l), (321,665,l), (231,665,l), (91,490,l), (-486,490,l), (-499,410,l), (26,410,l), (-102,250,l), (-524,250,l), (-537,170,l), (-167,170,l), (-304,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-233,0,l), (-76,195,l), (507,195,l), (514,240,l), (-41,240,l), (105,421,l), (543,421,l), (550,466,l), (141,466,l), (300,665,l), (248,665,l), (89,466,l), (-490,466,l), (-497,421,l), (53,421,l), (-93,240,l), (-526,240,l), (-533,195,l), (-128,195,l), (-285,0,l) ); } ); width = 600; } ); }, { glyphname = exclam_equal_equal.liga; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-544,-50,l), (41,710,l), (-40,710,l), (-626,-50,l) ); }, { closed = 1; nodes = ( (551,508,l), (563,584,l), (-1067,584,l), (-1079,508,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (-1135,152,l), (-1147,76,l) ); }, { closed = 1; nodes = ( (517,292,l), (529,368,l), (-1101,368,l), (-1113,292,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-569,-110,l), (106,770,l), (-16,770,l), (-691,-110,l) ); }, { closed = 1; nodes = ( (560,530,l), (581,660,l), (-1059,660,l), (-1080,530,l) ); }, { closed = 1; nodes = ( (476,0,l), (497,130,l), (-1143,130,l), (-1164,0,l) ); }, { closed = 1; nodes = ( (518,265,l), (539,395,l), (-1101,395,l), (-1122,265,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-560,-50,l), (26,710,l), (-26,710,l), (-612,-50,l) ); }, { closed = 1; nodes = ( (541,502,l), (547,546,l), (-1063,546,l), (-1069,502,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,158,l), (-1124,158,l), (-1131,114,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,352,l), (-1093,352,l), (-1100,308,l) ); } ); width = 600; } ); }, { glyphname = question_period.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-490,0); ref = question; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-498,0); ref = question; }, { alignment = -1; pos = (-81,0); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-508,0); ref = question; }, { alignment = -1; pos = (-80,0); ref = period; } ); width = 600; } ); }, { glyphname = question_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-490,0); ref = question; }, { alignment = -1; pos = (-50,0); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-498,0); ref = question; }, { alignment = -1; pos = (-50,0); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-506,0); ref = question; }, { alignment = -1; pos = (-50,0); ref = colon; } ); width = 600; } ); }, { glyphname = question_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-540,0); ref = question; }, { alignment = -1; pos = (-35,0); ref = question; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-550,0); ref = question; }, { alignment = -1; pos = (-45,0); ref = question; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-560,0); ref = question; }, { alignment = -1; pos = (-55,0); ref = question; } ); width = 600; } ); }, { glyphname = question_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (507,225,l), (529,365,l), (54,365,l), (40,326,o), (2,292,o), (-40,280,c), (-48,225,l) ); }, { closed = 1; nodes = ( (546,475,l), (568,615,l), (99,615,l), (77,475,l) ); }, { alignment = -1; pos = (-553,0); ref = question; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (448,205,l), (461,285,l), (-91,285,l), (-99,269,o), (-118,254,o), (-146,241,c), (-152,205,l) ); }, { closed = 1; nodes = ( (486,445,l), (499,525,l), (59,525,l), (46,445,l) ); }, { alignment = -1; pos = (-560,0); ref = question; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (418,205,l), (426,255,l), (-96,255,l), (-103,236,o), (-124,222,o), (-149,221,c), (-152,205,l) ); }, { closed = 1; nodes = ( (452,415,l), (460,465,l), (50,465,l), (42,415,l) ); }, { alignment = -1; pos = (-560,0); ref = question; } ); width = 600; } ); }, { glyphname = asterisk_asterisk_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1160,0); ref = asterisk; }, { alignment = -1; pos = (-600,160); ref = asterisk; }, { alignment = -1; pos = (-41,0); ref = asterisk; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1160,0); ref = asterisk; }, { alignment = -1; pos = (-600,160); ref = asterisk; }, { alignment = -1; pos = (-40,0); ref = asterisk; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1160,0); ref = asterisk; }, { alignment = -1; pos = (-600,160); ref = asterisk; }, { alignment = -1; pos = (-40,0); ref = asterisk; } ); width = 600; } ); }, { glyphname = asterisk_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-370,127,ls), (-329,175,o), (-292,257,o), (-275,299,c), (-269,299,l), (-264,257,o), (-253,174,o), (-228,127,cs), (-188,52,l), (-70,126,l), (-109,202,l), (-135,248,o), (-194,297,o), (-226,322,c), (-223,326,l), (-178,326,o), (-98,329,o), (-43,348,cs), (44,377,l), (18,499,l), (-69,470,ls), (-124,451,o), (-195,401,o), (-234,372,c), (-238,375,l), (-216,416,o), (-175,497,o), (-166,555,cs), (-153,640,l), (-283,640,l), (-296,555,ls), (-305,497,o), (-290,416,o), (-282,375,c), (-287,371,l), (-317,400,o), (-373,451,o), (-422,470,cs), (-499,499,l), (-562,377,l), (-486,348,ls), (-437,329,o), (-356,326,o), (-311,326,c), (-310,323,l), (-351,298,o), (-425,248,o), (-465,201,cs), (-528,126,l), (-434,52,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-357,172,ls), (-326,209,o), (-294,264,o), (-276,300,c), (-268,300,l), (-262,264,o), (-248,208,o), (-229,172,cs), (-171,64,l), (-91,114,l), (-149,222,ls), (-168,258,o), (-206,297,o), (-232,322,c), (-227,331,l), (-188,334,o), (-130,341,o), (-87,355,cs), (39,397,l), (22,480,l), (-104,438,ls), (-148,423,o), (-203,390,o), (-238,368,c), (-242,371,l), (-225,408,o), (-201,469,o), (-193,515,cs), (-174,640,l), (-262,640,l), (-281,515,ls), (-289,469,o), (-283,408,o), (-279,371,c), (-285,367,l), (-312,390,o), (-357,423,o), (-397,438,cs), (-509,480,l), (-552,397,l), (-440,355,ls), (-401,341,o), (-344,333,o), (-307,330,c), (-305,323,l), (-339,299,o), (-390,259,o), (-421,222,cs), (-512,114,l), (-448,64,l) ); }, { alignment = -1; pos = (15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-347,207,ls), (-301,259,o), (-292,287,o), (-276,310,c), (-265,310,l), (-258,286,o), (-256,259,o), (-226,207,cs), (-161,93,l), (-112,124,l), (-177,238,ls), (-206,289,o), (-226,305,o), (-241,323,c), (-235,336,l), (-210,339,o), (-182,340,o), (-125,362,cs), (15,416,l), (5,466,l), (-136,413,ls), (-191,392,o), (-215,376,o), (-238,364,c), (-246,371,l), (-237,395,o), (-225,421,o), (-216,480,cs), (-192,630,l), (-246,630,l), (-270,480,ls), (-279,421,o), (-274,395,o), (-274,371,c), (-284,364,l), (-303,376,o), (-323,392,o), (-373,414,cs), (-495,467,l), (-522,417,l), (-400,363,ls), (-349,341,o), (-321,341,o), (-298,338,c), (-296,324,l), (-317,306,o), (-340,289,o), (-386,238,cs), (-487,125,l), (-447,94,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; } ); }, { glyphname = asterisk_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,-80); ref = asterisk; }, { alignment = -1; ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,-80); ref = asterisk; }, { alignment = -1; ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,-80); ref = asterisk; }, { alignment = -1; ref = slash; } ); width = 600; } ); }, { glyphname = numbersign_parenleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-471,0,l), (-413,175,l), (-283,175,l), (-341,0,l), (-241,0,l), (-183,175,l), (249,175,l), (265,275,l), (-150,275,l), (-93,455,l), (293,455,l), (309,555,l), (-60,555,l), (-1,730,l), (-101,730,l), (-160,555,l), (-290,555,l), (-231,730,l), (-331,730,l), (-390,555,l), (-486,555,l), (-502,455,l), (-423,455,l), (-480,275,l), (-565,275,l), (-581,175,l), (-513,175,l), (-571,0,l) ); }, { closed = 1; nodes = ( (-323,455,l), (-193,455,l), (-250,275,l), (-380,275,l) ); }, { alignment = -1; ref = parenleft; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (224,210,l), (235,275,l), (-167,275,l), (-105,455,l), (263,455,l), (273,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { alignment = -1; ref = parenleft; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-463,0,l), (-419,230,l), (-233,230,l), (-277,0,l), (-232,0,l), (-188,230,l), (240,230,l), (240,270,l), (-180,270,l), (-144,460,l), (240,460,l), (240,500,l), (-136,500,l), (-92,730,l), (-137,730,l), (-181,500,l), (-367,500,l), (-323,730,l), (-368,730,l), (-412,500,l), (-530,500,l), (-530,460,l), (-420,460,l), (-456,270,l), (-565,270,l), (-565,230,l), (-464,230,l), (-508,0,l) ); }, { closed = 1; nodes = ( (-375,460,l), (-189,460,l), (-225,270,l), (-411,270,l) ); }, { alignment = -1; ref = parenleft; } ); width = 600; } ); }, { glyphname = numbersign_braceleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-472,0,l), (-414,175,l), (-284,175,l), (-342,0,l), (-242,0,l), (-184,175,l), (348,175,l), (364,275,l), (-151,275,l), (-94,455,l), (392,455,l), (408,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-487,555,l), (-503,455,l), (-424,455,l), (-481,275,l), (-566,275,l), (-582,175,l), (-514,175,l), (-572,0,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); }, { closed = 1; nodes = ( (463,-111,l), (486,29,l), (431,29,ls), (395,29,o), (372,53,o), (380,89,cs), (415,244,ls), (432,319,o), (376,361,o), (299,364,c), (299,369,l), (377,372,o), (446,409,o), (453,484,cs), (466,630,ls), (470,673,o), (497,690,o), (535,690,cs), (590,690,l), (612,830,l), (527,830,ls), (417,830,o), (328,760,o), (319,650,cs), (306,504,ls), (302,462,o), (267,435,o), (225,435,cs), (125,435,l), (103,295,l), (203,295,ls), (245,295,o), (271,266,o), (261,224,cs), (228,74,ls), (203,-38,o), (269,-111,o), (378,-111,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (334,210,l), (345,275,l), (-167,275,l), (-105,455,l), (373,455,l), (383,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { closed = 1; nodes = ( (454,-110,l), (466,-30,l), (421,-30,ls), (358,-30,o), (328,-1,o), (340,56,cs), (377,225,ls), (392,298,o), (363,361,o), (284,364,c), (284,369,l), (364,372,o), (414,432,o), (421,505,cs), (436,664,ls), (441,721,o), (482,750,o), (545,750,cs), (590,750,l), (602,830,l), (557,830,ls), (439,830,o), (356,769,o), (346,664,cs), (331,505,ls), (324,434,o), (301,405,o), (215,405,cs), (140,405,l), (127,325,l), (202,325,ls), (289,325,o), (302,296,o), (287,225,cs), (250,56,ls), (227,-49,o), (291,-110,o), (409,-110,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-507,0,l), (-427,230,l), (-241,230,l), (-321,0,l), (-276,0,l), (-196,230,l), (322,230,l), (329,270,l), (-181,270,l), (-115,460,l), (359,460,l), (365,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-495,500,l), (-501,460,l), (-391,460,l), (-457,270,l), (-566,270,l), (-573,230,l), (-472,230,l), (-552,0,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); }, { closed = 1; nodes = ( (444,-110,l), (451,-65,l), (401,-65,ls), (339,-65,o), (304,-25,o), (317,40,cs), (359,243,ls), (375,318,o), (343,363,o), (285,366,c), (285,369,l), (345,372,o), (391,415,o), (398,488,cs), (419,680,ls), (426,745,o), (473,785,o), (535,785,cs), (585,785,l), (592,830,l), (542,830,ls), (446,830,o), (379,775,o), (369,680,cs), (348,488,ls), (341,414,o), (314,388,o), (232,388,cs), (152,388,l), (145,342,l), (225,342,ls), (311,342,o), (324,314,o), (309,243,cs), (267,40,ls), (247,-55,o), (298,-110,o), (394,-110,cs) ); } ); width = 600; } ); }, { glyphname = numbersign_bracketleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-468,0,l), (-410,175,l), (-280,175,l), (-338,0,l), (-238,0,l), (-180,175,l), (252,175,l), (268,275,l), (-147,275,l), (-90,455,l), (296,455,l), (312,555,l), (-57,555,l), (2,730,l), (-98,730,l), (-157,555,l), (-287,555,l), (-228,730,l), (-328,730,l), (-387,555,l), (-483,555,l), (-499,455,l), (-420,455,l), (-477,275,l), (-562,275,l), (-578,175,l), (-510,175,l), (-568,0,l) ); }, { closed = 1; nodes = ( (-320,455,l), (-190,455,l), (-247,275,l), (-377,275,l) ); }, { alignment = -1; ref = bracketleft; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (254,210,l), (265,275,l), (-167,275,l), (-105,455,l), (293,455,l), (303,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { alignment = -1; ref = bracketleft; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-503,0,l), (-423,230,l), (-237,230,l), (-317,0,l), (-272,0,l), (-192,230,l), (236,230,l), (243,270,l), (-177,270,l), (-111,460,l), (273,460,l), (279,500,l), (-97,500,l), (-16,730,l), (-61,730,l), (-142,500,l), (-328,500,l), (-247,730,l), (-292,730,l), (-373,500,l), (-491,500,l), (-497,460,l), (-387,460,l), (-453,270,l), (-562,270,l), (-569,230,l), (-468,230,l), (-548,0,l) ); }, { closed = 1; nodes = ( (-342,460,l), (-156,460,l), (-222,270,l), (-408,270,l) ); }, { alignment = -1; ref = bracketleft; } ); width = 600; } ); }, { glyphname = numbersign_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (381,409,o), (427,447,o), (436,504,cs), (445,565,o), (412,605,o), (352,605,cs), (292,605,o), (245,565,o), (236,504,cs), (227,447,o), (261,409,o), (321,409,cs) ); }, { closed = 1; nodes = ( (334,115,o), (380,153,o), (389,210,cs), (399,271,o), (365,311,o), (305,311,cs), (245,311,o), (199,271,o), (189,210,cs), (180,153,o), (214,115,o), (274,115,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (372,430,o), (409,461,o), (417,510,cs), (424,558,o), (397,590,o), (349,590,cs), (301,590,o), (264,558,o), (257,510,cs), (249,461,o), (276,430,o), (324,430,cs) ); }, { closed = 1; nodes = ( (325,130,o), (362,162,o), (369,211,cs), (377,259,o), (350,290,o), (302,290,cs), (254,290,o), (217,259,o), (209,211,cs), (202,162,o), (229,130,o), (277,130,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (370,440,o), (405,469,o), (412,510,cs), (418,551,o), (391,580,o), (348,580,cs), (304,580,o), (267,551,o), (261,510,cs), (254,469,o), (282,440,o), (326,440,cs) ); }, { closed = 1; nodes = ( (322,140,o), (358,169,o), (364,210,cs), (371,251,o), (343,280,o), (300,280,cs), (256,280,o), (220,251,o), (213,210,cs), (207,169,o), (234,140,o), (278,140,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; } ); }, { glyphname = numbersign_exclam.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (299,245,l), (440,580,l), (493,730,l), (335,730,l), (282,580,l), (187,245,l) ); }, { closed = 1; nodes = ( (168,-5,ls), (214,-5,o), (253,22,o), (269,65,cs), (284,107,o), (263,135,o), (218,135,cs), (188,135,ls), (143,135,o), (104,107,o), (89,65,cs), (74,23,o), (94,-5,o), (139,-5,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,215,l), (425,610,l), (467,730,l), (361,730,l), (319,610,l), (200,215,l) ); }, { closed = 1; nodes = ( (169,-5,ls), (204,-5,o), (238,21,o), (251,56,cs), (263,90,o), (249,115,o), (211,115,cs), (181,115,ls), (147,115,o), (112,90,o), (101,55,cs), (88,20,o), (104,-5,o), (139,-5,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (238,205,l), (383,570,l), (440,730,l), (378,730,l), (321,570,l), (208,205,l) ); }, { closed = 1; nodes = ( (155,-5,ls), (188,-5,o), (218,17,o), (230,50,cs), (241,83,o), (227,105,o), (194,105,cs), (189,105,ls), (156,105,o), (126,83,o), (115,50,cs), (103,17,o), (117,-5,o), (150,-5,cs) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; } ); }, { glyphname = numbersign_question.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-471,0,l), (-413,175,l), (-283,175,l), (-341,0,l), (-241,0,l), (-183,175,l), (-86,175,l), (-70,275,l), (-150,275,l), (-93,455,l), (178,455,l), (188,520,ls), (197,572,o), (245,600,o), (326,600,cs), (407,600,o), (447,572,o), (438,520,cs), (430,467,o), (384,440,o), (307,440,cs), (237,440,l), (208,225,l), (333,225,l), (345,305,l), (471,305,o), (568,390,o), (588,520,cs), (610,655,o), (517,740,o), (348,740,cs), (177,740,o), (58,654,o), (36,516,c), (119,555,l), (-60,555,l), (-1,730,l), (-101,730,l), (-160,555,l), (-290,555,l), (-231,730,l), (-331,730,l), (-390,555,l), (-486,555,l), (-502,455,l), (-423,455,l), (-480,275,l), (-565,275,l), (-581,175,l), (-513,175,l), (-571,0,l) ); }, { closed = 1; nodes = ( (-323,455,l), (-193,455,l), (-250,275,l), (-380,275,l) ); }, { closed = 1; nodes = ( (243,-5,ls), (289,-5,o), (323,22,o), (330,65,cs), (337,107,o), (311,135,o), (266,135,cs), (236,135,ls), (191,135,o), (157,107,o), (150,65,cs), (144,23,o), (169,-5,o), (214,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (-81,210,l), (-70,275,l), (-167,275,l), (-105,455,l), (158,455,l), (168,520,ls), (182,606,o), (249,660,o), (341,660,cs), (432,660,o), (480,606,o), (466,520,cs), (452,432,o), (393,380,o), (307,380,cs), (257,380,l), (229,205,l), (319,205,l), (335,305,l), (452,313,o), (539,398,o), (558,520,cs), (580,654,o), (499,740,o), (353,740,cs), (211,740,o), (99,651,o), (79,521,cs), (78,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { closed = 1; nodes = ( (250,-5,ls), (289,-5,o), (319,18,o), (325,54,cs), (330,90,o), (308,115,o), (269,115,cs), (249,115,ls), (210,115,o), (180,90,o), (175,54,cs), (169,17,o), (191,-5,o), (230,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-507,0,l), (-427,230,l), (-241,230,l), (-321,0,l), (-276,0,l), (-196,230,l), (-78,230,l), (-71,270,l), (-181,270,l), (-115,460,l), (139,460,l), (150,530,ls), (166,633,o), (240,695,o), (346,695,cs), (452,695,o), (506,633,o), (490,530,cs), (475,433,o), (401,375,o), (296,375,cs), (256,375,l), (229,205,l), (279,205,l), (299,330,l), (427,330,o), (521,408,o), (540,530,cs), (560,659,o), (488,740,o), (353,740,cs), (218,740,o), (120,659,o), (100,530,cs), (95,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-495,500,l), (-501,460,l), (-391,460,l), (-457,270,l), (-566,270,l), (-573,230,l), (-472,230,l), (-552,0,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); }, { closed = 1; nodes = ( (221,-5,ls), (254,-5,o), (280,17,o), (285,50,cs), (290,83,o), (272,105,o), (239,105,cs), (234,105,ls), (201,105,o), (175,83,o), (170,50,cs), (165,17,o), (183,-5,o), (216,-5,cs) ); } ); width = 600; } ); }, { glyphname = numbersign_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-442,0,l), (-384,175,l), (-254,175,l), (-312,0,l), (-212,0,l), (-154,175,l), (56,175,l), (-2,0,l), (98,0,l), (156,175,l), (286,175,l), (228,0,l), (328,0,l), (386,175,l), (483,175,l), (499,275,l), (419,275,l), (476,455,l), (562,455,l), (578,555,l), (509,555,l), (568,730,l), (468,730,l), (409,555,l), (279,555,l), (338,730,l), (238,730,l), (179,555,l), (-31,555,l), (28,730,l), (-72,730,l), (-131,555,l), (-261,555,l), (-202,730,l), (-302,730,l), (-361,555,l), (-457,555,l), (-473,455,l), (-394,455,l), (-451,275,l), (-536,275,l), (-552,175,l), (-484,175,l), (-542,0,l) ); }, { closed = 1; nodes = ( (-294,455,l), (-164,455,l), (-221,275,l), (-351,275,l) ); }, { closed = 1; nodes = ( (-64,455,l), (146,455,l), (89,275,l), (-121,275,l) ); }, { closed = 1; nodes = ( (246,455,l), (376,455,l), (319,275,l), (189,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-461,0,l), (-389,210,l), (-229,210,l), (-301,0,l), (-231,0,l), (-159,210,l), (81,210,l), (9,0,l), (79,0,l), (151,210,l), (311,210,l), (239,0,l), (309,0,l), (381,210,l), (489,210,l), (500,275,l), (403,275,l), (465,455,l), (563,455,l), (573,520,l), (486,520,l), (559,730,l), (489,730,l), (416,520,l), (256,520,l), (329,730,l), (259,730,l), (186,520,l), (-54,520,l), (19,730,l), (-51,730,l), (-124,520,l), (-284,520,l), (-211,730,l), (-281,730,l), (-354,520,l), (-462,520,l), (-472,455,l), (-375,455,l), (-437,275,l), (-535,275,l), (-546,210,l), (-459,210,l), (-531,0,l) ); }, { closed = 1; nodes = ( (-305,455,l), (-145,455,l), (-207,275,l), (-367,275,l) ); }, { closed = 1; nodes = ( (-75,455,l), (165,455,l), (103,275,l), (-137,275,l) ); }, { closed = 1; nodes = ( (235,455,l), (395,455,l), (333,275,l), (173,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-477,0,l), (-397,230,l), (-211,230,l), (-291,0,l), (-246,0,l), (-166,230,l), (98,230,l), (18,0,l), (63,0,l), (143,230,l), (329,230,l), (249,0,l), (294,0,l), (374,230,l), (492,230,l), (499,270,l), (389,270,l), (455,460,l), (564,460,l), (570,500,l), (469,500,l), (550,730,l), (505,730,l), (424,500,l), (238,500,l), (319,730,l), (274,730,l), (193,500,l), (-71,500,l), (10,730,l), (-35,730,l), (-116,500,l), (-302,500,l), (-221,730,l), (-266,730,l), (-347,500,l), (-465,500,l), (-471,460,l), (-361,460,l), (-427,270,l), (-536,270,l), (-543,230,l), (-442,230,l), (-522,0,l) ); }, { closed = 1; nodes = ( (-316,460,l), (-130,460,l), (-196,270,l), (-382,270,l) ); }, { closed = 1; nodes = ( (-85,460,l), (179,460,l), (113,270,l), (-151,270,l) ); }, { closed = 1; nodes = ( (224,460,l), (410,460,l), (344,270,l), (158,270,l) ); } ); width = 600; } ); }, { glyphname = numbersign_numbersign_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1042,0,l), (-984,175,l), (-854,175,l), (-912,0,l), (-812,0,l), (-754,175,l), (-514,175,l), (-572,0,l), (-472,0,l), (-414,175,l), (-284,175,l), (-342,0,l), (-242,0,l), (-184,175,l), (56,175,l), (-2,0,l), (98,0,l), (156,175,l), (286,175,l), (228,0,l), (328,0,l), (386,175,l), (483,175,l), (499,275,l), (419,275,l), (476,455,l), (562,455,l), (578,555,l), (509,555,l), (568,730,l), (468,730,l), (409,555,l), (279,555,l), (338,730,l), (238,730,l), (179,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-631,555,l), (-572,730,l), (-672,730,l), (-731,555,l), (-861,555,l), (-802,730,l), (-902,730,l), (-961,555,l), (-1057,555,l), (-1073,455,l), (-994,455,l), (-1051,275,l), (-1136,275,l), (-1152,175,l), (-1084,175,l), (-1142,0,l) ); }, { closed = 1; nodes = ( (-894,455,l), (-764,455,l), (-821,275,l), (-951,275,l) ); }, { closed = 1; nodes = ( (-664,455,l), (-424,455,l), (-481,275,l), (-721,275,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); }, { closed = 1; nodes = ( (-94,455,l), (146,455,l), (89,275,l), (-151,275,l) ); }, { closed = 1; nodes = ( (246,455,l), (376,455,l), (319,275,l), (189,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1061,0,l), (-989,210,l), (-829,210,l), (-901,0,l), (-831,0,l), (-759,210,l), (-489,210,l), (-561,0,l), (-491,0,l), (-419,210,l), (-259,210,l), (-331,0,l), (-261,0,l), (-189,210,l), (81,210,l), (9,0,l), (79,0,l), (151,210,l), (311,210,l), (239,0,l), (309,0,l), (381,210,l), (489,210,l), (500,275,l), (403,275,l), (465,455,l), (563,455,l), (573,520,l), (486,520,l), (559,730,l), (489,730,l), (416,520,l), (256,520,l), (329,730,l), (259,730,l), (186,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-654,520,l), (-581,730,l), (-651,730,l), (-724,520,l), (-884,520,l), (-811,730,l), (-881,730,l), (-954,520,l), (-1062,520,l), (-1072,455,l), (-975,455,l), (-1037,275,l), (-1135,275,l), (-1146,210,l), (-1059,210,l), (-1131,0,l) ); }, { closed = 1; nodes = ( (-905,455,l), (-745,455,l), (-807,275,l), (-967,275,l) ); }, { closed = 1; nodes = ( (-675,455,l), (-405,455,l), (-467,275,l), (-737,275,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); }, { closed = 1; nodes = ( (-105,455,l), (165,455,l), (103,275,l), (-167,275,l) ); }, { closed = 1; nodes = ( (235,455,l), (395,455,l), (333,275,l), (173,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1077,0,l), (-997,230,l), (-811,230,l), (-891,0,l), (-846,0,l), (-766,230,l), (-472,230,l), (-552,0,l), (-507,0,l), (-427,230,l), (-241,230,l), (-321,0,l), (-276,0,l), (-196,230,l), (98,230,l), (18,0,l), (63,0,l), (143,230,l), (329,230,l), (249,0,l), (294,0,l), (374,230,l), (492,230,l), (499,270,l), (389,270,l), (455,460,l), (564,460,l), (570,500,l), (469,500,l), (550,730,l), (505,730,l), (424,500,l), (238,500,l), (319,730,l), (274,730,l), (193,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-671,500,l), (-590,730,l), (-635,730,l), (-716,500,l), (-902,500,l), (-821,730,l), (-866,730,l), (-947,500,l), (-1065,500,l), (-1071,460,l), (-961,460,l), (-1027,270,l), (-1136,270,l), (-1143,230,l), (-1042,230,l), (-1122,0,l) ); }, { closed = 1; nodes = ( (-916,460,l), (-730,460,l), (-796,270,l), (-982,270,l) ); }, { closed = 1; nodes = ( (-685,460,l), (-391,460,l), (-457,270,l), (-751,270,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); }, { closed = 1; nodes = ( (-115,460,l), (179,460,l), (113,270,l), (-181,270,l) ); }, { closed = 1; nodes = ( (224,460,l), (410,460,l), (344,270,l), (158,270,l) ); } ); width = 600; } ); }, { glyphname = numbersign_numbersign_numbersign_numbersign.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1622,0,l), (-1564,175,l), (-1434,175,l), (-1492,0,l), (-1392,0,l), (-1334,175,l), (-1083,175,l), (-1141,0,l), (-1041,0,l), (-983,175,l), (-853,175,l), (-911,0,l), (-811,0,l), (-753,175,l), (-514,175,l), (-572,0,l), (-472,0,l), (-414,175,l), (-284,175,l), (-342,0,l), (-242,0,l), (-184,175,l), (56,175,l), (-2,0,l), (98,0,l), (156,175,l), (286,175,l), (228,0,l), (328,0,l), (386,175,l), (483,175,l), (499,275,l), (419,275,l), (476,455,l), (562,455,l), (578,555,l), (509,555,l), (568,730,l), (468,730,l), (409,555,l), (279,555,l), (338,730,l), (238,730,l), (179,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-630,555,l), (-571,730,l), (-671,730,l), (-730,555,l), (-860,555,l), (-801,730,l), (-901,730,l), (-960,555,l), (-1211,555,l), (-1152,730,l), (-1252,730,l), (-1311,555,l), (-1441,555,l), (-1382,730,l), (-1482,730,l), (-1541,555,l), (-1637,555,l), (-1653,455,l), (-1574,455,l), (-1631,275,l), (-1716,275,l), (-1732,175,l), (-1664,175,l), (-1722,0,l) ); }, { closed = 1; nodes = ( (-1474,455,l), (-1344,455,l), (-1401,275,l), (-1531,275,l) ); }, { closed = 1; nodes = ( (-1244,455,l), (-993,455,l), (-1050,275,l), (-1301,275,l) ); }, { closed = 1; nodes = ( (-893,455,l), (-763,455,l), (-820,275,l), (-950,275,l) ); }, { closed = 1; nodes = ( (-663,455,l), (-424,455,l), (-481,275,l), (-720,275,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); }, { closed = 1; nodes = ( (-94,455,l), (146,455,l), (89,275,l), (-151,275,l) ); }, { closed = 1; nodes = ( (246,455,l), (376,455,l), (319,275,l), (189,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1661,0,l), (-1589,210,l), (-1429,210,l), (-1501,0,l), (-1431,0,l), (-1359,210,l), (-1079,210,l), (-1151,0,l), (-1081,0,l), (-1009,210,l), (-849,210,l), (-921,0,l), (-851,0,l), (-779,210,l), (-499,210,l), (-571,0,l), (-501,0,l), (-429,210,l), (-269,210,l), (-341,0,l), (-271,0,l), (-199,210,l), (81,210,l), (9,0,l), (79,0,l), (151,210,l), (311,210,l), (239,0,l), (309,0,l), (381,210,l), (489,210,l), (500,275,l), (403,275,l), (465,455,l), (563,455,l), (573,520,l), (486,520,l), (559,730,l), (489,730,l), (416,520,l), (256,520,l), (329,730,l), (259,730,l), (186,520,l), (-94,520,l), (-21,730,l), (-91,730,l), (-164,520,l), (-324,520,l), (-251,730,l), (-321,730,l), (-394,520,l), (-674,520,l), (-601,730,l), (-671,730,l), (-744,520,l), (-904,520,l), (-831,730,l), (-901,730,l), (-974,520,l), (-1254,520,l), (-1181,730,l), (-1251,730,l), (-1324,520,l), (-1484,520,l), (-1411,730,l), (-1481,730,l), (-1554,520,l), (-1662,520,l), (-1672,455,l), (-1575,455,l), (-1637,275,l), (-1735,275,l), (-1746,210,l), (-1659,210,l), (-1731,0,l) ); }, { closed = 1; nodes = ( (-1505,455,l), (-1345,455,l), (-1407,275,l), (-1567,275,l) ); }, { closed = 1; nodes = ( (-1275,455,l), (-995,455,l), (-1057,275,l), (-1337,275,l) ); }, { closed = 1; nodes = ( (-925,455,l), (-765,455,l), (-827,275,l), (-987,275,l) ); }, { closed = 1; nodes = ( (-695,455,l), (-415,455,l), (-477,275,l), (-757,275,l) ); }, { closed = 1; nodes = ( (-345,455,l), (-185,455,l), (-247,275,l), (-407,275,l) ); }, { closed = 1; nodes = ( (-115,455,l), (165,455,l), (103,275,l), (-177,275,l) ); }, { closed = 1; nodes = ( (235,455,l), (395,455,l), (333,275,l), (173,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1677,0,l), (-1597,230,l), (-1411,230,l), (-1491,0,l), (-1446,0,l), (-1366,230,l), (-1062,230,l), (-1142,0,l), (-1097,0,l), (-1017,230,l), (-831,230,l), (-911,0,l), (-866,0,l), (-786,230,l), (-482,230,l), (-562,0,l), (-517,0,l), (-437,230,l), (-251,230,l), (-331,0,l), (-286,0,l), (-206,230,l), (98,230,l), (18,0,l), (63,0,l), (143,230,l), (329,230,l), (249,0,l), (294,0,l), (374,230,l), (492,230,l), (499,270,l), (389,270,l), (455,460,l), (564,460,l), (570,500,l), (469,500,l), (550,730,l), (505,730,l), (424,500,l), (238,500,l), (319,730,l), (274,730,l), (193,500,l), (-111,500,l), (-30,730,l), (-75,730,l), (-156,500,l), (-342,500,l), (-261,730,l), (-306,730,l), (-387,500,l), (-691,500,l), (-610,730,l), (-655,730,l), (-736,500,l), (-922,500,l), (-841,730,l), (-886,730,l), (-967,500,l), (-1271,500,l), (-1190,730,l), (-1235,730,l), (-1316,500,l), (-1502,500,l), (-1421,730,l), (-1466,730,l), (-1547,500,l), (-1665,500,l), (-1671,460,l), (-1561,460,l), (-1627,270,l), (-1736,270,l), (-1743,230,l), (-1642,230,l), (-1722,0,l) ); }, { closed = 1; nodes = ( (-1516,460,l), (-1330,460,l), (-1396,270,l), (-1582,270,l) ); }, { closed = 1; nodes = ( (-1285,460,l), (-981,460,l), (-1047,270,l), (-1351,270,l) ); }, { closed = 1; nodes = ( (-936,460,l), (-750,460,l), (-816,270,l), (-1002,270,l) ); }, { closed = 1; nodes = ( (-705,460,l), (-401,460,l), (-467,270,l), (-771,270,l) ); }, { closed = 1; nodes = ( (-356,460,l), (-170,460,l), (-236,270,l), (-422,270,l) ); }, { closed = 1; nodes = ( (-125,460,l), (179,460,l), (113,270,l), (-191,270,l) ); }, { closed = 1; nodes = ( (224,460,l), (410,460,l), (344,270,l), (158,270,l) ); } ); width = 600; } ); }, { glyphname = numbersign_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (543,420,l), (565,560,l), (125,560,l), (103,420,l) ); }, { closed = 1; nodes = ( (503,170,l), (525,310,l), (85,310,l), (63,170,l) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (547,450,l), (560,530,l), (120,530,l), (107,450,l) ); }, { closed = 1; nodes = ( (508,200,l), (520,280,l), (80,280,l), (68,200,l) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (551,475,l), (558,520,l), (118,520,l), (111,475,l) ); }, { closed = 1; nodes = ( (509,210,l), (516,255,l), (76,255,l), (69,210,l) ); }, { alignment = -1; pos = (-600,0); ref = numbersign; } ); width = 600; } ); }, { glyphname = numbersign_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (480,-165,l), (502,-25,l), (-251,-25,l), (-184,175,l), (-87,175,l), (-71,275,l), (-151,275,l), (-94,455,l), (-8,455,l), (8,555,l), (-61,555,l), (-2,730,l), (-102,730,l), (-161,555,l), (-291,555,l), (-232,730,l), (-332,730,l), (-391,555,l), (-487,555,l), (-503,455,l), (-424,455,l), (-481,275,l), (-566,275,l), (-582,175,l), (-514,175,l), (-572,0,l), (-472,0,l), (-414,175,l), (-284,175,l), (-397,-165,l) ); }, { closed = 1; nodes = ( (-324,455,l), (-194,455,l), (-251,275,l), (-381,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (-270,-25,l), (-189,210,l), (-81,210,l), (-70,275,l), (-167,275,l), (-105,455,l), (-7,455,l), (3,520,l), (-84,520,l), (-11,730,l), (-81,730,l), (-154,520,l), (-314,520,l), (-241,730,l), (-311,730,l), (-384,520,l), (-492,520,l), (-502,455,l), (-405,455,l), (-467,275,l), (-565,275,l), (-576,210,l), (-489,210,l), (-561,0,l), (-491,0,l), (-419,210,l), (-259,210,l), (-366,-100,l) ); }, { closed = 1; nodes = ( (-335,455,l), (-175,455,l), (-237,275,l), (-397,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (475,-70,l), (482,-25,l), (-285,-25,l), (-196,230,l), (-78,230,l), (-71,270,l), (-181,270,l), (-115,460,l), (-6,460,l), (0,500,l), (-101,500,l), (-20,730,l), (-65,730,l), (-146,500,l), (-332,500,l), (-251,730,l), (-296,730,l), (-377,500,l), (-495,500,l), (-501,460,l), (-391,460,l), (-457,270,l), (-566,270,l), (-573,230,l), (-472,230,l), (-552,0,l), (-507,0,l), (-427,230,l), (-241,230,l), (-345,-70,l) ); }, { closed = 1; nodes = ( (-346,460,l), (-160,460,l), (-226,270,l), (-412,270,l) ); } ); width = 600; } ); }, { glyphname = numbersign_underscore_parenleft.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (415,-165,l), (437,-23,l), (330,4,o), (276,94,o), (295,214,cs), (333,455,ls), (353,578,o), (434,667,o), (551,695,c), (575,845,l), (359,789,o), (213,645,o), (183,455,cs), (145,214,ls), (130,118,o), (155,15,o), (211,-25,c), (-851,-25,l), (-784,175,l), (-687,175,l), (-671,275,l), (-751,275,l), (-694,455,l), (-608,455,l), (-592,555,l), (-661,555,l), (-602,730,l), (-702,730,l), (-761,555,l), (-891,555,l), (-832,730,l), (-932,730,l), (-991,555,l), (-1087,555,l), (-1103,455,l), (-1024,455,l), (-1081,275,l), (-1166,275,l), (-1182,175,l), (-1114,175,l), (-1172,0,l), (-1072,0,l), (-1014,175,l), (-884,175,l), (-997,-165,l) ); }, { closed = 1; nodes = ( (-924,455,l), (-794,455,l), (-851,275,l), (-981,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (411,-100,l), (423,-25,l), (301,7,o), (240,122,o), (265,275,cs), (291,445,ls), (316,602,o), (417,720,o), (550,750,c), (563,835,l), (371,789,o), (232,640,o), (201,445,cs), (175,275,ls), (154,143,o), (190,31,o), (269,-25,c), (-870,-25,l), (-789,210,l), (-681,210,l), (-670,275,l), (-767,275,l), (-705,455,l), (-607,455,l), (-597,520,l), (-684,520,l), (-611,730,l), (-681,730,l), (-754,520,l), (-914,520,l), (-841,730,l), (-911,730,l), (-984,520,l), (-1092,520,l), (-1102,455,l), (-1005,455,l), (-1067,275,l), (-1165,275,l), (-1176,210,l), (-1089,210,l), (-1161,0,l), (-1091,0,l), (-1019,210,l), (-859,210,l), (-966,-100,l) ); }, { closed = 1; nodes = ( (-935,455,l), (-775,455,l), (-837,275,l), (-997,275,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (430,-70,l), (437,-25,l), (301,11,o), (237,133,o), (264,305,cs), (290,465,ls), (317,640,o), (417,759,o), (567,795,c), (575,845,l), (384,799,o), (267,669,o), (235,465,cs), (209,305,ls), (185,149,o), (225,30,o), (327,-25,c), (-885,-25,l), (-796,230,l), (-678,230,l), (-671,270,l), (-781,270,l), (-715,460,l), (-606,460,l), (-600,500,l), (-701,500,l), (-620,730,l), (-665,730,l), (-746,500,l), (-932,500,l), (-851,730,l), (-896,730,l), (-977,500,l), (-1095,500,l), (-1101,460,l), (-991,460,l), (-1057,270,l), (-1166,270,l), (-1173,230,l), (-1072,230,l), (-1152,0,l), (-1107,0,l), (-1027,230,l), (-841,230,l), (-945,-70,l) ); }, { closed = 1; nodes = ( (-946,460,l), (-760,460,l), (-826,270,l), (-1012,270,l) ); } ); width = 600; } ); }, { glyphname = slash_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-20,130); ref = asterisk; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (20,130); ref = asterisk; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (20,130); ref = asterisk; } ); width = 600; } ); }, { glyphname = slash_asterisk_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1200,0); ref = slash; }, { alignment = -1; pos = (-600,130); ref = asterisk; }, { alignment = -1; pos = (0,130); ref = asterisk; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1200,0); ref = slash; }, { alignment = -1; pos = (-600,130); ref = asterisk; }, { alignment = -1; pos = (0,130); ref = asterisk; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1200,0); ref = slash; }, { alignment = -1; pos = (-599,130); ref = asterisk; }, { alignment = -1; pos = (0,130); ref = asterisk; } ); width = 600; } ); }, { glyphname = slash_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (467,135,l), (489,274,l), (-323,274,l), (-345,135,l) ); }, { closed = 1; nodes = ( (507,385,l), (529,524,l), (-203,524,l), (-225,385,l) ); }, { alignment = -1; pos = (-570,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (473,170,l), (486,250,l), (-314,250,l), (-327,170,l) ); }, { closed = 1; nodes = ( (511,410,l), (524,490,l), (-196,490,l), (-209,410,l) ); }, { alignment = -1; pos = (-570,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,195,l), (484,240,l), (-326,240,l), (-333,195,l) ); }, { closed = 1; nodes = ( (513,421,l), (520,466,l), (-210,466,l), (-217,421,l) ); }, { alignment = -1; pos = (-570,0); ref = slash; } ); width = 600; } ); }, { glyphname = slash_equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (467,135,l), (489,274,l), (-893,274,l), (-915,135,l) ); }, { closed = 1; nodes = ( (507,385,l), (529,524,l), (-773,524,l), (-795,385,l) ); }, { alignment = -1; pos = (-1214,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (473,170,l), (486,250,l), (-944,250,l), (-957,170,l) ); }, { closed = 1; nodes = ( (511,410,l), (524,490,l), (-826,490,l), (-839,410,l) ); }, { alignment = -1; pos = (-1239,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,195,l), (484,240,l), (-949,240,l), (-956,195,l) ); }, { closed = 1; nodes = ( (513,421,l), (520,466,l), (-833,466,l), (-840,421,l) ); }, { alignment = -1; pos = (-1239,0); ref = slash; } ); width = 600; } ); }, { glyphname = slash_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-412,-110,l), (-73,542,l), (312,355,ls), (339,342,o), (377,335,o), (399,333,c), (377,331,o), (336,324,o), (306,312,cs), (10,190,l), (-11,49,l), (482,258,l), (505,401,l), (-15,654,l), (77,830,l), (-82,830,l), (-571,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-456,-110,l), (-83,588,l), (361,355,ls), (384,343,o), (406,336,o), (418,333,c), (406,330,o), (381,323,o), (354,311,cs), (21,160,l), (6,65,l), (470,280,l), (486,380,l), (-45,657,l), (47,830,l), (-48,830,l), (-551,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-483,-110,l), (-86,635,l), (357,375,ls), (382,360,o), (415,342,o), (432,333,c), (412,324,o), (374,306,o), (343,291,cs), (28,137,l), (19,80,l), (475,307,l), (482,353,l), (-63,675,l), (19,830,l), (-31,830,l), (-533,-110,l) ); } ); width = 600; } ); }, { glyphname = slash_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-75,0); ref = slash; }, { alignment = -1; pos = (-525,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-75,0); ref = slash; }, { alignment = -1; pos = (-525,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-76,0); ref = slash; }, { alignment = -1; pos = (-524,0); ref = slash; } ); width = 600; } ); }, { glyphname = slash_slash_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (447,135,l), (469,274,l), (-433,274,l), (-455,135,l) ); }, { closed = 1; nodes = ( (487,385,l), (509,524,l), (-313,524,l), (-335,385,l) ); }, { alignment = -1; pos = (-660,0); ref = slash; }, { alignment = -1; pos = (-1111,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (453,170,l), (466,250,l), (-414,250,l), (-427,170,l) ); }, { closed = 1; nodes = ( (491,410,l), (504,490,l), (-296,490,l), (-309,410,l) ); }, { alignment = -1; pos = (-654,0); ref = slash; }, { alignment = -1; pos = (-1105,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (457,195,l), (464,240,l), (-412,240,l), (-419,195,l) ); }, { closed = 1; nodes = ( (493,421,l), (500,466,l), (-296,466,l), (-303,421,l) ); }, { alignment = -1; pos = (-654,0); ref = slash; }, { alignment = -1; pos = (-1105,0); ref = slash; } ); width = 600; } ); }, { glyphname = slash_slash_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1080,0); ref = slash; }, { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-120,0); ref = slash; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1080,0); ref = slash; }, { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-120,0); ref = slash; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1080,0); ref = slash; }, { alignment = -1; pos = (-600,0); ref = slash; }, { alignment = -1; pos = (-120,0); ref = slash; } ); width = 600; } ); }, { glyphname = underscore_bar_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (320,-165,l), (342,-25,l), (-273,-25,l), (-150,750,l), (-300,750,l), (-423,-25,l), (-1038,-25,l), (-1060,-165,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (330,-100,l), (342,-25,l), (-303,-25,l), (-180,750,l), (-270,750,l), (-393,-25,l), (-1038,-25,l), (-1050,-100,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (335,-70,l), (342,-25,l), (-323,-25,l), (-200,750,l), (-250,750,l), (-373,-25,l), (-1038,-25,l), (-1045,-70,l) ); } ); width = 600; } ); }, { glyphname = underscore_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (470,-165,l), (492,-25,l), (-588,-25,l), (-610,-165,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (-588,-25,l), (-600,-100,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,-75,l), (492,-25,l), (-588,-25,l), (-596,-75,l) ); } ); width = 600; } ); }, { export = 0; glyphname = bracketleft_bar_bar_bracketright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (309,-110,l), (457,830,l), (152,830,l), (130,690,l), (285,690,l), (181,30,l), (26,30,l), (4,-110,l) ); }, { closed = 1; nodes = ( (-1326,-110,l), (-1304,30,l), (-1459,30,l), (-1355,690,l), (-1200,690,l), (-1178,830,l), (-1483,830,l), (-1631,-110,l) ); }, { closed = 1; nodes = ( (-876,-110,l), (-728,830,l), (-878,830,l), (-1026,-110,l) ); }, { closed = 1; nodes = ( (-296,-110,l), (-148,830,l), (-298,830,l), (-446,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (279,-110,l), (427,830,l), (182,830,l), (170,750,l), (325,750,l), (201,-30,l), (46,-30,l), (34,-110,l) ); }, { closed = 1; nodes = ( (-1356,-110,l), (-1344,-30,l), (-1499,-30,l), (-1375,750,l), (-1220,750,l), (-1208,830,l), (-1453,830,l), (-1601,-110,l) ); }, { closed = 1; nodes = ( (-906,-110,l), (-758,830,l), (-848,830,l), (-996,-110,l) ); }, { closed = 1; nodes = ( (-326,-110,l), (-178,830,l), (-268,830,l), (-416,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (269,-110,l), (417,830,l), (192,830,l), (185,785,l), (360,785,l), (226,-65,l), (51,-65,l), (44,-110,l) ); }, { closed = 1; nodes = ( (-1366,-110,l), (-1359,-65,l), (-1534,-65,l), (-1400,785,l), (-1225,785,l), (-1218,830,l), (-1443,830,l), (-1591,-110,l) ); }, { closed = 1; nodes = ( (-926,-110,l), (-778,830,l), (-828,830,l), (-976,-110,l) ); }, { closed = 1; nodes = ( (-346,-110,l), (-198,830,l), (-248,830,l), (-396,-110,l) ); } ); width = 600; } ); }, { export = 0; glyphname = exclam_equal_equal.liga.old; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-544,-50,l), (-434,90,l), (490,90,l), (501,160,l), (-379,160,l), (-280,285,l), (521,285,l), (532,355,l), (-226,355,l), (-127,480,l), (552,480,l), (563,550,l), (-72,550,l), (38,690,l), (-43,690,l), (-153,550,l), (-1077,550,l), (-1088,480,l), (-208,480,l), (-307,355,l), (-1108,355,l), (-1119,285,l), (-362,285,l), (-461,160,l), (-1139,160,l), (-1150,90,l), (-516,90,l), (-626,-50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-560,-50,l), (-450,90,l), (490,90,l), (497,135,l), (-415,135,l), (-287,296,l), (523,296,l), (530,341,l), (-252,341,l), (-124,502,l), (556,502,l), (563,547,l), (-89,547,l), (23,690,l), (-29,690,l), (-141,547,l), (-1077,547,l), (-1084,502,l), (-176,502,l), (-304,341,l), (-1110,341,l), (-1117,296,l), (-339,296,l), (-467,135,l), (-1143,135,l), (-1150,90,l), (-502,90,l), (-612,-50,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-530,-60,l), (-428,70,l), (487,70,l), (503,170,l), (-350,170,l), (-272,270,l), (519,270,l), (535,370,l), (-193,370,l), (-116,470,l), (550,470,l), (566,570,l), (-38,570,l), (64,700,l), (-58,700,l), (-160,570,l), (-1074,570,l), (-1090,470,l), (-238,470,l), (-315,370,l), (-1105,370,l), (-1121,270,l), (-394,270,l), (-472,170,l), (-1137,170,l), (-1153,70,l), (-550,70,l), (-652,-60,l) ); } ); width = 600; } ); }, { glyphname = "leftanglebracket-math"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (485,-115,l), (199,348,l), (479,815,l), (377,815,l), (125,412,l), (125,290,l), (377,-115,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (485,-115,l), (199,348,l), (479,815,l), (377,815,l), (125,412,l), (125,290,l), (377,-115,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,-115,l), (199,348,l), (479,815,l), (377,815,l), (125,412,l), (125,290,l), (377,-115,l) ); } ); width = 600; } ); unicode = 10216; }, { glyphname = "leftdoubleanglebracket-math"; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (432,-110,l), (146,360,l), (432,830,l), (377,830,l), (125,420,l), (125,300,l), (377,-110,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (428,-110,l), (142,360,l), (428,830,l), (373,830,l), (100,385,l), (100,334,l), (373,-110,l) ); }, { closed = 1; nodes = ( (554,-110,l), (268,360,l), (554,830,l), (499,830,l), (226,385,l), (226,334,l), (499,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (428,-110,l), (142,360,l), (428,830,l), (373,830,l), (100,385,l), (100,334,l), (373,-110,l) ); }, { closed = 1; nodes = ( (554,-110,l), (268,360,l), (554,830,l), (499,830,l), (226,385,l), (226,334,l), (499,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (428,-110,l), (142,360,l), (428,830,l), (373,830,l), (100,385,l), (100,334,l), (373,-110,l) ); }, { closed = 1; nodes = ( (554,-110,l), (268,360,l), (554,830,l), (499,830,l), (226,385,l), (226,334,l), (499,-110,l) ); } ); width = 600; } ); unicode = 10218; }, { glyphname = "leftwhitesquarebracket-math"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = "rightwhitesquarebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = "rightwhitesquarebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = "rightwhitesquarebracket-math"; scale = (-1,1); } ); width = 600; } ); unicode = 10214; }, { glyphname = "rightanglebracket-math"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (223,-115,l), (475,290,l), (475,412,l), (223,815,l), (121,815,l), (401,348,l), (115,-115,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (223,-115,l), (475,290,l), (475,412,l), (223,815,l), (121,815,l), (401,348,l), (115,-115,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (223,-115,l), (475,290,l), (475,412,l), (223,815,l), (121,815,l), (401,348,l), (115,-115,l) ); } ); width = 600; } ); unicode = 10217; }, { glyphname = "rightdoubleanglebracket-math"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = "leftdoubleanglebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = "leftdoubleanglebracket-math"; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = "leftdoubleanglebracket-math"; scale = (-1,1); } ); width = 600; } ); unicode = 10219; }, { glyphname = "rightwhitesquarebracket-math"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (440,-110,l), (440,830,l), (105,830,l), (105,785,l), (390,785,l), (390,-65,l), (105,-65,l), (105,-110,l) ); }, { closed = 1; nodes = ( (330,-75,l), (330,805,l), (280,805,l), (280,-75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (440,-110,l), (440,830,l), (105,830,l), (105,785,l), (390,785,l), (390,-65,l), (105,-65,l), (105,-110,l) ); }, { closed = 1; nodes = ( (330,-75,l), (330,805,l), (280,805,l), (280,-75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (440,-110,l), (440,830,l), (105,830,l), (105,785,l), (390,785,l), (390,-65,l), (105,-65,l), (105,-110,l) ); }, { closed = 1; nodes = ( (330,-75,l), (330,805,l), (280,805,l), (280,-75,l) ); } ); width = 600; } ); unicode = 10215; }, { glyphname = anoteleia; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (44,275); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (44,275); ref = period; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (44,275); ref = period; } ); width = 600; } ); unicode = 903; }, { glyphname = questiongreek; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = semicolon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = semicolon; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = semicolon; } ); width = 600; } ); unicode = 894; }, { glyphname = EMquad; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; } ); unicode = 8193; }, { glyphname = space; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; } ); unicode = 32; }, { glyphname = nbspace; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; } ); metricWidth = space; unicode = 160; }, { glyphname = CR; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; } ); unicode = 13; }, { glyphname = .notdef; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (510,0,l), (510,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (460,621,l), (460,50,l), (160,50,l) ); }, { closed = 1; nodes = ( (140,680,l), (440,680,l), (140,109,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (510,0,l), (510,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (460,621,l), (460,50,l), (160,50,l) ); }, { closed = 1; nodes = ( (140,680,l), (440,680,l), (140,109,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (510,0,l), (510,730,l), (90,730,l), (90,0,l) ); }, { closed = 1; nodes = ( (460,621,l), (460,50,l), (160,50,l) ); }, { closed = 1; nodes = ( (140,680,l), (440,680,l), (140,109,l) ); } ); width = 600; } ); }, { glyphname = zeroWidthNoBreakSpace; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 0; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 0; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 0; } ); unicode = 65279; }, { glyphname = zeroWidthNoBreakSpace.001; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 0; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 0; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 0; } ); }, { glyphname = bitcoin; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (164,-140,l), (186,0,l), (266,0,l), (244,-140,l), (282,-140,l), (305,4,l), (411,20,o), (487,93,o), (504,200,cs), (519,294,o), (480,358,o), (401,376,c), (474,394,o), (526,456,o), (540,542,cs), (555,639,o), (508,708,o), (419,725,c), (442,871,l), (404,871,l), (382,730,l), (302,730,l), (324,871,l), (286,871,l), (264,730,l), (182,730,l), (66,0,l), (148,0,l), (126,-140,l) ); }, { closed = 1; nodes = ( (172,353,l), (313,353,ls), (415,353,o), (469,294,o), (454,199,cs), (438,104,o), (366,45,o), (264,45,cs), (123,45,l) ); }, { closed = 1; nodes = ( (224,685,l), (362,685,ls), (455,685,o), (504,630,o), (490,541,cs), (476,452,o), (411,398,o), (317,398,cs), (179,398,l) ); } ); width = 600; }, { hints = ( { place = (46,45); type = Stem; }, { place = (380,51); type = Stem; }, { place = (393,51); type = Stem; }, { horizontal = 1; place = (-44,38); type = Stem; }, { horizontal = 1; place = (286,34); type = Stem; }, { horizontal = 1; place = (594,38); type = Stem; } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (173,-140,l), (195,0,l), (265,0,l), (243,-140,l), (303,-140,l), (326,5,l), (430,23,o), (501,96,o), (518,203,cs), (533,297,o), (496,364,o), (420,386,c), (492,405,o), (542,462,o), (555,541,cs), (570,637,o), (527,702,o), (440,723,c), (463,871,l), (403,871,l), (381,730,l), (311,730,l), (333,871,l), (273,871,l), (251,730,l), (165,730,l), (49,0,l), (135,0,l), (113,-140,l) ); }, { closed = 1; nodes = ( (191,341,l), (315,341,ls), (399,341,o), (442,286,o), (430,206,cs), (417,129,o), (358,81,o), (274,81,cs), (150,81,l) ); }, { closed = 1; nodes = ( (240,649,l), (359,649,ls), (436,649,o), (476,605,o), (465,534,cs), (453,463,o), (398,419,o), (321,419,cs), (203,419,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (176,-140,l), (198,0,l), (268,0,l), (246,-140,l), (311,-140,l), (334,6,l), (451,27,o), (532,103,o), (549,211,cs), (567,323,o), (495,379,o), (396,381,c), (488,386,o), (571,446,o), (586,543,cs), (601,636,o), (548,702,o), (448,723,c), (471,871,l), (406,871,l), (384,730,l), (314,730,l), (336,871,l), (271,871,l), (249,730,l), (138,730,l), (22,0,l), (133,0,l), (111,-140,l) ); }, { closed = 1; nodes = ( (217,318,l), (310,318,ls), (375,318,o), (409,280,o), (400,219,cs), (390,158,o), (344,121,o), (279,121,cs), (186,121,l) ); }, { closed = 1; nodes = ( (263,609,l), (351,609,ls), (409,609,o), (440,577,o), (432,523,cs), (423,469,o), (382,436,o), (324,436,cs), (236,436,l) ); } ); width = 600; } ); unicode = 8383; }, { glyphname = cent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,-140,l), (402,690,l), (337,690,l), (206,-140,l) ); }, { alignment = -1; ref = c; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (274,-140,l), (405,690,l), (345,690,l), (214,-140,l) ); }, { alignment = -1; ref = c; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (260,-140,l), (391,690,l), (351,690,l), (220,-140,l) ); }, { ref = c; } ); width = 600; } ); unicode = 162; }, { glyphname = currency; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (549,178,l), (431,316,l), (445,233,l), (484,271,o), (512,319,o), (520,373,cs), (529,427,o), (517,477,o), (490,512,c), (459,431,l), (607,560,l), (546,632,l), (398,503,l), (485,521,l), (449,555,o), (405,575,o), (348,575,cs), (294,575,o), (241,555,o), (204,525,c), (280,496,l), (163,636,l), (83,567,l), (199,428,l), (187,510,l), (146,475,o), (118,427,o), (110,373,cs), (102,317,o), (115,266,o), (145,230,c), (174,311,l), (25,182,l), (85,110,l), (237,241,l), (151,223,l), (183,189,o), (230,171,o), (284,171,cs), (337,171,o), (390,189,o), (427,221,c), (350,248,l), (468,110,l) ); }, { closed = 1; nodes = ( (239,266,o), (200,312,o), (210,373,cs), (220,434,o), (273,480,o), (333,480,cs), (392,480,o), (430,434,o), (420,373,cs), (410,312,o), (358,266,o), (299,266,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (524,165,l), (439,265,l), (443,238,l), (481,274,o), (507,320,o), (516,373,cs), (525,427,o), (511,474,o), (485,508,c), (476,481,l), (591,581,l), (562,616,l), (446,516,l), (474,522,l), (443,552,o), (400,570,o), (347,570,cs), (295,570,o), (245,552,o), (206,521,c), (232,512,l), (145,616,l), (105,581,l), (191,478,l), (186,505,l), (150,471,o), (125,425,o), (116,373,cs), (107,319,o), (121,273,o), (145,237,c), (155,265,l), (40,166,l), (70,131,l), (186,231,l), (158,225,l), (187,195,o), (232,176,o), (285,176,cs), (336,176,o), (385,193,o), (425,222,c), (399,231,l), (485,130,l) ); }, { closed = 1; nodes = ( (208,224,o), (155,288,o), (168,373,cs), (182,458,o), (256,522,o), (340,522,cs), (424,522,o), (478,458,o), (464,373,cs), (451,288,o), (376,224,o), (292,224,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (542,174,l), (444,290,l), (453,241,l), (487,277,o), (511,322,o), (520,373,cs), (529,424,o), (519,470,o), (495,506,c), (476,456,l), (603,565,l), (549,628,l), (421,517,l), (473,528,l), (443,558,o), (400,575,o), (348,575,cs), (299,575,o), (252,560,o), (215,533,c), (261,516,l), (161,635,l), (90,574,l), (188,457,l), (181,506,l), (143,470,o), (119,425,o), (110,373,cs), (101,321,o), (113,274,o), (138,241,c), (155,290,l), (29,179,l), (82,114,l), (212,225,l), (161,216,l), (191,187,o), (233,171,o), (284,171,cs), (333,171,o), (381,186,o), (418,215,c), (372,231,l), (471,113,l) ); }, { closed = 1; nodes = ( (220,240,o), (172,297,o), (184,373,cs), (196,449,o), (262,506,o), (337,506,cs), (411,506,o), (458,449,o), (446,373,cs), (434,297,o), (369,240,o), (295,240,cs) ); } ); width = 600; } ); unicode = 164; }, { glyphname = dollar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (263,-140,l), (284,-9,l), (422,1,o), (522,85,o), (542,206,cs), (560,324,o), (505,402,o), (380,432,cs), (354,438,l), (381,607,l), (420,598,o), (438,572,o), (432,535,c), (582,535,l), (600,651,o), (531,728,o), (402,739,c), (423,870,l), (358,870,l), (337,738,l), (207,727,o), (115,647,o), (97,529,cs), (79,414,o), (137,331,o), (257,302,cs), (267,299,l), (240,124,l), (199,134,o), (179,162,o), (185,200,c), (35,200,l), (16,82,o), (87,3,o), (219,-8,c), (198,-140,l) ); }, { closed = 1; nodes = ( (341,352,l), (272,290,l), (356,295,o), (400,256,o), (391,199,cs), (384,156,o), (352,129,o), (304,122,c) ); }, { closed = 1; nodes = ( (345,447,l), (276,443,o), (239,481,o), (248,535,cs), (254,573,o), (278,598,o), (316,607,c), (281,387,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (269,-140,l), (290,-9,l), (408,3,o), (497,80,o), (514,190,cs), (530,289,o), (486,366,o), (394,397,cs), (356,410,l), (395,658,l), (454,648,o), (481,607,o), (471,545,c), (561,545,l), (577,654,o), (517,728,o), (408,739,c), (429,870,l), (369,870,l), (348,738,l), (234,727,o), (151,653,o), (134,546,cs), (119,448,o), (163,373,o), (258,342,cs), (284,334,l), (242,72,l), (172,81,o), (138,124,o), (148,190,c), (58,190,l), (42,75,o), (105,1,o), (230,-9,c), (209,-140,l) ); }, { closed = 1; nodes = ( (341,315,l), (352,311,ls), (407,293,o), (433,246,o), (424,188,cs), (414,124,o), (369,82,o), (302,72,c) ); }, { closed = 1; nodes = ( (329,422,l), (251,434,o), (215,484,o), (226,554,cs), (235,611,o), (275,649,o), (335,658,c), (293,389,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (259,-140,l), (280,-9,l), (397,-2,o), (482,69,o), (499,177,cs), (515,275,o), (466,354,o), (371,385,cs), (343,394,l), (391,694,l), (470,686,o), (511,630,o), (498,548,c), (548,548,l), (566,660,o), (508,732,o), (398,739,c), (419,870,l), (379,870,l), (358,739,l), (246,732,o), (166,664,o), (150,559,cs), (134,464,o), (180,392,o), (271,363,cs), (297,355,l), (247,36,l), (156,43,o), (107,100,o), (120,185,c), (70,185,l), (52,72,o), (118,-2,o), (240,-9,c), (219,-140,l) ); }, { closed = 1; nodes = ( (335,343,l), (352,338,ls), (424,315,o), (461,254,o), (449,177,cs), (436,94,o), (376,42,o), (287,36,c) ); }, { closed = 1; nodes = ( (291,411,ls), (224,433,o), (189,491,o), (200,563,cs), (212,638,o), (270,687,o), (351,694,c), (305,406,l) ); } ); width = 600; } ); unicode = 36; }, { glyphname = dong; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (297,50,o), (362,107,o), (377,200,c), (336,165,l), (371,165,l), (355,60,l), (500,60,l), (606,730,l), (456,730,l), (422,520,l), (406,385,l), (371,385,l), (400,350,l), (415,443,o), (368,500,o), (278,500,cs), (166,500,o), (82,419,o), (62,290,cs), (57,260,ls), (37,132,o), (96,50,o), (207,50,cs) ); }, { closed = 1; nodes = ( (480,-100,l), (496,0,l), (16,0,l), (0,-100,l) ); }, { closed = 1; nodes = ( (225,180,o), (199,209,o), (208,265,cs), (211,285,ls), (220,341,o), (255,370,o), (312,370,cs), (369,370,o), (394,341,o), (385,285,cs), (382,265,ls), (373,209,o), (339,180,o), (282,180,cs) ); }, { closed = 1; nodes = ( (644,555,l), (658,645,l), (348,645,l), (334,555,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (323,50,o), (388,102,o), (401,186,c), (380,165,l), (398,165,l), (382,60,l), (472,60,l), (578,730,l), (488,730,l), (453,510,l), (435,385,l), (415,385,l), (430,364,l), (443,447,o), (393,500,o), (303,500,cs), (192,500,o), (113,422,o), (93,295,cs), (86,254,ls), (66,128,o), (122,50,o), (232,50,cs) ); }, { closed = 1; nodes = ( (453,-80,l), (466,0,l), (46,0,l), (33,-80,l) ); }, { closed = 1; nodes = ( (198,128,o), (164,175,o), (177,260,cs), (182,290,ls), (195,375,o), (245,422,o), (321,422,cs), (395,422,o), (431,373,o), (418,290,cs), (413,260,ls), (400,177,o), (348,128,o), (274,128,cs) ); }, { closed = 1; nodes = ( (646,570,l), (658,645,l), (358,645,l), (346,570,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (347,50,o), (423,109,o), (438,200,c), (389,135,l), (417,135,l), (406,60,l), (456,60,l), (562,730,l), (512,730,l), (478,520,l), (462,415,l), (444,415,l), (461,350,l), (476,441,o), (418,500,o), (322,500,cs), (212,500,o), (128,420,o), (109,300,cs), (100,249,ls), (81,129,o), (141,50,o), (251,50,cs) ); }, { closed = 1; nodes = ( (449,-44,l), (456,0,l), (56,0,l), (49,-44,l) ); }, { closed = 1; nodes = ( (179,93,o), (135,151,o), (150,249,cs), (159,300,ls), (174,398,o), (236,457,o), (325,457,cs), (416,457,o), (459,398,o), (444,300,cs), (435,249,ls), (420,151,o), (358,93,o), (268,93,cs) ); }, { closed = 1; nodes = ( (639,586,l), (646,631,l), (355,631,l), (348,586,l) ); } ); width = 600; } ); unicode = 8363; }, { glyphname = euro; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (424,-10,o), (539,80,o), (560,215,c), (410,215,l), (401,158,o), (358,125,o), (295,125,cs), (231,125,o), (199,158,o), (208,215,cs), (210,225,l), (357,225,l), (372,320,l), (225,320,l), (237,400,l), (384,400,l), (399,495,l), (252,495,l), (254,505,ls), (263,562,o), (306,595,o), (370,595,cs), (433,595,o), (465,562,o), (456,505,c), (606,505,l), (627,640,o), (542,730,o), (392,730,cs), (241,730,o), (125,640,o), (104,505,cs), (102,495,l), (44,495,l), (29,400,l), (87,400,l), (75,320,l), (17,320,l), (2,225,l), (60,225,l), (58,215,ls), (37,80,o), (122,-10,o), (273,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (398,-10,o), (492,63,o), (525,185,c), (435,185,l), (416,113,o), (360,70,o), (287,70,cs), (206,70,o), (165,121,o), (178,205,cs), (185,245,l), (350,245,l), (360,310,l), (195,310,l), (211,410,l), (376,410,l), (386,475,l), (221,475,l), (228,515,ls), (241,599,o), (299,650,o), (379,650,cs), (452,650,o), (494,607,o), (491,535,c), (581,535,l), (586,657,o), (516,730,o), (392,730,cs), (257,730,o), (158,646,o), (138,515,cs), (131,475,l), (50,475,l), (40,410,l), (121,410,l), (105,310,l), (24,310,l), (14,245,l), (95,245,l), (88,205,ls), (68,74,o), (139,-10,o), (274,-10,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (394,-10,o), (487,72,o), (508,200,c), (458,200,l), (442,98,o), (374,35,o), (278,35,cs), (184,35,o), (136,94,o), (151,190,cs), (163,263,l), (343,263,l), (349,303,l), (169,303,l), (187,417,l), (367,417,l), (373,457,l), (193,457,l), (207,540,ls), (222,636,o), (289,695,o), (382,695,cs), (477,695,o), (526,632,o), (510,530,c), (560,530,l), (580,658,o), (513,740,o), (389,740,cs), (267,740,o), (176,662,o), (157,540,cs), (143,457,l), (58,457,l), (52,417,l), (137,417,l), (119,303,l), (34,303,l), (28,263,l), (113,263,l), (101,190,ls), (82,69,o), (148,-10,o), (270,-10,cs) ); } ); width = 600; } ); unicode = 8364; }, { glyphname = florin; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (42,-180,ls), (183,-180,o), (296,-96,o), (315,25,cs), (356,285,l), (561,285,l), (582,415,l), (377,415,l), (399,555,ls), (403,583,o), (424,600,o), (451,600,cs), (606,600,l), (627,730,l), (452,730,ls), (346,730,o), (266,661,o), (249,555,cs), (227,415,l), (72,415,l), (51,285,l), (206,285,l), (167,41,ls), (160,-7,o), (126,-35,o), (75,-35,cs), (-50,-35,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,-180,ls), (156,-180,o), (250,-103,o), (268,15,cs), (316,313,l), (541,313,l), (554,395,l), (329,395,l), (359,590,ls), (366,630,o), (390,650,o), (433,650,cs), (594,650,l), (607,730,l), (446,730,ls), (349,730,o), (284,679,o), (270,591,cs), (239,395,l), (79,395,l), (66,313,l), (226,313,l), (178,15,ls), (167,-55,o), (116,-98,o), (45,-98,cs), (-60,-98,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (23,-180,ls), (141,-180,o), (228,-113,o), (246,0,cs), (299,332,l), (532,332,l), (539,377,l), (306,377,l), (342,605,ls), (350,656,o), (383,685,o), (434,685,cs), (587,685,l), (595,730,l), (442,730,ls), (361,730,o), (304,683,o), (292,605,cs), (256,377,l), (86,377,l), (79,332,l), (249,332,l), (198,10,ls), (183,-84,o), (125,-135,o), (31,-135,cs), (-65,-135,l), (-73,-180,l) ); } ); width = 600; } ); unicode = 402; }, { glyphname = ruble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (196,0,l), (216,125,l), (421,125,l), (439,240,l), (234,240,l), (244,300,l), (319,300,ls), (478,300,o), (586,381,o), (608,515,cs), (629,648,o), (545,730,o), (387,730,cs), (162,730,l), (113,420,l), (38,420,l), (19,300,l), (94,300,l), (84,240,l), (9,240,l), (-9,125,l), (66,125,l), (46,0,l) ); }, { closed = 1; nodes = ( (293,610,l), (368,610,ls), (434,610,o), (467,575,o), (458,515,cs), (448,455,o), (404,420,o), (338,420,cs), (263,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (156,0,l), (181,155,l), (411,155,l), (423,235,l), (193,235,l), (207,320,l), (340,320,ls), (471,320,o), (570,402,o), (589,525,cs), (609,649,o), (536,730,o), (405,730,cs), (182,730,l), (129,400,l), (49,400,l), (37,320,l), (117,320,l), (103,235,l), (23,235,l), (11,155,l), (91,155,l), (66,0,l) ); }, { closed = 1; nodes = ( (259,650,l), (392,650,ls), (468,650,o), (508,601,o), (496,525,cs), (484,449,o), (428,400,o), (352,400,cs), (219,400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (136,0,l), (165,185,l), (401,185,l), (408,230,l), (172,230,l), (187,324,l), (332,324,ls), (459,324,o), (555,404,o), (574,527,cs), (594,650,o), (525,730,o), (397,730,cs), (202,730,l), (144,369,l), (49,369,l), (42,324,l), (137,324,l), (122,230,l), (27,230,l), (20,185,l), (115,185,l), (86,0,l) ); }, { closed = 1; nodes = ( (244,685,l), (389,685,ls), (487,685,o), (540,624,o), (524,527,cs), (509,431,o), (436,369,o), (339,369,cs), (194,369,l) ); } ); width = 600; } ); unicode = 8381; }, { glyphname = sterling; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (491,0,l), (513,140,l), (143,140,l), (210,150,o), (302,196,o), (316,283,cs), (341,442,o), (230,449,o), (243,532,cs), (250,575,o), (291,610,o), (349,610,cs), (405,610,o), (435,574,o), (433,530,c), (583,530,l), (594,654,o), (515,740,o), (373,740,cs), (222,740,o), (112,652,o), (95,540,cs), (74,413,o), (205,408,o), (183,274,cs), (175,224,o), (107,180,o), (56,160,c), (31,0,l) ); }, { closed = 1; nodes = ( (436,285,l), (455,405,l), (85,405,l), (66,285,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (491,0,l), (504,80,l), (134,80,l), (185,108,o), (259,176,o), (273,263,cs), (298,422,o), (204,446,o), (220,550,cs), (231,620,o), (282,660,o), (360,660,cs), (433,660,o), (474,617,o), (463,550,c), (558,550,l), (575,669,o), (505,740,o), (373,740,cs), (242,740,o), (148,668,o), (130,555,cs), (110,429,o), (203,398,o), (180,254,cs), (172,204,o), (100,137,o), (47,100,c), (31,0,l) ); }, { closed = 1; nodes = ( (439,305,l), (452,385,l), (92,385,l), (79,305,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,0,l), (498,45,l), (93,45,l), (151,78,o), (234,153,o), (247,235,cs), (268,364,o), (179,422,o), (198,545,cs), (213,638,o), (277,695,o), (365,695,cs), (468,695,o), (523,640,o), (509,550,c), (559,550,l), (576,667,o), (504,740,o), (373,740,cs), (253,740,o), (167,666,o), (148,546,cs), (128,416,o), (219,372,o), (197,235,cs), (185,155,o), (99,82,o), (39,50,c), (31,0,l) ); }, { closed = 1; nodes = ( (442,320,l), (449,365,l), (89,365,l), (82,320,l) ); } ); width = 600; } ); unicode = 163; }, { glyphname = tugrik; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (326,0,l), (353,173,l), (520,215,l), (538,330,l), (372,288,l), (383,358,l), (549,400,l), (568,515,l), (401,473,l), (419,590,l), (614,590,l), (637,730,l), (107,730,l), (84,590,l), (279,590,l), (255,437,l), (89,395,l), (70,280,l), (237,322,l), (226,252,l), (59,210,l), (41,95,l), (208,137,l), (186,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,0,l), (333,207,l), (516,255,l), (528,330,l), (345,282,l), (361,382,l), (544,430,l), (556,505,l), (372,457,l), (403,651,l), (614,651,l), (627,730,l), (117,730,l), (104,651,l), (315,651,l), (281,433,l), (97,385,l), (85,310,l), (269,358,l), (253,258,l), (69,210,l), (57,135,l), (241,183,l), (212,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (282,0,l), (320,237,l), (503,287,l), (509,329,l), (326,279,l), (345,396,l), (528,446,l), (534,488,l), (351,438,l), (390,685,l), (604,685,l), (612,730,l), (132,730,l), (124,685,l), (340,685,l), (299,423,l), (116,373,l), (110,331,l), (293,381,l), (274,264,l), (91,214,l), (84,172,l), (267,222,l), (232,0,l) ); } ); width = 600; } ); unicode = 8366; }, { glyphname = yen; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,260,l), (554,365,l), (74,365,l), (57,260,l) ); }, { closed = 1; nodes = ( (512,100,l), (528,205,l), (48,205,l), (32,100,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (539,270,l), (551,345,l), (71,345,l), (59,270,l) ); }, { closed = 1; nodes = ( (515,120,l), (527,195,l), (47,195,l), (35,120,l) ); }, { alignment = -1; ref = Y; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (539,270,l), (547,320,l), (67,320,l), (59,270,l) ); }, { closed = 1; nodes = ( (519,145,l), (527,195,l), (47,195,l), (39,145,l) ); }, { ref = Y; } ); width = 600; } ); unicode = 165; }, { glyphname = asymptoticallyequal; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (497,195,l), (504,240,l), (84,240,l), (77,195,l) ); }, { pos = (18,114); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (513,170,l), (526,250,l), (66,250,l), (53,170,l) ); }, { pos = (19,114); ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (533,135,l), (555,275,l), (45,275,l), (23,135,l) ); }, { pos = (19,114); ref = asciitilde; } ); width = 600; } ); unicode = 8771; }, { glyphname = bulletoperator; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (0,235); ref = period; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (0,250); ref = period; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (0,255); ref = period; } ); width = 600; } ); unicode = 8729; }, { glyphname = colonequals; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,405,l), (628,455,l), (278,455,l), (270,405,l) ); }, { closed = 1; nodes = ( (105,110,o), (139,137,o), (146,180,cs), (152,223,o), (128,250,o), (82,250,cs), (35,250,o), (1,223,o), (-5,180,cs), (-12,137,o), (12,110,o), (59,110,cs) ); }, { closed = 1; nodes = ( (154,410,o), (187,437,o), (193,480,cs), (200,523,o), (175,550,o), (129,550,cs), (82,550,o), (49,523,o), (42,480,cs), (36,437,o), (61,410,o), (107,410,cs) ); }, { closed = 1; nodes = ( (589,210,l), (597,260,l), (247,260,l), (239,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (621,410,l), (634,490,l), (284,490,l), (271,410,l) ); }, { closed = 1; nodes = ( (101,100,o), (137,131,o), (145,180,cs), (152,229,o), (126,260,o), (77,260,cs), (27,260,o), (-8,229,o), (-15,180,cs), (-23,131,o), (3,100,o), (52,100,cs) ); }, { closed = 1; nodes = ( (148,400,o), (184,431,o), (192,480,cs), (200,529,o), (174,560,o), (125,560,cs), (76,560,o), (40,529,o), (32,480,cs), (24,431,o), (50,400,o), (99,400,cs) ); }, { closed = 1; nodes = ( (583,170,l), (596,250,l), (246,250,l), (233,170,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (577,135,l), (600,275,l), (250,275,l), (227,135,l) ); }, { closed = 1; nodes = ( (120,85,o), (165,122,o), (175,180,cs), (184,242,o), (152,281,o), (91,281,cs), (29,281,o), (-16,242,o), (-25,180,cs), (-35,122,o), (-3,85,o), (59,85,cs) ); }, { closed = 1; nodes = ( (168,379,o), (212,416,o), (221,474,cs), (231,536,o), (199,575,o), (137,575,cs), (76,575,o), (31,536,o), (21,474,cs), (12,416,o), (44,379,o), (106,379,cs) ); }, { closed = 1; nodes = ( (617,385,l), (639,525,l), (289,525,l), (267,385,l) ); } ); width = 600; } ); unicode = 8788; }, { glyphname = complement; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (435,40,o), (435,116,cs), (435,180,l), (385,180,l), (385,116,ls), (385,68,o), (353,36,o), (305,36,cs), (257,36,o), (225,68,o), (225,116,cs), (225,434,ls), (225,482,o), (257,514,o), (305,514,cs), (353,514,o), (385,482,o), (385,434,cs), (385,370,l), (435,370,l), (435,434,ls), (435,510,o), (384,560,o), (305,560,cs), (226,560,o), (175,510,o), (175,434,cs), (175,116,ls), (175,40,o), (226,-10,o), (305,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (396,-10,o), (455,49,o), (455,140,cs), (455,180,l), (365,180,l), (365,130,ls), (365,94,o), (341,70,o), (305,70,cs), (269,70,o), (245,94,o), (245,130,cs), (245,420,ls), (245,456,o), (269,480,o), (305,480,cs), (341,480,o), (365,456,o), (365,420,cs), (365,370,l), (455,370,l), (455,410,ls), (455,501,o), (396,560,o), (305,560,cs), (214,560,o), (155,501,o), (155,410,cs), (155,140,ls), (155,49,o), (214,-10,o), (305,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (420,-10,o), (495,65,o), (495,180,cs), (495,230,l), (345,230,l), (345,160,ls), (345,136,o), (329,120,o), (305,120,cs), (281,120,o), (265,136,o), (265,160,cs), (265,390,ls), (265,414,o), (281,430,o), (305,430,cs), (329,430,o), (345,414,o), (345,390,cs), (345,350,l), (495,350,l), (495,370,ls), (495,485,o), (420,560,o), (305,560,cs), (190,560,o), (115,485,o), (115,370,cs), (115,180,ls), (115,65,o), (190,-10,o), (305,-10,cs) ); } ); width = 600; } ); unicode = 8705; }, { glyphname = congruent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (484,114,l), (491,158,l), (71,158,l), (64,114,l) ); }, { closed = 1; nodes = ( (515,308,l), (522,352,l), (102,352,l), (95,308,l) ); }, { pos = (29,185); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (498,76,l), (510,152,l), (50,152,l), (38,76,l) ); }, { closed = 1; nodes = ( (532,292,l), (544,368,l), (84,368,l), (72,292,l) ); }, { pos = (35,215); ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (511,0,l), (532,130,l), (22,130,l), (1,0,l) ); }, { closed = 1; nodes = ( (553,265,l), (574,395,l), (64,395,l), (43,265,l) ); }, { pos = (39,245); ref = asciitilde; } ); width = 600; } ); unicode = 8773; }, { glyphname = coproduct; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (507,-180,l), (530,-40,l), (470,-40,l), (592,730,l), (442,730,l), (320,-40,l), (180,-40,l), (302,730,l), (152,730,l), (30,-40,l), (-30,-40,l), (-53,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (487,-180,l), (500,-98,l), (435,-98,l), (567,730,l), (477,730,l), (345,-98,l), (135,-98,l), (267,730,l), (177,730,l), (45,-98,l), (-20,-98,l), (-33,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,-180,l), (485,-135,l), (410,-135,l), (547,730,l), (497,730,l), (360,-135,l), (110,-135,l), (247,730,l), (197,730,l), (60,-135,l), (-15,-135,l), (-23,-180,l) ); } ); width = 600; } ); unicode = 8720; }, { glyphname = curlybracketextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,1020,l), (275,1020,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9130; }, { glyphname = curlyor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (284,0,l), (300,100,l), (336,327,o), (457,486,o), (609,505,c), (616,550,l), (452,532,o), (320,392,o), (283,193,c), (285,193,l), (312,392,o), (228,532,o), (71,550,c), (64,505,l), (207,486,o), (276,327,o), (240,100,c), (224,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (304,0,l), (318,90,l), (352,300,o), (463,447,o), (602,464,c), (617,554,l), (453,536,o), (321,398,o), (284,202,c), (286,202,l), (313,398,o), (229,536,o), (72,554,c), (57,464,l), (189,447,o), (252,300,o), (218,90,c), (204,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (334,0,l), (346,77,l), (379,284,o), (470,410,o), (596,425,c), (617,555,l), (443,539,o), (319,393,o), (277,153,c), (279,153,l), (315,392,o), (240,538,o), (72,555,c), (51,425,l), (170,408,o), (219,281,o), (186,77,c), (174,0,l) ); } ); width = 600; } ); unicode = 8910; }, { glyphname = divides; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,0,l), (447,730,l), (297,730,l), (181,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (301,0,l), (417,730,l), (327,730,l), (211,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (281,0,l), (397,730,l), (347,730,l), (231,0,l) ); } ); width = 600; } ); unicode = 8739; }, { glyphname = divisionslash; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = fraction; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = fraction; } ); width = 600; } ); unicode = 8725; }, { glyphname = dotminus; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (354,336,o), (387,365,o), (394,408,cs), (401,451,o), (377,480,o), (333,480,cs), (289,480,o), (255,451,o), (248,408,cs), (241,365,o), (266,336,o), (310,336,cs) ); }, { pos = (-18,-113); ref = minus; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (360,340,o), (398,370,o), (405,415,cs), (412,460,o), (384,490,o), (334,490,cs), (284,490,o), (246,460,o), (239,415,cs), (232,370,o), (260,340,o), (310,340,cs) ); }, { pos = (-19,-120); ref = minus; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (370,335,o), (416,371,o), (424,425,cs), (433,479,o), (399,515,o), (339,515,cs), (279,515,o), (233,479,o), (224,425,cs), (216,371,o), (250,335,o), (310,335,cs) ); }, { pos = (-20,-125); ref = minus; } ); width = 600; } ); unicode = 8760; }, { glyphname = doublesubset; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (555,130,l), (555,175,l), (265,175,ls), (164,175,o), (105,232,o), (105,330,cs), (105,390,ls), (105,488,o), (164,545,o), (265,545,cs), (555,545,l), (555,590,l), (265,590,ls), (135,590,o), (55,515,o), (55,392,cs), (55,328,ls), (55,205,o), (135,130,o), (265,130,cs) ); }, { closed = 1; nodes = ( (555,235,l), (555,280,l), (255,280,ls), (231,280,o), (215,296,o), (215,320,cs), (215,400,ls), (215,424,o), (231,440,o), (255,440,cs), (555,440,l), (555,485,l), (255,485,ls), (201,485,o), (165,451,o), (165,400,cs), (165,320,ls), (165,269,o), (201,235,o), (255,235,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (524,85,l), (532,130,l), (252,130,ls), (152,130,o), (92,194,o), (107,291,cs), (128,420,ls), (143,517,o), (224,590,o), (324,590,cs), (604,590,l), (612,635,l), (332,635,ls), (200,635,o), (97,546,o), (78,422,cs), (57,289,ls), (37,165,o), (112,85,o), (244,85,cs) ); }, { closed = 1; nodes = ( (547,225,l), (554,270,l), (299,270,ls), (268,270,o), (252,289,o), (257,320,cs), (269,400,ls), (274,431,o), (296,450,o), (327,450,cs), (582,450,l), (589,495,l), (334,495,ls), (271,495,o), (229,460,o), (219,400,cs), (207,320,ls), (197,260,o), (229,225,o), (292,225,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (532,70,l), (543,140,l), (258,140,ls), (158,140,o), (104,207,o), (120,310,cs), (136,410,ls), (152,513,o), (228,580,o), (328,580,cs), (613,580,l), (624,650,l), (339,650,ls), (190,650,o), (79,555,o), (56,410,cs), (40,310,ls), (17,165,o), (98,70,o), (247,70,cs) ); }, { closed = 1; nodes = ( (557,225,l), (568,295,l), (334,295,ls), (303,295,o), (287,314,o), (292,345,cs), (296,375,ls), (301,406,o), (323,425,o), (354,425,cs), (588,425,l), (599,495,l), (355,495,ls), (280,495,o), (229,452,o), (217,380,cs), (211,340,ls), (199,268,o), (238,225,o), (313,225,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,60,l), (556,155,l), (271,155,ls), (174,155,o), (120,217,o), (136,314,cs), (150,406,ls), (166,503,o), (238,565,o), (335,565,cs), (620,565,l), (636,660,l), (351,660,ls), (190,660,o), (70,560,o), (45,406,cs), (31,314,ls), (6,160,o), (95,60,o), (256,60,cs) ); }, { closed = 1; nodes = ( (567,225,l), (581,315,l), (325,315,ls), (310,315,o), (301,325,o), (304,340,cs), (310,380,ls), (313,395,o), (324,405,o), (339,405,cs), (595,405,l), (609,495,l), (334,495,ls), (270,495,o), (223,456,o), (214,395,cs), (202,325,ls), (193,264,o), (228,225,o), (292,225,cs) ); } ); width = 600; } ); unicode = 8912; }, { glyphname = downrightdiagonalellipsis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,527,o), (107,550,o), (107,585,cs), (107,620,o), (84,643,o), (49,643,cs), (13,643,o), (-10,620,o), (-10,585,cs), (-10,550,o), (13,527,o), (49,527,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (587,25,o), (610,48,o), (610,83,cs), (610,118,o), (587,141,o), (552,141,cs), (516,141,o), (493,118,o), (493,83,cs), (493,48,o), (516,25,o), (552,25,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (103,503,o), (131,531,o), (131,573,cs), (131,615,o), (103,643,o), (61,643,cs), (18,643,o), (-10,615,o), (-10,573,cs), (-10,531,o), (18,503,o), (61,503,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (582,25,o), (610,53,o), (610,95,cs), (610,137,o), (582,165,o), (540,165,cs), (497,165,o), (469,137,o), (469,95,cs), (469,53,o), (497,25,o), (540,25,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (120,479,o), (154,512,o), (154,560,cs), (154,608,o), (120,641,o), (72,641,cs), (24,641,o), (-10,608,o), (-10,560,cs), (-10,512,o), (24,479,o), (72,479,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (576,27,o), (610,60,o), (610,108,cs), (610,156,o), (576,189,o), (528,189,cs), (480,189,o), (446,156,o), (446,108,cs), (446,60,o), (480,27,o), (528,27,cs) ); } ); width = 600; } ); unicode = 8945; }, { glyphname = element; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,60,l), (561,190,l), (256,190,ls), (194,190,o), (162,228,o), (172,290,c), (173,299,l), (578,299,l), (598,420,l), (193,420,l), (194,430,l), (204,492,o), (248,530,o), (310,530,cs), (615,530,l), (636,660,l), (331,660,ls), (180,660,o), (72,573,o), (49,432,cs), (27,288,ls), (4,146,o), (84,60,o), (236,60,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (537,70,l), (550,150,l), (245,150,ls), (166,150,o), (115,216,o), (127,290,cs), (132,320,l), (577,320,l), (589,400,l), (144,400,l), (149,430,ls), (161,504,o), (232,570,o), (311,570,cs), (616,570,l), (629,650,l), (324,650,ls), (199,650,o), (79,556,o), (59,432,cs), (37,288,ls), (17,164,o), (107,70,o), (232,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (524,85,l), (532,130,l), (242,130,ls), (141,130,o), (91,187,o), (106,285,cs), (115,338,l), (565,338,l), (572,382,l), (122,382,l), (130,435,ls), (145,533,o), (213,590,o), (314,590,cs), (604,590,l), (612,635,l), (322,635,ls), (192,635,o), (100,560,o), (80,437,cs), (56,283,ls), (36,160,o), (104,85,o), (234,85,cs) ); } ); width = 600; } ); unicode = 8712; }, { glyphname = ellipsisvertical; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (336,527,o), (359,550,o), (359,585,cs), (359,620,o), (336,643,o), (301,643,cs), (265,643,o), (242,620,o), (242,585,cs), (242,550,o), (265,527,o), (301,527,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (336,25,o), (359,48,o), (359,83,cs), (359,118,o), (336,141,o), (301,141,cs), (265,141,o), (242,118,o), (242,83,cs), (242,48,o), (265,25,o), (301,25,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (343,503,o), (371,531,o), (371,573,cs), (371,615,o), (343,643,o), (301,643,cs), (258,643,o), (230,615,o), (230,573,cs), (230,531,o), (258,503,o), (301,503,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (343,25,o), (371,53,o), (371,95,cs), (371,137,o), (343,165,o), (301,165,cs), (258,165,o), (230,137,o), (230,95,cs), (230,53,o), (258,25,o), (301,25,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (348,479,o), (382,512,o), (382,560,cs), (382,608,o), (348,641,o), (300,641,cs), (252,641,o), (218,608,o), (218,560,cs), (218,512,o), (252,479,o), (300,479,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (348,27,o), (382,60,o), (382,108,cs), (382,156,o), (348,189,o), (300,189,cs), (252,189,o), (218,156,o), (218,108,cs), (218,60,o), (252,27,o), (300,27,cs) ); } ); width = 600; } ); unicode = 8942; }, { glyphname = endofproof; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,0,l), (480,510,l), (120,510,l), (120,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,0,l), (480,510,l), (120,510,l), (120,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (480,0,l), (480,510,l), (120,510,l), (120,0,l) ); } ); width = 600; } ); unicode = 8718; }, { glyphname = equivalence; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (550,470,l), (566,570,l), (126,570,l), (110,470,l) ); }, { closed = 1; nodes = ( (490,90,l), (506,190,l), (66,190,l), (50,90,l) ); }, { closed = 1; nodes = ( (520,280,l), (536,380,l), (96,380,l), (80,280,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (552,480,l), (563,550,l), (123,550,l), (112,480,l) ); }, { closed = 1; nodes = ( (493,110,l), (505,180,l), (65,180,l), (53,110,l) ); }, { closed = 1; nodes = ( (523,295,l), (534,365,l), (94,365,l), (83,295,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (554,490,l), (561,535,l), (121,535,l), (114,490,l) ); }, { closed = 1; nodes = ( (496,125,l), (503,170,l), (63,170,l), (56,125,l) ); }, { closed = 1; nodes = ( (525,309,l), (532,354,l), (92,354,l), (85,309,l) ); } ); width = 600; } ); unicode = 8801; }, { glyphname = excess; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (361,310,l), (368,355,l), (18,355,l), (11,310,l) ); }, { closed = 1; nodes = ( (538,110,o), (574,139,o), (581,180,cs), (587,221,o), (560,250,o), (517,250,cs), (473,250,o), (436,221,o), (430,180,cs), (423,139,o), (450,110,o), (494,110,cs) ); }, { closed = 1; nodes = ( (586,410,o), (622,439,o), (628,480,cs), (635,521,o), (607,550,o), (564,550,cs), (520,550,o), (484,521,o), (477,480,cs), (471,439,o), (498,410,o), (542,410,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (357,290,l), (370,370,l), (20,370,l), (7,290,l) ); }, { closed = 1; nodes = ( (546,105,o), (582,135,o), (590,180,cs), (597,225,o), (569,255,o), (521,255,cs), (473,255,o), (437,225,o), (430,180,cs), (422,135,o), (450,105,o), (498,105,cs) ); }, { closed = 1; nodes = ( (593,405,o), (630,435,o), (637,480,cs), (644,525,o), (617,555,o), (569,555,cs), (521,555,o), (484,525,o), (477,480,cs), (470,435,o), (497,405,o), (545,405,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (343,260,l), (365,400,l), (15,400,l), (-7,260,l) ); }, { closed = 1; nodes = ( (537,93,o), (582,127,o), (591,180,cs), (599,236,o), (565,273,o), (505,273,cs), (445,273,o), (399,236,o), (391,180,cs), (382,127,o), (417,93,o), (477,93,cs) ); }, { closed = 1; nodes = ( (583,387,o), (629,421,o), (637,474,cs), (646,530,o), (612,567,o), (552,567,cs), (492,567,o), (446,530,o), (437,474,cs), (429,421,o), (463,387,o), (523,387,cs) ); } ); width = 600; } ); unicode = 8761; }, { glyphname = existential; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (476,0,l), (592,730,l), (142,730,l), (121,600,l), (421,600,l), (396,439,l), (131,439,l), (110,309,l), (375,309,l), (347,130,l), (47,130,l), (26,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (456,0,l), (572,730,l), (152,730,l), (139,648,l), (469,648,l), (433,422,l), (138,422,l), (125,340,l), (420,340,l), (379,82,l), (49,82,l), (36,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (436,0,l), (552,730,l), (162,730,l), (154,685,l), (494,685,l), (450,403,l), (145,403,l), (138,358,l), (443,358,l), (393,45,l), (53,45,l), (46,0,l) ); } ); width = 600; } ); unicode = 8707; }, { glyphname = greaterorequivalent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,0,l), (90,18,ls), (96,58,o), (125,83,o), (165,83,cs), (238,83,o), (276,0,o), (362,0,cs), (424,0,o), (479,44,o), (489,110,cs), (492,125,l), (447,125,l), (444,107,ls), (438,67,o), (409,42,o), (369,42,cs), (296,42,o), (263,125,o), (172,125,cs), (106,125,o), (55,81,o), (44,15,cs), (42,0,l) ); }, { pos = (21,125); ref = greater; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (142,0,l), (144,15,ls), (148,41,o), (165,55,o), (191,55,cs), (240,55,o), (251,-5,o), (336,-5,cs), (430,-5,o), (501,56,o), (516,150,cs), (518,165,l), (398,165,l), (396,150,ls), (391,124,o), (375,110,o), (349,110,cs), (300,110,o), (289,170,o), (204,170,cs), (110,170,o), (39,109,o), (24,15,cs), (22,0,l) ); }, { pos = (20,125); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (122,0,l), (126,28,ls), (131,57,o), (152,75,o), (181,75,cs), (238,75,o), (253,-5,o), (346,-5,cs), (425,-5,o), (484,46,o), (497,125,cs), (500,145,l), (415,145,l), (410,117,ls), (406,88,o), (385,70,o), (356,70,cs), (298,70,o), (283,150,o), (191,150,cs), (112,150,o), (52,99,o), (40,20,cs), (37,0,l) ); }, { pos = (21,125); ref = greater; } ); width = 600; } ); unicode = 8819; }, { glyphname = leftcurlybracketlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (480,-110,l), (480,-65,l), (425,-65,ls), (363,-65,o), (325,-25,o), (325,40,cs), (325,1020,l), (275,1020,l), (275,40,ls), (275,-56,o), (329,-110,o), (425,-110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (485,-110,l), (485,-30,l), (440,-30,ls), (377,-30,o), (345,-1,o), (345,56,cs), (345,1020,l), (255,1020,l), (255,56,ls), (255,-49,o), (322,-110,o), (440,-110,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (490,-111,l), (490,29,l), (435,29,ls), (399,29,o), (375,53,o), (375,89,cs), (375,1020,l), (225,1020,l), (225,74,ls), (225,-38,o), (296,-111,o), (405,-111,cs) ); } ); width = 600; } ); unicode = 9129; }, { glyphname = leftcurlybracketmiddlepiece; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,237,ls), (325,315,o), (285,364,o), (220,364,c), (220,357,l), (285,357,o), (325,405,o), (325,482,cs), (325,1020,l), (275,1020,l), (275,482,ls), (275,408,o), (257,382,o), (175,382,cs), (65,382,l), (65,336,l), (175,336,ls), (261,336,o), (275,308,o), (275,237,cs), (275,-300,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,220,ls), (345,306,o), (299,363,o), (215,363,c), (215,358,l), (300,358,o), (345,413,o), (345,500,cs), (345,1020,l), (255,1020,l), (255,500,ls), (255,429,o), (242,400,o), (155,400,cs), (45,400,l), (45,320,l), (155,320,ls), (241,320,o), (255,291,o), (255,220,cs), (255,-300,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,239,ls), (375,314,o), (318,364,o), (220,364,c), (220,357,l), (318,357,o), (375,406,o), (375,479,cs), (375,1020,l), (225,1020,l), (225,499,ls), (225,457,o), (197,429,o), (155,429,cs), (30,429,l), (30,289,l), (155,289,ls), (197,289,o), (225,261,o), (225,219,cs), (225,-300,l) ); } ); width = 600; } ); unicode = 9128; }, { glyphname = leftcurlybracketupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,680,ls), (325,745,o), (363,785,o), (425,785,cs), (480,785,l), (480,830,l), (425,830,ls), (329,830,o), (275,776,o), (275,680,cs), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,664,ls), (345,721,o), (377,750,o), (440,750,cs), (485,750,l), (485,830,l), (440,830,ls), (322,830,o), (255,769,o), (255,664,cs), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,630,ls), (375,673,o), (397,690,o), (435,690,cs), (490,690,l), (490,830,l), (405,830,ls), (295,830,o), (225,760,o), (225,650,cs), (225,-300,l) ); } ); width = 600; } ); unicode = 9127; }, { glyphname = leftsquarebracketextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,1020,l), (275,1020,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9122; }, { glyphname = leftsquarebracketlowercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (500,-110,l), (500,-65,l), (325,-65,l), (325,1020,l), (275,1020,l), (275,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (500,-110,l), (500,-30,l), (345,-30,l), (345,1020,l), (255,1020,l), (255,-110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (530,-110,l), (530,30,l), (375,30,l), (375,1020,l), (225,1020,l), (225,-110,l) ); } ); width = 600; } ); unicode = 9123; }, { glyphname = leftsquarebracketuppercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,785,l), (500,785,l), (500,830,l), (275,830,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,750,l), (500,750,l), (500,830,l), (255,830,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,690,l), (530,690,l), (530,830,l), (225,830,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9121; }, { glyphname = lessorequivalent; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,0,l), (90,18,ls), (96,58,o), (125,83,o), (165,83,cs), (238,83,o), (276,0,o), (362,0,cs), (424,0,o), (479,44,o), (489,110,cs), (492,125,l), (447,125,l), (444,107,ls), (438,67,o), (409,42,o), (369,42,cs), (296,42,o), (263,125,o), (172,125,cs), (106,125,o), (55,81,o), (44,15,cs), (42,0,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (107,0,l), (111,23,ls), (115,52,o), (136,70,o), (165,70,cs), (222,70,o), (269,0,o), (362,0,cs), (441,0,o), (500,51,o), (513,130,cs), (515,145,l), (430,145,l), (426,122,ls), (422,93,o), (401,75,o), (372,75,cs), (314,75,o), (267,145,o), (175,145,cs), (96,145,o), (37,94,o), (24,15,cs), (22,0,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (142,0,l), (144,15,ls), (148,41,o), (165,55,o), (191,55,cs), (240,55,o), (251,-5,o), (336,-5,cs), (430,-5,o), (501,56,o), (516,150,cs), (518,165,l), (398,165,l), (396,150,ls), (391,124,o), (375,110,o), (349,110,cs), (300,110,o), (289,170,o), (204,170,cs), (110,170,o), (39,109,o), (24,15,cs), (22,0,l) ); }, { pos = (20,125); ref = less; } ); width = 600; } ); unicode = 8818; }, { glyphname = midlinehorizontalellipsis; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (587,276,o), (610,299,o), (610,334,cs), (610,369,o), (587,392,o), (552,392,cs), (516,392,o), (493,369,o), (493,334,cs), (493,299,o), (516,276,o), (552,276,cs) ); }, { closed = 1; nodes = ( (84,276,o), (107,299,o), (107,334,cs), (107,369,o), (84,392,o), (49,392,cs), (13,392,o), (-10,369,o), (-10,334,cs), (-10,299,o), (13,276,o), (49,276,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (84,276,o), (107,299,o), (107,334,cs), (107,369,o), (84,392,o), (49,392,cs), (13,392,o), (-10,369,o), (-10,334,cs), (-10,299,o), (13,276,o), (49,276,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (587,276,o), (610,299,o), (610,334,cs), (610,369,o), (587,392,o), (552,392,cs), (516,392,o), (493,369,o), (493,334,cs), (493,299,o), (516,276,o), (552,276,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (103,264,o), (131,292,o), (131,334,cs), (131,376,o), (103,404,o), (61,404,cs), (18,404,o), (-10,376,o), (-10,334,cs), (-10,292,o), (18,264,o), (61,264,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (582,264,o), (610,292,o), (610,334,cs), (610,376,o), (582,404,o), (540,404,cs), (497,404,o), (469,376,o), (469,334,cs), (469,292,o), (497,264,o), (540,264,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (120,253,o), (154,286,o), (154,334,cs), (154,382,o), (120,415,o), (72,415,cs), (24,415,o), (-10,382,o), (-10,334,cs), (-10,286,o), (24,253,o), (72,253,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (576,253,o), (610,286,o), (610,334,cs), (610,382,o), (576,415,o), (528,415,cs), (480,415,o), (446,382,o), (446,334,cs), (446,286,o), (480,253,o), (528,253,cs) ); } ); width = 600; } ); unicode = 8943; }, { glyphname = multimap; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (549,235,o), (590,276,o), (590,330,cs), (590,384,o), (549,425,o), (495,425,cs), (441,425,o), (400,384,o), (400,330,cs), (400,276,o), (441,235,o), (495,235,cs) ); }, { closed = 1; nodes = ( (425,309,l), (425,351,l), (20,351,l), (20,309,l) ); }, { closed = 1; nodes = ( (463,275,o), (440,298,o), (440,330,cs), (440,362,o), (463,385,o), (495,385,cs), (527,385,o), (550,362,o), (550,330,cs), (550,298,o), (527,275,o), (495,275,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (549,235,o), (590,276,o), (590,330,cs), (590,384,o), (549,425,o), (495,425,cs), (441,425,o), (400,384,o), (400,330,cs), (400,276,o), (441,235,o), (495,235,cs) ); }, { closed = 1; nodes = ( (425,309,l), (425,351,l), (20,351,l), (20,309,l) ); }, { closed = 1; nodes = ( (463,275,o), (440,298,o), (440,330,cs), (440,362,o), (463,385,o), (495,385,cs), (527,385,o), (550,362,o), (550,330,cs), (550,298,o), (527,275,o), (495,275,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (549,235,o), (590,276,o), (590,330,cs), (590,384,o), (549,425,o), (495,425,cs), (441,425,o), (400,384,o), (400,330,cs), (400,276,o), (441,235,o), (495,235,cs) ); }, { closed = 1; nodes = ( (425,309,l), (425,351,l), (20,351,l), (20,309,l) ); }, { closed = 1; nodes = ( (463,275,o), (440,298,o), (440,330,cs), (440,362,o), (463,385,o), (495,385,cs), (527,385,o), (550,362,o), (550,330,cs), (550,298,o), (527,275,o), (495,275,cs) ); } ); width = 600; } ); unicode = 8888; }, { glyphname = multisetunion; layers = ( { background = { shapes = ( { ref = union; }, { pos = (0,-220); ref = plussuperior; } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (320,85,l), (320,206,l), (440,206,l), (440,244,l), (320,244,l), (320,365,l), (280,365,l), (280,244,l), (160,244,l), (160,206,l), (280,206,l), (280,85,l) ); }, { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; }, { background = { shapes = ( { ref = union; }, { pos = (0,-198); ref = plussuperior; } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,85,l), (320,206,l), (440,206,l), (440,244,l), (320,244,l), (320,365,l), (280,365,l), (280,244,l), (160,244,l), (160,206,l), (280,206,l), (280,85,l) ); }, { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; }, { background = { shapes = ( { ref = union; }, { pos = (0,-165); ref = plussuperior; } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (320,85,l), (320,206,l), (440,206,l), (440,244,l), (320,244,l), (320,365,l), (280,365,l), (280,244,l), (160,244,l), (160,206,l), (280,206,l), (280,85,l) ); }, { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; } ); unicode = 8846; }, { glyphname = nAryCircledDotOperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (268,304,o), (244,328,o), (244,360,cs), (244,392,o), (268,416,o), (300,416,cs), (332,416,o), (356,392,o), (356,360,cs), (356,328,o), (332,304,o), (300,304,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (268,304,o), (244,328,o), (244,360,cs), (244,392,o), (268,416,o), (300,416,cs), (332,416,o), (356,392,o), (356,360,cs), (356,328,o), (332,304,o), (300,304,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (268,304,o), (244,328,o), (244,360,cs), (244,392,o), (268,416,o), (300,416,cs), (332,416,o), (356,392,o), (356,360,cs), (356,328,o), (332,304,o), (300,304,cs) ); } ); width = 600; } ); unicode = 10752; }, { glyphname = nArySquareUnionOperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (530,0,l), (530,730,l), (480,730,l), (480,45,l), (120,45,l), (120,730,l), (70,730,l), (70,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (557,0,l), (557,730,l), (467,730,l), (467,82,l), (133,82,l), (133,730,l), (43,730,l), (43,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,0,l), (600,730,l), (450,730,l), (450,140,l), (150,140,l), (150,730,l), (0,730,l), (0,0,l) ); } ); width = 600; } ); unicode = 10758; }, { glyphname = neitherapproximatelynoractuallyequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (113,-100,l), (552,780,l), (506,780,l), (67,-100,l) ); }, { closed = 1; nodes = ( (484,114,l), (491,158,l), (71,158,l), (64,114,l) ); }, { closed = 1; nodes = ( (515,308,l), (522,352,l), (102,352,l), (95,308,l) ); }, { pos = (20,185); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (123,-100,l), (560,780,l), (497,780,l), (60,-100,l) ); }, { closed = 1; nodes = ( (498,76,l), (510,152,l), (50,152,l), (38,76,l) ); }, { closed = 1; nodes = ( (532,292,l), (544,368,l), (84,368,l), (72,292,l) ); }, { pos = (32,215); ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (136,-100,l), (575,780,l), (484,780,l), (45,-100,l) ); }, { closed = 1; nodes = ( (511,0,l), (532,130,l), (22,130,l), (1,0,l) ); }, { closed = 1; nodes = ( (553,265,l), (574,395,l), (64,395,l), (43,265,l) ); }, { pos = (37,245); ref = asciitilde; } ); width = 600; } ); unicode = 8775; }, { glyphname = neitherasubsetofnorequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (119,-100,l), (558,780,l), (512,780,l), (73,-100,l) ); }, { closed = 1; nodes = ( (492,0,l), (499,45,l), (14,45,l), (7,0,l) ); }, { closed = 1; nodes = ( (330,210,ls), (460,210,o), (553,285,o), (572,408,cs), (582,472,ls), (601,595,o), (533,670,o), (403,670,cs), (113,670,l), (106,625,l), (396,625,ls), (497,625,o), (546,568,o), (531,470,cs), (522,410,ls), (507,312,o), (438,255,o), (337,255,cs), (47,255,l), (40,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (126,-100,l), (563,780,l), (500,780,l), (63,-100,l) ); }, { closed = 1; nodes = ( (509,0,l), (522,82,l), (2,82,l), (-11,0,l) ); }, { closed = 1; nodes = ( (326,200,ls), (464,200,o), (569,287,o), (590,418,cs), (597,462,ls), (618,593,o), (540,680,o), (402,680,cs), (97,680,l), (84,598,l), (389,598,ls), (478,598,o), (521,548,o), (507,460,cs), (501,420,ls), (487,332,o), (428,282,o), (339,282,cs), (34,282,l), (21,200,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (137,-100,l), (576,780,l), (485,780,l), (46,-100,l) ); }, { closed = 1; nodes = ( (517,0,l), (539,140,l), (4,140,l), (-18,0,l) ); }, { closed = 1; nodes = ( (311,185,ls), (461,185,o), (576,278,o), (598,418,cs), (605,462,ls), (627,602,o), (542,695,o), (392,695,cs), (92,695,l), (70,555,l), (366,555,ls), (430,555,o), (464,519,o), (455,460,cs), (449,420,ls), (440,361,o), (394,325,o), (329,325,cs), (33,325,l), (11,185,l) ); } ); width = 600; } ); unicode = 8840; }, { glyphname = notalmostequalto; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; pos = (18,110); ref = asciitilde; }, { alignment = -1; pos = (-24,-155); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; pos = (16,100); ref = asciitilde; }, { alignment = -1; pos = (-22,-145); ref = asciitilde; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; pos = (15,95); ref = asciitilde; }, { alignment = -1; pos = (-22,-140); ref = asciitilde; } ); width = 600; } ); unicode = 8777; }, { glyphname = notcontains; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = suchthat; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = suchthat; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = suchthat; } ); width = 600; } ); unicode = 8716; }, { glyphname = notelement; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = element; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = element; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = element; } ); width = 600; } ); unicode = 8713; }, { glyphname = notgreater; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (127,-70,l), (532,730,l), (484,730,l), (79,-70,l) ); }, { ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (135,-70,l), (539,730,l), (474,730,l), (70,-70,l) ); }, { ref = greater; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,-69,l), (550,730,l), (459,730,l), (57,-69,l) ); }, { ref = greater; } ); width = 600; } ); unicode = 8815; }, { glyphname = notgreaternorequal; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (83,-110,l), (522,780,l), (474,780,l), (35,-110,l) ); }, { closed = 1; nodes = ( (466,0,l), (473,45,l), (53,45,l), (46,0,l) ); }, { pos = (20,126); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (91,-110,l), (529,780,l), (464,780,l), (26,-110,l) ); }, { closed = 1; nodes = ( (471,0,l), (484,82,l), (54,82,l), (41,0,l) ); }, { pos = (21,126); ref = greater; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (101,-110,l), (541,780,l), (450,780,l), (10,-110,l) ); }, { closed = 1; nodes = ( (487,0,l), (509,140,l), (49,140,l), (27,0,l) ); }, { pos = (21,126); ref = greater; } ); width = 600; } ); unicode = 8817; }, { glyphname = notidentical; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (146,-50,l), (520,720,l), (472,720,l), (98,-50,l) ); }, { ref = equivalence; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (149,-60,l), (531,729,l), (466,729,l), (84,-60,l) ); }, { ref = equivalence; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (146,-110,l), (564,770,l), (473,770,l), (55,-110,l) ); }, { pos = (1,0); ref = equivalence; } ); width = 600; } ); unicode = 8802; }, { glyphname = notless; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (127,-70,l), (532,730,l), (484,730,l), (79,-70,l) ); }, { ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (135,-70,l), (539,730,l), (474,730,l), (70,-70,l) ); }, { ref = less; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,-69,l), (550,730,l), (459,730,l), (57,-69,l) ); }, { ref = less; } ); width = 600; } ); unicode = 8814; }, { glyphname = notlessnorequal; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (466,0,l), (474,45,l), (54,45,l), (46,0,l) ); }, { closed = 1; nodes = ( (113,-110,l), (552,780,l), (504,780,l), (65,-110,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (470,0,l), (483,82,l), (53,82,l), (40,0,l) ); }, { closed = 1; nodes = ( (121,-110,l), (559,780,l), (494,780,l), (56,-110,l) ); }, { pos = (20,125); ref = less; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (508,140,l), (48,140,l), (26,0,l) ); }, { closed = 1; nodes = ( (152,-110,l), (592,780,l), (501,780,l), (61,-110,l) ); }, { pos = (20,125); ref = less; } ); width = 600; } ); unicode = 8816; }, { glyphname = notsubset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = subset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = subset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = subset; } ); width = 600; } ); unicode = 8836; }, { glyphname = notsuperset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = superset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = superset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = superset; } ); width = 600; } ); unicode = 8837; }, { glyphname = plus; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (345,90,l), (372,260,l), (542,260,l), (564,400,l), (394,400,l), (421,570,l), (271,570,l), (244,400,l), (74,400,l), (52,260,l), (222,260,l), (195,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (315,95,l), (346,290,l), (537,290,l), (550,370,l), (359,370,l), (389,565,l), (301,565,l), (271,370,l), (80,370,l), (67,290,l), (258,290,l), (227,95,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (297,100,l), (330,310,l), (530,310,l), (537,355,l), (337,355,l), (370,565,l), (320,565,l), (287,355,l), (87,355,l), (80,310,l), (280,310,l), (247,100,l) ); } ); width = 600; } ); unicode = 43; }, { glyphname = minus; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = hyphen; } ); width = 600; } ); unicode = 8722; }, { glyphname = multiply; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (292,221,l), (394,100,l), (511,201,l), (410,323,l), (549,441,l), (460,546,l), (322,426,l), (220,546,l), (103,445,l), (203,323,l), (65,205,l), (154,100,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,278,l), (418,137,l), (476,187,l), (357,327,l), (526,473,l), (481,527,l), (312,381,l), (194,521,l), (137,472,l), (254,331,l), (90,189,l), (135,135,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,294,l), (431,143,l), (471,177,l), (344,328,l), (520,481,l), (488,518,l), (312,365,l), (185,516,l), (145,482,l), (272,331,l), (95,179,l), (127,142,l) ); } ); width = 600; } ); unicode = 215; }, { glyphname = divide; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (498,260,l), (520,400,l), (120,400,l), (98,260,l) ); }, { closed = 1; nodes = ( (390,460,o), (436,496,o), (444,550,cs), (453,604,o), (418,640,o), (358,640,cs), (298,640,o), (253,604,o), (244,550,cs), (236,496,o), (270,460,o), (330,460,cs) ); }, { closed = 1; nodes = ( (320,20,o), (366,56,o), (374,110,cs), (383,164,o), (349,200,o), (289,200,cs), (229,200,o), (183,164,o), (174,110,cs), (166,56,o), (200,20,o), (260,20,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (503,295,l), (515,370,l), (115,370,l), (103,295,l) ); }, { closed = 1; nodes = ( (379,460,o), (417,490,o), (424,535,cs), (431,580,o), (403,610,o), (353,610,cs), (303,610,o), (265,580,o), (258,535,cs), (251,490,o), (279,460,o), (329,460,cs) ); }, { closed = 1; nodes = ( (315,55,o), (353,85,o), (360,130,cs), (367,175,o), (339,205,o), (289,205,cs), (239,205,o), (201,175,o), (194,130,cs), (187,85,o), (215,55,o), (265,55,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (505,309,l), (513,359,l), (113,359,l), (105,309,l) ); }, { closed = 1; nodes = ( (372,456,o), (406,485,o), (413,528,cs), (420,571,o), (395,600,o), (351,600,cs), (307,600,o), (274,571,o), (267,528,cs), (260,485,o), (284,456,o), (328,456,cs) ); }, { closed = 1; nodes = ( (311,66,o), (344,95,o), (351,138,cs), (358,181,o), (334,210,o), (290,210,cs), (246,210,o), (212,181,o), (205,138,cs), (198,95,o), (223,66,o), (267,66,cs) ); } ); width = 600; } ); unicode = 247; }, { glyphname = equal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (119,525,l), (97,385,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (80,275,l), (57,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (536,410,l), (549,490,l), (119,490,l), (106,410,l) ); }, { closed = 1; nodes = ( (498,170,l), (511,250,l), (81,250,l), (68,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (528,421,l), (535,466,l), (125,466,l), (118,421,l) ); }, { closed = 1; nodes = ( (492,195,l), (499,240,l), (89,240,l), (82,195,l) ); } ); width = 600; } ); unicode = 61; }, { glyphname = notequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (152,-60,l), (565,780,l), (474,780,l), (61,-60,l) ); }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (131,-60,l), (560,780,l), (495,780,l), (66,-60,l) ); }, { alignment = -1; ref = equal; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (124,-60,l), (550,780,l), (502,780,l), (76,-60,l) ); }, { alignment = -1; ref = equal; } ); width = 600; } ); unicode = 8800; }, { glyphname = greater; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (527,258,l), (550,401,l), (122,609,l), (101,476,l), (358,355,ls), (383,343,o), (415,336,o), (431,333,c), (414,330,o), (379,322,o), (350,310,cs), (55,189,l), (34,49,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (515,280,l), (531,380,l), (135,595,l), (121,509,l), (407,356,ls), (428,344,o), (451,335,o), (463,332,c), (451,329,o), (426,320,o), (399,308,cs), (65,156,l), (51,65,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (515,307,l), (522,353,l), (138,580,l), (129,529,l), (396,373,ls), (421,358,o), (454,340,o), (471,331,c), (451,322,o), (413,304,o), (382,289,cs), (67,135,l), (59,80,l) ); } ); width = 600; } ); unicode = 62; }, { glyphname = less; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (515,182,l), (259,303,ls), (234,315,o), (202,322,o), (185,325,c), (203,328,o), (237,336,o), (266,348,cs), (561,469,l), (582,609,l), (89,400,l), (67,257,l), (494,49,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (496,149,l), (210,302,ls), (189,314,o), (165,323,o), (154,326,c), (165,329,o), (190,338,o), (217,350,cs), (551,502,l), (565,595,l), (101,380,l), (85,280,l), (481,65,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (487,131,l), (221,287,ls), (195,302,o), (163,320,o), (145,329,c), (166,338,o), (204,356,o), (234,371,cs), (549,525,l), (558,580,l), (102,353,l), (95,307,l), (479,80,l) ); } ); width = 600; } ); unicode = 60; }, { glyphname = greaterequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (508,140,l), (48,140,l), (26,0,l) ); }, { alignment = -1; pos = (20,125); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (471,0,l), (484,80,l), (54,80,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (471,0,l), (479,50,l), (49,50,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = greater; } ); width = 600; } ); unicode = 8805; }, { glyphname = lessequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (486,0,l), (508,140,l), (48,140,l), (26,0,l) ); }, { alignment = -1; pos = (20,125); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (471,0,l), (484,80,l), (54,80,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (471,0,l), (479,50,l), (49,50,l), (41,0,l) ); }, { alignment = -1; pos = (20,125); ref = less; } ); width = 600; } ); unicode = 8804; }, { glyphname = plusminus; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (491,0,l), (509,111,l), (354,111,l), (377,260,l), (547,260,l), (569,400,l), (399,400,l), (426,570,l), (276,570,l), (249,400,l), (79,400,l), (57,260,l), (227,260,l), (204,111,l), (39,111,l), (21,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (486,0,l), (497,70,l), (311,70,l), (347,295,l), (538,295,l), (550,375,l), (359,375,l), (390,570,l), (302,570,l), (271,375,l), (80,375,l), (68,295,l), (259,295,l), (223,70,l), (37,70,l), (26,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (285,45,l), (328,315,l), (536,315,l), (543,360,l), (335,360,l), (368,570,l), (319,570,l), (286,360,l), (83,360,l), (76,315,l), (279,315,l), (236,45,l), (33,45,l), (26,0,l) ); } ); width = 600; } ); unicode = 177; }, { glyphname = approxequal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (18,110); ref = asciitilde; }, { alignment = -1; pos = (-24,-155); ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (16,100); ref = asciitilde; }, { alignment = -1; pos = (-22,-145); ref = asciitilde; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (15,95); ref = asciitilde; }, { alignment = -1; pos = (-22,-140); ref = asciitilde; } ); width = 600; } ); unicode = 8776; }, { glyphname = asciitilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (156,255,l), (168,330,ls), (172,352,o), (185,365,o), (206,365,cs), (274,365,o), (252,225,o), (397,225,cs), (492,225,o), (560,280,o), (574,365,cs), (587,450,l), (467,450,l), (455,375,ls), (452,353,o), (439,340,o), (418,340,cs), (350,340,o), (372,480,o), (227,480,cs), (133,480,o), (63,425,o), (50,340,cs), (36,255,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (151,255,l), (162,325,ls), (168,361,o), (188,380,o), (218,380,cs), (286,380,o), (271,250,o), (396,250,cs), (474,250,o), (534,303,o), (546,380,cs), (557,450,l), (472,450,l), (461,380,ls), (455,344,o), (435,325,o), (405,325,cs), (337,325,o), (353,455,o), (228,455,cs), (150,455,o), (90,403,o), (77,325,cs), (66,255,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (132,260,l), (144,335,ls), (151,378,o), (177,403,o), (215,403,cs), (300,403,o), (287,260,o), (407,260,cs), (470,260,o), (514,301,o), (525,370,cs), (536,445,l), (491,445,l), (480,370,ls), (473,327,o), (449,302,o), (414,302,cs), (325,302,o), (336,445,o), (221,445,cs), (156,445,o), (110,403,o), (99,335,cs), (87,260,l) ); } ); width = 600; } ); unicode = 126; }, { glyphname = logicalnot; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (514,175,l), (557,450,l), (97,450,l), (75,310,l), (385,310,l), (364,175,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (518,205,l), (552,415,l), (92,415,l), (79,335,l), (454,335,l), (433,205,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (520,215,l), (549,400,l), (89,400,l), (82,355,l), (492,355,l), (470,215,l) ); } ); width = 600; } ); unicode = 172; }, { glyphname = asciicircum; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (214,340,l), (327,550,ls), (343,580,o), (353,609,o), (357,622,c), (357,609,o), (361,580,o), (367,550,cs), (411,340,l), (550,340,l), (446,730,l), (300,730,l), (70,340,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (174,340,l), (330,598,ls), (346,624,o), (359,651,o), (366,665,c), (368,651,o), (374,624,o), (381,598,cs), (452,340,l), (530,340,l), (415,730,l), (331,730,l), (90,340,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (170,340,l), (325,600,ls), (340,626,o), (359,660,o), (367,678,c), (371,660,o), (378,626,o), (385,600,cs), (455,340,l), (510,340,l), (401,730,l), (348,730,l), (110,340,l) ); } ); width = 600; } ); unicode = 94; }, { glyphname = infinity; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (214,160,o), (259,216,o), (271,259,c), (276,259,l), (291,196,o), (339,160,o), (409,160,cs), (500,160,o), (571,219,o), (584,300,cs), (594,365,ls), (607,449,o), (562,505,o), (480,505,cs), (403,505,o), (358,449,o), (346,406,c), (341,406,l), (326,469,o), (278,505,o), (208,505,cs), (117,505,o), (47,446,o), (34,365,cs), (24,300,ls), (10,216,o), (55,160,o), (137,160,cs) ); }, { closed = 1; nodes = ( (137,245,o), (118,267,o), (124,300,cs), (134,365,ls), (139,398,o), (165,420,o), (198,420,cs), (225,420,o), (245,404,o), (252,375,cs), (265,314,l), (253,284,o), (220,245,o), (170,245,cs) ); }, { closed = 1; nodes = ( (393,245,o), (371,260,o), (365,290,cs), (353,351,l), (364,381,o), (398,420,o), (448,420,cs), (481,420,o), (499,398,o), (494,365,cs), (484,300,ls), (478,267,o), (453,245,o), (420,245,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (220,160,o), (268,216,o), (284,259,c), (287,259,l), (300,195,o), (341,160,o), (409,160,cs), (491,160,o), (555,214,o), (568,295,cs), (580,370,ls), (592,451,o), (549,505,o), (470,505,cs), (397,505,o), (349,449,o), (333,406,c), (330,406,l), (317,470,o), (276,505,o), (208,505,cs), (126,505,o), (62,451,o), (50,370,cs), (38,295,ls), (25,214,o), (68,160,o), (147,160,cs) ); }, { closed = 1; nodes = ( (124,220,o), (101,250,o), (108,295,cs), (120,370,ls), (127,415,o), (159,445,o), (201,445,cs), (230,445,o), (250,428,o), (259,393,c), (277,309,l), (272,294,o), (242,220,o), (166,220,cs) ); }, { closed = 1; nodes = ( (387,220,o), (368,237,o), (358,272,c), (340,356,l), (346,371,o), (375,445,o), (451,445,cs), (493,445,o), (517,415,o), (510,370,cs), (498,295,ls), (491,250,o), (458,220,o), (416,220,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (220,160,o), (278,222,o), (302,269,c), (305,269,l), (317,205,o), (341,160,o), (409,160,cs), (488,160,o), (544,211,o), (558,295,cs), (570,370,ls), (583,454,o), (545,505,o), (470,505,cs), (397,505,o), (342,443,o), (321,396,c), (318,396,l), (305,460,o), (276,505,o), (208,505,cs), (129,505,o), (73,454,o), (60,370,cs), (48,295,ls), (34,211,o), (72,160,o), (147,160,cs) ); }, { closed = 1; nodes = ( (112,200,o), (84,238,o), (93,295,cs), (105,370,ls), (114,427,o), (154,465,o), (205,465,cs), (241,465,o), (264,441,o), (276,393,cs), (295,319,l), (269,248,o), (217,200,o), (163,200,cs) ); }, { closed = 1; nodes = ( (378,200,o), (353,225,o), (341,272,cs), (323,346,l), (348,417,o), (401,465,o), (455,465,cs), (506,465,o), (534,427,o), (525,370,cs), (513,295,ls), (504,238,o), (464,200,o), (413,200,cs) ); } ); width = 600; } ); unicode = 8734; }, { glyphname = emptyset; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (491,50,o), (624,183,o), (624,360,cs), (624,537,o), (491,670,o), (314,670,cs), (137,670,o), (4,537,o), (4,360,cs), (4,183,o), (137,50,o), (314,50,cs) ); }, { closed = 1; nodes = ( (166,95,o), (54,209,o), (54,360,cs), (54,511,o), (166,625,o), (314,625,cs), (462,625,o), (574,511,o), (574,360,cs), (574,209,o), (462,95,o), (314,95,cs) ); }, { closed = 1; nodes = ( (88,0,l), (594,730,l), (540,730,l), (34,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (491,50,o), (624,183,o), (624,360,cs), (624,537,o), (491,670,o), (314,670,cs), (137,670,o), (4,537,o), (4,360,cs), (4,183,o), (137,50,o), (314,50,cs) ); }, { closed = 1; nodes = ( (189,130,o), (94,229,o), (94,360,cs), (94,491,o), (189,590,o), (314,590,cs), (439,590,o), (534,491,o), (534,360,cs), (534,229,o), (439,130,o), (314,130,cs) ); }, { closed = 1; nodes = ( (105,0,l), (594,730,l), (523,730,l), (34,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (491,50,o), (624,183,o), (624,360,cs), (624,537,o), (491,670,o), (314,670,cs), (137,670,o), (4,537,o), (4,360,cs), (4,183,o), (137,50,o), (314,50,cs) ); }, { closed = 1; nodes = ( (217,180,o), (144,257,o), (144,360,cs), (144,463,o), (217,540,o), (314,540,cs), (411,540,o), (484,463,o), (484,360,cs), (484,257,o), (411,180,o), (314,180,cs) ); }, { closed = 1; nodes = ( (136,0,l), (594,730,l), (492,730,l), (34,0,l) ); } ); width = 600; } ); unicode = 8709; }, { glyphname = logicaland; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (148,50,l), (322,424,l), (386,50,l), (537,50,l), (436,550,l), (248,550,l), (-9,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,50,l), (332,481,l), (415,50,l), (504,50,l), (404,550,l), (282,550,l), (24,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (94,50,l), (339,509,l), (438,50,l), (488,50,l), (374,550,l), (312,550,l), (40,50,l) ); } ); width = 600; } ); unicode = 8743; }, { glyphname = logicalor; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (359,50,l), (616,550,l), (460,550,l), (286,177,l), (222,550,l), (70,550,l), (171,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (325,50,l), (583,550,l), (489,550,l), (275,119,l), (192,550,l), (103,550,l), (203,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (295,50,l), (567,550,l), (514,550,l), (271,94,l), (169,550,l), (119,550,l), (233,50,l) ); } ); width = 600; } ); unicode = 8744; }, { glyphname = intersection; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,730); ref = union; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,730); ref = union; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,730); ref = union; scale = (1,-1); } ); width = 600; } ); unicode = 8745; }, { glyphname = union; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (70,200,ls), (70,70,o), (141,0,o), (273,0,cs), (327,0,ls), (459,0,o), (530,70,o), (530,200,cs), (530,730,l), (480,730,l), (480,200,ls), (480,101,o), (424,45,o), (325,45,cs), (275,45,ls), (176,45,o), (120,101,o), (120,200,cs), (120,730,l), (70,730,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (43,220,ls), (43,77,o), (123,0,o), (271,0,cs), (329,0,ls), (477,0,o), (557,77,o), (557,220,cs), (557,730,l), (467,730,l), (467,220,ls), (467,129,o), (418,80,o), (327,80,cs), (273,80,ls), (182,80,o), (133,129,o), (133,220,cs), (133,730,l), (43,730,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (0,250,ls), (0,88,o), (94,0,o), (268,0,cs), (332,0,ls), (506,0,o), (600,88,o), (600,250,cs), (600,730,l), (450,730,l), (450,250,ls), (450,172,o), (408,130,o), (330,130,cs), (270,130,ls), (192,130,o), (150,172,o), (150,250,cs), (150,730,l), (0,730,l) ); } ); width = 600; } ); unicode = 8746; }, { glyphname = integral; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (42,-180,ls), (183,-180,o), (296,-96,o), (315,25,c), (399,555,l), (403,583,o), (424,600,o), (451,600,cs), (606,600,l), (627,730,l), (452,730,ls), (346,730,o), (266,661,o), (249,555,c), (167,41,l), (160,-7,o), (126,-35,o), (75,-35,cs), (-50,-35,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,-180,ls), (156,-180,o), (250,-103,o), (268,15,c), (359,590,l), (366,630,o), (390,650,o), (433,650,cs), (594,650,l), (607,730,l), (446,730,ls), (349,730,o), (284,679,o), (270,591,c), (178,15,l), (167,-55,o), (116,-98,o), (45,-98,cs), (-60,-98,l), (-73,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (23,-180,ls), (141,-180,o), (228,-113,o), (246,0,c), (342,605,l), (350,656,o), (383,685,o), (434,685,cs), (587,685,l), (595,730,l), (442,730,ls), (361,730,o), (304,683,o), (292,605,c), (198,10,l), (183,-84,o), (125,-135,o), (31,-135,cs), (-65,-135,l), (-73,-180,l) ); } ); width = 600; } ); unicode = 8747; }, { glyphname = product; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (157,-180,l), (279,590,l), (419,590,l), (297,-180,l), (447,-180,l), (569,590,l), (629,590,l), (652,730,l), (92,730,l), (69,590,l), (129,590,l), (7,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (127,-180,l), (259,648,l), (459,648,l), (327,-180,l), (417,-180,l), (549,648,l), (619,648,l), (632,730,l), (112,730,l), (99,648,l), (169,648,l), (37,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (102,-180,l), (239,685,l), (489,685,l), (352,-180,l), (402,-180,l), (539,685,l), (614,685,l), (622,730,l), (122,730,l), (114,685,l), (189,685,l), (52,-180,l) ); } ); width = 600; } ); unicode = 8719; }, { glyphname = summation; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (467,-180,l), (489,-45,l), (188,-45,l), (463,274,l), (279,595,l), (590,595,l), (612,730,l), (127,730,l), (106,597,l), (290,285,l), (4,-47,l), (-18,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (467,-180,l), (480,-98,l), (107,-98,l), (439,275,l), (220,648,l), (599,648,l), (612,730,l), (127,730,l), (114,648,l), (330,280,l), (-5,-98,l), (-18,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (467,-180,l), (475,-135,l), (51,-135,l), (428,278,l), (177,685,l), (604,685,l), (612,730,l), (127,730,l), (119,683,l), (365,283,l), (-10,-133,l), (-18,-180,l) ); } ); width = 600; } ); unicode = 8721; }, { glyphname = radical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,0,l), (677,730,l), (524,730,l), (311,218,ls), (296,182,o), (283,135,o), (278,110,c), (245,550,l), (48,550,l), (27,415,l), (120,415,l), (164,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (329,0,l), (657,730,l), (571,730,l), (322,161,ls), (303,117,o), (295,81,o), (293,66,c), (248,550,l), (73,550,l), (60,470,l), (171,470,l), (224,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (307,0,l), (649,730,l), (597,730,l), (320,131,ls), (300,87,o), (293,61,o), (288,46,c), (232,550,l), (73,550,l), (66,505,l), (189,505,l), (248,0,l) ); } ); width = 600; } ); unicode = 8730; }, { glyphname = partialdiff; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,-7,o), (508,75,o), (529,210,cs), (557,385,ls), (582,541,o), (483,674,o), (402,730,c), (202,730,l), (302,658,o), (429,526,o), (413,425,cs), (407,385,l), (393,385,l), (403,371,l), (416,446,o), (372,494,o), (278,494,cs), (162,494,o), (82,414,o), (60,279,cs), (49,210,ls), (28,75,o), (108,-13,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (217,120,o), (190,152,o), (199,210,cs), (210,279,ls), (219,337,o), (256,369,o), (314,369,cs), (373,369,o), (399,337,o), (390,279,cs), (379,210,ls), (370,152,o), (333,120,o), (275,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (384,-10,o), (477,72,o), (498,205,cs), (530,405,ls), (563,615,o), (368,730,o), (368,730,c), (233,730,l), (336,680,o), (465,560,o), (442,415,cs), (438,390,l), (424,390,l), (435,370,l), (446,449,o), (398,495,o), (308,495,cs), (192,495,o), (112,416,o), (91,285,cs), (78,205,ls), (57,71,o), (123,-10,o), (254,-10,cs) ); }, { closed = 1; nodes = ( (190,70,o), (155,118,o), (168,205,cs), (181,285,ls), (195,372,o), (246,420,o), (323,420,cs), (401,420,o), (435,373,o), (421,285,cs), (408,205,ls), (395,118,o), (344,70,o), (267,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (378,-10,o), (461,66,o), (483,200,cs), (514,395,ls), (537,542,o), (425,672,o), (336,730,c), (259,730,l), (360,667,o), (486,535,o), (465,405,cs), (463,393,l), (449,393,l), (458,358,l), (471,445,o), (422,495,o), (323,495,cs), (204,495,o), (128,421,o), (106,285,cs), (93,200,ls), (71,66,o), (129,-10,o), (253,-10,cs) ); }, { closed = 1; nodes = ( (171,35,o), (126,97,o), (143,200,cs), (156,285,ls), (173,389,o), (237,452,o), (327,452,cs), (421,452,o), (462,385,o), (446,285,cs), (433,200,ls), (416,97,o), (352,35,o), (261,35,cs) ); } ); width = 600; } ); unicode = 8706; }, { glyphname = micro; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = mu; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = mu; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = mu; } ); width = 600; } ); unicode = 181; }, { glyphname = parallel; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (441,0,l), (557,730,l), (407,730,l), (291,0,l) ); }, { closed = 1; nodes = ( (221,0,l), (337,730,l), (187,730,l), (71,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (401,0,l), (517,730,l), (427,730,l), (311,0,l) ); }, { closed = 1; nodes = ( (201,0,l), (317,730,l), (227,730,l), (111,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (381,0,l), (497,730,l), (447,730,l), (331,0,l) ); }, { closed = 1; nodes = ( (181,0,l), (297,730,l), (247,730,l), (131,0,l) ); } ); width = 600; } ); unicode = 8741; }, { glyphname = parenleftextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,1020,l), (275,1020,l), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); width = 600; } ); unicode = 9116; }, { glyphname = parenleftlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (550,-74,l), (407,-38,o), (325,84,o), (325,260,cs), (325,1020,l), (275,1020,l), (275,260,ls), (275,62,o), (375,-77,o), (550,-120,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (555,-32,l), (425,-1,o), (345,114,o), (345,270,cs), (345,1020,l), (255,1020,l), (255,270,ls), (255,75,o), (369,-74,o), (555,-120,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (555,34,l), (447,61,o), (375,183,o), (375,340,cs), (375,1020,l), (225,1020,l), (225,340,ls), (225,117,o), (357,-66,o), (555,-120,c) ); } ); width = 600; } ); unicode = 9117; }, { glyphname = parenleftupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,-300,l), (325,460,ls), (325,636,o), (407,758,o), (550,794,c), (550,840,l), (375,797,o), (275,658,o), (275,460,cs), (275,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,450,ls), (345,606,o), (425,721,o), (555,752,c), (555,840,l), (369,794,o), (255,645,o), (255,450,cs), (255,-300,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,380,ls), (375,537,o), (447,659,o), (555,686,c), (555,840,l), (357,786,o), (225,603,o), (225,380,cs), (225,-300,l) ); } ); width = 600; } ); unicode = 9115; }, { glyphname = parenrightextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = parenleftextension; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = parenleftextension; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = parenleftextension; } ); width = 600; } ); unicode = 9119; }, { glyphname = parenrightlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = parenleftlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = parenleftlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = parenleftlowerhook; scale = (-1,1); } ); width = 600; } ); unicode = 9120; }, { glyphname = parenrightupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = parenleftupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = parenleftupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = parenleftupperhook; scale = (-1,1); } ); width = 600; } ); unicode = 9118; }, { glyphname = percent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (47,0,l), (687,730,l), (582,730,l), (-59,0,l) ); }, { closed = 1; nodes = ( (482,-5,o), (555,49,o), (567,130,cs), (577,195,ls), (589,276,o), (535,330,o), (448,330,cs), (361,330,o), (289,276,o), (277,195,cs), (267,130,ls), (255,49,o), (308,-5,o), (395,-5,cs) ); }, { closed = 1; nodes = ( (376,79,o), (360,94,o), (366,130,cs), (376,195,ls), (382,231,o), (402,247,o), (435,247,cs), (467,247,o), (484,231,o), (478,195,cs), (468,130,ls), (462,94,o), (442,79,o), (409,79,cs) ); }, { closed = 1; nodes = ( (263,400,o), (338,451,o), (351,535,cs), (361,600,ls), (374,684,o), (316,735,o), (232,735,cs), (148,735,o), (74,684,o), (61,600,cs), (51,535,ls), (38,451,o), (95,400,o), (179,400,cs) ); }, { closed = 1; nodes = ( (159,483,o), (144,499,o), (150,535,cs), (160,600,ls), (166,636,o), (186,652,o), (219,652,cs), (252,652,o), (268,636,o), (262,600,cs), (252,535,ls), (246,499,o), (225,483,o), (192,483,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (46,0,l), (658,730,l), (582,730,l), (-30,0,l) ); }, { closed = 1; nodes = ( (484,-5,o), (548,46,o), (561,130,cs), (571,195,ls), (584,279,o), (537,330,o), (453,330,cs), (369,330,o), (306,279,o), (293,195,cs), (283,130,ls), (270,46,o), (316,-5,o), (400,-5,cs) ); }, { closed = 1; nodes = ( (367,64,o), (350,85,o), (357,130,cs), (367,195,ls), (374,240,o), (398,262,o), (442,262,cs), (486,262,o), (504,240,o), (497,195,cs), (487,130,ls), (480,85,o), (455,64,o), (411,64,cs) ); }, { closed = 1; nodes = ( (258,400,o), (322,451,o), (335,535,cs), (345,600,ls), (358,684,o), (311,735,o), (227,735,cs), (143,735,o), (80,684,o), (67,600,cs), (57,535,ls), (44,451,o), (90,400,o), (174,400,cs) ); }, { closed = 1; nodes = ( (142,468,o), (124,490,o), (131,535,cs), (141,600,ls), (148,645,o), (174,667,o), (217,667,cs), (260,667,o), (278,645,o), (271,600,cs), (261,535,ls), (254,490,o), (228,468,o), (185,468,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (25,0,l), (652,730,l), (603,730,l), (-24,0,l) ); }, { closed = 1; nodes = ( (473,-5,o), (529,45,o), (542,125,cs), (554,200,ls), (567,280,o), (526,330,o), (448,330,cs), (370,330,o), (315,280,o), (302,200,cs), (290,125,ls), (277,45,o), (317,-5,o), (395,-5,cs) ); }, { closed = 1; nodes = ( (349,37,o), (325,68,o), (334,125,cs), (346,200,ls), (355,257,o), (389,288,o), (442,288,cs), (495,288,o), (519,257,o), (510,200,cs), (498,125,ls), (489,68,o), (455,37,o), (402,37,cs) ); }, { closed = 1; nodes = ( (257,400,o), (313,450,o), (326,530,cs), (338,605,ls), (351,685,o), (310,735,o), (232,735,cs), (155,735,o), (99,685,o), (86,605,cs), (74,530,ls), (61,450,o), (102,400,o), (179,400,cs) ); }, { closed = 1; nodes = ( (134,442,o), (109,473,o), (118,530,cs), (130,605,ls), (139,662,o), (174,693,o), (226,693,cs), (279,693,o), (303,662,o), (294,605,cs), (282,530,ls), (273,473,o), (239,442,o), (186,442,cs) ); } ); width = 600; } ); unicode = 37; }, { glyphname = perthousand; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-6,0,l), (549,730,l), (475,730,l), (-79,0,l) ); }, { closed = 1; nodes = ( (244,61,o), (231,76,o), (236,105,cs), (248,180,ls), (252,208,o), (270,224,o), (298,224,cs), (327,224,o), (341,209,o), (336,180,cs), (324,105,ls), (320,77,o), (301,61,o), (273,61,cs) ); }, { closed = 1; nodes = ( (311,-5,o), (347,31,o), (356,59,c), (357,31,o), (381,-5,o), (445,-5,cs), (507,-5,o), (562,39,o), (573,105,cs), (585,180,ls), (596,246,o), (554,290,o), (492,290,cs), (428,290,o), (391,254,o), (382,226,c), (381,254,o), (358,290,o), (297,290,cs), (231,290,o), (177,246,o), (166,180,cs), (154,105,ls), (143,35,o), (189,-5,o), (250,-5,cs) ); }, { closed = 1; nodes = ( (411,61,o), (398,77,o), (402,105,cs), (414,180,ls), (418,208,o), (436,224,o), (466,224,cs), (493,224,o), (507,208,o), (503,180,cs), (491,105,ls), (487,77,o), (469,61,o), (441,61,cs) ); }, { closed = 1; nodes = ( (234,440,o), (293,486,o), (304,555,cs), (314,620,ls), (325,689,o), (280,735,o), (202,735,cs), (124,735,o), (65,689,o), (54,620,cs), (44,555,ls), (33,486,o), (78,440,o), (156,440,cs) ); }, { closed = 1; nodes = ( (140,510,o), (125,528,o), (129,555,cs), (139,620,ls), (143,648,o), (164,666,o), (191,666,cs), (218,666,o), (233,648,o), (229,620,cs), (219,555,ls), (215,528,o), (194,510,o), (167,510,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (10,0,l), (521,730,l), (459,730,l), (-52,0,l) ); }, { closed = 1; nodes = ( (253,47,o), (239,67,o), (245,105,cs), (259,195,ls), (265,232,o), (286,253,o), (320,253,cs), (355,253,o), (371,233,o), (365,195,cs), (351,105,ls), (345,67,o), (322,47,o), (287,47,cs) ); }, { closed = 1; nodes = ( (333,-5,o), (365,31,o), (372,59,c), (371,31,o), (390,-5,o), (448,-5,cs), (514,-5,o), (562,37,o), (573,105,cs), (587,195,ls), (598,263,o), (563,305,o), (497,305,cs), (439,305,o), (408,269,o), (400,241,c), (402,269,o), (382,305,o), (324,305,cs), (258,305,o), (211,263,o), (200,195,cs), (186,105,ls), (175,37,o), (209,-5,o), (275,-5,cs) ); }, { closed = 1; nodes = ( (417,47,o), (402,67,o), (408,105,cs), (422,195,ls), (428,233,o), (450,253,o), (485,253,cs), (520,253,o), (534,233,o), (528,195,cs), (514,105,ls), (508,67,o), (486,47,o), (452,47,cs) ); }, { closed = 1; nodes = ( (220,440,o), (273,484,o), (284,555,cs), (294,620,ls), (305,691,o), (266,735,o), (192,735,cs), (118,735,o), (65,691,o), (54,620,cs), (44,555,ls), (33,484,o), (72,440,o), (146,440,cs) ); }, { closed = 1; nodes = ( (118,499,o), (102,518,o), (108,555,cs), (118,620,ls), (124,657,o), (146,676,o), (183,676,cs), (220,676,o), (236,657,o), (230,620,cs), (220,555,ls), (214,518,o), (192,499,o), (155,499,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (3,0,l), (536,730,l), (489,730,l), (-44,0,l) ); }, { closed = 1; nodes = ( (252,36,o), (232,65,o), (238,105,cs), (252,195,ls), (258,235,o), (288,264,o), (321,264,cs), (355,264,o), (374,234,o), (368,195,cs), (354,105,ls), (348,66,o), (319,36,o), (285,36,cs) ); }, { closed = 1; nodes = ( (329,-5,o), (360,31,o), (367,59,c), (366,31,o), (384,-5,o), (439,-5,cs), (504,-5,o), (542,35,o), (553,105,cs), (567,195,ls), (578,265,o), (553,305,o), (488,305,cs), (433,305,o), (403,269,o), (395,241,c), (397,269,o), (378,305,o), (323,305,cs), (258,305,o), (221,265,o), (210,195,cs), (196,105,ls), (185,35,o), (209,-5,o), (274,-5,cs) ); }, { closed = 1; nodes = ( (408,36,o), (388,66,o), (394,105,cs), (408,195,ls), (414,234,o), (444,264,o), (478,264,cs), (511,264,o), (531,235,o), (525,195,cs), (511,105,ls), (505,65,o), (475,36,o), (442,36,cs) ); }, { closed = 1; nodes = ( (232,440,o), (283,486,o), (294,555,cs), (304,620,ls), (315,689,o), (278,735,o), (206,735,cs), (134,735,o), (85,689,o), (74,620,cs), (64,555,ls), (53,486,o), (88,440,o), (160,440,cs) ); }, { closed = 1; nodes = ( (118,478,o), (97,509,o), (104,555,cs), (114,620,ls), (121,668,o), (154,697,o), (200,697,cs), (247,697,o), (271,667,o), (264,620,cs), (254,555,ls), (247,509,o), (214,478,o), (166,478,cs) ); } ); width = 600; } ); unicode = 8240; }, { glyphname = plussuperior; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (344,305,l), (361,410,l), (461,410,l), (472,480,l), (372,480,l), (389,585,l), (309,585,l), (292,480,l), (192,480,l), (181,410,l), (281,410,l), (264,305,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (344,305,l), (361,410,l), (461,410,l), (472,480,l), (372,480,l), (389,585,l), (309,585,l), (292,480,l), (192,480,l), (181,410,l), (281,410,l), (264,305,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (324,305,l), (343,426,l), (463,426,l), (469,464,l), (348,464,l), (369,585,l), (329,585,l), (309,464,l), (189,464,l), (183,426,l), (303,426,l), (284,305,l) ); } ); width = 600; } ); unicode = 8314; }, { glyphname = precedes; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (490,55,l), (498,218,o), (375,324,o), (177,330,c), (176,328,l), (376,332,o), (533,441,o), (576,600,c), (531,600,l), (489,454,o), (315,360,o), (88,360,c), (79,300,l), (306,300,o), (449,204,o), (445,55,c) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (515,155,l), (205,308,ls), (182,320,o), (157,329,o), (145,332,c), (156,335,o), (180,344,o), (205,356,cs), (515,508,l), (515,595,l), (85,380,l), (85,280,l), (515,65,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (498,55,l), (506,220,o), (385,322,o), (190,328,c), (190,326,l), (387,330,o), (541,442,o), (584,600,c), (494,600,l), (456,466,o), (294,380,o), (84,380,c), (68,280,l), (278,280,o), (412,192,o), (408,55,c) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (530,186,l), (254,307,ls), (227,319,o), (194,326,o), (177,329,c), (194,332,o), (227,340,o), (254,352,cs), (530,473,l), (530,609,l), (70,400,l), (70,257,l), (530,49,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (495,55,l), (506,229,o), (381,324,o), (149,330,c), (148,328,l), (382,332,o), (539,436,o), (581,600,c), (451,600,l), (415,479,o), (275,410,o), (66,410,c), (41,250,l), (252,250,o), (369,179,o), (365,55,c) ); } ); width = 600; } ); unicode = 8826; }, { glyphname = precedesorequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (481,0,l), (488,45,l), (38,45,l), (31,0,l) ); }, { pos = (20,125); ref = precedes; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (486,0,l), (499,80,l), (39,80,l), (26,0,l) ); }, { pos = (20,125); ref = precedes; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (499,0,l), (521,140,l), (36,140,l), (14,0,l) ); }, { pos = (32,125); ref = precedes; } ); width = 600; } ); unicode = 8828; }, { glyphname = proportion; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (515,314,o), (562,353,o), (571,409,cs), (580,469,o), (546,510,o), (487,510,cs), (428,510,o), (380,469,o), (371,409,cs), (362,353,o), (397,314,o), (456,314,cs) ); }, { closed = 1; nodes = ( (163,-10,o), (211,29,o), (219,85,cs), (229,145,o), (194,186,o), (135,186,cs), (76,186,o), (29,145,o), (19,85,cs), (11,29,o), (45,-10,o), (104,-10,cs) ); }, { closed = 1; nodes = ( (463,-10,o), (511,29,o), (519,85,cs), (529,145,o), (494,186,o), (435,186,cs), (376,186,o), (329,145,o), (319,85,cs), (311,29,o), (345,-10,o), (404,-10,cs) ); }, { closed = 1; nodes = ( (215,314,o), (262,353,o), (271,409,cs), (280,469,o), (246,510,o), (187,510,cs), (128,510,o), (80,469,o), (71,409,cs), (62,353,o), (97,314,o), (156,314,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (521,348,o), (560,381,o), (568,429,cs), (576,477,o), (547,510,o), (499,510,cs), (451,510,o), (412,477,o), (404,429,cs), (396,381,o), (425,348,o), (473,348,cs) ); }, { closed = 1; nodes = ( (139,-10,o), (179,23,o), (186,71,cs), (194,119,o), (165,152,o), (117,152,cs), (69,152,o), (30,119,o), (22,71,cs), (15,23,o), (43,-10,o), (91,-10,cs) ); }, { closed = 1; nodes = ( (464,-10,o), (504,23,o), (511,71,cs), (519,119,o), (490,152,o), (442,152,cs), (394,152,o), (355,119,o), (347,71,cs), (340,23,o), (368,-10,o), (416,-10,cs) ); }, { closed = 1; nodes = ( (196,348,o), (235,381,o), (243,429,cs), (251,477,o), (222,510,o), (174,510,cs), (126,510,o), (87,477,o), (79,429,cs), (71,381,o), (100,348,o), (148,348,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (522,370,o), (554,398,o), (561,440,cs), (567,482,o), (544,510,o), (502,510,cs), (459,510,o), (426,482,o), (420,440,cs), (413,398,o), (438,370,o), (480,370,cs) ); }, { closed = 1; nodes = ( (132,-10,o), (165,18,o), (172,60,cs), (178,102,o), (155,130,o), (113,130,cs), (70,130,o), (37,102,o), (31,60,cs), (24,18,o), (47,-10,o), (90,-10,cs) ); }, { closed = 1; nodes = ( (461,-10,o), (494,18,o), (501,60,cs), (507,102,o), (484,130,o), (442,130,cs), (399,130,o), (366,102,o), (360,60,cs), (353,18,o), (376,-10,o), (419,-10,cs) ); }, { closed = 1; nodes = ( (193,370,o), (225,398,o), (232,440,cs), (238,482,o), (215,510,o), (173,510,cs), (131,510,o), (97,482,o), (91,440,cs), (84,398,o), (109,370,o), (151,370,cs) ); } ); width = 600; } ); unicode = 8759; }, { glyphname = questionedequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (342,533,l), (350,580,l), (380,580,ls), (434,580,o), (479,618,o), (487,670,cs), (495,722,o), (462,760,o), (408,760,cs), (280,760,l), (275,725,l), (403,725,ls), (435,725,o), (454,702,o), (449,670,cs), (444,638,o), (417,615,o), (385,615,cs), (317,615,l), (304,533,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,159,l), (76,159,l), (69,114,l) ); }, { closed = 1; nodes = ( (510,309,l), (517,354,l), (107,354,l), (100,309,l) ); }, { closed = 1; nodes = ( (326,423,o), (341,436,o), (344,456,cs), (347,476,o), (336,489,o), (316,489,cs), (295,489,o), (279,476,o), (276,456,cs), (273,436,o), (285,423,o), (306,423,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (352,545,l), (358,580,l), (377,580,ls), (445,580,o), (495,620,o), (505,683,cs), (516,749,o), (478,791,o), (410,791,cs), (275,791,l), (267,736,l), (401,736,ls), (433,736,o), (450,715,o), (445,683,cs), (440,651,o), (416,630,o), (384,630,cs), (311,630,l), (297,545,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (65,152,l), (53,76,l) ); }, { closed = 1; nodes = ( (517,292,l), (529,368,l), (99,368,l), (87,292,l) ); }, { closed = 1; nodes = ( (330,430,o), (347,444,o), (351,466,cs), (354,488,o), (342,502,o), (318,502,cs), (294,502,o), (276,488,o), (273,466,cs), (269,444,o), (282,430,o), (306,430,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (358,545,l), (364,580,l), (377,580,ls), (453,580,o), (509,623,o), (520,695,cs), (531,766,o), (490,815,o), (414,815,cs), (269,815,l), (256,735,l), (392,735,ls), (419,735,o), (434,717,o), (429,690,cs), (425,663,o), (405,645,o), (378,645,cs), (304,645,l), (288,545,l) ); }, { closed = 1; nodes = ( (476,0,l), (498,140,l), (58,140,l), (36,0,l) ); }, { closed = 1; nodes = ( (516,250,l), (538,390,l), (98,390,l), (76,250,l) ); }, { closed = 1; nodes = ( (336,433,o), (357,449,o), (361,475,cs), (365,499,o), (349,515,o), (320,515,cs), (290,515,o), (267,499,o), (263,475,cs), (259,449,o), (277,433,o), (307,433,cs) ); } ); width = 600; } ); unicode = 8799; }, { glyphname = ratio; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (344,416,o), (373,445,o), (373,488,cs), (373,531,o), (344,560,o), (300,560,cs), (256,560,o), (227,531,o), (227,488,cs), (227,445,o), (256,416,o), (300,416,cs) ); }, { closed = 1; nodes = ( (344,-10,o), (373,19,o), (373,62,cs), (373,105,o), (344,134,o), (300,134,cs), (256,134,o), (227,105,o), (227,62,cs), (227,19,o), (256,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,410,o), (383,440,o), (383,485,cs), (383,530,o), (350,560,o), (300,560,cs), (250,560,o), (217,530,o), (217,485,cs), (217,440,o), (250,410,o), (300,410,cs) ); }, { closed = 1; nodes = ( (350,-10,o), (383,20,o), (383,65,cs), (383,110,o), (350,140,o), (300,140,cs), (250,140,o), (217,110,o), (217,65,cs), (217,20,o), (250,-10,o), (300,-10,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (360,380,o), (400,416,o), (400,470,cs), (400,524,o), (360,560,o), (300,560,cs), (240,560,o), (200,524,o), (200,470,cs), (200,416,o), (240,380,o), (300,380,cs) ); }, { closed = 1; nodes = ( (360,-10,o), (400,26,o), (400,80,cs), (400,134,o), (360,170,o), (300,170,cs), (240,170,o), (200,134,o), (200,80,cs), (200,26,o), (240,-10,o), (300,-10,cs) ); } ); width = 600; } ); unicode = 8758; }, { glyphname = reflexsubset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (531,0,l), (553,140,l), (18,140,l), (-4,0,l) ); }, { alignment = -1; pos = (13,80); ref = subset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (526,0,l), (539,82,l), (19,82,l), (6,0,l) ); }, { alignment = -1; pos = (13,80); ref = subset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (511,0,l), (518,45,l), (33,45,l), (26,0,l) ); }, { alignment = -1; pos = (13,80); ref = subset; } ); width = 600; } ); unicode = 8838; }, { glyphname = reflexsuperset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,0,l), (538,140,l), (3,140,l), (-19,0,l) ); }, { alignment = -1; pos = (13,80); ref = superset; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (506,0,l), (519,82,l), (-1,82,l), (-14,0,l) ); }, { alignment = -1; pos = (13,80); ref = superset; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (486,0,l), (493,45,l), (8,45,l), (1,0,l) ); }, { alignment = -1; pos = (13,80); ref = superset; } ); width = 600; } ); unicode = 8839; }, { glyphname = rightTwoHeadedArrowWithTail; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l), (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l), (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l), (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; } ); unicode = 10518; }, { glyphname = rightcurlybracketlowerhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftcurlybracketlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftcurlybracketlowerhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftcurlybracketlowerhook; scale = (-1,1); } ); width = 600; } ); unicode = 9133; }, { glyphname = rightcurlybracketmiddlepiece; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftcurlybracketmiddlepiece; scale = (-1,1); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (345,-300,l), (345,1020,l), (255,1020,l), (255,-300,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftcurlybracketmiddlepiece; scale = (-1,1); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (225,1020,l), (225,-300,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftcurlybracketmiddlepiece; scale = (-1,1); } ); width = 600; } ); unicode = 9132; }, { glyphname = rightcurlybracketupperhook; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftcurlybracketupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftcurlybracketupperhook; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftcurlybracketupperhook; scale = (-1,1); } ); width = 600; } ); unicode = 9131; }, { glyphname = rightsquarebracketextension; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = leftsquarebracketextension; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = leftsquarebracketextension; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = leftsquarebracketextension; } ); width = 600; } ); unicode = 9125; }, { glyphname = rightsquarebracketlowercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftsquarebracketlowercorner; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftsquarebracketlowercorner; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftsquarebracketlowercorner; scale = (-1,1); } ); width = 600; } ); unicode = 9126; }, { glyphname = rightsquarebracketuppercorner; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = leftsquarebracketuppercorner; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = leftsquarebracketuppercorner; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = leftsquarebracketuppercorner; scale = (-1,1); } ); width = 600; } ); unicode = 9124; }, { glyphname = righttack; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,278,l), (600,323,l), (0,323,l), (0,278,l) ); }, { closed = 1; nodes = ( (50,0,l), (50,600,l), (0,600,l), (0,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,265,l), (600,345,l), (0,345,l), (0,265,l) ); }, { closed = 1; nodes = ( (90,0,l), (90,600,l), (0,600,l), (0,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,235,l), (600,375,l), (0,375,l), (0,235,l) ); }, { closed = 1; nodes = ( (150,0,l), (150,600,l), (0,600,l), (0,0,l) ); } ); width = 600; } ); unicode = 8866; }, { glyphname = ringequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (510,309,l), (517,354,l), (107,354,l), (100,309,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,159,l), (76,159,l), (69,114,l) ); }, { pos = (581,-115); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (517,292,l), (529,368,l), (99,368,l), (87,292,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (65,152,l), (53,76,l) ); }, { pos = (582,-115); ref = ringcomb; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (516,250,l), (538,390,l), (98,390,l), (76,250,l) ); }, { closed = 1; nodes = ( (476,0,l), (498,140,l), (58,140,l), (36,0,l) ); }, { pos = (582,-115); ref = ringcomb; } ); width = 600; } ); unicode = 8791; }, { glyphname = ringoperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (370,210,o), (420,260,o), (420,330,cs), (420,400,o), (370,450,o), (300,450,cs), (230,450,o), (180,400,o), (180,330,cs), (180,260,o), (230,210,o), (300,210,cs) ); }, { closed = 1; nodes = ( (253,250,o), (220,283,o), (220,330,cs), (220,377,o), (253,410,o), (300,410,cs), (347,410,o), (380,377,o), (380,330,cs), (380,283,o), (347,250,o), (300,250,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (370,210,o), (420,260,o), (420,330,cs), (420,400,o), (370,450,o), (300,450,cs), (230,450,o), (180,400,o), (180,330,cs), (180,260,o), (230,210,o), (300,210,cs) ); }, { closed = 1; nodes = ( (253,250,o), (220,283,o), (220,330,cs), (220,377,o), (253,410,o), (300,410,cs), (347,410,o), (380,377,o), (380,330,cs), (380,283,o), (347,250,o), (300,250,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (370,210,o), (420,260,o), (420,330,cs), (420,400,o), (370,450,o), (300,450,cs), (230,450,o), (180,400,o), (180,330,cs), (180,260,o), (230,210,o), (300,210,cs) ); }, { closed = 1; nodes = ( (253,250,o), (220,283,o), (220,330,cs), (220,377,o), (253,410,o), (300,410,cs), (347,410,o), (380,377,o), (380,330,cs), (380,283,o), (347,250,o), (300,250,cs) ); } ); width = 600; } ); unicode = 8728; }, { glyphname = similar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = asciitilde; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = asciitilde; } ); width = 600; } ); unicode = 8764; }, { glyphname = squarecap; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (70,0,l), (70,555,l), (530,555,l), (530,0,l), (580,0,l), (580,600,l), (20,600,l), (20,0,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (120,0,l), (120,455,l), (480,455,l), (480,0,l), (530,0,l), (530,500,l), (70,500,l), (70,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (150,0,l), (150,453,l), (450,453,l), (450,0,l), (540,0,l), (540,535,l), (60,535,l), (60,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (195,0,l), (195,410,l), (405,410,l), (405,0,l), (555,0,l), (555,550,l), (45,550,l), (45,0,l) ); } ); width = 600; } ); unicode = 8851; }, { glyphname = squarecup; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,500); ref = squarecap; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,535); ref = squarecap; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,550); ref = squarecap; scale = (1,-1); } ); width = 600; } ); unicode = 8852; }, { glyphname = squareimageoforequalto; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (555,210,l), (555,255,l), (105,255,l), (105,625,l), (555,625,l), (555,670,l), (55,670,l), (55,210,l) ); }, { closed = 1; nodes = ( (555,0,l), (555,45,l), (55,45,l), (55,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (570,200,l), (570,282,l), (125,282,l), (125,598,l), (570,598,l), (570,680,l), (35,680,l), (35,200,l) ); }, { closed = 1; nodes = ( (570,0,l), (570,82,l), (35,82,l), (35,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (575,185,l), (575,325,l), (175,325,l), (175,555,l), (575,555,l), (575,695,l), (25,695,l), (25,185,l) ); }, { closed = 1; nodes = ( (575,0,l), (575,140,l), (25,140,l), (25,0,l) ); } ); width = 600; } ); unicode = 8849; }, { glyphname = staroperator; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,285,l), (373,218,l), (343,317,l), (420,371,l), (329,371,l), (300,464,l), (271,371,l), (180,371,l), (257,317,l), (227,218,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,285,l), (373,218,l), (343,317,l), (420,371,l), (329,371,l), (300,464,l), (271,371,l), (180,371,l), (257,317,l), (227,218,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,285,l), (373,218,l), (343,317,l), (420,371,l), (329,371,l), (300,464,l), (271,371,l), (180,371,l), (257,317,l), (227,218,l) ); } ); width = 600; } ); unicode = 8902; }, { glyphname = subset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (548,105,l), (570,245,l), (274,245,ls), (209,245,o), (176,281,o), (185,340,cs), (191,380,ls), (201,439,o), (246,475,o), (310,475,cs), (606,475,l), (628,615,l), (328,615,ls), (178,615,o), (64,522,o), (42,382,cs), (35,338,ls), (12,198,o), (98,105,o), (248,105,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (545,120,l), (558,202,l), (253,202,ls), (164,202,o), (121,252,o), (135,340,cs), (141,380,ls), (155,468,o), (214,518,o), (303,518,cs), (608,518,l), (621,600,l), (316,600,ls), (178,600,o), (72,513,o), (52,382,cs), (45,338,ls), (24,207,o), (102,120,o), (240,120,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (532,130,l), (539,175,l), (249,175,ls), (148,175,o), (98,232,o), (113,330,cs), (123,390,ls), (138,488,o), (206,545,o), (307,545,cs), (597,545,l), (604,590,l), (314,590,ls), (184,590,o), (93,515,o), (73,392,cs), (63,328,ls), (43,205,o), (112,130,o), (242,130,cs) ); } ); width = 600; } ); unicode = 8834; }, { glyphname = suchthat; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (296,60,ls), (448,60,o), (554,146,o), (577,288,cs), (599,432,ls), (622,573,o), (542,660,o), (391,660,cs), (86,660,l), (65,530,l), (370,530,ls), (432,530,o), (464,492,o), (454,430,cs), (453,420,l), (48,420,l), (28,299,l), (433,299,l), (432,290,ls), (422,228,o), (378,190,o), (316,190,cs), (11,190,l), (-9,60,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (307,70,ls), (432,70,o), (552,164,o), (572,288,cs), (594,432,ls), (614,556,o), (524,650,o), (399,650,cs), (94,650,l), (81,570,l), (386,570,ls), (465,570,o), (516,504,o), (504,430,cs), (499,400,l), (54,400,l), (42,320,l), (487,320,l), (482,290,ls), (470,216,o), (399,150,o), (320,150,cs), (15,150,l), (2,70,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,85,ls), (434,85,o), (526,160,o), (546,283,cs), (570,437,ls), (590,560,o), (522,635,o), (392,635,cs), (102,635,l), (94,590,l), (384,590,ls), (485,590,o), (535,533,o), (520,435,cs), (512,382,l), (62,382,l), (55,338,l), (505,338,l), (496,285,ls), (481,187,o), (413,130,o), (312,130,cs), (22,130,l), (14,85,l) ); } ); width = 600; } ); unicode = 8715; }, { glyphname = summationdoubleStruck; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (540,-180,l), (540,-134,l), (208,-134,l), (458,270,l), (208,684,l), (540,684,l), (540,730,l), (55,730,l), (55,680,l), (305,274,l), (55,-130,l), (55,-180,l) ); }, { closed = 1; nodes = ( (350,274,l), (98,684,l), (163,684,l), (416,274,l), (163,-134,l), (98,-134,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (540,-180,l), (540,-134,l), (208,-134,l), (458,270,l), (208,684,l), (540,684,l), (540,730,l), (55,730,l), (55,680,l), (305,274,l), (55,-130,l), (55,-180,l) ); }, { closed = 1; nodes = ( (350,274,l), (98,684,l), (163,684,l), (416,274,l), (163,-134,l), (98,-134,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (540,-180,l), (540,-134,l), (208,-134,l), (458,270,l), (208,684,l), (540,684,l), (540,730,l), (55,730,l), (55,680,l), (305,274,l), (55,-130,l), (55,-180,l) ); }, { closed = 1; nodes = ( (350,274,l), (98,684,l), (163,684,l), (416,274,l), (163,-134,l), (98,-134,l) ); } ); width = 600; } ); unicode = 8512; }, { glyphname = superset; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (298,105,ls), (448,105,o), (562,198,o), (585,338,cs), (592,382,ls), (614,522,o), (528,615,o), (378,615,cs), (78,615,l), (56,475,l), (352,475,ls), (416,475,o), (451,439,o), (441,380,cs), (435,340,ls), (426,281,o), (381,245,o), (316,245,cs), (20,245,l), (-2,105,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (310,120,ls), (448,120,o), (554,207,o), (575,338,cs), (582,382,ls), (602,513,o), (524,600,o), (386,600,cs), (81,600,l), (68,518,l), (373,518,ls), (462,518,o), (505,468,o), (491,380,cs), (485,340,ls), (471,252,o), (412,202,o), (323,202,cs), (18,202,l), (5,120,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (312,130,ls), (442,130,o), (533,205,o), (553,328,cs), (563,392,ls), (583,515,o), (514,590,o), (384,590,cs), (94,590,l), (87,545,l), (377,545,ls), (478,545,o), (528,488,o), (513,390,cs), (503,330,ls), (488,232,o), (420,175,o), (319,175,cs), (29,175,l), (22,130,l) ); } ); width = 600; } ); unicode = 8835; }, { glyphname = tackdown; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (325,0,l), (325,600,l), (275,600,l), (275,0,l) ); }, { closed = 1; nodes = ( (600,555,l), (600,600,l), (0,600,l), (0,555,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,600,l), (255,600,l), (255,0,l) ); }, { closed = 1; nodes = ( (600,520,l), (600,600,l), (0,600,l), (0,520,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,0,l), (375,600,l), (225,600,l), (225,0,l) ); }, { closed = 1; nodes = ( (600,460,l), (600,600,l), (0,600,l), (0,460,l) ); } ); width = 600; } ); unicode = 8868; }, { glyphname = tripletilde; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (554,490,l), (561,535,l), (121,535,l), (114,490,l) ); }, { closed = 1; nodes = ( (496,125,l), (503,170,l), (63,170,l), (56,125,l) ); }, { closed = 1; nodes = ( (525,309,l), (532,354,l), (92,354,l), (85,309,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-30,-190); ref = _similiar_tilda; }, { alignment = -1; pos = (30,190); ref = _similiar_tilda; }, { alignment = -1; ref = _similiar_tilda; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (552,480,l), (563,550,l), (123,550,l), (112,480,l) ); }, { closed = 1; nodes = ( (493,110,l), (505,180,l), (65,180,l), (53,110,l) ); }, { closed = 1; nodes = ( (523,295,l), (534,365,l), (94,365,l), (83,295,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-34,-215); ref = _similiar_tilda; }, { alignment = -1; pos = (34,215); ref = _similiar_tilda; }, { alignment = -1; ref = _similiar_tilda; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (550,470,l), (566,570,l), (126,570,l), (110,470,l) ); }, { closed = 1; nodes = ( (490,90,l), (506,190,l), (66,190,l), (50,90,l) ); }, { closed = 1; nodes = ( (520,280,l), (536,380,l), (96,380,l), (80,280,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-41,-260); ref = _similiar_tilda; }, { alignment = -1; pos = (42,260); ref = _similiar_tilda; }, { alignment = -1; ref = _similiar_tilda; } ); width = 600; } ); unicode = 8779; }, { glyphname = universal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (352,0,l), (647,730,l), (491,730,l), (426,555,l), (256,555,l), (247,730,l), (97,730,l), (162,0,l) ); }, { closed = 1; nodes = ( (264,435,l), (382,435,l), (320,268,ls), (305,229,o), (287,172,o), (277,140,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (316,0,l), (622,730,l), (527,730,l), (445,528,l), (228,528,l), (210,730,l), (122,730,l), (195,0,l) ); }, { closed = 1; nodes = ( (235,452,l), (414,452,l), (326,234,ls), (298,165,o), (276,100,o), (265,70,c) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (287,0,l), (604,730,l), (552,730,l), (458,510,l), (214,510,l), (190,730,l), (140,730,l), (225,0,l) ); }, { closed = 1; nodes = ( (219,465,l), (439,465,l), (317,180,ls), (292,122,o), (272,68,o), (264,41,c) ); } ); width = 600; } ); unicode = 8704; }, { glyphname = uprightdiagonalellipsis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (587,527,o), (610,550,o), (610,585,cs), (610,620,o), (587,643,o), (552,643,cs), (516,643,o), (493,620,o), (493,585,cs), (493,550,o), (516,527,o), (552,527,cs) ); }, { closed = 1; nodes = ( (336,276,o), (359,299,o), (359,334,cs), (359,369,o), (336,392,o), (301,392,cs), (265,392,o), (242,369,o), (242,334,cs), (242,299,o), (265,276,o), (301,276,cs) ); }, { closed = 1; nodes = ( (84,25,o), (107,48,o), (107,83,cs), (107,118,o), (84,141,o), (49,141,cs), (13,141,o), (-10,118,o), (-10,83,cs), (-10,48,o), (13,25,o), (49,25,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (582,503,o), (610,531,o), (610,573,cs), (610,615,o), (582,643,o), (540,643,cs), (497,643,o), (469,615,o), (469,573,cs), (469,531,o), (497,503,o), (540,503,cs) ); }, { closed = 1; nodes = ( (343,264,o), (371,292,o), (371,334,cs), (371,376,o), (343,404,o), (301,404,cs), (258,404,o), (230,376,o), (230,334,cs), (230,292,o), (258,264,o), (301,264,cs) ); }, { closed = 1; nodes = ( (103,25,o), (131,53,o), (131,95,cs), (131,137,o), (103,165,o), (61,165,cs), (18,165,o), (-10,137,o), (-10,95,cs), (-10,53,o), (18,25,o), (61,25,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (576,479,o), (610,512,o), (610,560,cs), (610,608,o), (576,641,o), (528,641,cs), (480,641,o), (446,608,o), (446,560,cs), (446,512,o), (480,479,o), (528,479,cs) ); }, { closed = 1; nodes = ( (348,253,o), (382,286,o), (382,334,cs), (382,382,o), (348,415,o), (300,415,cs), (252,415,o), (218,382,o), (218,334,cs), (218,286,o), (252,253,o), (300,253,cs) ); }, { closed = 1; nodes = ( (120,27,o), (154,60,o), (154,108,cs), (154,156,o), (120,189,o), (72,189,cs), (24,189,o), (-10,156,o), (-10,108,cs), (-10,60,o), (24,27,o), (72,27,cs) ); } ); width = 600; } ); unicode = 8944; }, { glyphname = uptack; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,600); ref = tackdown; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,600); ref = tackdown; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,600); ref = tackdown; scale = (1,-1); } ); width = 600; } ); unicode = 8869; }, { glyphname = asteriskoperator.circled; layers = ( { background = { shapes = ( { pos = (0,-11); ref = asterisk; } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { closed = 1; nodes = ( (239,196,ls), (277,251,o), (286,276,o), (294,299,c), (305,299,l), (314,274,o), (324,248,o), (360,196,cs), (408,128,l), (452,159,l), (404,227,ls), (368,279,o), (347,296,o), (327,312,c), (332,326,l), (358,328,o), (383,331,o), (437,351,cs), (522,382,l), (504,432,l), (418,402,ls), (365,383,o), (342,367,o), (323,353,c), (314,360,l), (321,384,o), (327,410,o), (327,469,cs), (327,555,l), (273,555,l), (273,469,ls), (273,410,o), (279,384,o), (286,360,c), (277,354,l), (257,368,o), (235,383,o), (180,403,cs), (97,433,l), (78,383,l), (162,352,ls), (216,332,o), (244,329,o), (267,328,c), (272,313,l), (251,296,o), (231,278,o), (195,227,cs), (147,159,l), (192,128,l) ); } ); width = 600; }, { background = { shapes = ( { pos = (0,-10); ref = asterisk; } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { closed = 1; nodes = ( (235,162,ls), (260,199,o), (283,254,o), (296,290,c), (303,290,l), (315,254,o), (338,198,o), (363,162,cs), (399,110,l), (471,160,l), (435,212,ls), (410,248,o), (366,288,o), (336,312,c), (340,320,l), (378,323,o), (435,330,o), (476,345,cs), (538,367,l), (508,450,l), (446,428,ls), (404,413,o), (354,380,o), (323,357,c), (318,361,l), (329,398,o), (344,459,o), (344,505,cs), (344,565,l), (256,565,l), (256,505,ls), (256,459,o), (271,398,o), (281,361,c), (276,357,l), (245,380,o), (195,413,o), (153,428,cs), (92,450,l), (62,367,l), (123,345,ls), (164,330,o), (222,323,o), (260,320,c), (263,313,l), (234,289,o), (189,249,o), (163,212,cs), (128,161,l), (200,111,l) ); } ); width = 600; }, { background = { shapes = ( { pos = (0,-7); ref = asterisk; } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { closed = 1; nodes = ( (229,120,ls), (262,167,o), (286,250,o), (297,292,c), (303,292,l), (314,250,o), (338,167,o), (371,120,cs), (390,93,l), (497,167,l), (478,195,ls), (446,243,o), (378,291,o), (342,315,c), (344,319,l), (389,319,o), (469,322,o), (521,341,cs), (554,353,l), (509,475,l), (476,463,ls), (424,444,o), (360,394,o), (326,365,c), (322,368,l), (337,409,o), (365,490,o), (365,548,cs), (365,575,l), (235,575,l), (235,548,ls), (235,490,o), (263,409,o), (278,368,c), (273,364,l), (239,393,o), (175,445,o), (123,463,cs), (91,474,l), (47,352,l), (78,341,ls), (130,322,o), (211,319,o), (256,319,c), (258,315,l), (222,290,o), (155,241,o), (122,194,cs), (103,166,l), (210,92,l) ); } ); width = 600; } ); unicode = 8859; }, { glyphname = minus.circled; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (585,308,l), (585,353,l), (15,353,l), (15,308,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (48,0); ref = minus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (585,290,l), (585,370,l), (15,370,l), (15,290,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (47,0); ref = minus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (521,260,l), (521,400,l), (86,400,l), (86,260,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (47,0); ref = minus; } ); width = 600; } ); unicode = 8854; }, { glyphname = multiply.circled; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,0); ref = multiply; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,0); ref = multiply; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,5); ref = multiply; } ); width = 600; } ); unicode = 8855; }, { glyphname = operator.circled; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,0,o), (610,133,o), (610,310,cs), (610,487,o), (477,620,o), (300,620,cs), (123,620,o), (-10,487,o), (-10,310,cs), (-10,133,o), (123,0,o), (300,0,cs) ); }, { closed = 1; nodes = ( (152,50,o), (40,162,o), (40,310,cs), (40,458,o), (152,570,o), (300,570,cs), (448,570,o), (560,458,o), (560,310,cs), (560,162,o), (448,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (268,254,o), (244,278,o), (244,310,cs), (244,342,o), (268,366,o), (300,366,cs), (332,366,o), (356,342,o), (356,310,cs), (356,278,o), (332,254,o), (300,254,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,0,o), (610,133,o), (610,310,cs), (610,487,o), (477,620,o), (300,620,cs), (123,620,o), (-10,487,o), (-10,310,cs), (-10,133,o), (123,0,o), (300,0,cs) ); }, { closed = 1; nodes = ( (152,50,o), (40,162,o), (40,310,cs), (40,458,o), (152,570,o), (300,570,cs), (448,570,o), (560,458,o), (560,310,cs), (560,162,o), (448,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (268,254,o), (244,278,o), (244,310,cs), (244,342,o), (268,366,o), (300,366,cs), (332,366,o), (356,342,o), (356,310,cs), (356,278,o), (332,254,o), (300,254,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,0,o), (610,133,o), (610,310,cs), (610,487,o), (477,620,o), (300,620,cs), (123,620,o), (-10,487,o), (-10,310,cs), (-10,133,o), (123,0,o), (300,0,cs) ); }, { closed = 1; nodes = ( (152,50,o), (40,162,o), (40,310,cs), (40,458,o), (152,570,o), (300,570,cs), (448,570,o), (560,458,o), (560,310,cs), (560,162,o), (448,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (268,254,o), (244,278,o), (244,310,cs), (244,342,o), (268,366,o), (300,366,cs), (332,366,o), (356,342,o), (356,310,cs), (356,278,o), (332,254,o), (300,254,cs) ); } ); width = 600; } ); unicode = 8857; }, { glyphname = plus.circled; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (325,50,l), (325,310,l), (575,310,l), (575,355,l), (325,355,l), (325,615,l), (275,615,l), (275,355,l), (25,355,l), (25,310,l), (275,310,l), (275,50,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (45,-3); ref = plus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (344,45,l), (344,290,l), (585,290,l), (585,370,l), (344,370,l), (344,615,l), (256,615,l), (256,370,l), (15,370,l), (15,290,l), (256,290,l), (256,45,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (44,0); ref = plus; } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (375,50,l), (375,260,l), (585,260,l), (585,400,l), (375,400,l), (375,610,l), (225,610,l), (225,400,l), (25,400,l), (25,260,l), (225,260,l), (225,50,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,20,o), (610,153,o), (610,330,cs), (610,507,o), (477,640,o), (300,640,cs), (123,640,o), (-10,507,o), (-10,330,cs), (-10,153,o), (123,20,o), (300,20,cs) ); }, { closed = 1; nodes = ( (152,70,o), (40,182,o), (40,330,cs), (40,478,o), (152,590,o), (300,590,cs), (448,590,o), (560,478,o), (560,330,cs), (560,182,o), (448,70,o), (300,70,cs) ); }, { pos = (44,0); ref = plus; } ); width = 600; } ); unicode = 8853; }, { glyphname = upArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,520,ls), (345,549,o), (342,583,o), (340,600,c), (350,600,l), (356,592,o), (375,572,o), (404,547,cs), (590,389,l), (590,494,l), (301,740,l), (10,493,l), (10,388,l), (195,546,ls), (224,571,o), (244,591,o), (250,600,c), (260,600,l), (258,583,o), (255,549,o), (255,520,cs), (255,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,520,ls), (345,549,o), (342,583,o), (340,600,c), (350,600,l), (356,592,o), (375,572,o), (404,547,cs), (590,389,l), (590,494,l), (301,740,l), (10,493,l), (10,388,l), (195,546,ls), (224,571,o), (244,591,o), (250,600,c), (260,600,l), (258,583,o), (255,549,o), (255,520,cs), (255,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,520,ls), (345,549,o), (342,583,o), (340,600,c), (350,600,l), (356,592,o), (375,572,o), (404,547,cs), (590,389,l), (590,494,l), (301,740,l), (10,493,l), (10,388,l), (195,546,ls), (224,571,o), (244,591,o), (250,600,c), (260,600,l), (258,583,o), (255,549,o), (255,520,cs), (255,0,l) ); } ); width = 600; } ); unicode = 8593; }, { glyphname = northEastArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (424,434,ls), (443,453,o), (464,478,o), (474,492,c), (481,490,l), (478,472,o), (475,437,o), (475,404,cs), (475,205,l), (555,205,l), (555,620,l), (140,620,l), (140,542,l), (335,542,ls), (368,542,o), (400,545,o), (415,547,c), (416,540,l), (404,531,o), (381,512,o), (363,494,cs), (10,138,l), (69,76,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (424,434,ls), (443,453,o), (464,478,o), (474,492,c), (481,490,l), (478,472,o), (475,437,o), (475,404,cs), (475,205,l), (555,205,l), (555,620,l), (140,620,l), (140,542,l), (335,542,ls), (368,542,o), (400,545,o), (415,547,c), (416,540,l), (404,531,o), (381,512,o), (363,494,cs), (10,138,l), (69,76,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (424,434,ls), (443,453,o), (464,478,o), (474,492,c), (481,490,l), (478,472,o), (475,437,o), (475,404,cs), (475,205,l), (555,205,l), (555,620,l), (140,620,l), (140,542,l), (335,542,ls), (368,542,o), (400,545,o), (415,547,c), (416,540,l), (404,531,o), (381,512,o), (363,494,cs), (10,138,l), (69,76,l) ); } ); width = 600; } ); unicode = 8599; }, { glyphname = rightArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (339,35,l), (570,330,l), (338,625,l), (233,625,l), (395,421,ls), (412,401,o), (431,382,o), (440,374,c), (440,365,l), (423,367,o), (392,370,o), (370,370,cs), (40,370,l), (40,290,l), (370,290,ls), (392,290,o), (423,292,o), (440,294,c), (440,285,l), (428,276,o), (408,257,o), (395,240,cs), (233,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (339,35,l), (570,330,l), (338,625,l), (233,625,l), (395,421,ls), (412,401,o), (431,382,o), (440,374,c), (440,365,l), (423,367,o), (392,370,o), (370,370,cs), (40,370,l), (40,290,l), (370,290,ls), (392,290,o), (423,292,o), (440,294,c), (440,285,l), (428,276,o), (408,257,o), (395,240,cs), (233,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (339,35,l), (570,330,l), (338,625,l), (233,625,l), (395,421,ls), (412,401,o), (431,382,o), (440,374,c), (440,365,l), (423,367,o), (392,370,o), (370,370,cs), (40,370,l), (40,290,l), (370,290,ls), (392,290,o), (423,292,o), (440,294,c), (440,285,l), (428,276,o), (408,257,o), (395,240,cs), (233,35,l) ); } ); width = 600; } ); unicode = 8594; }, { glyphname = southEastArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (555,75,l), (555,490,l), (475,490,l), (475,291,ls), (475,258,o), (480,223,o), (483,206,c), (476,204,l), (466,218,o), (445,243,o), (426,262,cs), (71,620,l), (10,557,l), (363,201,ls), (381,183,o), (404,164,o), (416,155,c), (415,148,l), (400,150,o), (368,153,o), (335,153,cs), (140,153,l), (140,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (555,75,l), (555,490,l), (475,490,l), (475,291,ls), (475,258,o), (480,223,o), (483,206,c), (476,204,l), (466,218,o), (445,243,o), (426,262,cs), (71,620,l), (10,557,l), (363,201,ls), (381,183,o), (404,164,o), (416,155,c), (415,148,l), (400,150,o), (368,153,o), (335,153,cs), (140,153,l), (140,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (555,75,l), (555,490,l), (475,490,l), (475,291,ls), (475,258,o), (480,223,o), (483,206,c), (476,204,l), (466,218,o), (445,243,o), (426,262,cs), (71,620,l), (10,557,l), (363,201,ls), (381,183,o), (404,164,o), (416,155,c), (415,148,l), (400,150,o), (368,153,o), (335,153,cs), (140,153,l), (140,75,l) ); } ); width = 600; } ); unicode = 8600; }, { glyphname = downArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (405,184,ls), (376,159,o), (356,139,o), (350,130,c), (340,130,l), (342,147,o), (345,181,o), (345,210,cs), (345,730,l), (255,730,l), (255,210,ls), (255,181,o), (258,147,o), (260,130,c), (250,130,l), (244,138,o), (225,158,o), (196,183,cs), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (405,184,ls), (376,159,o), (356,139,o), (350,130,c), (340,130,l), (342,147,o), (345,181,o), (345,210,cs), (345,730,l), (255,730,l), (255,210,ls), (255,181,o), (258,147,o), (260,130,c), (250,130,l), (244,138,o), (225,158,o), (196,183,cs), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (405,184,ls), (376,159,o), (356,139,o), (350,130,c), (340,130,l), (342,147,o), (345,181,o), (345,210,cs), (345,730,l), (255,730,l), (255,210,ls), (255,181,o), (258,147,o), (260,130,c), (250,130,l), (244,138,o), (225,158,o), (196,183,cs), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; } ); unicode = 8595; }, { glyphname = southWestArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (460,75,l), (460,153,l), (265,153,ls), (232,153,o), (200,150,o), (185,148,c), (184,155,l), (196,164,o), (219,183,o), (237,201,cs), (590,557,l), (530,618,l), (175,260,ls), (156,241,o), (135,216,o), (125,202,c), (118,204,l), (121,222,o), (125,258,o), (125,291,cs), (125,490,l), (45,490,l), (45,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (460,75,l), (460,153,l), (265,153,ls), (232,153,o), (200,150,o), (185,148,c), (184,155,l), (196,164,o), (219,183,o), (237,201,cs), (590,557,l), (530,618,l), (175,260,ls), (156,241,o), (135,216,o), (125,202,c), (118,204,l), (121,222,o), (125,258,o), (125,291,cs), (125,490,l), (45,490,l), (45,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (460,75,l), (460,153,l), (265,153,ls), (232,153,o), (200,150,o), (185,148,c), (184,155,l), (196,164,o), (219,183,o), (237,201,cs), (590,557,l), (530,618,l), (175,260,ls), (156,241,o), (135,216,o), (125,202,c), (118,204,l), (121,222,o), (125,258,o), (125,291,cs), (125,490,l), (45,490,l), (45,75,l) ); } ); width = 600; } ); unicode = 8601; }, { glyphname = leftArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (377,35,l), (215,239,ls), (198,259,o), (179,278,o), (170,286,c), (170,295,l), (187,293,o), (218,290,o), (240,290,cs), (570,290,l), (570,370,l), (240,370,ls), (218,370,o), (187,368,o), (170,366,c), (170,375,l), (182,384,o), (202,403,o), (215,420,cs), (377,625,l), (271,625,l), (40,330,l), (272,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (377,35,l), (215,239,ls), (198,259,o), (179,278,o), (170,286,c), (170,295,l), (187,293,o), (218,290,o), (240,290,cs), (570,290,l), (570,370,l), (240,370,ls), (218,370,o), (187,368,o), (170,366,c), (170,375,l), (182,384,o), (202,403,o), (215,420,cs), (377,625,l), (271,625,l), (40,330,l), (272,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (377,35,l), (215,239,ls), (198,259,o), (179,278,o), (170,286,c), (170,295,l), (187,293,o), (218,290,o), (240,290,cs), (570,290,l), (570,370,l), (240,370,ls), (218,370,o), (187,368,o), (170,366,c), (170,375,l), (182,384,o), (202,403,o), (215,420,cs), (377,625,l), (271,625,l), (40,330,l), (272,35,l) ); } ); width = 600; } ); unicode = 8592; }, { glyphname = northWestArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,138,l), (237,494,ls), (219,512,o), (196,531,o), (184,540,c), (185,547,l), (200,545,o), (232,542,o), (265,542,cs), (460,542,l), (460,620,l), (45,620,l), (45,205,l), (125,205,l), (125,404,ls), (125,437,o), (120,472,o), (117,489,c), (124,491,l), (134,477,o), (155,452,o), (174,433,cs), (529,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,138,l), (237,494,ls), (219,512,o), (196,531,o), (184,540,c), (185,547,l), (200,545,o), (232,542,o), (265,542,cs), (460,542,l), (460,620,l), (45,620,l), (45,205,l), (125,205,l), (125,404,ls), (125,437,o), (120,472,o), (117,489,c), (124,491,l), (134,477,o), (155,452,o), (174,433,cs), (529,75,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,138,l), (237,494,ls), (219,512,o), (196,531,o), (184,540,c), (185,547,l), (200,545,o), (232,542,o), (265,542,cs), (460,542,l), (460,620,l), (45,620,l), (45,205,l), (125,205,l), (125,404,ls), (125,437,o), (120,472,o), (117,489,c), (124,491,l), (134,477,o), (155,452,o), (174,433,cs), (529,75,l) ); } ); width = 600; } ); unicode = 8598; }, { glyphname = leftRightArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (257,35,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,257,o), (505,240,cs), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,403,o), (95,420,cs), (257,625,l), (151,625,l), (-80,330,l), (152,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,35,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,257,o), (505,240,cs), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,403,o), (95,420,cs), (257,625,l), (151,625,l), (-80,330,l), (152,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (257,35,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,257,o), (505,240,cs), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,403,o), (95,420,cs), (257,625,l), (151,625,l), (-80,330,l), (152,35,l) ); } ); width = 600; } ); unicode = 8596; }, { glyphname = upDownArrow; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,77,l), (590,182,l), (405,24,ls), (376,-1,o), (356,-21,o), (350,-30,c), (340,-30,l), (342,-13,o), (345,21,o), (345,50,cs), (345,680,ls), (345,709,o), (342,743,o), (340,760,c), (350,760,l), (356,752,o), (375,732,o), (404,707,cs), (590,549,l), (590,654,l), (300,900,l), (10,653,l), (10,548,l), (195,706,ls), (224,731,o), (244,751,o), (250,760,c), (260,760,l), (258,743,o), (255,709,o), (255,680,cs), (255,50,ls), (255,21,o), (258,-13,o), (260,-30,c), (250,-30,l), (244,-22,o), (225,-2,o), (196,23,cs), (10,181,l), (10,76,l), (300,-170,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,77,l), (590,182,l), (405,24,ls), (376,-1,o), (356,-21,o), (350,-30,c), (340,-30,l), (342,-13,o), (345,21,o), (345,50,cs), (345,680,ls), (345,709,o), (342,743,o), (340,760,c), (350,760,l), (356,752,o), (375,732,o), (404,707,cs), (590,549,l), (590,654,l), (300,900,l), (10,653,l), (10,548,l), (195,706,ls), (224,731,o), (244,751,o), (250,760,c), (260,760,l), (258,743,o), (255,709,o), (255,680,cs), (255,50,ls), (255,21,o), (258,-13,o), (260,-30,c), (250,-30,l), (244,-22,o), (225,-2,o), (196,23,cs), (10,181,l), (10,76,l), (300,-170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,77,l), (590,182,l), (405,24,ls), (376,-1,o), (356,-21,o), (350,-30,c), (340,-30,l), (342,-13,o), (345,21,o), (345,50,cs), (345,680,ls), (345,709,o), (342,743,o), (340,760,c), (350,760,l), (356,752,o), (375,732,o), (404,707,cs), (590,549,l), (590,654,l), (300,900,l), (10,653,l), (10,548,l), (195,706,ls), (224,731,o), (244,751,o), (250,760,c), (260,760,l), (258,743,o), (255,709,o), (255,680,cs), (255,50,ls), (255,21,o), (258,-13,o), (260,-30,c), (250,-30,l), (244,-22,o), (225,-2,o), (196,23,cs), (10,181,l), (10,76,l), (300,-170,l) ); } ); width = 600; } ); unicode = 8597; }, { glyphname = leftRightWaveArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (205,150,o), (230,275,o), (300,275,cs), (370,275,o), (395,150,o), (505,150,cs), (615,150,o), (600,235,o), (670,235,c), (675,235,l), (675,315,l), (670,315,l), (560,315,o), (575,230,o), (505,230,cs), (435,230,o), (410,355,o), (300,355,cs), (190,355,o), (165,230,o), (95,230,cs), (25,230,o), (40,315,o), (-70,315,c), (-75,315,l), (-75,235,l), (-70,235,l), (0,235,o), (-15,150,o), (95,150,cs) ); }, { closed = 1; nodes = ( (-21,75,l), (-108,185,ls), (-121,202,o), (-141,221,o), (-153,230,c), (-153,239,l), (-136,237,o), (-105,235,o), (-83,235,cs), (-75,235,l), (-75,315,l), (-83,315,ls), (-105,315,o), (-136,312,o), (-153,310,c), (-153,319,l), (-144,327,o), (-125,344,o), (-108,366,cs), (-21,475,l), (-127,475,l), (-283,275,l), (-127,75,l) ); }, { closed = 1; nodes = ( (727,75,l), (883,275,l), (727,475,l), (621,475,l), (708,366,ls), (725,344,o), (744,327,o), (753,319,c), (753,310,l), (736,312,o), (705,315,o), (683,315,cs), (675,315,l), (675,235,l), (683,235,ls), (705,235,o), (736,237,o), (753,239,c), (753,230,l), (741,221,o), (721,202,o), (708,185,cs), (621,75,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (182,75,l), (95,185,ls), (76,209,o), (52,229,o), (15,248,c), (15,210,l), (149,211,ls), (240,212,o), (245,320,o), (300,320,cs), (355,320,o), (360,212,o), (451,211,cs), (586,210,l), (586,248,l), (548,229,o), (524,209,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (548,312,o), (565,297,o), (586,278,c), (586,290,l), (455,290,ls), (405,290,o), (380,405,o), (300,405,cs), (220,405,o), (195,290,o), (145,290,cs), (15,290,l), (15,278,l), (36,297,o), (52,312,o), (95,366,cs), (182,475,l), (76,475,l), (-80,275,l), (76,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (182,75,l), (95,185,ls), (76,209,o), (52,229,o), (15,248,c), (15,210,l), (149,211,ls), (240,212,o), (245,320,o), (300,320,cs), (355,320,o), (360,212,o), (451,211,cs), (586,210,l), (586,248,l), (548,229,o), (524,209,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (548,312,o), (565,297,o), (586,278,c), (586,290,l), (455,290,ls), (405,290,o), (380,405,o), (300,405,cs), (220,405,o), (195,290,o), (145,290,cs), (15,290,l), (15,278,l), (36,297,o), (52,312,o), (95,366,cs), (182,475,l), (76,475,l), (-80,275,l), (76,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (182,75,l), (95,185,ls), (76,209,o), (52,229,o), (15,248,c), (15,210,l), (149,211,ls), (240,212,o), (245,320,o), (300,320,cs), (355,320,o), (360,212,o), (451,211,cs), (586,210,l), (586,248,l), (548,229,o), (524,209,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (548,312,o), (565,297,o), (586,278,c), (586,290,l), (455,290,ls), (405,290,o), (380,405,o), (300,405,cs), (220,405,o), (195,290,o), (145,290,cs), (15,290,l), (15,278,l), (36,297,o), (52,312,o), (95,366,cs), (182,475,l), (76,475,l), (-80,275,l), (76,75,l) ); } ); width = 600; } ); unicode = 8621; }, { glyphname = leftTwoheadedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightTwoheadedArrow; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightTwoheadedArrow; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightTwoheadedArrow; scale = (-1,1); } ); width = 600; } ); unicode = 8606; }, { glyphname = rightTwoheadedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (-80,315,l), (-80,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (-80,315,l), (-80,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (331,75,l), (456,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (456,315,l), (331,475,l), (225,475,l), (312,366,ls), (329,344,o), (348,327,o), (357,319,c), (357,310,l), (340,312,o), (309,315,o), (287,315,cs), (-80,315,l), (-80,235,l), (287,235,ls), (309,235,o), (340,237,o), (357,239,c), (357,230,l), (345,221,o), (325,202,o), (312,185,cs), (225,75,l) ); } ); width = 600; } ); unicode = 8608; }, { glyphname = rightTailArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (26,75,l), (151,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (151,315,l), (26,475,l), (-80,475,l), (79,275,l), (-80,75,l) ); } ); width = 600; } ); unicode = 8611; }, { glyphname = upFrombarArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (500,0,l), (500,82,l), (345,82,l), (345,350,ls), (345,379,o), (342,413,o), (340,430,c), (350,430,l), (356,422,o), (375,401,o), (404,377,cs), (500,296,l), (500,401,l), (301,570,l), (100,401,l), (100,296,l), (195,376,ls), (224,400,o), (244,421,o), (250,430,c), (260,430,l), (258,413,o), (255,379,o), (255,350,cs), (255,82,l), (100,82,l), (100,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (500,0,l), (500,82,l), (345,82,l), (345,350,ls), (345,379,o), (342,413,o), (340,430,c), (350,430,l), (356,422,o), (375,401,o), (404,377,cs), (500,296,l), (500,401,l), (301,570,l), (100,401,l), (100,296,l), (195,376,ls), (224,400,o), (244,421,o), (250,430,c), (260,430,l), (258,413,o), (255,379,o), (255,350,cs), (255,82,l), (100,82,l), (100,0,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (500,0,l), (500,82,l), (345,82,l), (345,350,ls), (345,379,o), (342,413,o), (340,430,c), (350,430,l), (356,422,o), (375,401,o), (404,377,cs), (500,296,l), (500,401,l), (301,570,l), (100,401,l), (100,296,l), (195,376,ls), (224,400,o), (244,421,o), (250,430,c), (260,430,l), (258,413,o), (255,379,o), (255,350,cs), (255,82,l), (100,82,l), (100,0,l) ); } ); width = 600; } ); unicode = 8613; }, { glyphname = rightFrombarArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (2,75,l), (2,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (2,315,l), (2,475,l), (-80,475,l), (-80,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (2,75,l), (2,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (2,315,l), (2,475,l), (-80,475,l), (-80,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (2,75,l), (2,235,l), (480,235,ls), (502,235,o), (533,237,o), (550,239,c), (550,230,l), (538,221,o), (518,202,o), (505,185,cs), (418,75,l), (524,75,l), (680,275,l), (524,475,l), (418,475,l), (505,366,ls), (522,344,o), (541,327,o), (550,319,c), (550,310,l), (533,312,o), (502,315,o), (480,315,cs), (2,315,l), (2,475,l), (-80,475,l), (-80,75,l) ); } ); width = 600; } ); unicode = 8614; }, { glyphname = downFrombarArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,550); ref = upFrombarArrow; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,550); ref = upFrombarArrow; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,550); ref = upFrombarArrow; scale = (1,-1); } ); width = 600; } ); unicode = 8615; }, { glyphname = rightDoublePairedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (556,-39,l), (680,120,l), (556,279,l), (680,435,l), (556,594,l), (452,594,l), (505,526,ls), (522,504,o), (541,487,o), (550,479,c), (550,470,l), (533,472,o), (502,475,o), (480,475,cs), (-80,475,l), (-80,395,l), (480,395,ls), (502,395,o), (533,397,o), (550,399,c), (550,390,l), (538,381,o), (518,361,o), (505,345,cs), (452,279,l), (505,211,ls), (521,190,o), (541,172,o), (550,164,c), (550,155,l), (533,157,o), (502,160,o), (480,160,cs), (-80,160,l), (-80,80,l), (480,80,ls), (502,80,o), (533,82,o), (550,84,c), (550,75,l), (538,66,o), (517,46,o), (505,30,cs), (452,-39,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (556,-39,l), (680,120,l), (556,279,l), (680,435,l), (556,594,l), (452,594,l), (505,526,ls), (522,504,o), (541,487,o), (550,479,c), (550,470,l), (533,472,o), (502,475,o), (480,475,cs), (-80,475,l), (-80,395,l), (480,395,ls), (502,395,o), (533,397,o), (550,399,c), (550,390,l), (538,381,o), (518,361,o), (505,345,cs), (452,279,l), (505,211,ls), (521,190,o), (541,172,o), (550,164,c), (550,155,l), (533,157,o), (502,160,o), (480,160,cs), (-80,160,l), (-80,80,l), (480,80,ls), (502,80,o), (533,82,o), (550,84,c), (550,75,l), (538,66,o), (517,46,o), (505,30,cs), (452,-39,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (556,-39,l), (680,120,l), (556,279,l), (680,435,l), (556,594,l), (452,594,l), (505,526,ls), (522,504,o), (541,487,o), (550,479,c), (550,470,l), (533,472,o), (502,475,o), (480,475,cs), (-80,475,l), (-80,395,l), (480,395,ls), (502,395,o), (533,397,o), (550,399,c), (550,390,l), (538,381,o), (518,361,o), (505,345,cs), (452,279,l), (505,211,ls), (521,190,o), (541,172,o), (550,164,c), (550,155,l), (533,157,o), (502,160,o), (480,160,cs), (-80,160,l), (-80,80,l), (480,80,ls), (502,80,o), (533,82,o), (550,84,c), (550,75,l), (538,66,o), (517,46,o), (505,30,cs), (452,-39,l) ); } ); width = 600; } ); unicode = 8649; }, { glyphname = upDoubleArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (415,-180,l), (415,725,l), (610,536,l), (610,601,l), (365,839,l), (365,-180,l) ); }, { closed = 1; nodes = ( (235,-180,l), (235,839,l), (-10,601,l), (-10,536,l), (185,725,l), (185,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (415,-180,l), (415,725,l), (610,536,l), (610,601,l), (365,839,l), (365,-180,l) ); }, { closed = 1; nodes = ( (235,-180,l), (235,839,l), (-10,601,l), (-10,536,l), (185,725,l), (185,-180,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (415,-180,l), (415,725,l), (610,536,l), (610,601,l), (365,839,l), (365,-180,l) ); }, { closed = 1; nodes = ( (235,-180,l), (235,839,l), (-10,601,l), (-10,536,l), (185,725,l), (185,-180,l) ); } ); width = 600; } ); unicode = 8657; }, { glyphname = rightDoubleArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (575,330,l), (343,35,l) ); }, { closed = 1; nodes = ( (535,170,l), (535,250,l), (0,250,l), (0,170,l) ); }, { closed = 1; nodes = ( (535,410,l), (535,490,l), (0,490,l), (0,410,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (-80,490,l), (-80,410,l), (512,410,l), (575,330,l), (512,250,l), (-80,250,l), (-80,170,l), (449,170,l), (343,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (-80,490,l), (-80,410,l), (512,410,l), (575,330,l), (512,250,l), (-80,250,l), (-80,170,l), (449,170,l), (343,35,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (-80,490,l), (-80,410,l), (512,410,l), (575,330,l), (512,250,l), (-80,250,l), (-80,170,l), (449,170,l), (343,35,l) ); } ); width = 600; } ); unicode = 8658; }, { glyphname = downDoubleArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); width = 600; }, { background = { shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,649); ref = upDoubleArrow; scale = (1,-1); } ); width = 600; } ); unicode = 8659; }, { glyphname = leftRightDoubleArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (449,35,l), (680,330,l), (448,625,l), (343,625,l), (575,330,l), (343,35,l) ); }, { closed = 1; nodes = ( (257,35,l), (25,330,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (535,170,l), (535,250,l), (70,250,l), (70,170,l) ); }, { closed = 1; nodes = ( (535,410,l), (535,490,l), (70,490,l), (70,410,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (257,35,l), (151,170,l), (449,170,l), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (151,490,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (25,330,l), (88,410,l), (512,410,l), (575,330,l), (512,250,l), (88,250,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (257,35,l), (151,170,l), (449,170,l), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (151,490,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (25,330,l), (88,410,l), (512,410,l), (575,330,l), (512,250,l), (88,250,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (257,35,l), (151,170,l), (449,170,l), (343,35,l), (449,35,l), (680,330,l), (448,625,l), (343,625,l), (449,490,l), (151,490,l), (257,625,l), (152,625,l), (-80,330,l), (151,35,l) ); }, { closed = 1; nodes = ( (25,330,l), (88,410,l), (512,410,l), (575,330,l), (512,250,l), (88,250,l) ); } ); width = 600; } ); unicode = 8660; }, { glyphname = upWhiteArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,755,l), (15,434,l), (143,434,l), (143,31,ls), (143,14,o), (157,0,o), (174,0,cs), (424,0,ls), (441,0,o), (455,14,o), (455,31,cs), (455,434,l), (585,434,l) ); }, { closed = 1; nodes = ( (410,468,l), (410,40,l), (188,40,l), (188,468,l), (104,468,l), (300,695,l), (496,468,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,755,l), (15,429,l), (143,429,l), (143,31,ls), (143,14,o), (157,0,o), (174,0,cs), (424,0,ls), (441,0,o), (455,14,o), (455,31,cs), (455,429,l), (585,429,l) ); }, { closed = 1; nodes = ( (400,473,l), (400,50,l), (198,50,l), (198,473,l), (124,473,l), (300,680,l), (476,473,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,755,l), (15,424,l), (143,424,l), (143,31,ls), (143,14,o), (157,0,o), (174,0,cs), (424,-1,ls), (441,-1,o), (455,14,o), (455,31,cs), (455,424,l), (585,424,l) ); }, { closed = 1; nodes = ( (384,485,l), (384,64,l), (213,65,l), (213,485,l), (160,485,l), (300,653,l), (440,485,l) ); } ); width = 600; } ); unicode = 8679; }, { glyphname = rightWhiteArrow; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (0,130,l), (311,130,l), (311,0,l), (361,0,l), (591,257,l), (591,303,l), (361,560,l), (311,560,l), (311,430,l), (0,430,l) ); }, { closed = 1; nodes = ( (361,385,l), (361,486,l), (545,282,l), (361,76,l), (361,175,l), (45,175,l), (45,385,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (660,275,l), (339,560,l), (339,432,l), (1,432,ls), (-16,432,o), (-30,418,o), (-30,401,cs), (-30,151,ls), (-30,134,o), (-16,120,o), (1,120,cs), (339,120,l), (339,-10,l) ); }, { closed = 1; nodes = ( (379,160,l), (15,160,l), (15,392,l), (379,392,l), (379,471,l), (600,275,l), (379,79,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (660,275,l), (334,560,l), (334,432,l), (1,432,ls), (-16,432,o), (-30,418,o), (-30,401,cs), (-30,151,ls), (-30,134,o), (-16,120,o), (1,120,cs), (334,120,l), (334,-10,l) ); }, { closed = 1; nodes = ( (384,170,l), (25,170,l), (25,382,l), (384,382,l), (384,449,l), (585,275,l), (384,101,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (389,-4,l), (600,233,l), (600,331,l), (389,567,l), (289,567,l), (289,432,l), (0,432,l), (0,132,l), (289,132,l), (289,-4,l) ); }, { closed = 1; nodes = ( (389,232,l), (110,232,l), (110,332,l), (389,332,l), (389,386,l), (483,284,l), (389,177,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (660,275,l), (329,560,l), (329,432,l), (1,432,ls), (-16,432,o), (-30,418,o), (-30,401,cs), (-30,151,ls), (-30,134,o), (-16,120,o), (1,120,cs), (329,120,l), (329,-10,l) ); }, { closed = 1; nodes = ( (394,186,l), (40,186,l), (40,366,l), (394,366,l), (394,415,l), (558,275,l), (394,135,l) ); } ); width = 600; } ); unicode = 8680; }, { glyphname = downArrowHead; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (305,92,l), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (305,92,l), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,237,l), (590,342,l), (305,92,l), (10,341,l), (10,236,l), (299,-10,l) ); } ); width = 600; } ); unicode = 8964; }, { glyphname = rightHeavyRoundTippedArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (20,291,o), (51,260,o), (90,260,cs), (295,260,ls), (327,260,o), (340,261,o), (370,276,c), (263,139,ls), (251,124,o), (247,108,o), (247,92,cs), (247,72,o), (255,53,o), (272,40,cs), (286,30,o), (301,25,o), (317,25,cs), (337,25,o), (357,34,o), (371,51,cs), (590,330,l), (371,608,ls), (357,626,o), (337,635,o), (316,635,cs), (301,635,o), (286,630,o), (273,620,cs), (255,606,o), (246,586,o), (246,565,cs), (246,550,o), (251,535,o), (261,522,cs), (370,385,l), (339,400,o), (327,400,o), (295,400,cs), (90,400,ls), (51,400,o), (20,369,o), (20,330,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (20,291,o), (51,260,o), (90,260,cs), (295,260,ls), (327,260,o), (340,261,o), (370,276,c), (263,139,ls), (251,124,o), (247,108,o), (247,92,cs), (247,72,o), (255,53,o), (272,40,cs), (286,30,o), (301,25,o), (317,25,cs), (337,25,o), (357,34,o), (371,51,cs), (590,330,l), (371,608,ls), (357,626,o), (337,635,o), (316,635,cs), (301,635,o), (286,630,o), (273,620,cs), (255,606,o), (246,586,o), (246,565,cs), (246,550,o), (251,535,o), (261,522,cs), (370,385,l), (339,400,o), (327,400,o), (295,400,cs), (90,400,ls), (51,400,o), (20,369,o), (20,330,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (20,291,o), (51,260,o), (90,260,cs), (295,260,ls), (327,260,o), (340,261,o), (370,276,c), (263,139,ls), (251,124,o), (247,108,o), (247,92,cs), (247,72,o), (255,53,o), (272,40,cs), (286,30,o), (301,25,o), (317,25,cs), (337,25,o), (357,34,o), (371,51,cs), (590,330,l), (371,608,ls), (357,626,o), (337,635,o), (316,635,cs), (301,635,o), (286,630,o), (273,620,cs), (255,606,o), (246,586,o), (246,565,cs), (246,550,o), (251,535,o), (261,522,cs), (370,385,l), (339,400,o), (327,400,o), (295,400,cs), (90,400,ls), (51,400,o), (20,369,o), (20,330,cs) ); } ); width = 600; } ); unicode = 10140; }, { glyphname = leftLongArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (272,75,l), (135,239,ls), (118,259,o), (99,278,o), (90,286,c), (90,295,l), (107,293,o), (138,290,o), (160,290,cs), (640,290,l), (640,370,l), (160,370,ls), (138,370,o), (107,368,o), (90,366,c), (90,375,l), (102,384,o), (122,404,o), (135,420,cs), (269,585,l), (166,585,l), (-40,330,l), (167,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (272,75,l), (135,239,ls), (118,259,o), (99,278,o), (90,286,c), (90,295,l), (107,293,o), (138,290,o), (160,290,cs), (640,290,l), (640,370,l), (160,370,ls), (138,370,o), (107,368,o), (90,366,c), (90,375,l), (102,384,o), (122,404,o), (135,420,cs), (269,585,l), (166,585,l), (-40,330,l), (167,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (272,75,l), (135,239,ls), (118,259,o), (99,278,o), (90,286,c), (90,295,l), (107,293,o), (138,290,o), (160,290,cs), (640,290,l), (640,370,l), (160,370,ls), (138,370,o), (107,368,o), (90,366,c), (90,375,l), (102,384,o), (122,404,o), (135,420,cs), (269,585,l), (166,585,l), (-40,330,l), (167,75,l) ); } ); width = 600; } ); unicode = 10229; }, { glyphname = rightlongArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (434,75,l), (640,330,l), (433,585,l), (328,585,l), (465,421,ls), (482,401,o), (501,382,o), (510,374,c), (510,365,l), (493,367,o), (462,370,o), (440,370,cs), (-40,370,l), (-40,290,l), (440,290,ls), (462,290,o), (493,292,o), (510,294,c), (510,285,l), (498,276,o), (478,256,o), (465,240,cs), (331,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (434,75,l), (640,330,l), (433,585,l), (328,585,l), (465,421,ls), (482,401,o), (501,382,o), (510,374,c), (510,365,l), (493,367,o), (462,370,o), (440,370,cs), (-40,370,l), (-40,290,l), (440,290,ls), (462,290,o), (493,292,o), (510,294,c), (510,285,l), (498,276,o), (478,256,o), (465,240,cs), (331,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (434,75,l), (640,330,l), (433,585,l), (328,585,l), (465,421,ls), (482,401,o), (501,382,o), (510,374,c), (510,365,l), (493,367,o), (462,370,o), (440,370,cs), (-40,370,l), (-40,290,l), (440,290,ls), (462,290,o), (493,292,o), (510,294,c), (510,285,l), (498,276,o), (478,256,o), (465,240,cs), (331,75,l) ); } ); width = 600; } ); unicode = 10230; }, { glyphname = leftRightLongArrow; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,75,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,256,o), (505,240,cs), (371,75,l), (474,75,l), (680,330,l), (473,585,l), (368,585,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,404,o), (95,420,cs), (229,585,l), (126,585,l), (-80,330,l), (127,75,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (232,75,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,256,o), (505,240,cs), (371,75,l), (474,75,l), (680,330,l), (473,585,l), (368,585,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,404,o), (95,420,cs), (229,585,l), (126,585,l), (-80,330,l), (127,75,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (232,75,l), (95,239,ls), (78,259,o), (59,278,o), (50,286,c), (50,295,l), (67,293,o), (98,290,o), (120,290,cs), (480,290,ls), (502,290,o), (533,292,o), (550,294,c), (550,285,l), (538,276,o), (518,256,o), (505,240,cs), (371,75,l), (474,75,l), (680,330,l), (473,585,l), (368,585,l), (505,421,ls), (522,401,o), (541,382,o), (550,374,c), (550,365,l), (533,367,o), (502,370,o), (480,370,cs), (120,370,ls), (98,370,o), (67,368,o), (50,366,c), (50,375,l), (62,384,o), (82,404,o), (95,420,cs), (229,585,l), (126,585,l), (-80,330,l), (127,75,l) ); } ); width = 600; } ); unicode = 10231; }, { glyphname = lowerOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,-135,l), (0,-135,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,-135,l), (0,-135,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,-135,l), (0,-135,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9601; }, { glyphname = lowerOneQuarterBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,30,l), (0,30,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,30,l), (0,30,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,30,l), (0,30,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9602; }, { glyphname = lowerThreeEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,195,l), (0,195,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,195,l), (0,195,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,195,l), (0,195,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9603; }, { glyphname = lowerHalfBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9604; }, { glyphname = lowerFiveEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,525,l), (0,525,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,525,l), (0,525,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,525,l), (0,525,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9605; }, { glyphname = lowerThreeQuartersBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,690,l), (0,690,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,690,l), (0,690,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,690,l), (0,690,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9606; }, { glyphname = lowerSevenEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,855,l), (0,855,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,855,l), (0,855,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,855,l), (0,855,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9607; }, { glyphname = fullBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9608; }, { glyphname = upperHalfBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; } ); unicode = 9600; }, { glyphname = upperOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,855,l), (600,1020,l), (0,1020,l), (0,855,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,855,l), (600,1020,l), (0,1020,l), (0,855,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,855,l), (600,1020,l), (0,1020,l), (0,855,l) ); } ); width = 600; } ); unicode = 9620; }, { glyphname = leftOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (75,-300,l), (75,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (75,-300,l), (75,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (75,-300,l), (75,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9615; }, { glyphname = leftOneQuarterBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (150,-300,l), (150,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (150,-300,l), (150,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (150,-300,l), (150,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9614; }, { glyphname = leftThreeEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (200,-300,l), (200,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (200,-300,l), (200,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (200,-300,l), (200,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9613; }, { glyphname = leftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9612; }, { glyphname = leftFiveEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (375,-300,l), (375,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9611; }, { glyphname = leftThreeQuartersBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-300,l), (450,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-300,l), (450,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-300,l), (450,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9610; }, { glyphname = leftSevenEighthsBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (525,-300,l), (525,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (525,-300,l), (525,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (525,-300,l), (525,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9609; }, { glyphname = rightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9616; }, { glyphname = rightOneEighthBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (525,1020,l), (525,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (525,1020,l), (525,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (525,1020,l), (525,-300,l) ); } ); width = 600; } ); unicode = 9621; }, { glyphname = lowerLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9622; }, { glyphname = lowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9623; }, { glyphname = upperLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); } ); width = 600; } ); unicode = 9624; }, { glyphname = upperLeftAndLowerLeftAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9625; }, { glyphname = upperLeftAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); }, { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); }, { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,360,l), (300,1020,l), (0,1020,l), (0,360,l) ); }, { closed = 1; nodes = ( (600,-300,l), (600,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9626; }, { glyphname = upperLeftAndUpperRightAndLowerLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (600,360,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (600,360,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (300,-300,l), (300,360,l), (600,360,l), (600,1020,l), (0,1020,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9627; }, { glyphname = upperLeftAndUpperRightAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (-10,1020,l), (-10,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (-10,1020,l), (-10,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (-10,1020,l), (-10,360,l), (300,360,l), (300,-300,l) ); } ); width = 600; } ); unicode = 9628; }, { glyphname = upperRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); } ); width = 600; } ); unicode = 9629; }, { glyphname = upperRightAndLowerLeftBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (600,1020,l), (300,1020,l), (300,360,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9630; }, { glyphname = upperRightAndLowerLeftAndLowerRightBlock; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (300,1020,l), (300,360,l), (0,360,l), (0,-300,l) ); } ); width = 600; } ); unicode = 9631; }, { glyphname = shadelight; layers = ( { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); } ); width = 600; } ); unicode = 9617; }, { glyphname = shademedium; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (60,-300,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (60,-180,l), (60,-120,l), (0,-120,l), (0,-180,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (180,-300,l), (180,-240,l), (120,-240,l), (120,-300,l) ); }, { closed = 1; nodes = ( (60,-60,l), (60,0,l), (0,0,l), (0,-60,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (180,-180,l), (180,-120,l), (120,-120,l), (120,-180,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,-240,l), (240,-240,l), (240,-300,l) ); }, { closed = 1; nodes = ( (60,60,l), (60,120,l), (0,120,l), (0,60,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (180,-60,l), (180,0,l), (120,0,l), (120,-60,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (300,-180,l), (300,-120,l), (240,-120,l), (240,-180,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (420,-300,l), (420,-240,l), (360,-240,l), (360,-300,l) ); }, { closed = 1; nodes = ( (60,180,l), (60,240,l), (0,240,l), (0,180,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (180,60,l), (180,120,l), (120,120,l), (120,60,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (300,-60,l), (300,0,l), (240,0,l), (240,-60,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (420,-180,l), (420,-120,l), (360,-120,l), (360,-180,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); }, { closed = 1; nodes = ( (540,-300,l), (540,-240,l), (480,-240,l), (480,-300,l) ); }, { closed = 1; nodes = ( (60,300,l), (60,360,l), (0,360,l), (0,300,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (180,180,l), (180,240,l), (120,240,l), (120,180,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (300,60,l), (300,120,l), (240,120,l), (240,60,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (420,-60,l), (420,0,l), (360,0,l), (360,-60,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (540,-180,l), (540,-120,l), (480,-120,l), (480,-180,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (60,420,l), (60,480,l), (0,480,l), (0,420,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (180,300,l), (180,360,l), (120,360,l), (120,300,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (300,180,l), (300,240,l), (240,240,l), (240,180,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (420,60,l), (420,120,l), (360,120,l), (360,60,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (540,-60,l), (540,0,l), (480,0,l), (480,-60,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (60,540,l), (60,600,l), (0,600,l), (0,540,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (180,420,l), (180,480,l), (120,480,l), (120,420,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (300,300,l), (300,360,l), (240,360,l), (240,300,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (420,180,l), (420,240,l), (360,240,l), (360,180,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (540,60,l), (540,120,l), (480,120,l), (480,60,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (60,660,l), (60,720,l), (0,720,l), (0,660,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (180,540,l), (180,600,l), (120,600,l), (120,540,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (300,420,l), (300,480,l), (240,480,l), (240,420,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (420,300,l), (420,360,l), (360,360,l), (360,300,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (540,180,l), (540,240,l), (480,240,l), (480,180,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (60,780,l), (60,840,l), (0,840,l), (0,780,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (180,660,l), (180,720,l), (120,720,l), (120,660,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (300,540,l), (300,600,l), (240,600,l), (240,540,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (420,420,l), (420,480,l), (360,480,l), (360,420,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (540,300,l), (540,360,l), (480,360,l), (480,300,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (60,900,l), (60,960,l), (0,960,l), (0,900,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (180,780,l), (180,840,l), (120,840,l), (120,780,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (300,660,l), (300,720,l), (240,720,l), (240,660,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (420,540,l), (420,600,l), (360,600,l), (360,540,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (540,420,l), (540,480,l), (480,480,l), (480,420,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (180,900,l), (180,960,l), (120,960,l), (120,900,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (300,780,l), (300,840,l), (240,840,l), (240,780,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (420,660,l), (420,720,l), (360,720,l), (360,660,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (540,540,l), (540,600,l), (480,600,l), (480,540,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (300,900,l), (300,960,l), (240,960,l), (240,900,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (420,780,l), (420,840,l), (360,840,l), (360,780,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (540,660,l), (540,720,l), (480,720,l), (480,660,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (420,900,l), (420,960,l), (360,960,l), (360,900,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (540,780,l), (540,840,l), (480,840,l), (480,780,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (540,900,l), (540,960,l), (480,960,l), (480,900,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (60,-300,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (60,-180,l), (60,-120,l), (0,-120,l), (0,-180,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (180,-300,l), (180,-240,l), (120,-240,l), (120,-300,l) ); }, { closed = 1; nodes = ( (60,-60,l), (60,0,l), (0,0,l), (0,-60,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (180,-180,l), (180,-120,l), (120,-120,l), (120,-180,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,-240,l), (240,-240,l), (240,-300,l) ); }, { closed = 1; nodes = ( (60,60,l), (60,120,l), (0,120,l), (0,60,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (180,-60,l), (180,0,l), (120,0,l), (120,-60,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (300,-180,l), (300,-120,l), (240,-120,l), (240,-180,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (420,-300,l), (420,-240,l), (360,-240,l), (360,-300,l) ); }, { closed = 1; nodes = ( (60,180,l), (60,240,l), (0,240,l), (0,180,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (180,60,l), (180,120,l), (120,120,l), (120,60,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (300,-60,l), (300,0,l), (240,0,l), (240,-60,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (420,-180,l), (420,-120,l), (360,-120,l), (360,-180,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); }, { closed = 1; nodes = ( (540,-300,l), (540,-240,l), (480,-240,l), (480,-300,l) ); }, { closed = 1; nodes = ( (60,300,l), (60,360,l), (0,360,l), (0,300,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (180,180,l), (180,240,l), (120,240,l), (120,180,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (300,60,l), (300,120,l), (240,120,l), (240,60,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (420,-60,l), (420,0,l), (360,0,l), (360,-60,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (540,-180,l), (540,-120,l), (480,-120,l), (480,-180,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (60,420,l), (60,480,l), (0,480,l), (0,420,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (180,300,l), (180,360,l), (120,360,l), (120,300,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (300,180,l), (300,240,l), (240,240,l), (240,180,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (420,60,l), (420,120,l), (360,120,l), (360,60,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (540,-60,l), (540,0,l), (480,0,l), (480,-60,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (60,540,l), (60,600,l), (0,600,l), (0,540,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (180,420,l), (180,480,l), (120,480,l), (120,420,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (300,300,l), (300,360,l), (240,360,l), (240,300,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (420,180,l), (420,240,l), (360,240,l), (360,180,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (540,60,l), (540,120,l), (480,120,l), (480,60,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (60,660,l), (60,720,l), (0,720,l), (0,660,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (180,540,l), (180,600,l), (120,600,l), (120,540,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (300,420,l), (300,480,l), (240,480,l), (240,420,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (420,300,l), (420,360,l), (360,360,l), (360,300,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (540,180,l), (540,240,l), (480,240,l), (480,180,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (60,780,l), (60,840,l), (0,840,l), (0,780,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (180,660,l), (180,720,l), (120,720,l), (120,660,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (300,540,l), (300,600,l), (240,600,l), (240,540,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (420,420,l), (420,480,l), (360,480,l), (360,420,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (540,300,l), (540,360,l), (480,360,l), (480,300,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (60,900,l), (60,960,l), (0,960,l), (0,900,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (180,780,l), (180,840,l), (120,840,l), (120,780,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (300,660,l), (300,720,l), (240,720,l), (240,660,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (420,540,l), (420,600,l), (360,600,l), (360,540,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (540,420,l), (540,480,l), (480,480,l), (480,420,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (180,900,l), (180,960,l), (120,960,l), (120,900,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (300,780,l), (300,840,l), (240,840,l), (240,780,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (420,660,l), (420,720,l), (360,720,l), (360,660,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (540,540,l), (540,600,l), (480,600,l), (480,540,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (300,900,l), (300,960,l), (240,960,l), (240,900,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (420,780,l), (420,840,l), (360,840,l), (360,780,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (540,660,l), (540,720,l), (480,720,l), (480,660,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (420,900,l), (420,960,l), (360,960,l), (360,900,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (540,780,l), (540,840,l), (480,840,l), (480,780,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (540,900,l), (540,960,l), (480,960,l), (480,900,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,960,l), (600,1020,l), (540,1020,l), (540,960,l) ); }, { closed = 1; nodes = ( (60,-300,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (60,-180,l), (60,-120,l), (0,-120,l), (0,-180,l) ); }, { closed = 1; nodes = ( (120,-240,l), (120,-180,l), (60,-180,l), (60,-240,l) ); }, { closed = 1; nodes = ( (180,-300,l), (180,-240,l), (120,-240,l), (120,-300,l) ); }, { closed = 1; nodes = ( (60,-60,l), (60,0,l), (0,0,l), (0,-60,l) ); }, { closed = 1; nodes = ( (120,-120,l), (120,-60,l), (60,-60,l), (60,-120,l) ); }, { closed = 1; nodes = ( (180,-180,l), (180,-120,l), (120,-120,l), (120,-180,l) ); }, { closed = 1; nodes = ( (240,-240,l), (240,-180,l), (180,-180,l), (180,-240,l) ); }, { closed = 1; nodes = ( (300,-300,l), (300,-240,l), (240,-240,l), (240,-300,l) ); }, { closed = 1; nodes = ( (60,60,l), (60,120,l), (0,120,l), (0,60,l) ); }, { closed = 1; nodes = ( (120,0,l), (120,60,l), (60,60,l), (60,0,l) ); }, { closed = 1; nodes = ( (180,-60,l), (180,0,l), (120,0,l), (120,-60,l) ); }, { closed = 1; nodes = ( (240,-120,l), (240,-60,l), (180,-60,l), (180,-120,l) ); }, { closed = 1; nodes = ( (300,-180,l), (300,-120,l), (240,-120,l), (240,-180,l) ); }, { closed = 1; nodes = ( (360,-240,l), (360,-180,l), (300,-180,l), (300,-240,l) ); }, { closed = 1; nodes = ( (420,-300,l), (420,-240,l), (360,-240,l), (360,-300,l) ); }, { closed = 1; nodes = ( (60,180,l), (60,240,l), (0,240,l), (0,180,l) ); }, { closed = 1; nodes = ( (120,120,l), (120,180,l), (60,180,l), (60,120,l) ); }, { closed = 1; nodes = ( (180,60,l), (180,120,l), (120,120,l), (120,60,l) ); }, { closed = 1; nodes = ( (240,0,l), (240,60,l), (180,60,l), (180,0,l) ); }, { closed = 1; nodes = ( (300,-60,l), (300,0,l), (240,0,l), (240,-60,l) ); }, { closed = 1; nodes = ( (360,-120,l), (360,-60,l), (300,-60,l), (300,-120,l) ); }, { closed = 1; nodes = ( (420,-180,l), (420,-120,l), (360,-120,l), (360,-180,l) ); }, { closed = 1; nodes = ( (480,-240,l), (480,-180,l), (420,-180,l), (420,-240,l) ); }, { closed = 1; nodes = ( (540,-300,l), (540,-240,l), (480,-240,l), (480,-300,l) ); }, { closed = 1; nodes = ( (60,300,l), (60,360,l), (0,360,l), (0,300,l) ); }, { closed = 1; nodes = ( (120,240,l), (120,300,l), (60,300,l), (60,240,l) ); }, { closed = 1; nodes = ( (180,180,l), (180,240,l), (120,240,l), (120,180,l) ); }, { closed = 1; nodes = ( (240,120,l), (240,180,l), (180,180,l), (180,120,l) ); }, { closed = 1; nodes = ( (300,60,l), (300,120,l), (240,120,l), (240,60,l) ); }, { closed = 1; nodes = ( (360,0,l), (360,60,l), (300,60,l), (300,0,l) ); }, { closed = 1; nodes = ( (420,-60,l), (420,0,l), (360,0,l), (360,-60,l) ); }, { closed = 1; nodes = ( (480,-120,l), (480,-60,l), (420,-60,l), (420,-120,l) ); }, { closed = 1; nodes = ( (540,-180,l), (540,-120,l), (480,-120,l), (480,-180,l) ); }, { closed = 1; nodes = ( (600,-240,l), (600,-180,l), (540,-180,l), (540,-240,l) ); }, { closed = 1; nodes = ( (60,420,l), (60,480,l), (0,480,l), (0,420,l) ); }, { closed = 1; nodes = ( (120,360,l), (120,420,l), (60,420,l), (60,360,l) ); }, { closed = 1; nodes = ( (180,300,l), (180,360,l), (120,360,l), (120,300,l) ); }, { closed = 1; nodes = ( (240,240,l), (240,300,l), (180,300,l), (180,240,l) ); }, { closed = 1; nodes = ( (300,180,l), (300,240,l), (240,240,l), (240,180,l) ); }, { closed = 1; nodes = ( (360,120,l), (360,180,l), (300,180,l), (300,120,l) ); }, { closed = 1; nodes = ( (420,60,l), (420,120,l), (360,120,l), (360,60,l) ); }, { closed = 1; nodes = ( (480,0,l), (480,60,l), (420,60,l), (420,0,l) ); }, { closed = 1; nodes = ( (540,-60,l), (540,0,l), (480,0,l), (480,-60,l) ); }, { closed = 1; nodes = ( (600,-120,l), (600,-60,l), (540,-60,l), (540,-120,l) ); }, { closed = 1; nodes = ( (60,540,l), (60,600,l), (0,600,l), (0,540,l) ); }, { closed = 1; nodes = ( (120,480,l), (120,540,l), (60,540,l), (60,480,l) ); }, { closed = 1; nodes = ( (180,420,l), (180,480,l), (120,480,l), (120,420,l) ); }, { closed = 1; nodes = ( (240,360,l), (240,420,l), (180,420,l), (180,360,l) ); }, { closed = 1; nodes = ( (300,300,l), (300,360,l), (240,360,l), (240,300,l) ); }, { closed = 1; nodes = ( (360,240,l), (360,300,l), (300,300,l), (300,240,l) ); }, { closed = 1; nodes = ( (420,180,l), (420,240,l), (360,240,l), (360,180,l) ); }, { closed = 1; nodes = ( (480,120,l), (480,180,l), (420,180,l), (420,120,l) ); }, { closed = 1; nodes = ( (540,60,l), (540,120,l), (480,120,l), (480,60,l) ); }, { closed = 1; nodes = ( (600,0,l), (600,60,l), (540,60,l), (540,0,l) ); }, { closed = 1; nodes = ( (60,660,l), (60,720,l), (0,720,l), (0,660,l) ); }, { closed = 1; nodes = ( (120,600,l), (120,660,l), (60,660,l), (60,600,l) ); }, { closed = 1; nodes = ( (180,540,l), (180,600,l), (120,600,l), (120,540,l) ); }, { closed = 1; nodes = ( (240,480,l), (240,540,l), (180,540,l), (180,480,l) ); }, { closed = 1; nodes = ( (300,420,l), (300,480,l), (240,480,l), (240,420,l) ); }, { closed = 1; nodes = ( (360,360,l), (360,420,l), (300,420,l), (300,360,l) ); }, { closed = 1; nodes = ( (420,300,l), (420,360,l), (360,360,l), (360,300,l) ); }, { closed = 1; nodes = ( (480,240,l), (480,300,l), (420,300,l), (420,240,l) ); }, { closed = 1; nodes = ( (540,180,l), (540,240,l), (480,240,l), (480,180,l) ); }, { closed = 1; nodes = ( (600,120,l), (600,180,l), (540,180,l), (540,120,l) ); }, { closed = 1; nodes = ( (60,780,l), (60,840,l), (0,840,l), (0,780,l) ); }, { closed = 1; nodes = ( (120,720,l), (120,780,l), (60,780,l), (60,720,l) ); }, { closed = 1; nodes = ( (180,660,l), (180,720,l), (120,720,l), (120,660,l) ); }, { closed = 1; nodes = ( (240,600,l), (240,660,l), (180,660,l), (180,600,l) ); }, { closed = 1; nodes = ( (300,540,l), (300,600,l), (240,600,l), (240,540,l) ); }, { closed = 1; nodes = ( (360,480,l), (360,540,l), (300,540,l), (300,480,l) ); }, { closed = 1; nodes = ( (420,420,l), (420,480,l), (360,480,l), (360,420,l) ); }, { closed = 1; nodes = ( (480,360,l), (480,420,l), (420,420,l), (420,360,l) ); }, { closed = 1; nodes = ( (540,300,l), (540,360,l), (480,360,l), (480,300,l) ); }, { closed = 1; nodes = ( (600,240,l), (600,300,l), (540,300,l), (540,240,l) ); }, { closed = 1; nodes = ( (60,900,l), (60,960,l), (0,960,l), (0,900,l) ); }, { closed = 1; nodes = ( (120,840,l), (120,900,l), (60,900,l), (60,840,l) ); }, { closed = 1; nodes = ( (180,780,l), (180,840,l), (120,840,l), (120,780,l) ); }, { closed = 1; nodes = ( (240,720,l), (240,780,l), (180,780,l), (180,720,l) ); }, { closed = 1; nodes = ( (300,660,l), (300,720,l), (240,720,l), (240,660,l) ); }, { closed = 1; nodes = ( (360,600,l), (360,660,l), (300,660,l), (300,600,l) ); }, { closed = 1; nodes = ( (420,540,l), (420,600,l), (360,600,l), (360,540,l) ); }, { closed = 1; nodes = ( (480,480,l), (480,540,l), (420,540,l), (420,480,l) ); }, { closed = 1; nodes = ( (540,420,l), (540,480,l), (480,480,l), (480,420,l) ); }, { closed = 1; nodes = ( (600,360,l), (600,420,l), (540,420,l), (540,360,l) ); }, { closed = 1; nodes = ( (120,960,l), (120,1020,l), (60,1020,l), (60,960,l) ); }, { closed = 1; nodes = ( (180,900,l), (180,960,l), (120,960,l), (120,900,l) ); }, { closed = 1; nodes = ( (240,840,l), (240,900,l), (180,900,l), (180,840,l) ); }, { closed = 1; nodes = ( (300,780,l), (300,840,l), (240,840,l), (240,780,l) ); }, { closed = 1; nodes = ( (360,720,l), (360,780,l), (300,780,l), (300,720,l) ); }, { closed = 1; nodes = ( (420,660,l), (420,720,l), (360,720,l), (360,660,l) ); }, { closed = 1; nodes = ( (480,600,l), (480,660,l), (420,660,l), (420,600,l) ); }, { closed = 1; nodes = ( (540,540,l), (540,600,l), (480,600,l), (480,540,l) ); }, { closed = 1; nodes = ( (600,480,l), (600,540,l), (540,540,l), (540,480,l) ); }, { closed = 1; nodes = ( (240,960,l), (240,1020,l), (180,1020,l), (180,960,l) ); }, { closed = 1; nodes = ( (300,900,l), (300,960,l), (240,960,l), (240,900,l) ); }, { closed = 1; nodes = ( (360,840,l), (360,900,l), (300,900,l), (300,840,l) ); }, { closed = 1; nodes = ( (420,780,l), (420,840,l), (360,840,l), (360,780,l) ); }, { closed = 1; nodes = ( (480,720,l), (480,780,l), (420,780,l), (420,720,l) ); }, { closed = 1; nodes = ( (540,660,l), (540,720,l), (480,720,l), (480,660,l) ); }, { closed = 1; nodes = ( (600,600,l), (600,660,l), (540,660,l), (540,600,l) ); }, { closed = 1; nodes = ( (360,960,l), (360,1020,l), (300,1020,l), (300,960,l) ); }, { closed = 1; nodes = ( (420,900,l), (420,960,l), (360,960,l), (360,900,l) ); }, { closed = 1; nodes = ( (480,840,l), (480,900,l), (420,900,l), (420,840,l) ); }, { closed = 1; nodes = ( (540,780,l), (540,840,l), (480,840,l), (480,780,l) ); }, { closed = 1; nodes = ( (600,720,l), (600,780,l), (540,780,l), (540,720,l) ); }, { closed = 1; nodes = ( (480,960,l), (480,1020,l), (420,1020,l), (420,960,l) ); }, { closed = 1; nodes = ( (540,900,l), (540,960,l), (480,960,l), (480,900,l) ); }, { closed = 1; nodes = ( (600,840,l), (600,900,l), (540,900,l), (540,840,l) ); } ); width = 600; } ); unicode = 9618; }, { glyphname = shadedark; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (540,1020,l), (540,960,l), (480,960,l), (480,1020,l), (420,1020,l), (420,960,l), (360,960,l), (360,1020,l), (300,1020,l), (300,960,l), (240,960,l), (240,1020,l), (180,1020,l), (180,960,l), (120,960,l), (120,1020,l), (60,1020,l), (60,960,l), (0,960,l), (0,900,l), (60,900,l), (60,840,l), (0,840,l), (0,780,l), (60,780,l), (60,720,l), (0,720,l), (0,660,l), (60,660,l), (60,600,l), (0,600,l), (0,540,l), (60,540,l), (60,480,l), (0,480,l), (0,420,l), (60,420,l), (60,360,l), (0,360,l), (0,300,l), (60,300,l), (60,240,l), (0,240,l), (0,180,l), (60,180,l), (60,120,l), (0,120,l), (0,60,l), (60,60,l), (60,0,l), (0,0,l), (0,-60,l), (60,-60,l), (60,-120,l), (0,-120,l), (0,-180,l), (60,-180,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (120,-180,l), (180,-180,l), (180,-240,l), (120,-240,l) ); }, { closed = 1; nodes = ( (120,-60,l), (180,-60,l), (180,-120,l), (120,-120,l) ); }, { closed = 1; nodes = ( (240,-180,l), (300,-180,l), (300,-240,l), (240,-240,l) ); }, { closed = 1; nodes = ( (120,60,l), (180,60,l), (180,0,l), (120,0,l) ); }, { closed = 1; nodes = ( (240,-60,l), (300,-60,l), (300,-120,l), (240,-120,l) ); }, { closed = 1; nodes = ( (360,-180,l), (420,-180,l), (420,-240,l), (360,-240,l) ); }, { closed = 1; nodes = ( (120,180,l), (180,180,l), (180,120,l), (120,120,l) ); }, { closed = 1; nodes = ( (240,60,l), (300,60,l), (300,0,l), (240,0,l) ); }, { closed = 1; nodes = ( (360,-60,l), (420,-60,l), (420,-120,l), (360,-120,l) ); }, { closed = 1; nodes = ( (480,-180,l), (540,-180,l), (540,-240,l), (480,-240,l) ); }, { closed = 1; nodes = ( (120,300,l), (180,300,l), (180,240,l), (120,240,l) ); }, { closed = 1; nodes = ( (240,180,l), (300,180,l), (300,120,l), (240,120,l) ); }, { closed = 1; nodes = ( (360,60,l), (420,60,l), (420,0,l), (360,0,l) ); }, { closed = 1; nodes = ( (480,-60,l), (540,-60,l), (540,-120,l), (480,-120,l) ); }, { closed = 1; nodes = ( (120,420,l), (180,420,l), (180,360,l), (120,360,l) ); }, { closed = 1; nodes = ( (240,300,l), (300,300,l), (300,240,l), (240,240,l) ); }, { closed = 1; nodes = ( (360,180,l), (420,180,l), (420,120,l), (360,120,l) ); }, { closed = 1; nodes = ( (480,60,l), (540,60,l), (540,0,l), (480,0,l) ); }, { closed = 1; nodes = ( (120,540,l), (180,540,l), (180,480,l), (120,480,l) ); }, { closed = 1; nodes = ( (240,420,l), (300,420,l), (300,360,l), (240,360,l) ); }, { closed = 1; nodes = ( (360,300,l), (420,300,l), (420,240,l), (360,240,l) ); }, { closed = 1; nodes = ( (480,180,l), (540,180,l), (540,120,l), (480,120,l) ); }, { closed = 1; nodes = ( (120,660,l), (180,660,l), (180,600,l), (120,600,l) ); }, { closed = 1; nodes = ( (240,540,l), (300,540,l), (300,480,l), (240,480,l) ); }, { closed = 1; nodes = ( (360,420,l), (420,420,l), (420,360,l), (360,360,l) ); }, { closed = 1; nodes = ( (480,300,l), (540,300,l), (540,240,l), (480,240,l) ); }, { closed = 1; nodes = ( (120,780,l), (180,780,l), (180,720,l), (120,720,l) ); }, { closed = 1; nodes = ( (240,660,l), (300,660,l), (300,600,l), (240,600,l) ); }, { closed = 1; nodes = ( (360,540,l), (420,540,l), (420,480,l), (360,480,l) ); }, { closed = 1; nodes = ( (480,420,l), (540,420,l), (540,360,l), (480,360,l) ); }, { closed = 1; nodes = ( (120,900,l), (180,900,l), (180,840,l), (120,840,l) ); }, { closed = 1; nodes = ( (240,780,l), (300,780,l), (300,720,l), (240,720,l) ); }, { closed = 1; nodes = ( (360,660,l), (420,660,l), (420,600,l), (360,600,l) ); }, { closed = 1; nodes = ( (480,540,l), (540,540,l), (540,480,l), (480,480,l) ); }, { closed = 1; nodes = ( (240,900,l), (300,900,l), (300,840,l), (240,840,l) ); }, { closed = 1; nodes = ( (360,780,l), (420,780,l), (420,720,l), (360,720,l) ); }, { closed = 1; nodes = ( (480,660,l), (540,660,l), (540,600,l), (480,600,l) ); }, { closed = 1; nodes = ( (360,900,l), (420,900,l), (420,840,l), (360,840,l) ); }, { closed = 1; nodes = ( (480,780,l), (540,780,l), (540,720,l), (480,720,l) ); }, { closed = 1; nodes = ( (480,900,l), (540,900,l), (540,840,l), (480,840,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (540,1020,l), (540,960,l), (480,960,l), (480,1020,l), (420,1020,l), (420,960,l), (360,960,l), (360,1020,l), (300,1020,l), (300,960,l), (240,960,l), (240,1020,l), (180,1020,l), (180,960,l), (120,960,l), (120,1020,l), (60,1020,l), (60,960,l), (0,960,l), (0,900,l), (60,900,l), (60,840,l), (0,840,l), (0,780,l), (60,780,l), (60,720,l), (0,720,l), (0,660,l), (60,660,l), (60,600,l), (0,600,l), (0,540,l), (60,540,l), (60,480,l), (0,480,l), (0,420,l), (60,420,l), (60,360,l), (0,360,l), (0,300,l), (60,300,l), (60,240,l), (0,240,l), (0,180,l), (60,180,l), (60,120,l), (0,120,l), (0,60,l), (60,60,l), (60,0,l), (0,0,l), (0,-60,l), (60,-60,l), (60,-120,l), (0,-120,l), (0,-180,l), (60,-180,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (120,-180,l), (180,-180,l), (180,-240,l), (120,-240,l) ); }, { closed = 1; nodes = ( (120,-60,l), (180,-60,l), (180,-120,l), (120,-120,l) ); }, { closed = 1; nodes = ( (240,-180,l), (300,-180,l), (300,-240,l), (240,-240,l) ); }, { closed = 1; nodes = ( (120,60,l), (180,60,l), (180,0,l), (120,0,l) ); }, { closed = 1; nodes = ( (240,-60,l), (300,-60,l), (300,-120,l), (240,-120,l) ); }, { closed = 1; nodes = ( (360,-180,l), (420,-180,l), (420,-240,l), (360,-240,l) ); }, { closed = 1; nodes = ( (120,180,l), (180,180,l), (180,120,l), (120,120,l) ); }, { closed = 1; nodes = ( (240,60,l), (300,60,l), (300,0,l), (240,0,l) ); }, { closed = 1; nodes = ( (360,-60,l), (420,-60,l), (420,-120,l), (360,-120,l) ); }, { closed = 1; nodes = ( (480,-180,l), (540,-180,l), (540,-240,l), (480,-240,l) ); }, { closed = 1; nodes = ( (120,300,l), (180,300,l), (180,240,l), (120,240,l) ); }, { closed = 1; nodes = ( (240,180,l), (300,180,l), (300,120,l), (240,120,l) ); }, { closed = 1; nodes = ( (360,60,l), (420,60,l), (420,0,l), (360,0,l) ); }, { closed = 1; nodes = ( (480,-60,l), (540,-60,l), (540,-120,l), (480,-120,l) ); }, { closed = 1; nodes = ( (120,420,l), (180,420,l), (180,360,l), (120,360,l) ); }, { closed = 1; nodes = ( (240,300,l), (300,300,l), (300,240,l), (240,240,l) ); }, { closed = 1; nodes = ( (360,180,l), (420,180,l), (420,120,l), (360,120,l) ); }, { closed = 1; nodes = ( (480,60,l), (540,60,l), (540,0,l), (480,0,l) ); }, { closed = 1; nodes = ( (120,540,l), (180,540,l), (180,480,l), (120,480,l) ); }, { closed = 1; nodes = ( (240,420,l), (300,420,l), (300,360,l), (240,360,l) ); }, { closed = 1; nodes = ( (360,300,l), (420,300,l), (420,240,l), (360,240,l) ); }, { closed = 1; nodes = ( (480,180,l), (540,180,l), (540,120,l), (480,120,l) ); }, { closed = 1; nodes = ( (120,660,l), (180,660,l), (180,600,l), (120,600,l) ); }, { closed = 1; nodes = ( (240,540,l), (300,540,l), (300,480,l), (240,480,l) ); }, { closed = 1; nodes = ( (360,420,l), (420,420,l), (420,360,l), (360,360,l) ); }, { closed = 1; nodes = ( (480,300,l), (540,300,l), (540,240,l), (480,240,l) ); }, { closed = 1; nodes = ( (120,780,l), (180,780,l), (180,720,l), (120,720,l) ); }, { closed = 1; nodes = ( (240,660,l), (300,660,l), (300,600,l), (240,600,l) ); }, { closed = 1; nodes = ( (360,540,l), (420,540,l), (420,480,l), (360,480,l) ); }, { closed = 1; nodes = ( (480,420,l), (540,420,l), (540,360,l), (480,360,l) ); }, { closed = 1; nodes = ( (120,900,l), (180,900,l), (180,840,l), (120,840,l) ); }, { closed = 1; nodes = ( (240,780,l), (300,780,l), (300,720,l), (240,720,l) ); }, { closed = 1; nodes = ( (360,660,l), (420,660,l), (420,600,l), (360,600,l) ); }, { closed = 1; nodes = ( (480,540,l), (540,540,l), (540,480,l), (480,480,l) ); }, { closed = 1; nodes = ( (240,900,l), (300,900,l), (300,840,l), (240,840,l) ); }, { closed = 1; nodes = ( (360,780,l), (420,780,l), (420,720,l), (360,720,l) ); }, { closed = 1; nodes = ( (480,660,l), (540,660,l), (540,600,l), (480,600,l) ); }, { closed = 1; nodes = ( (360,900,l), (420,900,l), (420,840,l), (360,840,l) ); }, { closed = 1; nodes = ( (480,780,l), (540,780,l), (540,720,l), (480,720,l) ); }, { closed = 1; nodes = ( (480,900,l), (540,900,l), (540,840,l), (480,840,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (600,1020,l), (540,1020,l), (540,960,l), (480,960,l), (480,1020,l), (420,1020,l), (420,960,l), (360,960,l), (360,1020,l), (300,1020,l), (300,960,l), (240,960,l), (240,1020,l), (180,1020,l), (180,960,l), (120,960,l), (120,1020,l), (60,1020,l), (60,960,l), (0,960,l), (0,900,l), (60,900,l), (60,840,l), (0,840,l), (0,780,l), (60,780,l), (60,720,l), (0,720,l), (0,660,l), (60,660,l), (60,600,l), (0,600,l), (0,540,l), (60,540,l), (60,480,l), (0,480,l), (0,420,l), (60,420,l), (60,360,l), (0,360,l), (0,300,l), (60,300,l), (60,240,l), (0,240,l), (0,180,l), (60,180,l), (60,120,l), (0,120,l), (0,60,l), (60,60,l), (60,0,l), (0,0,l), (0,-60,l), (60,-60,l), (60,-120,l), (0,-120,l), (0,-180,l), (60,-180,l), (60,-240,l), (0,-240,l), (0,-300,l) ); }, { closed = 1; nodes = ( (120,-180,l), (180,-180,l), (180,-240,l), (120,-240,l) ); }, { closed = 1; nodes = ( (120,-60,l), (180,-60,l), (180,-120,l), (120,-120,l) ); }, { closed = 1; nodes = ( (240,-180,l), (300,-180,l), (300,-240,l), (240,-240,l) ); }, { closed = 1; nodes = ( (120,60,l), (180,60,l), (180,0,l), (120,0,l) ); }, { closed = 1; nodes = ( (240,-60,l), (300,-60,l), (300,-120,l), (240,-120,l) ); }, { closed = 1; nodes = ( (360,-180,l), (420,-180,l), (420,-240,l), (360,-240,l) ); }, { closed = 1; nodes = ( (120,180,l), (180,180,l), (180,120,l), (120,120,l) ); }, { closed = 1; nodes = ( (240,60,l), (300,60,l), (300,0,l), (240,0,l) ); }, { closed = 1; nodes = ( (360,-60,l), (420,-60,l), (420,-120,l), (360,-120,l) ); }, { closed = 1; nodes = ( (480,-180,l), (540,-180,l), (540,-240,l), (480,-240,l) ); }, { closed = 1; nodes = ( (120,300,l), (180,300,l), (180,240,l), (120,240,l) ); }, { closed = 1; nodes = ( (240,180,l), (300,180,l), (300,120,l), (240,120,l) ); }, { closed = 1; nodes = ( (360,60,l), (420,60,l), (420,0,l), (360,0,l) ); }, { closed = 1; nodes = ( (480,-60,l), (540,-60,l), (540,-120,l), (480,-120,l) ); }, { closed = 1; nodes = ( (120,420,l), (180,420,l), (180,360,l), (120,360,l) ); }, { closed = 1; nodes = ( (240,300,l), (300,300,l), (300,240,l), (240,240,l) ); }, { closed = 1; nodes = ( (360,180,l), (420,180,l), (420,120,l), (360,120,l) ); }, { closed = 1; nodes = ( (480,60,l), (540,60,l), (540,0,l), (480,0,l) ); }, { closed = 1; nodes = ( (120,540,l), (180,540,l), (180,480,l), (120,480,l) ); }, { closed = 1; nodes = ( (240,420,l), (300,420,l), (300,360,l), (240,360,l) ); }, { closed = 1; nodes = ( (360,300,l), (420,300,l), (420,240,l), (360,240,l) ); }, { closed = 1; nodes = ( (480,180,l), (540,180,l), (540,120,l), (480,120,l) ); }, { closed = 1; nodes = ( (120,660,l), (180,660,l), (180,600,l), (120,600,l) ); }, { closed = 1; nodes = ( (240,540,l), (300,540,l), (300,480,l), (240,480,l) ); }, { closed = 1; nodes = ( (360,420,l), (420,420,l), (420,360,l), (360,360,l) ); }, { closed = 1; nodes = ( (480,300,l), (540,300,l), (540,240,l), (480,240,l) ); }, { closed = 1; nodes = ( (120,780,l), (180,780,l), (180,720,l), (120,720,l) ); }, { closed = 1; nodes = ( (240,660,l), (300,660,l), (300,600,l), (240,600,l) ); }, { closed = 1; nodes = ( (360,540,l), (420,540,l), (420,480,l), (360,480,l) ); }, { closed = 1; nodes = ( (480,420,l), (540,420,l), (540,360,l), (480,360,l) ); }, { closed = 1; nodes = ( (120,900,l), (180,900,l), (180,840,l), (120,840,l) ); }, { closed = 1; nodes = ( (240,780,l), (300,780,l), (300,720,l), (240,720,l) ); }, { closed = 1; nodes = ( (360,660,l), (420,660,l), (420,600,l), (360,600,l) ); }, { closed = 1; nodes = ( (480,540,l), (540,540,l), (540,480,l), (480,480,l) ); }, { closed = 1; nodes = ( (240,900,l), (300,900,l), (300,840,l), (240,840,l) ); }, { closed = 1; nodes = ( (360,780,l), (420,780,l), (420,720,l), (360,720,l) ); }, { closed = 1; nodes = ( (480,660,l), (540,660,l), (540,600,l), (480,600,l) ); }, { closed = 1; nodes = ( (360,900,l), (420,900,l), (420,840,l), (360,840,l) ); }, { closed = 1; nodes = ( (480,780,l), (540,780,l), (540,720,l), (480,720,l) ); }, { closed = 1; nodes = ( (480,900,l), (540,900,l), (540,840,l), (480,840,l) ); } ); width = 600; } ); unicode = 9619; }, { glyphname = blackCircle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); } ); width = 600; } ); unicode = 9679; }, { glyphname = largeCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; } ); unicode = 9711; }, { glyphname = upperRightBlackCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,c), (300,557,o), (300,400,o), (300,360,c), (348,360,o), (470,360,o), (560,360,c), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,c), (300,557,o), (300,400,o), (300,360,c), (348,360,o), (470,360,o), (560,360,c), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,c), (300,557,o), (300,400,o), (300,360,c), (348,360,o), (470,360,o), (560,360,c), (560,212,o), (448,100,o), (300,100,cs) ); } ); width = 600; } ); unicode = 9684; }, { glyphname = upperLeftWhiteCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (40,508,o), (152,620,o), (300,620,c), (300,513,o), (300,410,o), (300,360,c), (232,360,o), (181,360,o), (40,360,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (40,508,o), (152,620,o), (300,620,c), (300,513,o), (300,410,o), (300,360,c), (232,360,o), (181,360,o), (40,360,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (40,508,o), (152,620,o), (300,620,c), (300,513,o), (300,410,o), (300,360,c), (232,360,o), (181,360,o), (40,360,c) ); } ); width = 600; } ); unicode = 9685; }, { glyphname = dottedCircle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-10,332,o), (-7,305,o), (0,279,c), (48,292,l), (43,314,o), (40,336,o), (40,360,cs), (40,384,o), (43,406,o), (48,428,c), (0,441,l), (-7,415,o), (-10,388,o), (-10,360,cs) ); }, { closed = 1; nodes = ( (56,156,o), (96,116,o), (144,89,c), (169,133,l), (129,156,o), (96,189,o), (73,229,c), (29,204,l) ); }, { closed = 1; nodes = ( (73,491,l), (96,531,o), (129,564,o), (169,587,c), (144,631,l), (96,604,o), (56,564,o), (29,516,c) ); }, { closed = 1; nodes = ( (232,612,l), (254,617,o), (276,620,o), (300,620,cs), (324,620,o), (346,617,o), (368,612,c), (381,660,l), (355,667,o), (328,670,o), (300,670,cs), (272,670,o), (245,667,o), (219,660,c) ); }, { closed = 1; nodes = ( (245,53,o), (272,50,o), (300,50,cs), (328,50,o), (355,53,o), (381,60,c), (368,108,l), (346,103,o), (324,100,o), (300,100,cs), (276,100,o), (254,103,o), (232,108,c), (219,60,l) ); }, { closed = 1; nodes = ( (471,564,o), (504,531,o), (527,491,c), (571,516,l), (544,564,o), (504,604,o), (456,631,c), (431,587,l) ); }, { closed = 1; nodes = ( (456,89,l), (504,116,o), (544,156,o), (571,204,c), (527,229,l), (504,189,o), (471,156,o), (431,133,c) ); }, { closed = 1; nodes = ( (600,279,l), (607,305,o), (610,332,o), (610,360,cs), (610,388,o), (607,415,o), (600,441,c), (552,428,l), (557,406,o), (560,384,o), (560,360,cs), (560,336,o), (557,314,o), (552,292,c) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-10,332,o), (-7,305,o), (0,279,c), (48,292,l), (43,314,o), (40,336,o), (40,360,cs), (40,384,o), (43,406,o), (48,428,c), (0,441,l), (-7,415,o), (-10,388,o), (-10,360,cs) ); }, { closed = 1; nodes = ( (56,156,o), (96,116,o), (144,89,c), (169,133,l), (129,156,o), (96,189,o), (73,229,c), (29,204,l) ); }, { closed = 1; nodes = ( (73,491,l), (96,531,o), (129,564,o), (169,587,c), (144,631,l), (96,604,o), (56,564,o), (29,516,c) ); }, { closed = 1; nodes = ( (232,612,l), (254,617,o), (276,620,o), (300,620,cs), (324,620,o), (346,617,o), (368,612,c), (381,660,l), (355,667,o), (328,670,o), (300,670,cs), (272,670,o), (245,667,o), (219,660,c) ); }, { closed = 1; nodes = ( (245,53,o), (272,50,o), (300,50,cs), (328,50,o), (355,53,o), (381,60,c), (368,108,l), (346,103,o), (324,100,o), (300,100,cs), (276,100,o), (254,103,o), (232,108,c), (219,60,l) ); }, { closed = 1; nodes = ( (471,564,o), (504,531,o), (527,491,c), (571,516,l), (544,564,o), (504,604,o), (456,631,c), (431,587,l) ); }, { closed = 1; nodes = ( (456,89,l), (504,116,o), (544,156,o), (571,204,c), (527,229,l), (504,189,o), (471,156,o), (431,133,c) ); }, { closed = 1; nodes = ( (600,279,l), (607,305,o), (610,332,o), (610,360,cs), (610,388,o), (607,415,o), (600,441,c), (552,428,l), (557,406,o), (560,384,o), (560,360,cs), (560,336,o), (557,314,o), (552,292,c) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-10,332,o), (-7,305,o), (0,279,c), (48,292,l), (43,314,o), (40,336,o), (40,360,cs), (40,384,o), (43,406,o), (48,428,c), (0,441,l), (-7,415,o), (-10,388,o), (-10,360,cs) ); }, { closed = 1; nodes = ( (56,156,o), (96,116,o), (144,89,c), (169,133,l), (129,156,o), (96,189,o), (73,229,c), (29,204,l) ); }, { closed = 1; nodes = ( (73,491,l), (96,531,o), (129,564,o), (169,587,c), (144,631,l), (96,604,o), (56,564,o), (29,516,c) ); }, { closed = 1; nodes = ( (232,612,l), (254,617,o), (276,620,o), (300,620,cs), (324,620,o), (346,617,o), (368,612,c), (381,660,l), (355,667,o), (328,670,o), (300,670,cs), (272,670,o), (245,667,o), (219,660,c) ); }, { closed = 1; nodes = ( (245,53,o), (272,50,o), (300,50,cs), (328,50,o), (355,53,o), (381,60,c), (368,108,l), (346,103,o), (324,100,o), (300,100,cs), (276,100,o), (254,103,o), (232,108,c), (219,60,l) ); }, { closed = 1; nodes = ( (471,564,o), (504,531,o), (527,491,c), (571,516,l), (544,564,o), (504,604,o), (456,631,c), (431,587,l) ); }, { closed = 1; nodes = ( (456,89,l), (504,116,o), (544,156,o), (571,204,c), (527,229,l), (504,189,o), (471,156,o), (431,133,c) ); }, { closed = 1; nodes = ( (600,279,l), (607,305,o), (610,332,o), (610,360,cs), (610,388,o), (607,415,o), (600,441,c), (552,428,l), (557,406,o), (560,384,o), (560,360,cs), (560,336,o), (557,314,o), (552,292,c) ); } ); width = 600; } ); unicode = 9676; }, { glyphname = bullseye; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (372,233,o), (427,288,o), (427,360,cs), (427,432,o), (372,487,o), (300,487,cs), (228,487,o), (173,432,o), (173,360,cs), (173,288,o), (228,233,o), (300,233,cs) ); }, { closed = 1; nodes = ( (254,279,o), (219,314,o), (219,360,cs), (219,406,o), (254,441,o), (300,441,cs), (346,441,o), (381,406,o), (381,360,cs), (381,314,o), (346,279,o), (300,279,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (372,233,o), (427,288,o), (427,360,cs), (427,432,o), (372,487,o), (300,487,cs), (228,487,o), (173,432,o), (173,360,cs), (173,288,o), (228,233,o), (300,233,cs) ); }, { closed = 1; nodes = ( (254,279,o), (219,314,o), (219,360,cs), (219,406,o), (254,441,o), (300,441,cs), (346,441,o), (381,406,o), (381,360,cs), (381,314,o), (346,279,o), (300,279,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (477,50,o), (610,183,o), (610,360,cs), (610,537,o), (477,670,o), (300,670,cs), (123,670,o), (-10,537,o), (-10,360,cs), (-10,183,o), (123,50,o), (300,50,cs) ); }, { closed = 1; nodes = ( (152,100,o), (40,212,o), (40,360,cs), (40,508,o), (152,620,o), (300,620,cs), (448,620,o), (560,508,o), (560,360,cs), (560,212,o), (448,100,o), (300,100,cs) ); }, { closed = 1; nodes = ( (372,233,o), (427,288,o), (427,360,cs), (427,432,o), (372,487,o), (300,487,cs), (228,487,o), (173,432,o), (173,360,cs), (173,288,o), (228,233,o), (300,233,cs) ); }, { closed = 1; nodes = ( (254,279,o), (219,314,o), (219,360,cs), (219,406,o), (254,441,o), (300,441,cs), (346,441,o), (381,406,o), (381,360,cs), (381,314,o), (346,279,o), (300,279,cs) ); } ); width = 600; } ); unicode = 9678; }, { glyphname = whiteBullet; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (370,245,o), (420,295,o), (420,365,cs), (420,435,o), (370,485,o), (300,485,cs), (230,485,o), (180,435,o), (180,365,cs), (180,295,o), (230,245,o), (300,245,cs) ); }, { closed = 1; nodes = ( (253,285,o), (220,318,o), (220,365,cs), (220,412,o), (253,445,o), (300,445,cs), (347,445,o), (380,412,o), (380,365,cs), (380,318,o), (347,285,o), (300,285,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (370,245,o), (420,295,o), (420,365,cs), (420,435,o), (370,485,o), (300,485,cs), (230,485,o), (180,435,o), (180,365,cs), (180,295,o), (230,245,o), (300,245,cs) ); }, { closed = 1; nodes = ( (253,285,o), (220,318,o), (220,365,cs), (220,412,o), (253,445,o), (300,445,cs), (347,445,o), (380,412,o), (380,365,cs), (380,318,o), (347,285,o), (300,285,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (370,245,o), (420,295,o), (420,365,cs), (420,435,o), (370,485,o), (300,485,cs), (230,485,o), (180,435,o), (180,365,cs), (180,295,o), (230,245,o), (300,245,cs) ); }, { closed = 1; nodes = ( (253,285,o), (220,318,o), (220,365,cs), (220,412,o), (253,445,o), (300,445,cs), (347,445,o), (380,412,o), (380,365,cs), (380,318,o), (347,285,o), (300,285,cs) ); } ); width = 600; } ); unicode = 9702; }, { glyphname = blackDiamond; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); } ); width = 600; } ); unicode = 9670; }, { glyphname = whiteDiamond; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); }, { closed = 1; nodes = ( (68,360,l), (300,593,l), (532,360,l), (300,128,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); }, { closed = 1; nodes = ( (68,360,l), (300,593,l), (532,360,l), (300,128,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (300,671,l), (-10,360,l), (300,50,l) ); }, { closed = 1; nodes = ( (68,360,l), (300,593,l), (532,360,l), (300,128,l) ); } ); width = 600; } ); unicode = 9671; }, { glyphname = lozenge; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,0,l), (560,303,l), (560,417,l), (402,720,l), (202,720,l), (40,417,l), (40,300,l), (202,0,l) ); }, { closed = 1; nodes = ( (286,113,o), (268,154,o), (254,181,cs), (190,303,l), (190,417,l), (254,539,ls), (268,566,o), (286,607,o), (296,630,c), (302,630,l), (310,608,o), (327,568,o), (343,539,cs), (410,417,l), (410,303,l), (343,181,ls), (327,152,o), (310,112,o), (302,90,c), (296,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (366,0,l), (540,324,l), (540,395,l), (366,720,l), (240,720,l), (60,395,l), (60,324,l), (240,0,l) ); }, { closed = 1; nodes = ( (290,78,o), (270,117,o), (249,157,cs), (150,344,l), (150,375,l), (249,563,ls), (269,602,o), (290,641,o), (299,660,c), (303,660,l), (312,641,o), (332,602,o), (352,563,cs), (450,375,l), (450,344,l), (352,157,ls), (332,118,o), (312,78,o), (303,60,c), (299,60,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (366,0,l), (540,324,l), (540,395,l), (366,720,l), (240,720,l), (60,395,l), (60,324,l), (240,0,l) ); }, { closed = 1; nodes = ( (290,78,o), (270,117,o), (249,157,cs), (150,344,l), (150,375,l), (249,563,ls), (269,602,o), (290,641,o), (299,660,c), (303,660,l), (312,641,o), (332,602,o), (352,563,cs), (450,375,l), (450,344,l), (352,157,ls), (332,118,o), (312,78,o), (303,60,c), (299,60,l) ); } ); width = 600; } ); unicode = 9674; }, { glyphname = blackSquare; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); } ); width = 600; } ); unicode = 9632; }, { glyphname = whiteSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; } ); unicode = 9633; }, { glyphname = blackSmallSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); } ); width = 600; } ); unicode = 9642; }, { glyphname = whiteSmallSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (200,460,l), (400,460,l), (400,260,l), (200,260,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (200,460,l), (400,460,l), (400,260,l), (200,260,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (450,510,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (200,460,l), (400,460,l), (400,260,l), (200,260,l) ); } ); width = 600; } ); unicode = 9643; }, { glyphname = leftHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightHalfBlackSquare; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightHalfBlackSquare; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightHalfBlackSquare; scale = (-1,1); } ); width = 600; } ); unicode = 9703; }, { glyphname = rightHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (310,610,l), (310,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (310,610,l), (310,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (310,610,l), (310,110,l), (50,110,l) ); } ); width = 600; } ); unicode = 9704; }, { glyphname = upperLeftDiagonalHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (550,610,l), (550,110,l), (50,110,l) ); } ); width = 600; } ); unicode = 9705; }, { glyphname = lowerRightDiagonalHalfBlackSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (0,660,l), (0,60,l), (600,60,l), (600,660,l) ); }, { closed = 1; nodes = ( (50,110,l), (50,610,l), (550,610,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (0,660,l), (0,60,l), (600,60,l), (600,660,l) ); }, { closed = 1; nodes = ( (50,110,l), (50,610,l), (550,610,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (0,660,l), (0,60,l), (600,60,l), (600,660,l) ); }, { closed = 1; nodes = ( (50,110,l), (50,610,l), (550,610,l) ); } ); width = 600; } ); unicode = 9706; }, { glyphname = verticalBisectingLineWhiteSquare; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); }, { closed = 1; nodes = ( (325,70,l), (325,650,l), (275,650,l), (275,70,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); }, { closed = 1; nodes = ( (325,70,l), (325,650,l), (275,650,l), (275,70,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,60,l), (600,660,l), (0,660,l), (0,60,l) ); }, { closed = 1; nodes = ( (50,610,l), (550,610,l), (550,110,l), (50,110,l) ); }, { closed = 1; nodes = ( (325,70,l), (325,650,l), (275,650,l), (275,70,l) ); } ); width = 600; } ); unicode = 9707; }, { glyphname = upBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); } ); width = 600; } ); unicode = 9650; }, { glyphname = rightBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); } ); width = 600; } ); unicode = 9654; }, { glyphname = downBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); } ); width = 600; } ); unicode = 9660; }, { glyphname = leftBlackTriangle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,49,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,49,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,49,l) ); } ); width = 600; } ); unicode = 9664; }, { glyphname = upWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); }, { closed = 1; nodes = ( (300,557,l), (527,110,l), (73,110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); }, { closed = 1; nodes = ( (300,557,l), (527,110,l), (73,110,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,60,l), (300,670,l), (-10,60,l) ); }, { closed = 1; nodes = ( (300,557,l), (527,110,l), (73,110,l) ); } ); width = 600; } ); unicode = 9651; }, { glyphname = rightWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); }, { closed = 1; nodes = ( (50,587,l), (498,360,l), (50,133,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); }, { closed = 1; nodes = ( (50,587,l), (498,360,l), (50,133,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,670,l), (0,50,l) ); }, { closed = 1; nodes = ( (50,587,l), (498,360,l), (50,133,l) ); } ); width = 600; } ); unicode = 9655; }, { glyphname = downWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); }, { closed = 1; nodes = ( (73,610,l), (527,610,l), (300,163,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); }, { closed = 1; nodes = ( (73,610,l), (527,610,l), (300,163,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,660,l), (-10,660,l), (300,50,l) ); }, { closed = 1; nodes = ( (73,610,l), (527,610,l), (300,163,l) ); } ); width = 600; } ); unicode = 9661; }, { glyphname = leftWhiteTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,50,l) ); }, { closed = 1; nodes = ( (102,360,l), (550,587,l), (550,133,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,50,l) ); }, { closed = 1; nodes = ( (102,360,l), (550,587,l), (550,133,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,670,l), (-10,360,l), (600,50,l) ); }, { closed = 1; nodes = ( (102,360,l), (550,587,l), (550,133,l) ); } ); width = 600; } ); unicode = 9665; }, { glyphname = rightBlackPointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); } ); width = 600; } ); unicode = 9658; }, { glyphname = leftBlackPointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightBlackPointer; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightBlackPointer; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightBlackPointer; scale = (-1,1); } ); width = 600; } ); unicode = 9668; }, { glyphname = rightWhitePointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); }, { closed = 1; nodes = ( (50,446,l), (448,360,l), (50,274,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); }, { closed = 1; nodes = ( (50,446,l), (448,360,l), (50,274,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (610,360,l), (0,510,l), (0,210,l) ); }, { closed = 1; nodes = ( (50,446,l), (448,360,l), (50,274,l) ); } ); width = 600; } ); unicode = 9659; }, { glyphname = leftWhitePointer; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = rightWhitePointer; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = rightWhitePointer; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = rightWhitePointer; scale = (-1,1); } ); width = 600; } ); unicode = 9669; }, { glyphname = upBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); } ); width = 600; } ); unicode = 9652; }, { glyphname = rightBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { angle = 90; pos = (-60,60); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { angle = 90; pos = (-60,60); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { angle = 90; pos = (-60,60); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; } ); unicode = 9656; }, { glyphname = downBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (0,720); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (0,720); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (0,720); ref = upBlackSmallTriangle; scale = (1,-1); } ); width = 600; } ); unicode = 9662; }, { glyphname = leftBlackSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { angle = 90; pos = (660,660); ref = upBlackSmallTriangle; scale = (-1,1); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { angle = 90; pos = (660,660); ref = upBlackSmallTriangle; scale = (-1,1); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { angle = 90; pos = (660,660); ref = upBlackSmallTriangle; scale = (-1,1); } ); width = 600; } ); unicode = 9666; }, { glyphname = upWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); }, { closed = 1; nodes = ( (300,428,l), (386,250,l), (214,250,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); }, { closed = 1; nodes = ( (300,428,l), (386,250,l), (214,250,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,210,l), (300,520,l), (150,210,l) ); }, { closed = 1; nodes = ( (300,428,l), (386,250,l), (214,250,l) ); } ); width = 600; } ); unicode = 9653; }, { glyphname = rightWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (460,360,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (190,446,l), (368,360,l), (190,274,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (460,360,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (190,446,l), (368,360,l), (190,274,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (460,360,l), (150,510,l), (150,210,l) ); }, { closed = 1; nodes = ( (190,446,l), (368,360,l), (190,274,l) ); } ); width = 600; } ); unicode = 9657; }, { glyphname = downWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,510,l), (150,510,l), (300,200,l) ); }, { closed = 1; nodes = ( (214,470,l), (386,470,l), (300,292,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,510,l), (150,510,l), (300,200,l) ); }, { closed = 1; nodes = ( (214,470,l), (386,470,l), (300,292,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,510,l), (150,510,l), (300,200,l) ); }, { closed = 1; nodes = ( (214,470,l), (386,470,l), (300,292,l) ); } ); width = 600; } ); unicode = 9663; }, { glyphname = leftWhiteSmallTriangle; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,510,l), (140,360,l), (450,210,l) ); }, { closed = 1; nodes = ( (232,360,l), (410,446,l), (410,274,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,510,l), (140,360,l), (450,210,l) ); }, { closed = 1; nodes = ( (232,360,l), (410,446,l), (410,274,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,510,l), (140,360,l), (450,210,l) ); }, { closed = 1; nodes = ( (232,360,l), (410,446,l), (410,274,l) ); } ); width = 600; } ); unicode = 9667; }, { glyphname = boxDoubleDownAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9574; }, { glyphname = boxDoubleDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,520,l), (-20,520,l), (-20,420,l), (350,420,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,520,l), (-20,520,l), (-20,420,l), (350,420,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,520,l), (-20,520,l), (-20,420,l), (350,420,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9559; }, { glyphname = boxDoubleDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,420,l), (620,420,l), (620,520,l), (150,520,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,420,l), (620,420,l), (620,520,l), (150,520,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,420,l), (620,420,l), (620,520,l), (150,520,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); } ); width = 600; } ); unicode = 9556; }, { glyphname = boxDoubleHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; } ); unicode = 9552; }, { glyphname = boxDoubleUpAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9577; }, { glyphname = boxDoubleUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,220,l), (450,1120,l), (350,1120,l), (350,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,220,l), (450,1120,l), (350,1120,l), (350,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,220,l), (450,1120,l), (350,1120,l), (350,320,l), (-20,320,l), (-20,220,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9565; }, { glyphname = boxDoubleUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (250,320,l), (250,1120,l), (150,1120,l), (150,220,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (250,320,l), (250,1120,l), (150,1120,l), (150,220,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (250,320,l), (250,1120,l), (150,1120,l), (150,220,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; } ); unicode = 9562; }, { glyphname = boxDoubleVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9553; }, { glyphname = boxDoubleVerticalAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; } ); unicode = 9580; }, { glyphname = boxDoubleVerticalAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (-20,320,l), (-20,220,l), (150,220,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,420,l), (250,1120,l), (150,1120,l), (150,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9571; }, { glyphname = boxDoubleVerticalAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,220,l), (620,220,l), (620,320,l), (350,320,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (450,520,l), (450,1120,l), (350,1120,l), (350,420,l) ); } ); width = 600; } ); unicode = 9568; }, { glyphname = boxDownDoubleAndHorizontalSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9573; }, { glyphname = boxDownDoubleAndLeftSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9558; }, { glyphname = boxDownDoubleAndRightSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (150,420,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (150,420,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (150,420,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9555; }, { glyphname = boxDownHeavyAndHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9520; }, { glyphname = boxDownHeavyAndLeftLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9490; }, { glyphname = boxDownHeavyAndLeftUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1020,l), (250,1020,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1020,l), (250,1020,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1020,l), (250,1020,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9511; }, { glyphname = boxDownHeavyAndRightLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9486; }, { glyphname = boxDownHeavyAndRightUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9503; }, { glyphname = boxDownHeavyAndUpHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9537; }, { glyphname = boxDownLightAndHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9519; }, { glyphname = boxDownLightAndLeftHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9489; }, { glyphname = boxDownLightAndLeftUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9513; }, { glyphname = boxDownLightAndRightHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9485; }, { glyphname = boxDownLightAndRightUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9505; }, { glyphname = boxDownLightAndUpHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9543; }, { glyphname = boxDownSingleAndHorizontalDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); }, { closed = 1; nodes = ( (620,420,l), (620,520,l), (-20,520,l), (-20,420,l) ); } ); width = 600; } ); unicode = 9572; }, { glyphname = boxDownSingleAndLeftDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9557; }, { glyphname = boxDownSingleAndRightDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (250,520,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (250,520,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (250,520,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9554; }, { glyphname = boxHeavyDoubleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (525,270,l), (525,470,l), (375,470,l), (375,270,l) ); }, { closed = 1; nodes = ( (225,270,l), (225,470,l), (75,470,l), (75,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (525,270,l), (525,470,l), (375,470,l), (375,270,l) ); }, { closed = 1; nodes = ( (225,270,l), (225,470,l), (75,470,l), (75,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (525,270,l), (525,470,l), (375,470,l), (375,270,l) ); }, { closed = 1; nodes = ( (225,270,l), (225,470,l), (75,470,l), (75,270,l) ); } ); width = 600; } ); unicode = 9549; }, { glyphname = boxHeavyDoubleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-145,l), (400,270,l), (200,270,l), (200,-145,l) ); }, { closed = 1; nodes = ( (400,460,l), (400,873,l), (200,873,l), (200,460,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-145,l), (400,270,l), (200,270,l), (200,-145,l) ); }, { closed = 1; nodes = ( (400,460,l), (400,873,l), (200,873,l), (200,460,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-145,l), (400,270,l), (200,270,l), (200,-145,l) ); }, { closed = 1; nodes = ( (400,460,l), (400,873,l), (200,873,l), (200,460,l) ); } ); width = 600; } ); unicode = 9551; }, { glyphname = boxHeavyDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9595; }, { glyphname = boxHeavyDownAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9523; }, { glyphname = boxHeavyDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9491; }, { glyphname = boxHeavyDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9487; }, { glyphname = boxHeavyHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9473; }, { glyphname = boxHeavyLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9592; }, { glyphname = boxHeavyLeftAndLightRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9598; }, { glyphname = boxHeavyQuadrupleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (575,270,l), (575,470,l), (475,470,l), (475,270,l) ); }, { closed = 1; nodes = ( (125,270,l), (125,470,l), (25,470,l), (25,270,l) ); }, { closed = 1; nodes = ( (275,270,l), (275,470,l), (175,470,l), (175,270,l) ); }, { closed = 1; nodes = ( (425,270,l), (425,470,l), (325,470,l), (325,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (575,270,l), (575,470,l), (475,470,l), (475,270,l) ); }, { closed = 1; nodes = ( (125,270,l), (125,470,l), (25,470,l), (25,270,l) ); }, { closed = 1; nodes = ( (275,270,l), (275,470,l), (175,470,l), (175,270,l) ); }, { closed = 1; nodes = ( (425,270,l), (425,470,l), (325,470,l), (325,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (575,270,l), (575,470,l), (475,470,l), (475,270,l) ); }, { closed = 1; nodes = ( (125,270,l), (125,470,l), (25,470,l), (25,270,l) ); }, { closed = 1; nodes = ( (275,270,l), (275,470,l), (175,470,l), (175,270,l) ); }, { closed = 1; nodes = ( (425,270,l), (425,470,l), (325,470,l), (325,270,l) ); } ); width = 600; } ); unicode = 9481; }, { glyphname = boxHeavyQuadrupleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,720,l), (400,935,l), (200,935,l), (200,720,l) ); }, { closed = 1; nodes = ( (400,-195,l), (400,20,l), (200,20,l), (200,-195,l) ); }, { closed = 1; nodes = ( (400,110,l), (400,325,l), (200,325,l), (200,110,l) ); }, { closed = 1; nodes = ( (400,415,l), (400,630,l), (200,630,l), (200,415,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,720,l), (400,935,l), (200,935,l), (200,720,l) ); }, { closed = 1; nodes = ( (400,-195,l), (400,20,l), (200,20,l), (200,-195,l) ); }, { closed = 1; nodes = ( (400,110,l), (400,325,l), (200,325,l), (200,110,l) ); }, { closed = 1; nodes = ( (400,415,l), (400,630,l), (200,630,l), (200,415,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,720,l), (400,935,l), (200,935,l), (200,720,l) ); }, { closed = 1; nodes = ( (400,-195,l), (400,20,l), (200,20,l), (200,-195,l) ); }, { closed = 1; nodes = ( (400,110,l), (400,325,l), (200,325,l), (200,110,l) ); }, { closed = 1; nodes = ( (400,415,l), (400,630,l), (200,630,l), (200,415,l) ); } ); width = 600; } ); unicode = 9483; }, { glyphname = boxHeavyRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,270,l) ); } ); width = 600; } ); unicode = 9594; }, { glyphname = boxHeavyTripleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (563,270,l), (563,470,l), (437,470,l), (437,270,l) ); }, { closed = 1; nodes = ( (163,270,l), (163,470,l), (37,470,l), (37,270,l) ); }, { closed = 1; nodes = ( (363,270,l), (363,470,l), (237,470,l), (237,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (563,270,l), (563,470,l), (437,470,l), (437,270,l) ); }, { closed = 1; nodes = ( (163,270,l), (163,470,l), (37,470,l), (37,270,l) ); }, { closed = 1; nodes = ( (363,270,l), (363,470,l), (237,470,l), (237,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (563,270,l), (563,470,l), (437,470,l), (437,270,l) ); }, { closed = 1; nodes = ( (163,270,l), (163,470,l), (37,470,l), (37,270,l) ); }, { closed = 1; nodes = ( (363,270,l), (363,470,l), (237,470,l), (237,270,l) ); } ); width = 600; } ); unicode = 9477; }, { glyphname = boxHeavyTripleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,182,l), (400,539,l), (200,539,l), (200,182,l) ); }, { closed = 1; nodes = ( (400,-219,l), (400,107,l), (200,107,l), (200,-219,l) ); }, { closed = 1; nodes = ( (400,612,l), (400,938,l), (200,938,l), (200,612,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,182,l), (400,539,l), (200,539,l), (200,182,l) ); }, { closed = 1; nodes = ( (400,-219,l), (400,107,l), (200,107,l), (200,-219,l) ); }, { closed = 1; nodes = ( (400,612,l), (400,938,l), (200,938,l), (200,612,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,182,l), (400,539,l), (200,539,l), (200,182,l) ); }, { closed = 1; nodes = ( (400,-219,l), (400,107,l), (200,107,l), (200,-219,l) ); }, { closed = 1; nodes = ( (400,612,l), (400,938,l), (200,938,l), (200,612,l) ); } ); width = 600; } ); unicode = 9479; }, { glyphname = boxHeavyUp; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; } ); unicode = 9593; }, { glyphname = boxHeavyUpAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9531; }, { glyphname = boxHeavyUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9499; }, { glyphname = boxHeavyUpAndLightDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9599; }, { glyphname = boxHeavyUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,270,l) ); } ); width = 600; } ); unicode = 9495; }, { glyphname = boxHeavyVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9475; }, { glyphname = boxHeavyVerticalAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9547; }, { glyphname = boxHeavyVerticalAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9515; }, { glyphname = boxHeavyVerticalAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9507; }, { glyphname = boxLeftDownHeavyAndRightUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9541; }, { glyphname = boxLeftHeavyAndRightDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9517; }, { glyphname = boxLeftHeavyAndRightUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9525; }, { glyphname = boxLeftHeavyAndRightVerticalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9533; }, { glyphname = boxLeftLightAndRightDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9522; }, { glyphname = boxLeftLightAndRightUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l) ); } ); width = 600; } ); unicode = 9530; }, { glyphname = boxLeftLightAndRightVerticalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9546; }, { glyphname = boxLeftUpHeavyAndRightDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9539; }, { glyphname = boxLightArcDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,286,o), (218,420,o), (15,420,cs), (-20,420,l), (-20,320,l), (15,320,ls), (158,320,o), (250,226,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,286,o), (218,420,o), (15,420,cs), (-20,420,l), (-20,320,l), (15,320,ls), (158,320,o), (250,226,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,286,o), (218,420,o), (15,420,cs), (-20,420,l), (-20,320,l), (15,320,ls), (158,320,o), (250,226,o), (250,80,cs), (250,-400,l) ); } ); width = 600; } ); unicode = 9582; }, { glyphname = boxLightArcDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,226,o), (443,320,o), (585,320,cs), (620,320,l), (620,420,l), (585,420,ls), (383,420,o), (250,286,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,226,o), (443,320,o), (585,320,cs), (620,320,l), (620,420,l), (585,420,ls), (383,420,o), (250,286,o), (250,80,cs), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,80,ls), (350,226,o), (443,320,o), (585,320,cs), (620,320,l), (620,420,l), (585,420,ls), (383,420,o), (250,286,o), (250,80,cs), (250,-400,l) ); } ); width = 600; } ); unicode = 9581; }, { glyphname = boxLightArcUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (15,320,ls), (218,320,o), (350,454,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,514,o), (158,420,o), (15,420,cs), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (15,320,ls), (218,320,o), (350,454,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,514,o), (158,420,o), (15,420,cs), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (15,320,ls), (218,320,o), (350,454,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,514,o), (158,420,o), (15,420,cs), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9583; }, { glyphname = boxLightArcUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (585,420,ls), (443,420,o), (350,514,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,454,o), (383,320,o), (585,320,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (585,420,ls), (443,420,o), (350,514,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,454,o), (383,320,o), (585,320,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (585,420,ls), (443,420,o), (350,514,o), (350,660,cs), (350,1120,l), (250,1120,l), (250,660,ls), (250,454,o), (383,320,o), (585,320,cs) ); } ); width = 600; } ); unicode = 9584; }, { glyphname = boxLightDiagonalCross; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (300,265,l), (540,-160,l), (620,-160,l), (620,-120,l), (351,360,l), (620,840,l), (620,880,l), (540,880,l), (300,455,l), (60,880,l), (-20,880,l), (-20,840,l), (249,360,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (300,265,l), (540,-160,l), (620,-160,l), (620,-120,l), (351,360,l), (620,840,l), (620,880,l), (540,880,l), (300,455,l), (60,880,l), (-20,880,l), (-20,840,l), (249,360,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (300,265,l), (540,-160,l), (620,-160,l), (620,-120,l), (351,360,l), (620,840,l), (620,880,l), (540,880,l), (300,455,l), (60,880,l), (-20,880,l), (-20,840,l), (249,360,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; } ); unicode = 9587; }, { glyphname = boxLightDiagonalUpperLeftToLowerRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,-160,l), (620,-120,l), (60,880,l), (-20,880,l), (-20,840,l), (540,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,-160,l), (620,-120,l), (60,880,l), (-20,880,l), (-20,840,l), (540,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,-160,l), (620,-120,l), (60,880,l), (-20,880,l), (-20,840,l), (540,-160,l) ); } ); width = 600; } ); unicode = 9586; }, { glyphname = boxLightDiagonalUpperRightToLowerLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (620,840,l), (620,880,l), (540,880,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (620,840,l), (620,880,l), (540,880,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (60,-160,l), (620,840,l), (620,880,l), (540,880,l), (-20,-120,l), (-20,-160,l) ); } ); width = 600; } ); unicode = 9585; }, { glyphname = boxLightDoubleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (530,320,l), (530,420,l), (370,420,l), (370,320,l) ); }, { closed = 1; nodes = ( (230,320,l), (230,420,l), (70,420,l), (70,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (530,320,l), (530,420,l), (370,420,l), (370,320,l) ); }, { closed = 1; nodes = ( (230,320,l), (230,420,l), (70,420,l), (70,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (530,320,l), (530,420,l), (370,420,l), (370,320,l) ); }, { closed = 1; nodes = ( (230,320,l), (230,420,l), (70,420,l), (70,320,l) ); } ); width = 600; } ); unicode = 9548; }, { glyphname = boxLightDoubleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-165,l), (350,290,l), (250,290,l), (250,-165,l) ); }, { closed = 1; nodes = ( (350,440,l), (350,893,l), (250,893,l), (250,440,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-165,l), (350,290,l), (250,290,l), (250,-165,l) ); }, { closed = 1; nodes = ( (350,440,l), (350,893,l), (250,893,l), (250,440,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-165,l), (350,290,l), (250,290,l), (250,-165,l) ); }, { closed = 1; nodes = ( (350,440,l), (350,893,l), (250,893,l), (250,440,l) ); } ); width = 600; } ); unicode = 9550; }, { glyphname = boxLightDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9591; }, { glyphname = boxLightDownAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9516; }, { glyphname = boxLightDownAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9488; }, { glyphname = boxLightDownAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (250,420,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9484; }, { glyphname = boxLightHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9472; }, { glyphname = boxLightLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9588; }, { glyphname = boxLightLeftAndHeavyRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; } ); unicode = 9596; }, { glyphname = boxLightQuadrupleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (575,320,l), (575,420,l), (475,420,l), (475,320,l) ); }, { closed = 1; nodes = ( (125,320,l), (125,420,l), (25,420,l), (25,320,l) ); }, { closed = 1; nodes = ( (275,320,l), (275,420,l), (175,420,l), (175,320,l) ); }, { closed = 1; nodes = ( (425,320,l), (425,420,l), (325,420,l), (325,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (575,320,l), (575,420,l), (475,420,l), (475,320,l) ); }, { closed = 1; nodes = ( (125,320,l), (125,420,l), (25,420,l), (25,320,l) ); }, { closed = 1; nodes = ( (275,320,l), (275,420,l), (175,420,l), (175,320,l) ); }, { closed = 1; nodes = ( (425,320,l), (425,420,l), (325,420,l), (325,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (575,320,l), (575,420,l), (475,420,l), (475,320,l) ); }, { closed = 1; nodes = ( (125,320,l), (125,420,l), (25,420,l), (25,320,l) ); }, { closed = 1; nodes = ( (275,320,l), (275,420,l), (175,420,l), (175,320,l) ); }, { closed = 1; nodes = ( (425,320,l), (425,420,l), (325,420,l), (325,320,l) ); } ); width = 600; } ); unicode = 9480; }, { glyphname = boxLightQuadrupleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,720,l), (350,935,l), (250,935,l), (250,720,l) ); }, { closed = 1; nodes = ( (350,-195,l), (350,20,l), (250,20,l), (250,-195,l) ); }, { closed = 1; nodes = ( (350,110,l), (350,325,l), (250,325,l), (250,110,l) ); }, { closed = 1; nodes = ( (350,415,l), (350,630,l), (250,630,l), (250,415,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,720,l), (350,935,l), (250,935,l), (250,720,l) ); }, { closed = 1; nodes = ( (350,-195,l), (350,20,l), (250,20,l), (250,-195,l) ); }, { closed = 1; nodes = ( (350,110,l), (350,325,l), (250,325,l), (250,110,l) ); }, { closed = 1; nodes = ( (350,415,l), (350,630,l), (250,630,l), (250,415,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,720,l), (350,935,l), (250,935,l), (250,720,l) ); }, { closed = 1; nodes = ( (350,-195,l), (350,20,l), (250,20,l), (250,-195,l) ); }, { closed = 1; nodes = ( (350,110,l), (350,325,l), (250,325,l), (250,110,l) ); }, { closed = 1; nodes = ( (350,415,l), (350,630,l), (250,630,l), (250,415,l) ); } ); width = 600; } ); unicode = 9482; }, { glyphname = boxLightRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (250,420,l), (250,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (250,420,l), (250,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (250,420,l), (250,320,l) ); } ); width = 600; } ); unicode = 9590; }, { glyphname = boxLightTripleDashHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (563,320,l), (563,420,l), (437,420,l), (437,320,l) ); }, { closed = 1; nodes = ( (163,320,l), (163,420,l), (37,420,l), (37,320,l) ); }, { closed = 1; nodes = ( (363,320,l), (363,420,l), (237,420,l), (237,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (563,320,l), (563,420,l), (437,420,l), (437,320,l) ); }, { closed = 1; nodes = ( (163,320,l), (163,420,l), (37,420,l), (37,320,l) ); }, { closed = 1; nodes = ( (363,320,l), (363,420,l), (237,420,l), (237,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (563,320,l), (563,420,l), (437,420,l), (437,320,l) ); }, { closed = 1; nodes = ( (163,320,l), (163,420,l), (37,420,l), (37,320,l) ); }, { closed = 1; nodes = ( (363,320,l), (363,420,l), (237,420,l), (237,320,l) ); } ); width = 600; } ); unicode = 9476; }, { glyphname = boxLightTripleDashVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,600,l), (350,938,l), (250,938,l), (250,600,l) ); }, { closed = 1; nodes = ( (350,-219,l), (350,118,l), (250,118,l), (250,-219,l) ); }, { closed = 1; nodes = ( (350,193,l), (350,527,l), (250,527,l), (250,193,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,600,l), (350,938,l), (250,938,l), (250,600,l) ); }, { closed = 1; nodes = ( (350,-219,l), (350,118,l), (250,118,l), (250,-219,l) ); }, { closed = 1; nodes = ( (350,193,l), (350,527,l), (250,527,l), (250,193,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,600,l), (350,938,l), (250,938,l), (250,600,l) ); }, { closed = 1; nodes = ( (350,-219,l), (350,118,l), (250,118,l), (250,-219,l) ); }, { closed = 1; nodes = ( (350,193,l), (350,527,l), (250,527,l), (250,193,l) ); } ); width = 600; } ); unicode = 9478; }, { glyphname = boxLightUp; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; } ); unicode = 9589; }, { glyphname = boxLightUpAndHeavyDown; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (200,420,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9597; }, { glyphname = boxLightUpAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9524; }, { glyphname = boxLightUpAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,320,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9496; }, { glyphname = boxLightUpAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,320,l) ); } ); width = 600; } ); unicode = 9492; }, { glyphname = boxLightVertical; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9474; }, { glyphname = boxLightVerticalAndHorizontal; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9532; }, { glyphname = boxLightVerticalAndLeft; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9508; }, { glyphname = boxLightVerticalAndRight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (350,420,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9500; }, { glyphname = boxRightDownHeavyAndLeftUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9542; }, { glyphname = boxRightHeavyAndLeftDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (250,470,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9518; }, { glyphname = boxRightHeavyAndLeftUpLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,270,l) ); } ); width = 600; } ); unicode = 9526; }, { glyphname = boxRightHeavyAndLeftVerticalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9534; }, { glyphname = boxRightLightAndLeftDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9521; }, { glyphname = boxRightLightAndLeftUpHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,270,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9529; }, { glyphname = boxRightLightAndLeftVerticalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9545; }, { glyphname = boxRightUpHeavyAndLeftDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (400,470,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9540; }, { glyphname = boxUpDoubleAndHorizontalSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9576; }, { glyphname = boxUpDoubleAndLeftSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,320,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,320,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,320,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9564; }, { glyphname = boxUpDoubleAndRightSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,320,l) ); } ); width = 600; } ); unicode = 9561; }, { glyphname = boxUpHeavyAndDownHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9536; }, { glyphname = boxUpHeavyAndHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9528; }, { glyphname = boxUpHeavyAndLeftDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9510; }, { glyphname = boxUpHeavyAndLeftLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,320,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l) ); } ); width = 600; } ); unicode = 9498; }, { glyphname = boxUpHeavyAndRightDownLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l), (250,320,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9502; }, { glyphname = boxUpHeavyAndRightLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,320,l) ); } ); width = 600; } ); unicode = 9494; }, { glyphname = boxUpLightAndDownHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9544; }, { glyphname = boxUpLightAndHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9527; }, { glyphname = boxUpLightAndLeftDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (200,270,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9514; }, { glyphname = boxUpLightAndLeftHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,270,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l) ); } ); width = 600; } ); unicode = 9497; }, { glyphname = boxUpLightAndRightDownHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (200,470,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9506; }, { glyphname = boxUpLightAndRightHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,270,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,270,l) ); } ); width = 600; } ); unicode = 9493; }, { glyphname = boxUpSingleAndHorizontalDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l) ); }, { closed = 1; nodes = ( (620,220,l), (620,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; } ); unicode = 9575; }, { glyphname = boxUpSingleAndLeftDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,220,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,220,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,220,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l) ); } ); width = 600; } ); unicode = 9563; }, { glyphname = boxUpSingleAndRightDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,220,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,220,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,220,l) ); } ); width = 600; } ); unicode = 9560; }, { glyphname = boxVerticalDoubleAndHorizontalSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,320,l), (350,320,l), (350,-400,l), (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,420,l), (250,420,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9579; }, { glyphname = boxVerticalDoubleAndLeftSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,420,l), (-20,420,l), (-20,320,l), (150,320,l), (150,-400,l) ); }, { closed = 1; nodes = ( (450,-400,l), (450,1120,l), (350,1120,l), (350,-400,l) ); } ); width = 600; } ); unicode = 9570; }, { glyphname = boxVerticalDoubleAndRightSingle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (450,-400,l), (450,320,l), (620,320,l), (620,420,l), (450,420,l), (450,1120,l), (350,1120,l), (350,-400,l) ); }, { closed = 1; nodes = ( (250,-400,l), (250,1120,l), (150,1120,l), (150,-400,l) ); } ); width = 600; } ); unicode = 9567; }, { glyphname = boxVerticalHeavyAndHorizontalLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9538; }, { glyphname = boxVerticalHeavyAndLeftLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,1120,l), (200,1120,l), (200,420,l), (-20,420,l), (-20,320,l), (200,320,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9512; }, { glyphname = boxVerticalHeavyAndRightLight; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (400,-400,l), (400,320,l), (620,320,l), (620,420,l), (400,420,l), (400,1120,l), (200,1120,l), (200,-400,l) ); } ); width = 600; } ); unicode = 9504; }, { glyphname = boxVerticalLightAndHorizontalHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9535; }, { glyphname = boxVerticalLightAndLeftHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,470,l), (-20,470,l), (-20,270,l), (250,270,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9509; }, { glyphname = boxVerticalLightAndRightHeavy; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,270,l), (620,270,l), (620,470,l), (350,470,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9501; }, { glyphname = boxVerticalSingleAndHorizontalDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9578; }, { glyphname = boxVerticalSingleAndLeftDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,1120,l), (250,1120,l), (250,520,l), (-20,520,l), (-20,420,l), (250,420,l), (250,320,l), (-20,320,l), (-20,220,l), (250,220,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9569; }, { glyphname = boxVerticalSingleAndRightDouble; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (350,-400,l), (350,220,l), (620,220,l), (620,320,l), (350,320,l), (350,420,l), (620,420,l), (620,520,l), (350,520,l), (350,1120,l), (250,1120,l), (250,-400,l) ); } ); width = 600; } ); unicode = 9566; }, { glyphname = APLiota; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = iota; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = iota; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = iota; } ); width = 600; } ); unicode = 9075; }, { glyphname = APLrho; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (143,-180,l), (167,-30,l), (184,105,l), (219,105,l), (189,140,l), (174,45,o), (220,-10,o), (311,-10,cs), (422,-10,o), (508,74,o), (528,205,cs), (551,345,ls), (571,475,o), (490,560,o), (348,560,cs), (206,560,o), (97,475,o), (77,345,cs), (-7,-180,l) ); }, { closed = 1; nodes = ( (223,120,o), (196,153,o), (205,210,cs), (226,340,ls), (235,398,o), (271,430,o), (327,430,cs), (383,430,o), (409,398,o), (400,340,cs), (379,210,ls), (370,152,o), (334,120,o), (278,120,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (111,-180,l), (137,-20,l), (155,105,l), (175,105,l), (160,126,l), (147,43,o), (196,-10,o), (286,-10,cs), (397,-10,o), (477,68,o), (497,195,cs), (522,356,ls), (542,483,o), (477,560,o), (348,560,cs), (219,560,o), (126,482,o), (106,356,cs), (21,-180,l) ); }, { closed = 1; nodes = ( (195,68,o), (159,117,o), (172,200,cs), (195,350,ls), (209,435,o), (258,482,o), (334,482,cs), (410,482,o), (445,435,o), (431,350,cs), (408,200,ls), (394,115,o), (345,68,o), (269,68,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (87,-180,l), (116,0,l), (128,75,l), (146,75,l), (128,140,l), (114,50,o), (170,-10,o), (267,-10,cs), (376,-10,o), (462,70,o), (481,190,cs), (508,361,ls), (527,482,o), (465,560,o), (348,560,cs), (228,560,o), (142,484,o), (123,361,cs), (37,-180,l) ); }, { closed = 1; nodes = ( (174,33,o), (130,91,o), (146,190,cs), (173,361,ls), (188,458,o), (251,517,o), (341,517,cs), (430,517,o), (474,459,o), (458,361,cs), (431,190,ls), (415,91,o), (353,33,o), (264,33,cs) ); } ); width = 600; } ); unicode = 9076; }, { glyphname = APLtildedieresis; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (586,-90); ref = dieresiscomb; }, { ref = asciitilde; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (586,-90); ref = dieresiscomb; }, { ref = asciitilde; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (585,-90); ref = dieresiscomb; }, { ref = asciitilde; } ); width = 600; } ); unicode = 9064; }, { glyphname = warningSign; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (302,96,ls), (322,96,o), (335,109,o), (335,130,cs), (335,151,o), (322,164,o), (302,164,cs), (300,164,ls), (280,164,o), (267,151,o), (267,130,cs), (267,109,o), (280,96,o), (300,96,cs) ); }, { closed = 1; nodes = ( (310,204,l), (325,311,l), (325,368,l), (275,368,l), (275,311,l), (290,204,l) ); }, { closed = 1; nodes = ( (530,0,ls), (576,0,o), (595,30,o), (574,71,cs), (341,529,ls), (318,573,o), (282,573,o), (259,529,cs), (26,71,ls), (5,30,o), (24,0,o), (70,0,cs) ); }, { closed = 1; nodes = ( (300,497,l), (527,50,l), (73,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (302,96,ls), (322,96,o), (335,109,o), (335,130,cs), (335,151,o), (322,164,o), (302,164,cs), (300,164,ls), (280,164,o), (267,151,o), (267,130,cs), (267,109,o), (280,96,o), (300,96,cs) ); }, { closed = 1; nodes = ( (310,204,l), (325,311,l), (325,368,l), (275,368,l), (275,311,l), (290,204,l) ); }, { closed = 1; nodes = ( (530,0,ls), (576,0,o), (595,30,o), (574,71,cs), (341,529,ls), (318,573,o), (282,573,o), (259,529,cs), (26,71,ls), (5,30,o), (24,0,o), (70,0,cs) ); }, { closed = 1; nodes = ( (300,497,l), (527,50,l), (73,50,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (302,96,ls), (322,96,o), (335,109,o), (335,130,cs), (335,151,o), (322,164,o), (302,164,cs), (300,164,ls), (280,164,o), (267,151,o), (267,130,cs), (267,109,o), (280,96,o), (300,96,cs) ); }, { closed = 1; nodes = ( (310,204,l), (325,311,l), (325,368,l), (275,368,l), (275,311,l), (290,204,l) ); }, { closed = 1; nodes = ( (530,0,ls), (576,0,o), (595,30,o), (574,71,cs), (341,529,ls), (318,573,o), (282,573,o), (259,529,cs), (26,71,ls), (5,30,o), (24,0,o), (70,0,cs) ); }, { closed = 1; nodes = ( (300,497,l), (527,50,l), (73,50,l) ); } ); width = 600; } ); unicode = 9888; }, { glyphname = highVoltageSign; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (20,310,l), (295,310,l), (50,-110,l), (580,440,l), (290,440,l), (470,840,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (20,310,l), (295,310,l), (50,-110,l), (580,440,l), (290,440,l), (470,840,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (19,310,l), (294,310,l), (49,-110,l), (579,440,l), (289,440,l), (469,840,l) ); } ); width = 600; } ); unicode = 9889; }, { glyphname = checkmark; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (241,141,l), (548,586,l), (510,612,l), (236,216,l), (79,372,l), (44,337,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (253,115,l), (564,574,l), (495,622,l), (244,252,l), (100,394,l), (37,328,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (249,75,l), (580,563,l), (463,643,l), (230,300,l), (118,410,l), (16,308,l) ); } ); width = 600; } ); unicode = 10003; }, { glyphname = multiplicationX; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (298,300,l), (487,111,l), (521,145,l), (332,334,l), (521,523,l), (489,555,l), (300,366,l), (111,555,l), (77,521,l), (266,332,l), (79,145,l), (111,113,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (299,277,l), (476,100,l), (534,158,l), (357,335,l), (533,511,l), (477,567,l), (301,391,l), (124,568,l), (66,510,l), (243,333,l), (67,157,l), (123,101,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (299,233,l), (454,78,l), (556,180,l), (401,335,l), (555,489,l), (455,589,l), (301,435,l), (146,590,l), (44,488,l), (199,333,l), (45,179,l), (145,79,l) ); } ); width = 600; } ); unicode = 10005; }, { glyphname = ballotX; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (299,327,l), (524,102,l), (558,136,l), (333,361,l), (557,585,l), (525,617,l), (301,393,l), (76,618,l), (42,584,l), (267,359,l), (43,135,l), (75,103,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (299,303,l), (511,91,l), (569,149,l), (357,361,l), (568,571,l), (511,628,l), (301,417,l), (89,629,l), (31,571,l), (243,359,l), (32,149,l), (89,92,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (299,258,l), (486,71,l), (588,173,l), (401,360,l), (587,546,l), (487,646,l), (301,460,l), (114,647,l), (12,545,l), (199,358,l), (13,172,l), (113,72,l) ); } ); width = 600; } ); unicode = 10007; }, { glyphname = sixPointedBlackStar; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (210,360,l), (40,510,l), (255,437,l), (300,660,l), (344,438,l), (559,510,l), (389,360,l), (560,210,l), (345,283,l), (300,60,l), (255,283,l), (39,210,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (210,360,l), (40,510,l), (255,437,l), (300,660,l), (344,438,l), (559,510,l), (389,360,l), (560,210,l), (345,283,l), (300,60,l), (255,283,l), (39,210,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (210,360,l), (40,510,l), (255,437,l), (300,660,l), (344,438,l), (559,510,l), (389,360,l), (560,210,l), (345,283,l), (300,60,l), (255,283,l), (39,210,l) ); } ); width = 600; } ); unicode = 10038; }, { glyphname = at; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (323,-179,l), (340,-69,l), (270,-69,ls), (154,-69,o), (100,-5,o), (119,111,cs), (172,450,ls), (191,569,o), (264,635,o), (365,635,cs), (464,635,o), (509,586,o), (495,500,cs), (493,487,l), (483,410,l), (466,410,l), (479,400,l), (488,457,o), (450,495,o), (384,495,cs), (302,495,o), (250,434,o), (233,330,cs), (216,220,ls), (199,116,o), (233,55,o), (315,55,cs), (380,55,o), (431,94,o), (440,151,c), (425,140,l), (441,140,l), (429,65,l), (546,65,l), (615,500,ls), (637,638,o), (554,740,o), (388,740,cs), (208,740,o), (81,630,o), (52,450,cs), (-1,111,ls), (-30,-69,o), (67,-179,o), (253,-179,cs) ); }, { closed = 1; nodes = ( (339,140,o), (322,162,o), (331,220,cs), (348,330,ls), (356,381,o), (382,410,o), (421,410,cs), (459,410,o), (476,381,o), (468,330,cs), (451,220,ls), (441,161,o), (420,140,o), (378,140,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (322,-180,l), (334,-105,l), (264,-105,ls), (140,-105,o), (77,-23,o), (98,110,cs), (152,450,ls), (174,589,o), (257,670,o), (377,670,cs), (484,670,o), (532,608,o), (514,495,cs), (514,490,l), (504,410,l), (487,410,l), (499,399,l), (507,451,o), (471,485,o), (407,485,cs), (320,485,o), (264,431,o), (248,330,cs), (229,210,ls), (213,109,o), (252,55,o), (339,55,cs), (403,55,o), (450,89,o), (458,140,c), (438,130,l), (459,130,l), (448,65,l), (526,65,l), (594,495,ls), (618,647,o), (540,740,o), (388,740,cs), (220,740,o), (101,630,o), (72,450,cs), (18,110,ls), (-10,-67,o), (81,-180,o), (252,-180,cs) ); }, { closed = 1; nodes = ( (321,118,o), (299,147,o), (309,210,cs), (328,330,ls), (338,393,o), (369,422,o), (423,422,cs), (478,422,o), (498,394,o), (488,331,cs), (471,220,ls), (460,151,o), (430,118,o), (375,118,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (328,-179,l), (335,-134,l), (260,-134,ls), (128,-134,o), (65,-37,o), (89,116,cs), (141,445,ls), (167,603,o), (252,696,o), (381,696,cs), (493,696,o), (549,616,o), (528,485,cs), (527,480,l), (521,410,l), (494,410,l), (513,390,l), (522,451,o), (485,485,o), (411,485,cs), (325,485,o), (270,434,o), (255,340,cs), (234,210,ls), (218,110,o), (257,55,o), (343,55,cs), (413,55,o), (466,93,o), (475,150,c), (453,130,l), (477,130,l), (466,65,l), (511,65,l), (578,485,ls), (603,641,o), (529,740,o), (388,740,cs), (230,740,o), (120,628,o), (91,445,cs), (39,116,ls), (11,-64,o), (91,-179,o), (253,-179,cs) ); }, { closed = 1; nodes = ( (301,100,o), (273,137,o), (284,210,cs), (305,340,ls), (315,406,o), (355,440,o), (421,440,cs), (485,440,o), (515,404,o), (505,340,cs), (484,210,ls), (473,140,o), (431,100,o), (367,100,cs) ); } ); width = 600; } ); unicode = 64; }, { glyphname = ampersand; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (255,-10,o), (315,11,o), (365,51,c), (393,0,l), (536,0,l), (453,155,l), (587,360,l), (447,360,l), (390,271,l), (301,436,ls), (277,480,o), (263,518,o), (268,550,cs), (275,592,o), (307,620,o), (349,620,cs), (391,620,o), (415,592,o), (408,550,c), (543,550,l), (561,664,o), (491,740,o), (368,740,cs), (248,740,o), (157,668,o), (140,565,cs), (131,507,o), (147,449,o), (180,390,c), (205,443,l), (112,434,o), (48,367,o), (32,265,cs), (21,195,ls), (0,66,o), (61,-10,o), (189,-10,cs) ); }, { closed = 1; nodes = ( (177,110,o), (152,140,o), (161,195,cs), (172,265,ls), (177,298,o), (190,321,o), (209,335,c), (310,151,l), (286,125,o), (255,110,o), (222,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (249,-10,o), (316,24,o), (374,87,c), (423,0,l), (522,0,l), (430,161,l), (575,360,l), (481,360,l), (390,233,l), (255,470,ls), (236,504,o), (227,546,o), (233,579,cs), (241,630,o), (281,662,o), (336,662,cs), (397,662,o), (429,627,o), (420,569,c), (510,569,l), (527,674,o), (464,740,o), (348,740,cs), (240,740,o), (158,677,o), (143,581,cs), (135,533,o), (146,487,o), (178,431,cs), (184,421,l), (113,401,o), (66,350,o), (55,280,cs), (36,155,ls), (19,52,o), (75,-10,o), (184,-10,cs) ); }, { closed = 1; nodes = ( (145,70,o), (117,101,o), (126,155,cs), (145,280,ls), (152,324,o), (178,351,o), (220,358,c), (335,155,l), (297,102,o), (247,70,o), (202,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (254,-10,o), (328,33,o), (392,118,c), (464,0,l), (517,0,l), (422,161,l), (560,360,l), (510,360,l), (399,201,l), (257,443,ls), (227,494,o), (211,539,o), (218,580,cs), (228,641,o), (284,695,o), (351,695,cs), (421,695,o), (462,637,o), (451,570,c), (501,570,l), (517,667,o), (461,740,o), (358,740,cs), (259,740,o), (182,670,o), (168,580,cs), (160,531,o), (172,478,o), (214,411,c), (221,429,l), (137,420,o), (78,360,o), (63,266,cs), (46,155,ls), (29,52,o), (78,-10,o), (174,-10,cs) ); }, { closed = 1; nodes = ( (122,35,o), (84,84,o), (96,155,cs), (113,266,ls), (124,336,o), (170,382,o), (230,386,c), (368,158,l), (311,77,o), (248,35,o), (187,35,cs) ); } ); width = 600; } ); unicode = 38; }, { glyphname = paragraph; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (277,-180,l), (422,730,l), (312,730,ls), (198,730,o), (111,662,o), (95,560,cs), (82,480,ls), (66,378,o), (131,310,o), (245,310,c), (167,-180,l) ); }, { closed = 1; nodes = ( (457,-180,l), (602,730,l), (492,730,l), (347,-180,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (262,-180,l), (407,730,l), (327,730,ls), (213,730,o), (126,662,o), (110,560,cs), (97,480,ls), (81,378,o), (146,310,o), (260,310,c), (182,-180,l) ); }, { closed = 1; nodes = ( (432,-180,l), (577,730,l), (497,730,l), (352,-180,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (247,-180,l), (392,730,l), (342,730,ls), (240,730,o), (162,670,o), (148,580,cs), (129,460,ls), (115,370,o), (173,310,o), (275,310,c), (197,-180,l) ); }, { closed = 1; nodes = ( (417,-180,l), (562,730,l), (512,730,l), (367,-180,l) ); } ); width = 600; } ); unicode = 182; }, { glyphname = section; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (245,-155,ls), (398,-155,o), (497,-88,o), (514,19,cs), (530,118,o), (456,166,o), (397,175,c), (398,182,l), (490,189,o), (549,237,o), (561,314,cs), (574,395,o), (518,460,o), (404,485,cs), (304,507,ls), (259,517,o), (241,539,o), (246,570,cs), (252,605,o), (283,628,o), (339,628,cs), (369,628,ls), (416,628,o), (443,609,o), (445,588,c), (595,588,l), (598,685,o), (523,740,o), (387,740,cs), (357,740,ls), (213,740,o), (118,673,o), (101,566,cs), (86,475,o), (158,423,o), (217,410,c), (216,403,l), (124,395,o), (66,349,o), (54,271,cs), (41,191,o), (100,132,o), (210,108,cs), (300,88,ls), (354,76,o), (375,55,o), (370,23,cs), (363,-16,o), (323,-43,o), (263,-43,cs), (233,-43,ls), (188,-43,o), (155,-25,o), (151,2,c), (1,2,l), (-2,-98,o), (75,-155,o), (215,-155,cs) ); }, { closed = 1; nodes = ( (250,218,ls), (215,225,o), (196,259,o), (203,304,cs), (213,365,o), (252,398,o), (302,387,cs), (355,375,ls), (396,366,o), (418,331,o), (412,288,cs), (402,228,o), (359,195,o), (303,207,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (247,-154,ls), (378,-154,o), (465,-89,o), (481,15,cs), (498,117,o), (427,160,o), (370,163,c), (371,170,l), (451,170,o), (514,231,o), (526,308,cs), (539,389,o), (490,450,o), (398,470,cs), (311,489,ls), (253,502,o), (222,535,o), (229,578,cs), (236,628,o), (282,660,o), (350,660,cs), (380,660,ls), (432,660,o), (468,634,o), (472,595,c), (567,595,l), (567,682,o), (497,740,o), (392,740,cs), (362,740,ls), (237,740,o), (153,677,o), (138,579,cs), (121,473,o), (186,435,o), (240,436,c), (239,429,l), (164,422,o), (99,361,o), (87,285,cs), (75,207,o), (125,142,o), (215,124,cs), (304,105,ls), (368,91,o), (398,60,o), (390,12,cs), (382,-40,o), (335,-74,o), (259,-74,cs), (229,-74,ls), (173,-74,o), (133,-44,o), (128,0,c), (33,0,l), (33,-92,o), (108,-154,o), (217,-154,cs) ); }, { closed = 1; nodes = ( (242,200,ls), (197,209,o), (172,249,o), (181,300,cs), (191,368,o), (241,421,o), (298,409,cs), (369,394,ls), (415,384,o), (441,346,o), (433,299,cs), (422,228,o), (372,173,o), (315,185,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (270,-155,ls), (372,-155,o), (448,-93,o), (463,2,cs), (477,88,o), (424,135,o), (380,147,c), (381,151,l), (446,165,o), (499,225,o), (510,297,cs), (523,378,o), (477,438,o), (398,458,cs), (296,483,ls), (232,499,o), (200,537,o), (209,592,cs), (219,655,o), (273,695,o), (348,695,cs), (390,695,ls), (460,695,o), (503,657,o), (503,605,c), (553,605,l), (556,686,o), (497,740,o), (397,740,cs), (355,740,ls), (249,740,o), (172,682,o), (158,591,cs), (144,508,o), (200,463,o), (247,453,c), (246,449,l), (176,430,o), (123,373,o), (112,302,cs), (99,220,o), (145,161,o), (234,139,cs), (337,114,ls), (392,101,o), (422,52,o), (413,-6,cs), (403,-69,o), (351,-110,o), (278,-110,cs), (211,-110,ls), (142,-110,o), (98,-68,o), (97,-10,c), (47,-10,l), (43,-95,o), (103,-155,o), (203,-155,cs) ); }, { closed = 1; nodes = ( (250,188,ls), (185,204,o), (154,248,o), (163,303,cs), (175,378,o), (253,441,o), (313,426,cs), (384,409,l), (439,396,o), (469,347,o), (460,289,cs), (448,215,o), (378,156,o), (318,171,cs) ); } ); width = 600; } ); unicode = 167; }, { glyphname = copyright; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (426,110,o), (544,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (34,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,cs), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (380,245,o), (442,295,o), (454,370,c), (369,370,l), (364,340,o), (341,320,o), (312,320,cs), (282,320,o), (265,340,o), (270,370,cs), (287,480,ls), (292,510,o), (315,530,o), (345,530,cs), (374,530,o), (391,510,o), (386,480,c), (471,480,l), (483,555,o), (437,605,o), (357,605,cs), (276,605,o), (214,555,o), (202,480,cs), (185,370,ls), (173,295,o), (219,245,o), (300,245,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (426,110,o), (544,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (34,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,cs), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (374,245,o), (431,291,o), (442,360,c), (377,360,l), (371,324,o), (344,300,o), (309,300,cs), (273,300,o), (252,324,o), (258,360,cs), (279,490,ls), (284,526,o), (312,550,o), (348,550,cs), (383,550,o), (403,526,o), (398,490,c), (463,490,l), (474,559,o), (431,605,o), (357,605,cs), (282,605,o), (225,559,o), (214,490,cs), (193,360,ls), (182,291,o), (225,245,o), (300,245,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (422,110,o), (536,205,o), (559,350,cs), (583,500,ls), (606,645,o), (522,740,o), (373,740,cs), (224,740,o), (110,645,o), (87,500,cs), (63,350,ls), (40,205,o), (124,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (157,148,o), (87,229,o), (106,350,cs), (130,500,ls), (149,621,o), (245,702,o), (367,702,cs), (489,702,o), (559,621,o), (540,500,cs), (516,350,ls), (497,229,o), (401,148,o), (279,148,cs) ); }, { closed = 1; nodes = ( (368,245,o), (421,291,o), (432,360,c), (387,360,l), (380,315,o), (347,285,o), (306,285,cs), (264,285,o), (241,315,o), (248,360,cs), (269,490,ls), (276,535,o), (308,565,o), (350,565,cs), (391,565,o), (415,535,o), (408,490,c), (453,490,l), (464,559,o), (425,605,o), (357,605,cs), (288,605,o), (235,559,o), (224,490,cs), (203,360,ls), (192,291,o), (231,245,o), (300,245,cs) ); } ); width = 600; } ); unicode = 169; }, { glyphname = registered; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (426,110,o), (543,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (33,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,c), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (256,250,l), (277,385,l), (317,385,l), (351,250,l), (433,250,l), (383,426,l), (349,387,l), (410,395,o), (455,432,o), (465,490,cs), (475,556,o), (431,600,o), (355,600,cs), (231,600,l), (176,250,l) ); }, { closed = 1; nodes = ( (302,540,l), (346,540,ls), (374,540,o), (389,522,o), (384,495,cs), (380,468,o), (359,450,o), (331,450,cs), (287,450,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (426,110,o), (543,206,o), (566,350,cs), (590,500,ls), (613,644,o), (526,740,o), (373,740,cs), (220,740,o), (103,644,o), (80,500,cs), (56,350,ls), (33,206,o), (120,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (162,160,o), (93,236,o), (111,350,cs), (135,500,ls), (153,614,o), (246,690,o), (365,690,cs), (485,690,o), (553,614,o), (535,500,cs), (511,350,ls), (493,236,o), (401,160,o), (281,160,cs) ); }, { closed = 1; nodes = ( (246,250,l), (268,390,l), (322,390,l), (360,250,l), (423,250,l), (369,440,l), (353,393,l), (408,403,o), (446,440,o), (455,495,cs), (466,559,o), (427,600,o), (355,600,cs), (241,600,l), (186,250,l) ); }, { closed = 1; nodes = ( (293,550,l), (347,550,ls), (382,550,o), (400,530,o), (394,495,cs), (389,460,o), (365,440,o), (330,440,cs), (276,440,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (422,110,o), (536,205,o), (559,350,cs), (583,500,ls), (606,645,o), (522,740,o), (373,740,cs), (224,740,o), (110,645,o), (87,500,cs), (63,350,ls), (40,205,o), (124,110,o), (273,110,cs) ); }, { closed = 1; nodes = ( (157,148,o), (87,229,o), (106,350,c), (130,500,ls), (149,621,o), (245,702,o), (367,702,cs), (489,702,o), (559,621,o), (540,500,cs), (516,350,ls), (497,229,o), (401,148,o), (279,148,cs) ); }, { closed = 1; nodes = ( (241,250,l), (264,395,l), (323,395,l), (364,250,l), (411,250,l), (359,424,l), (352,398,l), (402,408,o), (438,447,o), (447,498,cs), (457,560,o), (420,600,o), (356,600,cs), (251,600,l), (196,250,l) ); }, { closed = 1; nodes = ( (290,560,l), (350,560,ls), (390,560,o), (413,534,o), (407,497,cs), (401,460,o), (370,435,o), (330,435,cs), (270,435,l) ); } ); width = 600; } ); unicode = 174; }, { glyphname = trademark; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (195,370,l), (241,665,l), (341,665,l), (352,730,l), (87,730,l), (76,665,l), (171,665,l), (125,370,l) ); }, { closed = 1; nodes = ( (384,370,l), (409,531,ls), (415,571,o), (420,648,o), (421,695,c), (423,670,o), (427,624,o), (432,590,cs), (444,517,l), (504,517,l), (536,590,ls), (551,624,o), (571,673,o), (581,700,c), (566,646,o), (545,562,o), (539,525,cs), (515,370,l), (580,370,l), (637,730,l), (552,730,l), (507,628,ls), (499,608,o), (487,576,o), (481,557,c), (480,576,o), (478,608,o), (475,628,cs), (463,730,l), (376,730,l), (319,370,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (190,370,l), (239,680,l), (339,680,l), (347,730,l), (87,730,l), (79,680,l), (179,680,l), (130,370,l) ); }, { closed = 1; nodes = ( (380,370,l), (415,591,ls), (420,628,o), (423,675,o), (424,700,c), (428,673,o), (432,633,o), (434,621,cs), (451,517,l), (502,517,l), (548,620,ls), (554,632,o), (572,673,o), (584,700,c), (577,675,o), (565,628,o), (560,591,cs), (525,370,l), (580,370,l), (637,730,l), (559,730,l), (509,628,ls), (499,609,o), (489,576,o), (484,557,c), (484,576,o), (483,609,o), (479,628,cs), (462,730,l), (382,730,l), (325,370,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (178,370,l), (230,699,l), (335,699,l), (340,730,l), (94,730,l), (89,699,l), (194,699,l), (142,370,l) ); }, { closed = 1; nodes = ( (365,370,l), (401,601,ls), (405,627,o), (411,678,o), (414,710,c), (420,686,o), (428,646,o), (433,621,cs), (455,528,l), (497,528,l), (544,620,ls), (557,644,o), (578,685,o), (591,710,c), (584,678,o), (574,627,o), (570,601,cs), (534,370,l), (570,370,l), (627,730,l), (574,730,l), (518,628,ls), (507,608,o), (489,570,o), (480,548,c), (475,570,o), (468,608,o), (463,628,cs), (440,730,l), (386,730,l), (329,370,l) ); } ); width = 600; } ); unicode = 8482; }, { glyphname = degree; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (417,450,o), (486,508,o), (500,595,cs), (514,682,o), (463,740,o), (373,740,cs), (283,740,o), (214,682,o), (200,595,cs), (186,508,o), (237,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (293,515,o), (268,547,o), (275,595,cs), (283,643,o), (318,675,o), (363,675,cs), (408,675,o), (433,643,o), (425,595,cs), (418,547,o), (383,515,o), (338,515,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (417,450,o), (486,508,o), (500,595,cs), (514,682,o), (463,740,o), (373,740,cs), (283,740,o), (214,682,o), (200,595,cs), (186,508,o), (237,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (281,501,o), (251,539,o), (260,595,cs), (269,652,o), (311,690,o), (364,690,cs), (419,690,o), (449,652,o), (440,595,cs), (431,539,o), (389,501,o), (334,501,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (414,450,o), (481,508,o), (495,595,cs), (509,682,o), (460,740,o), (373,740,cs), (286,740,o), (219,683,o), (205,595,cs), (191,508,o), (240,450,o), (327,450,cs) ); }, { closed = 1; nodes = ( (274,490,o), (240,532,o), (250,595,cs), (260,659,o), (307,701,o), (367,701,cs), (427,701,o), (460,659,o), (450,595,cs), (440,532,o), (394,490,o), (334,490,cs) ); } ); width = 600; } ); unicode = 176; }, { glyphname = minute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,465,l), (479,776,l), (299,776,l), (170,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (275,465,l), (454,776,l), (324,776,l), (195,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (260,465,l), (434,776,l), (344,776,l), (220,465,l) ); } ); width = 600; } ); unicode = 8242; }, { glyphname = second; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (465,465,l), (644,776,l), (464,776,l), (335,465,l) ); }, { closed = 1; nodes = ( (205,465,l), (384,776,l), (204,776,l), (75,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (425,465,l), (604,776,l), (474,776,l), (345,465,l) ); }, { closed = 1; nodes = ( (195,465,l), (374,776,l), (244,776,l), (115,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (405,465,l), (579,776,l), (489,776,l), (365,465,l) ); }, { closed = 1; nodes = ( (180,465,l), (354,776,l), (264,776,l), (140,465,l) ); } ); width = 600; } ); unicode = 8243; }, { glyphname = bar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,-110,l), (462,830,l), (312,830,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (284,-110,l), (432,830,l), (342,830,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (412,830,l), (362,830,l), (214,-110,l) ); } ); width = 600; } ); unicode = 124; }, { glyphname = brokenbar; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (402,450,l), (462,830,l), (312,830,l), (252,450,l) ); }, { closed = 1; nodes = ( (314,-110,l), (374,270,l), (224,270,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (372,450,l), (432,830,l), (342,830,l), (282,450,l) ); }, { closed = 1; nodes = ( (284,-110,l), (344,270,l), (254,270,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (352,450,l), (412,830,l), (362,830,l), (302,450,l) ); }, { closed = 1; nodes = ( (264,-110,l), (324,270,l), (274,270,l), (214,-110,l) ); } ); width = 600; } ); unicode = 166; }, { glyphname = dagger; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,-110,l), (407,480,l), (562,480,l), (584,620,l), (429,620,l), (462,830,l), (312,830,l), (279,620,l), (124,620,l), (102,480,l), (257,480,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (284,-110,l), (383,520,l), (558,520,l), (571,600,l), (396,600,l), (432,830,l), (342,830,l), (306,600,l), (131,600,l), (118,520,l), (293,520,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (367,540,l), (552,540,l), (559,585,l), (374,585,l), (412,830,l), (362,830,l), (324,585,l), (139,585,l), (132,540,l), (317,540,l), (214,-110,l) ); } ); width = 600; } ); unicode = 8224; }, { glyphname = literSign; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (392,-10,o), (467,49,o), (496,93,c), (396,170,l), (383,151,o), (353,125,o), (321,125,cs), (287,125,o), (269,146,o), (275,180,cs), (334,555,ls), (339,590,o), (359,610,o), (388,610,cs), (417,610,o), (429,590,o), (424,555,cs), (414,490,ls), (407,450,o), (376,417,o), (328,399,cs), (38,295,l), (62,181,l), (355,287,ls), (464,326,o), (540,404,o), (554,490,cs), (564,555,ls), (581,666,o), (519,740,o), (408,740,cs), (291,740,o), (201,666,o), (184,555,cs), (125,180,ls), (106,62,o), (181,-10,o), (299,-10,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (379,0,o), (446,58,o), (472,101,c), (411,143,l), (392,117,o), (351,82,o), (306,82,cs), (258,82,o), (234,111,o), (241,160,cs), (309,585,ls), (316,631,o), (346,658,o), (390,658,cs), (435,658,o), (456,632,o), (449,585,cs), (435,500,ls), (426,442,o), (388,398,o), (329,377,cs), (72,288,l), (89,207,l), (344,299,ls), (443,334,o), (511,410,o), (525,500,cs), (539,585,ls), (554,679,o), (500,740,o), (403,740,cs), (307,740,o), (233,678,o), (219,585,cs), (151,160,ls), (136,62,o), (190,0,o), (293,0,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (369,0,o), (436,61,o), (461,107,c), (424,126,l), (405,91,o), (357,45,o), (291,45,cs), (233,45,o), (205,90,o), (216,155,cs), (285,595,ls), (295,657,o), (337,695,o), (396,695,cs), (455,695,o), (485,658,o), (475,595,cs), (459,490,ls), (450,435,o), (408,389,o), (344,367,cs), (73,273,l), (83,231,l), (353,327,ls), (441,358,o), (497,419,o), (509,490,cs), (525,595,ls), (539,685,o), (493,740,o), (403,740,cs), (313,740,o), (249,685,o), (235,595,cs), (166,155,ls), (150,58,o), (192,0,o), (284,0,cs) ); } ); width = 600; } ); unicode = 8467; }, { glyphname = daggerdbl; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (314,-110,l), (348,110,l), (503,110,l), (526,250,l), (371,250,l), (407,480,l), (562,480,l), (584,620,l), (429,620,l), (462,830,l), (312,830,l), (279,620,l), (124,620,l), (102,480,l), (257,480,l), (221,250,l), (66,250,l), (43,110,l), (198,110,l), (164,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (284,-110,l), (323,140,l), (498,140,l), (511,220,l), (336,220,l), (382,510,l), (557,510,l), (569,590,l), (394,590,l), (432,830,l), (342,830,l), (304,590,l), (129,590,l), (117,510,l), (292,510,l), (246,220,l), (71,220,l), (58,140,l), (233,140,l), (194,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (306,160,l), (491,160,l), (498,205,l), (313,205,l), (365,529,l), (550,529,l), (557,574,l), (372,574,l), (412,830,l), (362,830,l), (322,574,l), (137,574,l), (130,529,l), (315,529,l), (263,205,l), (78,205,l), (71,160,l), (256,160,l), (214,-110,l) ); } ); width = 600; } ); unicode = 8225; }, { glyphname = numero; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (96,0,l), (123,170,ls), (137,258,o), (148,484,o), (152,630,c), (154,562,o), (157,451,o), (161,394,cs), (186,0,l), (324,0,l), (440,730,l), (320,730,l), (293,560,ls), (279,472,o), (269,246,o), (266,100,c), (262,173,o), (257,288,o), (254,337,cs), (230,730,l), (92,730,l), (-24,0,l) ); }, { closed = 1; nodes = ( (556,300,o), (600,338,o), (609,395,cs), (648,645,ls), (657,702,o), (625,740,o), (568,740,cs), (511,740,o), (467,702,o), (458,645,cs), (419,395,ls), (410,338,o), (442,300,o), (499,300,cs) ); }, { closed = 1; nodes = ( (498,370,o), (491,378,o), (493,391,cs), (534,649,ls), (536,662,o), (545,670,o), (557,670,cs), (569,670,o), (576,662,o), (574,649,cs), (533,391,ls), (531,378,o), (522,370,o), (510,370,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (56,0,l), (126,440,ls), (135,495,o), (143,590,o), (148,646,c), (152,590,o), (160,499,o), (164,454,cs), (208,0,l), (301,0,l), (417,730,l), (347,730,l), (277,290,ls), (269,239,o), (261,143,o), (256,85,c), (253,143,o), (246,235,o), (242,277,cs), (195,730,l), (102,730,l), (-14,0,l) ); }, { closed = 1; nodes = ( (553,300,o), (600,342,o), (610,405,cs), (647,635,ls), (657,698,o), (622,740,o), (568,740,cs), (514,740,o), (467,698,o), (457,635,cs), (420,405,ls), (410,342,o), (445,300,o), (499,300,cs) ); }, { closed = 1; nodes = ( (489,355,o), (474,365,o), (479,395,cs), (518,645,ls), (522,669,o), (541,685,o), (559,685,cs), (577,685,o), (592,669,o), (588,645,cs), (549,395,ls), (544,365,o), (525,355,o), (507,355,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (43,0,l), (130,550,ls), (137,594,o), (144,644,o), (147,670,c), (150,634,o), (156,571,o), (161,529,cs), (225,0,l), (285,0,l), (401,730,l), (359,730,l), (272,180,ls), (265,136,o), (258,85,o), (256,59,c), (254,90,o), (248,148,o), (243,190,cs), (177,730,l), (117,730,l), (1,0,l) ); }, { closed = 1; nodes = ( (559,300,o), (599,336,o), (608,390,cs), (649,650,ls), (658,704,o), (628,740,o), (573,740,cs), (518,740,o), (478,704,o), (469,650,cs), (428,390,ls), (419,336,o), (449,300,o), (504,300,cs) ); }, { closed = 1; nodes = ( (482,338,o), (465,360,o), (470,390,cs), (511,650,ls), (516,680,o), (539,702,o), (567,702,cs), (595,702,o), (612,680,o), (607,650,cs), (566,390,ls), (561,360,o), (538,338,o), (510,338,cs) ); } ); width = 600; } ); unicode = 8470; }, { glyphname = estimated; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (60,95,o), (157,-10,o), (300,-10,cs), (404,-10,o), (495,52,o), (527,145,c), (472,145,l), (444,79,o), (375,35,o), (300,35,cs), (226,35,o), (176,72,o), (160,100,c), (160,359,l), (540,359,l), (540,480,ls), (540,637,o), (445,740,o), (300,740,cs), (157,740,o), (60,635,o), (60,480,cs), (60,250,ls) ); }, { closed = 1; nodes = ( (160,630,l), (176,658,o), (226,695,o), (300,695,cs), (374,695,o), (424,658,o), (440,630,c), (440,409,l), (160,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (60,95,o), (157,-10,o), (300,-10,cs), (404,-10,o), (495,52,o), (527,145,c), (477,145,l), (450,79,o), (379,35,o), (300,35,cs), (226,35,o), (176,72,o), (160,100,c), (160,359,l), (540,359,l), (540,480,ls), (540,637,o), (445,740,o), (300,740,cs), (157,740,o), (60,635,o), (60,480,cs), (60,250,ls) ); }, { closed = 1; nodes = ( (160,630,l), (176,658,o), (226,695,o), (300,695,cs), (374,695,o), (424,658,o), (440,630,c), (440,409,l), (160,409,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (60,95,o), (157,-10,o), (300,-10,cs), (404,-10,o), (495,52,o), (527,145,c), (477,145,l), (450,79,o), (379,35,o), (300,35,cs), (226,35,o), (176,72,o), (160,100,c), (160,359,l), (540,359,l), (540,480,ls), (540,637,o), (445,740,o), (300,740,cs), (157,740,o), (60,635,o), (60,480,cs), (60,250,ls) ); }, { closed = 1; nodes = ( (160,630,l), (176,658,o), (226,695,o), (300,695,cs), (374,695,o), (424,658,o), (440,630,c), (440,409,l), (160,409,l) ); } ); width = 600; } ); unicode = 8494; }, { glyphname = "bell-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = B; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = B; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = B; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9223; }, { glyphname = "cancel-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (201,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9240; }, { glyphname = "carriageReturn-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = R; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = R; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = R; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9229; }, { glyphname = control; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (154,370,l), (298,504,l), (444,370,l), (510,370,l), (323,550,l), (277,550,l), (90,370,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (170,370,l), (298,488,l), (429,370,l), (540,370,l), (350,550,l), (250,550,l), (60,370,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (211,370,l), (298,450,l), (389,370,l), (580,370,l), (391,550,l), (209,550,l), (20,370,l) ); } ); width = 600; } ); unicode = 8963; }, { glyphname = "dataLinkEscape-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = E; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = E; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = E; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9232; }, { glyphname = "delete-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9249; }, { glyphname = "deviceControlFour-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = four; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = four; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = four; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9236; }, { glyphname = "deviceControlOne-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = one; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = one; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = one; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9233; }, { glyphname = "deviceControlThree-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = three; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = three; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = three; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9235; }, { glyphname = "deviceControlTwo-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = two; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = two; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = D; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = C; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = two; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9234; }, { glyphname = "endOfMedium-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = M; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = M; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = M; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9241; }, { glyphname = "endOfText-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9219; }, { glyphname = "endOfTransmission-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = T; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9220; }, { glyphname = "endOfTransmissionBlock-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9239; }, { glyphname = "enquiry-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = Q; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = Q; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = Q; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9221; }, { glyphname = "escape-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = C; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = C; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = E; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = C; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9243; }, { glyphname = "fileSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9244; }, { glyphname = "formFeed-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = F; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9228; }, { glyphname = "groupSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = G; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = G; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = G; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9245; }, { glyphname = "horizontalTabulation-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = H; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = H; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = H; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9225; }, { glyphname = house; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (519,0,l), (519,347,l), (300,560,l), (81,347,l), (81,0,l) ); }, { closed = 1; nodes = ( (131,323,l), (300,488,l), (469,323,l), (469,50,l), (131,50,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (519,0,l), (519,347,l), (300,560,l), (81,347,l), (81,0,l) ); }, { closed = 1; nodes = ( (131,323,l), (300,488,l), (469,323,l), (469,50,l), (131,50,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (519,0,l), (519,347,l), (300,560,l), (81,347,l), (81,0,l) ); }, { closed = 1; nodes = ( (131,323,l), (300,488,l), (469,323,l), (469,50,l), (131,50,l) ); } ); width = 600; } ); unicode = 8962; }, { glyphname = optionKey; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (590,0,l), (590,45,l), (420,45,l), (215,550,l), (10,550,l), (10,505,l), (180,505,l), (385,0,l) ); }, { closed = 1; nodes = ( (590,505,l), (590,550,l), (386,550,l), (386,505,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (590,0,l), (590,80,l), (427,80,l), (233,550,l), (10,550,l), (10,470,l), (173,470,l), (367,0,l) ); }, { closed = 1; nodes = ( (590,470,l), (590,550,l), (386,550,l), (386,470,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (590,0,l), (590,140,l), (440,140,l), (265,550,l), (10,550,l), (10,410,l), (161,410,l), (336,0,l) ); }, { closed = 1; nodes = ( (590,410,l), (590,550,l), (386,550,l), (386,410,l) ); } ); width = 600; } ); unicode = 8997; }, { glyphname = propellor; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (549,380,o), (585,416,o), (585,470,cs), (585,524,o), (549,560,o), (495,560,cs), (441,560,o), (405,524,o), (405,470,c), (447,470,l), (447,501,o), (466,522,o), (495,522,cs), (524,522,o), (543,501,o), (543,470,cs), (543,439,o), (524,418,o), (495,418,c), (495,380,l) ); }, { closed = 1; nodes = ( (159,-10,o), (195,26,o), (195,80,c), (153,80,l), (153,49,o), (134,28,o), (105,28,cs), (76,28,o), (57,49,o), (57,80,cs), (57,111,o), (76,132,o), (105,132,c), (105,170,l), (51,170,o), (15,134,o), (15,80,cs), (15,26,o), (51,-10,o), (105,-10,cs) ); }, { closed = 1; nodes = ( (195,80,l), (195,470,l), (153,470,l), (153,80,l) ); }, { closed = 1; nodes = ( (495,132,l), (495,170,l), (105,170,l), (105,132,l) ); }, { closed = 1; nodes = ( (549,-10,o), (585,26,o), (585,80,cs), (585,134,o), (549,170,o), (495,170,c), (495,132,l), (524,132,o), (543,111,o), (543,80,cs), (543,49,o), (524,28,o), (495,28,cs), (466,28,o), (447,49,o), (447,80,c), (405,80,l), (405,26,o), (441,-10,o), (495,-10,cs) ); }, { closed = 1; nodes = ( (105,418,l), (76,418,o), (57,439,o), (57,470,cs), (57,501,o), (76,522,o), (105,522,cs), (134,522,o), (153,501,o), (153,470,c), (195,470,l), (195,524,o), (159,560,o), (105,560,cs), (51,560,o), (15,524,o), (15,470,cs), (15,416,o), (51,380,o), (105,380,c) ); }, { closed = 1; nodes = ( (495,380,l), (495,418,l), (105,418,l), (105,380,l) ); }, { closed = 1; nodes = ( (447,80,l), (447,470,l), (405,470,l), (405,80,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (236,101,l), (236,450,l), (169,450,l), (169,101,l) ); }, { closed = 1; nodes = ( (125,144,l), (474,144,l), (474,211,l), (125,211,l) ); }, { closed = 1; nodes = ( (125,339,l), (474,339,l), (474,406,l), (125,406,l) ); }, { closed = 1; nodes = ( (431,101,l), (431,450,l), (364,450,l), (364,101,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,339,o), (585,383,o), (585,450,cs), (585,516,o), (541,560,o), (474,560,cs), (408,560,o), (364,516,o), (364,450,c), (431,450,l), (431,476,o), (448,493,o), (474,493,cs), (501,493,o), (518,476,o), (518,450,cs), (518,423,o), (501,406,o), (474,406,c), (474,339,l) ); }, { closed = 1; nodes = ( (192,-10,o), (236,34,o), (236,101,c), (169,101,l), (169,74,o), (152,57,o), (125,57,cs), (99,57,o), (82,74,o), (82,101,cs), (82,127,o), (99,144,o), (125,144,c), (125,211,l), (59,211,o), (15,167,o), (15,101,cs), (15,34,o), (59,-10,o), (125,-10,cs) ); }, { closed = 1; nodes = ( (236,101,l), (236,450,l), (169,450,l), (169,101,l) ); }, { closed = 1; nodes = ( (474,144,l), (474,211,l), (125,211,l), (125,144,l) ); }, { closed = 1; nodes = ( (541,-10,o), (585,34,o), (585,101,cs), (585,167,o), (541,211,o), (474,211,c), (474,144,l), (501,144,o), (518,127,o), (518,101,cs), (518,74,o), (501,57,o), (474,57,cs), (448,57,o), (431,74,o), (431,101,c), (364,101,l), (364,34,o), (408,-10,o), (474,-10,cs) ); }, { closed = 1; nodes = ( (125,406,l), (99,406,o), (82,423,o), (82,450,cs), (82,476,o), (99,493,o), (125,493,cs), (152,493,o), (169,476,o), (169,450,c), (236,450,l), (236,516,o), (192,560,o), (125,560,cs), (59,560,o), (15,516,o), (15,450,cs), (15,383,o), (59,339,o), (125,339,c) ); }, { closed = 1; nodes = ( (474,339,l), (474,406,l), (125,406,l), (125,339,l) ); }, { closed = 1; nodes = ( (431,101,l), (431,450,l), (364,450,l), (364,101,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (267,116,l), (267,434,l), (190,434,l), (190,116,l) ); }, { closed = 1; nodes = ( (458,308,l), (458,385,l), (141,385,l), (141,308,l) ); }, { closed = 1; nodes = ( (409,116,l), (409,434,l), (332,434,l), (332,116,l) ); }, { closed = 1; nodes = ( (458,165,l), (458,242,l), (141,242,l), (141,165,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (535,308,o), (585,358,o), (585,434,cs), (585,510,o), (535,560,o), (459,560,cs), (383,560,o), (333,510,o), (333,434,c), (410,434,l), (410,464,o), (429,483,o), (459,483,cs), (489,483,o), (508,464,o), (508,434,cs), (508,404,o), (489,385,o), (459,385,c), (459,308,l) ); }, { closed = 1; nodes = ( (217,-10,o), (267,40,o), (267,116,c), (190,116,l), (190,86,o), (171,67,o), (141,67,cs), (111,67,o), (92,86,o), (92,116,cs), (92,146,o), (111,165,o), (141,165,c), (141,242,l), (65,242,o), (15,192,o), (15,116,cs), (15,40,o), (65,-10,o), (141,-10,cs) ); }, { closed = 1; nodes = ( (267,116,l), (267,434,l), (190,434,l), (190,116,l) ); }, { closed = 1; nodes = ( (459,165,l), (459,242,l), (141,242,l), (141,165,l) ); }, { closed = 1; nodes = ( (535,-10,o), (585,40,o), (585,116,cs), (585,192,o), (535,242,o), (459,242,c), (459,165,l), (489,165,o), (508,146,o), (508,116,cs), (508,86,o), (489,67,o), (459,67,cs), (429,67,o), (410,86,o), (410,116,c), (333,116,l), (333,40,o), (383,-10,o), (459,-10,cs) ); }, { closed = 1; nodes = ( (141,385,l), (111,385,o), (92,404,o), (92,434,cs), (92,464,o), (111,483,o), (141,483,cs), (171,483,o), (190,464,o), (190,434,c), (267,434,l), (267,510,o), (217,560,o), (141,560,cs), (65,560,o), (15,510,o), (15,434,cs), (15,358,o), (65,308,o), (141,308,c) ); }, { closed = 1; nodes = ( (459,308,l), (459,385,l), (141,385,l), (141,308,l) ); }, { closed = 1; nodes = ( (410,116,l), (410,434,l), (333,434,l), (333,116,l) ); } ); width = 600; } ); unicode = 8984; }, { glyphname = "lineFeed-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = L; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = F; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9226; }, { glyphname = "negativeAcknowledge-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = K; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = K; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = A; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = K; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9237; }, { glyphname = "newline-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9252; }, { glyphname = "null-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = N; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = L; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9216; }, { glyphname = powerSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,392,o), (585,471,o), (528,527,c), (500,556,o), (462,561,o), (440,539,cs), (419,518,o), (424,482,o), (451,452,cs), (485,415,o), (505,364,o), (505,305,cs), (505,183,o), (420,95,o), (300,95,cs), (180,95,o), (95,183,o), (95,305,cs), (95,364,o), (115,415,o), (149,452,cs), (176,482,o), (181,518,o), (160,539,cs), (138,561,o), (100,556,o), (72,527,cs), (16,470,o), (-20,392,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (330,225,o), (355,252,o), (355,285,cs), (355,665,ls), (355,698,o), (330,725,o), (300,725,cs), (270,725,o), (245,698,o), (245,665,cs), (245,285,ls), (245,252,o), (270,225,o), (300,225,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,392,o), (585,471,o), (528,527,c), (500,556,o), (462,561,o), (440,539,cs), (419,518,o), (424,482,o), (451,452,cs), (485,415,o), (505,364,o), (505,305,cs), (505,183,o), (420,95,o), (300,95,cs), (180,95,o), (95,183,o), (95,305,cs), (95,364,o), (115,415,o), (149,452,cs), (176,482,o), (181,518,o), (160,539,cs), (138,561,o), (100,556,o), (72,527,cs), (16,470,o), (-20,392,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (330,225,o), (355,252,o), (355,285,cs), (355,665,ls), (355,698,o), (330,725,o), (300,725,cs), (270,725,o), (245,698,o), (245,665,cs), (245,285,ls), (245,252,o), (270,225,o), (300,225,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,392,o), (585,471,o), (528,527,c), (500,556,o), (462,561,o), (440,539,cs), (419,518,o), (424,482,o), (451,452,cs), (485,415,o), (505,364,o), (505,305,cs), (505,183,o), (420,95,o), (300,95,cs), (180,95,o), (95,183,o), (95,305,cs), (95,364,o), (115,415,o), (149,452,cs), (176,482,o), (181,518,o), (160,539,cs), (138,561,o), (100,556,o), (72,527,cs), (16,470,o), (-20,392,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (330,225,o), (355,252,o), (355,285,cs), (355,665,ls), (355,698,o), (330,725,o), (300,725,cs), (270,725,o), (245,698,o), (245,665,cs), (245,285,ls), (245,252,o), (270,225,o), (300,225,cs) ); } ); width = 600; } ); unicode = 9211; }, { glyphname = powerOnOffSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); }, { closed = 1; nodes = ( (330,155,o), (355,182,o), (355,215,cs), (355,395,ls), (355,428,o), (331,455,o), (300,455,cs), (270,455,o), (245,428,o), (245,395,cs), (245,215,ls), (245,182,o), (270,155,o), (300,155,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); }, { closed = 1; nodes = ( (330,155,o), (355,182,o), (355,215,cs), (355,395,ls), (355,428,o), (331,455,o), (300,455,cs), (270,455,o), (245,428,o), (245,395,cs), (245,215,ls), (245,182,o), (270,155,o), (300,155,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); }, { closed = 1; nodes = ( (330,155,o), (355,182,o), (355,215,cs), (355,395,ls), (355,428,o), (331,455,o), (300,455,cs), (270,455,o), (245,428,o), (245,395,cs), (245,215,ls), (245,182,o), (270,155,o), (300,155,cs) ); } ); width = 600; } ); unicode = 9212; }, { glyphname = heavyCircle; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (478,-10,o), (620,129,o), (620,305,cs), (620,481,o), (478,620,o), (300,620,cs), (122,620,o), (-20,481,o), (-20,305,cs), (-20,129,o), (122,-10,o), (300,-10,cs) ); }, { closed = 1; nodes = ( (180,85,o), (85,183,o), (85,305,cs), (85,427,o), (180,525,o), (300,525,cs), (420,525,o), (515,427,o), (515,305,cs), (515,183,o), (420,85,o), (300,85,cs) ); } ); width = 600; } ); unicode = 11096; }, { glyphname = powerOnSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (330,-5,o), (355,22,o), (355,55,cs), (355,555,ls), (355,588,o), (330,615,o), (300,615,cs), (270,615,o), (245,588,o), (245,555,cs), (245,55,ls), (245,22,o), (270,-5,o), (300,-5,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (330,-5,o), (355,22,o), (355,55,cs), (355,555,ls), (355,588,o), (330,615,o), (300,615,cs), (270,615,o), (245,588,o), (245,555,cs), (245,55,ls), (245,22,o), (270,-5,o), (300,-5,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (330,-5,o), (355,22,o), (355,55,cs), (355,555,ls), (355,588,o), (330,615,o), (300,615,cs), (270,615,o), (245,588,o), (245,555,cs), (245,55,ls), (245,22,o), (270,-5,o), (300,-5,cs) ); } ); width = 600; } ); unicode = 9213; }, { glyphname = powerSleepSymbol; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (226,-41,o), (426,-39,o), (553,88,cs), (578,113,o), (599,141,o), (614,170,c), (498,110,o), (336,134,o), (242,228,cs), (150,320,o), (125,484,o), (185,599,c), (156,584,o), (128,563,o), (103,538,cs), (-24,411,o), (-26,210,o), (100,85,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (226,-41,o), (426,-39,o), (553,88,cs), (578,113,o), (599,141,o), (614,170,c), (498,110,o), (336,134,o), (242,228,cs), (150,320,o), (125,484,o), (185,599,c), (156,584,o), (128,563,o), (103,538,cs), (-24,411,o), (-26,210,o), (100,85,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (226,-41,o), (426,-39,o), (553,88,cs), (578,113,o), (599,141,o), (614,170,c), (498,110,o), (336,134,o), (242,228,cs), (150,320,o), (125,484,o), (185,599,c), (156,584,o), (128,563,o), (103,538,cs), (-24,411,o), (-26,210,o), (100,85,cs) ); } ); width = 600; } ); unicode = 9214; }, { glyphname = projective; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (505,505,l), (505,550,l), (95,550,l), (95,505,l) ); }, { pos = (0,-105); ref = control; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (515,470,l), (515,550,l), (85,550,l), (85,470,l) ); }, { pos = (0,-140); ref = control; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (520,430,l), (520,550,l), (80,550,l), (80,430,l) ); }, { pos = (0,-180); ref = control; } ); width = 600; } ); unicode = 8965; }, { glyphname = "recordSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = R; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = R; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = R; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9246; }, { glyphname = replacement; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (324,-11,o), (349,3,o), (370,31,cs), (572,290,ls), (591,314,o), (600,337,o), (600,360,cs), (600,383,o), (591,406,o), (573,430,cs), (370,697,ls), (349,726,o), (324,740,o), (300,740,cs), (276,740,o), (252,726,o), (230,697,cs), (27,430,ls), (9,407,o), (0,384,o), (0,360,cs), (0,337,o), (9,314,o), (28,290,cs), (230,31,ls), (252,3,o), (276,-11,o), (300,-11,cs) ); }, { closed = 1; nodes = ( (266,170,o), (253,184,o), (253,202,cs), (253,220,o), (266,234,o), (283,234,cs), (301,234,ls), (319,234,o), (332,220,o), (332,202,cs), (332,184,o), (319,170,o), (301,170,cs), (283,170,ls) ); }, { closed = 1; nodes = ( (264,367,l), (297,367,ls), (334,367,o), (358,392,o), (358,430,cs), (358,469,o), (334,491,o), (297,491,cs), (234,491,l), (234,541,l), (297,541,ls), (368,541,o), (412,499,o), (412,433,cs), (412,373,o), (375,333,o), (317,330,c), (317,277,l), (264,277,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (324,-11,o), (349,3,o), (370,31,cs), (572,290,ls), (591,314,o), (600,337,o), (600,360,cs), (600,383,o), (591,406,o), (573,430,cs), (370,697,ls), (349,726,o), (324,740,o), (300,740,cs), (276,740,o), (252,726,o), (230,697,cs), (27,430,ls), (9,407,o), (0,384,o), (0,360,cs), (0,337,o), (9,314,o), (28,290,cs), (230,31,ls), (252,3,o), (276,-11,o), (300,-11,cs) ); }, { closed = 1; nodes = ( (266,170,o), (253,184,o), (253,202,cs), (253,220,o), (266,234,o), (283,234,cs), (301,234,ls), (319,234,o), (332,220,o), (332,202,cs), (332,184,o), (319,170,o), (301,170,cs), (283,170,ls) ); }, { closed = 1; nodes = ( (264,367,l), (297,367,ls), (334,367,o), (358,392,o), (358,430,cs), (358,469,o), (334,491,o), (297,491,cs), (234,491,l), (234,541,l), (297,541,ls), (368,541,o), (412,499,o), (412,433,cs), (412,373,o), (375,333,o), (317,330,c), (317,277,l), (264,277,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (324,-11,o), (349,3,o), (370,31,cs), (572,290,ls), (591,314,o), (600,337,o), (600,360,cs), (600,383,o), (591,406,o), (573,430,cs), (370,697,ls), (349,726,o), (324,740,o), (300,740,cs), (276,740,o), (252,726,o), (230,697,cs), (27,430,ls), (9,407,o), (0,384,o), (0,360,cs), (0,337,o), (9,314,o), (28,290,cs), (230,31,ls), (252,3,o), (276,-11,o), (300,-11,cs) ); }, { closed = 1; nodes = ( (266,170,o), (253,184,o), (253,202,cs), (253,220,o), (266,234,o), (283,234,cs), (301,234,ls), (319,234,o), (332,220,o), (332,202,cs), (332,184,o), (319,170,o), (301,170,cs), (283,170,ls) ); }, { closed = 1; nodes = ( (264,367,l), (297,367,ls), (334,367,o), (358,392,o), (358,430,cs), (358,469,o), (334,491,o), (297,491,cs), (234,491,l), (234,541,l), (297,541,ls), (368,541,o), (412,499,o), (412,433,cs), (412,373,o), (375,333,o), (317,330,c), (317,277,l), (264,277,l) ); } ); width = 600; } ); unicode = 65533; }, { glyphname = "shiftIn-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = I; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = I; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = I; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9231; }, { glyphname = "shiftOut-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = O; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = O; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = O; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9230; }, { glyphname = "space-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = P; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = P; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = P; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9248; }, { glyphname = "startOfHeading-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = H; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = H; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = O; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = H; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9217; }, { glyphname = "startOfText-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = T; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = X; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9218; }, { glyphname = "substitute-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = B; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9242; }, { glyphname = "synchronousIdle-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = Y; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = Y; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-4,245); ref = S; scale = (0.33,0.33); }, { alignment = -1; pos = (195,245); ref = Y; scale = (0.33,0.33); }, { alignment = -1; pos = (406,245); ref = N; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9238; }, { glyphname = threeTurned; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = three; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = three; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = three; } ); width = 600; } ); unicode = 8587; }, { glyphname = twoTurned; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = two; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = two; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; angle = 180; pos = (600,730); ref = two; } ); width = 600; } ); unicode = 8586; }, { glyphname = "unitSeparator-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = U; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = S; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9247; }, { glyphname = "verticalTabulation-control"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (99,245); ref = V; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (99,245); ref = V; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (99,245); ref = V; scale = (0.33,0.33); }, { alignment = -1; pos = (302,245); ref = T; scale = (0.33,0.33); } ); width = 600; } ); unicode = 9227; }, { glyphname = warningSign.001; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (541,0,ls), (585,0,o), (610,20,o), (610,56,cs), (610,71,o), (603,98,o), (590,128,cs), (349,702,ls), (338,728,o), (320,740,o), (300,740,cs), (280,740,o), (262,728,o), (251,702,cs), (9,128,ls), (-3,99,o), (-10,73,o), (-10,56,cs), (-10,20,o), (15,0,o), (59,0,cs) ); }, { closed = 1; nodes = ( (271,61,o), (255,76,o), (255,103,cs), (255,130,o), (271,145,o), (299,145,cs), (327,145,o), (343,130,o), (343,103,cs), (343,76,o), (327,61,o), (299,61,cs) ); }, { closed = 1; nodes = ( (266,479,l), (266,550,l), (334,550,l), (334,479,l), (324,200,l), (275,200,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,0,ls), (585,0,o), (610,20,o), (610,56,cs), (610,71,o), (603,98,o), (590,128,cs), (349,702,ls), (338,728,o), (320,740,o), (300,740,cs), (280,740,o), (262,728,o), (251,702,cs), (9,128,ls), (-3,99,o), (-10,73,o), (-10,56,cs), (-10,20,o), (15,0,o), (59,0,cs) ); }, { closed = 1; nodes = ( (271,61,o), (255,76,o), (255,103,cs), (255,130,o), (271,145,o), (299,145,cs), (327,145,o), (343,130,o), (343,103,cs), (343,76,o), (327,61,o), (299,61,cs) ); }, { closed = 1; nodes = ( (266,479,l), (266,550,l), (334,550,l), (334,479,l), (324,200,l), (275,200,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (541,0,ls), (585,0,o), (610,20,o), (610,56,cs), (610,71,o), (603,98,o), (590,128,cs), (349,702,ls), (338,728,o), (320,740,o), (300,740,cs), (280,740,o), (262,728,o), (251,702,cs), (9,128,ls), (-3,99,o), (-10,73,o), (-10,56,cs), (-10,20,o), (15,0,o), (59,0,cs) ); }, { closed = 1; nodes = ( (271,61,o), (255,76,o), (255,103,cs), (255,130,o), (271,145,o), (299,145,cs), (327,145,o), (343,130,o), (343,103,cs), (343,76,o), (327,61,o), (299,61,cs) ); }, { closed = 1; nodes = ( (266,479,l), (266,550,l), (334,550,l), (334,479,l), (324,200,l), (275,200,l) ); } ); width = 600; } ); }, { glyphname = lowringmod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ringbelowcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = ringbelowcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = ringbelowcomb; } ); width = 600; } ); unicode = 755; }, { glyphname = lowtildemod; layers = ( { anchors = ( { name = _top; pos = (300,-310); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (436,-240,o), (480,-189,o), (480,-120,cs), (480,-85,l), (395,-85,l), (395,-112,ls), (395,-129,o), (383,-140,o), (365,-140,cs), (325,-140,o), (315,-80,o), (230,-80,cs), (164,-80,o), (120,-131,o), (120,-200,cs), (120,-235,l), (205,-235,l), (205,-213,ls), (205,-193,o), (217,-180,o), (235,-180,cs), (275,-180,o), (285,-240,o), (370,-240,cs) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (300,-295); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (424,-210,o), (460,-175,o), (460,-115,cs), (460,-85,l), (395,-85,l), (395,-115,ls), (395,-139,o), (383,-150,o), (365,-150,cs), (320,-150,o), (310,-80,o), (230,-80,cs), (176,-80,o), (140,-115,o), (140,-175,cs), (140,-205,l), (205,-205,l), (205,-175,ls), (205,-151,o), (217,-140,o), (235,-140,cs), (280,-140,o), (290,-210,o), (370,-210,cs) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (300,-295); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (428,-210,o), (460,-176,o), (460,-120,cs), (460,-85,l), (420,-85,l), (420,-120,ls), (420,-151,o), (403,-171,o), (375,-171,cs), (326,-171,o), (305,-80,o), (230,-80,cs), (174,-80,o), (140,-114,o), (140,-170,cs), (140,-205,l), (180,-205,l), (180,-170,ls), (180,-139,o), (199,-119,o), (230,-119,cs), (279,-119,o), (300,-210,o), (375,-210,cs) ); } ); width = 600; } ); unicode = 759; }, { glyphname = at_underscore.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (470,-165,l), (492,-25,l), (-323,-25,ls), (-439,-25,o), (-493,39,o), (-474,155,cs), (-428,450,ls), (-409,569,o), (-336,635,o), (-228,635,cs), (-137,635,o), (-87,612,o), (-98,540,cs), (-100,530,l), (-91,460,l), (-126,460,l), (-114,440,l), (-105,497,o), (-143,535,o), (-209,535,cs), (-291,535,o), (-349,474,o), (-365,370,cs), (-383,260,ls), (-399,156,o), (-361,95,o), (-279,95,cs), (-213,95,o), (-163,133,o), (-154,191,c), (-172,160,l), (-140,160,l), (-158,105,l), (-47,105,l), (22,540,ls), (43,678,o), (-46,740,o), (-212,740,cs), (-392,740,o), (-519,630,o), (-548,450,cs), (-594,155,ls), (-623,-25,o), (-531,-165,o), (-345,-165,cs) ); }, { closed = 1; nodes = ( (-254,180,o), (-272,202,o), (-263,260,cs), (-245,370,ls), (-237,421,o), (-212,450,o), (-173,450,cs), (-135,450,o), (-117,421,o), (-125,370,cs), (-143,260,ls), (-152,201,o), (-173,180,o), (-215,180,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (480,-100,l), (492,-25,l), (-323,-25,ls), (-447,-25,o), (-510,57,o), (-489,190,cs), (-448,450,ls), (-426,589,o), (-343,670,o), (-223,670,cs), (-116,670,o), (-61,648,o), (-79,535,cs), (-80,530,l), (-81,460,l), (-105,460,l), (-94,439,l), (-86,491,o), (-123,525,o), (-187,525,cs), (-274,525,o), (-329,471,o), (-345,370,cs), (-364,250,ls), (-380,149,o), (-342,95,o), (-255,95,cs), (-191,95,o), (-144,129,o), (-135,180,c), (-158,160,l), (-130,160,l), (-138,105,l), (-67,105,l), (1,535,ls), (25,687,o), (-60,740,o), (-212,740,cs), (-380,740,o), (-499,630,o), (-528,450,cs), (-569,190,ls), (-597,13,o), (-506,-100,o), (-335,-100,cs) ); }, { closed = 1; nodes = ( (-273,158,o), (-294,187,o), (-284,250,cs), (-265,370,ls), (-255,433,o), (-225,462,o), (-171,462,cs), (-116,462,o), (-95,434,o), (-105,371,cs), (-123,260,ls), (-134,191,o), (-164,158,o), (-219,158,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (485,-70,l), (492,-25,l), (-323,-25,l), (-455,-25,o), (-518,72,o), (-493,225,cs), (-459,445,ls), (-433,603,o), (-348,696,o), (-219,696,cs), (-107,696,o), (-45,656,o), (-66,525,cs), (-67,520,l), (-73,450,l), (-100,450,l), (-81,430,l), (-71,491,o), (-109,525,o), (-183,525,cs), (-269,525,o), (-324,474,o), (-339,380,cs), (-359,250,ls), (-375,150,o), (-337,95,o), (-251,95,cs), (-181,95,o), (-128,133,o), (-119,190,c), (-141,170,l), (-117,170,l), (-127,105,l), (-82,105,l), (-16,525,ls), (9,681,o), (-71,740,o), (-212,740,cs), (-370,740,o), (-480,628,o), (-509,445,cs), (-543,225,ls), (-572,45,o), (-492,-70,o), (-330,-70,c) ); }, { closed = 1; nodes = ( (-293,140,o), (-321,177,o), (-309,250,cs), (-289,380,ls), (-278,446,o), (-239,480,o), (-173,480,cs), (-109,480,o), (-79,444,o), (-89,380,cs), (-109,250,ls), (-120,180,o), (-163,140,o), (-227,140,cs) ); } ); width = 600; } ); }, { glyphname = ampersand_ampersand.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (225,-10,o), (285,11,o), (335,51,c), (363,0,l), (506,0,l), (423,155,l), (557,360,l), (417,360,l), (360,271,l), (271,436,ls), (247,480,o), (233,518,o), (238,550,cs), (245,592,o), (277,620,o), (319,620,cs), (361,620,o), (385,592,o), (378,550,c), (513,550,l), (531,664,o), (461,740,o), (338,740,cs), (218,740,o), (127,668,o), (110,565,cs), (101,507,o), (117,449,o), (150,390,c), (175,443,l), (82,434,o), (18,367,o), (2,265,cs), (-9,195,ls), (-30,66,o), (31,-10,o), (159,-10,cs) ); }, { closed = 1; nodes = ( (-373,110,o), (-398,140,o), (-389,195,cs), (-378,265,ls), (-373,298,o), (-360,321,o), (-341,335,c), (-240,151,l), (-264,125,o), (-295,110,o), (-328,110,cs) ); }, { closed = 1; nodes = ( (-295,-10,o), (-235,11,o), (-185,51,c), (-157,0,l), (-14,0,l), (-249,436,ls), (-273,480,o), (-287,518,o), (-282,550,cs), (-275,592,o), (-243,620,o), (-201,620,cs), (-159,620,o), (-135,592,o), (-142,550,c), (-7,550,l), (11,664,o), (-59,740,o), (-182,740,cs), (-302,740,o), (-393,668,o), (-410,565,cs), (-419,507,o), (-403,449,o), (-370,390,c), (-345,443,l), (-438,434,o), (-502,367,o), (-518,265,cs), (-529,195,ls), (-550,66,o), (-489,-10,o), (-361,-10,cs) ); }, { closed = 1; nodes = ( (147,110,o), (122,140,o), (131,195,cs), (142,265,ls), (147,298,o), (160,321,o), (179,335,c), (280,151,l), (256,125,o), (225,110,o), (192,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (219,-10,o), (286,24,o), (344,87,c), (393,0,l), (492,0,l), (400,161,l), (545,360,l), (451,360,l), (360,233,l), (225,470,ls), (206,504,o), (197,546,o), (203,579,cs), (211,630,o), (251,662,o), (306,662,cs), (367,662,o), (399,627,o), (390,569,c), (480,569,l), (497,674,o), (434,740,o), (318,740,cs), (210,740,o), (128,677,o), (113,581,cs), (105,533,o), (116,487,o), (148,431,cs), (154,421,l), (83,401,o), (36,350,o), (25,280,cs), (6,155,ls), (-11,52,o), (45,-10,o), (154,-10,cs) ); }, { closed = 1; nodes = ( (-425,70,o), (-453,101,o), (-444,155,cs), (-425,280,ls), (-418,324,o), (-392,351,o), (-350,358,c), (-235,155,l), (-273,102,o), (-323,70,o), (-368,70,cs) ); }, { closed = 1; nodes = ( (-321,-10,o), (-254,24,o), (-196,87,c), (-147,0,l), (-48,0,l), (-315,470,ls), (-334,504,o), (-343,546,o), (-337,579,cs), (-329,630,o), (-289,662,o), (-234,662,cs), (-173,662,o), (-141,627,o), (-150,569,c), (-60,569,l), (-43,674,o), (-106,740,o), (-222,740,cs), (-330,740,o), (-412,677,o), (-427,581,cs), (-435,533,o), (-424,487,o), (-392,431,cs), (-386,421,l), (-457,401,o), (-504,350,o), (-515,280,cs), (-534,155,ls), (-551,52,o), (-495,-10,o), (-386,-10,cs) ); }, { closed = 1; nodes = ( (115,70,o), (87,101,o), (96,155,cs), (115,280,ls), (122,324,o), (148,351,o), (190,358,c), (305,155,l), (267,102,o), (217,70,o), (172,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (223,-10,o), (297,33,o), (361,118,c), (433,0,l), (486,0,l), (391,161,l), (529,360,l), (479,360,l), (368,201,l), (226,443,ls), (196,494,o), (180,539,o), (187,580,cs), (197,641,o), (253,695,o), (320,695,cs), (390,695,o), (431,637,o), (420,570,c), (470,570,l), (486,667,o), (430,740,o), (327,740,cs), (228,740,o), (151,670,o), (137,580,cs), (129,531,o), (141,478,o), (183,411,c), (190,429,l), (106,420,o), (47,360,o), (32,266,cs), (15,155,ls), (-2,52,o), (47,-10,o), (143,-10,cs) ); }, { closed = 1; nodes = ( (-449,35,o), (-486,84,o), (-474,155,cs), (-457,266,ls), (-446,336,o), (-400,382,o), (-340,386,c), (-202,158,l), (-259,77,o), (-322,35,o), (-383,35,cs) ); }, { closed = 1; nodes = ( (-316,-10,o), (-242,33,o), (-178,118,c), (-106,0,l), (-53,0,l), (-313,443,ls), (-343,494,o), (-359,539,o), (-352,580,cs), (-342,641,o), (-286,695,o), (-219,695,cs), (-149,695,o), (-108,637,o), (-119,570,c), (-69,570,l), (-53,667,o), (-109,740,o), (-212,740,cs), (-311,740,o), (-388,670,o), (-402,580,cs), (-410,531,o), (-398,478,o), (-356,411,c), (-349,429,l), (-433,420,o), (-492,360,o), (-507,266,cs), (-524,155,ls), (-541,52,o), (-492,-10,o), (-396,-10,cs) ); }, { closed = 1; nodes = ( (91,35,o), (53,84,o), (65,155,cs), (82,266,ls), (93,336,o), (139,382,o), (199,386,c), (337,158,l), (280,77,o), (217,35,o), (156,35,cs) ); } ); width = 600; } ); }, { glyphname = ampersand_ampersand_ampersand.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (195,-10,o), (255,11,o), (305,51,c), (333,0,l), (476,0,l), (393,155,l), (527,360,l), (387,360,l), (330,271,l), (241,436,ls), (217,480,o), (203,518,o), (208,550,cs), (215,592,o), (247,620,o), (289,620,cs), (331,620,o), (355,592,o), (348,550,c), (483,550,l), (501,664,o), (431,740,o), (308,740,cs), (188,740,o), (97,668,o), (80,565,cs), (71,507,o), (87,449,o), (120,390,c), (145,443,l), (52,434,o), (-12,367,o), (-28,265,cs), (-39,195,ls), (-60,66,o), (1,-10,o), (129,-10,cs) ); }, { closed = 1; nodes = ( (-963,110,o), (-988,140,o), (-979,195,cs), (-968,265,ls), (-963,298,o), (-950,321,o), (-931,335,c), (-830,151,l), (-854,125,o), (-885,110,o), (-918,110,cs) ); }, { closed = 1; nodes = ( (-885,-10,o), (-825,11,o), (-775,51,c), (-747,0,l), (-604,0,l), (-839,436,ls), (-863,480,o), (-877,518,o), (-872,550,cs), (-865,592,o), (-833,620,o), (-791,620,cs), (-749,620,o), (-725,592,o), (-732,550,c), (-597,550,l), (-579,664,o), (-649,740,o), (-772,740,cs), (-892,740,o), (-983,668,o), (-1000,565,cs), (-1009,507,o), (-993,449,o), (-960,390,c), (-935,443,l), (-1028,434,o), (-1092,367,o), (-1108,265,cs), (-1119,195,ls), (-1140,66,o), (-1079,-10,o), (-951,-10,cs) ); }, { closed = 1; nodes = ( (-423,110,o), (-448,140,o), (-439,195,cs), (-428,265,ls), (-423,298,o), (-410,321,o), (-391,335,c), (-290,151,l), (-314,125,o), (-345,110,o), (-378,110,cs) ); }, { closed = 1; nodes = ( (-345,-10,o), (-285,11,o), (-235,51,c), (-207,0,l), (-64,0,l), (-299,436,ls), (-323,480,o), (-337,518,o), (-332,550,cs), (-325,592,o), (-293,620,o), (-251,620,cs), (-209,620,o), (-185,592,o), (-192,550,c), (-57,550,l), (-39,664,o), (-109,740,o), (-232,740,cs), (-352,740,o), (-443,668,o), (-460,565,cs), (-469,507,o), (-453,449,o), (-420,390,c), (-395,443,l), (-488,434,o), (-552,367,o), (-568,265,cs), (-579,195,ls), (-600,66,o), (-539,-10,o), (-411,-10,cs) ); }, { closed = 1; nodes = ( (117,110,o), (92,140,o), (101,195,cs), (112,265,ls), (117,298,o), (130,321,o), (149,335,c), (250,151,l), (226,125,o), (195,110,o), (162,110,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (189,-10,o), (256,24,o), (314,87,c), (363,0,l), (462,0,l), (370,161,l), (515,360,l), (421,360,l), (330,233,l), (195,470,ls), (176,504,o), (167,546,o), (173,579,cs), (181,630,o), (221,662,o), (276,662,cs), (337,662,o), (369,627,o), (360,569,c), (450,569,l), (467,674,o), (404,740,o), (288,740,cs), (180,740,o), (98,677,o), (83,581,cs), (75,533,o), (86,487,o), (118,431,cs), (124,421,l), (53,401,o), (6,350,o), (-5,280,cs), (-24,155,ls), (-41,52,o), (15,-10,o), (124,-10,cs) ); }, { closed = 1; nodes = ( (-995,70,o), (-1023,101,o), (-1014,155,cs), (-995,280,ls), (-988,324,o), (-962,351,o), (-920,358,c), (-805,155,l), (-843,102,o), (-893,70,o), (-938,70,cs) ); }, { closed = 1; nodes = ( (-891,-10,o), (-824,24,o), (-766,87,c), (-717,0,l), (-618,0,l), (-885,470,ls), (-904,504,o), (-913,546,o), (-907,579,cs), (-899,630,o), (-859,662,o), (-804,662,cs), (-743,662,o), (-711,627,o), (-720,569,c), (-630,569,l), (-613,674,o), (-676,740,o), (-792,740,cs), (-900,740,o), (-982,677,o), (-997,581,cs), (-1005,533,o), (-994,487,o), (-962,431,cs), (-956,421,l), (-1027,401,o), (-1074,350,o), (-1085,280,cs), (-1104,155,ls), (-1121,52,o), (-1065,-10,o), (-956,-10,cs) ); }, { closed = 1; nodes = ( (-455,70,o), (-483,101,o), (-474,155,cs), (-455,280,ls), (-448,324,o), (-422,351,o), (-380,358,c), (-265,155,l), (-303,102,o), (-353,70,o), (-398,70,cs) ); }, { closed = 1; nodes = ( (-351,-10,o), (-284,24,o), (-226,87,c), (-177,0,l), (-78,0,l), (-345,470,ls), (-364,504,o), (-373,546,o), (-367,579,cs), (-359,630,o), (-319,662,o), (-264,662,cs), (-203,662,o), (-171,627,o), (-180,569,c), (-90,569,l), (-73,674,o), (-136,740,o), (-252,740,cs), (-360,740,o), (-442,677,o), (-457,581,cs), (-465,533,o), (-454,487,o), (-422,431,cs), (-416,421,l), (-487,401,o), (-534,350,o), (-545,280,cs), (-564,155,ls), (-581,52,o), (-525,-10,o), (-416,-10,cs) ); }, { closed = 1; nodes = ( (85,70,o), (57,101,o), (66,155,cs), (85,280,ls), (92,324,o), (118,351,o), (160,358,c), (275,155,l), (237,102,o), (187,70,o), (142,70,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (203,-10,o), (277,33,o), (341,118,c), (413,0,l), (466,0,l), (371,161,l), (509,360,l), (459,360,l), (348,201,l), (206,443,ls), (176,494,o), (160,539,o), (167,580,cs), (177,641,o), (233,695,o), (300,695,cs), (370,695,o), (411,637,o), (400,570,c), (450,570,l), (466,667,o), (410,740,o), (307,740,cs), (208,740,o), (131,670,o), (117,580,cs), (109,531,o), (121,478,o), (163,411,c), (170,429,l), (86,420,o), (27,360,o), (12,266,cs), (-5,155,ls), (-22,52,o), (27,-10,o), (123,-10,cs) ); }, { closed = 1; nodes = ( (-1019,35,o), (-1056,84,o), (-1044,155,cs), (-1027,266,ls), (-1016,336,o), (-970,382,o), (-910,386,c), (-772,158,l), (-829,77,o), (-892,35,o), (-953,35,cs) ); }, { closed = 1; nodes = ( (-886,-10,o), (-812,33,o), (-748,118,c), (-676,0,l), (-623,0,l), (-883,443,ls), (-913,494,o), (-929,539,o), (-922,580,cs), (-912,641,o), (-856,695,o), (-789,695,cs), (-719,695,o), (-678,637,o), (-689,570,c), (-639,570,l), (-623,667,o), (-679,740,o), (-782,740,cs), (-881,740,o), (-958,670,o), (-972,580,cs), (-980,531,o), (-968,478,o), (-926,411,c), (-919,429,l), (-1003,420,o), (-1062,360,o), (-1077,266,cs), (-1094,155,ls), (-1111,52,o), (-1062,-10,o), (-966,-10,cs) ); }, { closed = 1; nodes = ( (-479,35,o), (-516,84,o), (-504,155,cs), (-487,266,ls), (-476,336,o), (-430,382,o), (-370,386,c), (-232,158,l), (-289,77,o), (-352,35,o), (-413,35,cs) ); }, { closed = 1; nodes = ( (-346,-10,o), (-272,33,o), (-208,118,c), (-136,0,l), (-83,0,l), (-343,443,ls), (-373,494,o), (-389,539,o), (-382,580,cs), (-372,641,o), (-316,695,o), (-249,695,cs), (-179,695,o), (-138,637,o), (-149,570,c), (-99,570,l), (-83,667,o), (-139,740,o), (-242,740,cs), (-341,740,o), (-418,670,o), (-432,580,cs), (-440,531,o), (-428,478,o), (-386,411,c), (-379,429,l), (-463,420,o), (-522,360,o), (-537,266,cs), (-554,155,ls), (-571,52,o), (-522,-10,o), (-426,-10,cs) ); }, { closed = 1; nodes = ( (71,35,o), (33,84,o), (45,155,cs), (62,266,ls), (73,336,o), (119,382,o), (179,386,c), (317,158,l), (260,77,o), (197,35,o), (136,35,cs) ); } ); width = 600; } ); }, { glyphname = ampersand_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-244,-10,o), (-158,39,o), (-97,132,cs), (67,385,l), (537,385,l), (559,525,l), (26,525,l), (-207,174,ls), (-235,133,o), (-272,110,o), (-313,110,cs), (-358,110,o), (-383,140,o), (-374,195,cs), (-363,265,ls), (-354,320,o), (-325,350,o), (-279,350,cs), (-265,350,l), (-250,445,l), (-305,445,ls), (-411,445,o), (-485,377,o), (-503,265,cs), (-514,195,ls), (-535,66,o), (-474,-10,o), (-346,-10,cs) ); }, { closed = 1; nodes = ( (1,0,l), (-234,436,ls), (-258,480,o), (-272,518,o), (-267,550,cs), (-260,592,o), (-228,620,o), (-186,620,cs), (-144,620,o), (-120,592,o), (-127,550,c), (8,550,l), (26,664,o), (-44,740,o), (-167,740,cs), (-287,740,o), (-378,668,o), (-395,565,cs), (-404,506,o), (-387,446,o), (-355,387,cs), (-142,0,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (45,275,l), (22,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-287,-10,o), (-206,41,o), (-140,132,cs), (58,410,l), (541,410,l), (554,490,l), (25,490,l), (-215,155,ls), (-253,102,o), (-303,70,o), (-348,70,cs), (-405,70,o), (-433,101,o), (-424,155,cs), (-405,280,ls), (-396,332,o), (-362,360,o), (-306,360,cs), (-292,360,l), (-281,430,l), (-296,430,ls), (-406,430,o), (-480,371,o), (-495,280,cs), (-514,155,ls), (-531,52,o), (-475,-10,o), (-366,-10,cs) ); }, { closed = 1; nodes = ( (-28,0,l), (-295,470,ls), (-314,504,o), (-323,546,o), (-317,579,cs), (-309,630,o), (-269,662,o), (-214,662,cs), (-153,662,o), (-121,627,o), (-130,569,c), (-40,569,l), (-23,674,o), (-86,740,o), (-202,740,cs), (-310,740,o), (-392,677,o), (-407,581,cs), (-415,533,o), (-404,487,o), (-372,431,cs), (-127,0,l) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (41,250,l), (28,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-277,-10,o), (-199,37,o), (-133,132,cs), (68,421,l), (543,421,l), (550,466,l), (47,466,l), (-168,155,ls), (-222,78,o), (-287,35,o), (-348,35,cs), (-414,35,o), (-451,84,o), (-439,155,cs), (-422,266,ls), (-410,339,o), (-361,386,o), (-297,386,cs), (-283,386,l), (-276,431,l), (-291,431,ls), (-387,431,o), (-456,369,o), (-472,266,cs), (-489,155,ls), (-506,52,o), (-457,-10,o), (-361,-10,cs) ); }, { closed = 1; nodes = ( (-18,0,l), (-278,443,ls), (-308,494,o), (-324,539,o), (-317,580,cs), (-307,641,o), (-251,695,o), (-184,695,cs), (-114,695,o), (-73,637,o), (-84,570,c), (-34,570,l), (-18,667,o), (-74,740,o), (-177,740,cs), (-276,740,o), (-353,670,o), (-367,580,cs), (-375,532,o), (-363,480,o), (-322,414,cs), (-71,0,l) ); }, { closed = 1; nodes = ( (507,195,l), (514,240,l), (39,240,l), (32,195,l) ); } ); width = 600; } ); }, { glyphname = bar_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-282,-85,l), (-228,260,l), (417,260,l), (439,400,l), (-206,400,l), (-150,750,l), (-300,750,l), (-432,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-312,-85,l), (-253,290,l), (422,290,l), (435,370,l), (-240,370,l), (-180,750,l), (-270,750,l), (-402,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-332,-85,l), (-270,310,l), (425,310,l), (432,355,l), (-263,355,l), (-200,750,l), (-250,750,l), (-382,-85,l) ); } ); width = 600; } ); }, { glyphname = bar_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-968,35,l), (-933,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (323,400,l), (-911,400,l), (-875,625,l), (-1025,625,l), (-1118,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1018,35,l), (-978,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (411,370,l), (-965,370,l), (-925,625,l), (-1015,625,l), (-1108,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1048,35,l), (-1006,305,l), (435,305,l), (169,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (449,355,l), (-998,355,l), (-955,625,l), (-1005,625,l), (-1098,35,l) ); } ); width = 600; } ); }, { glyphname = bar_braceright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (28,-111,ls), (137,-111,o), (228,-38,o), (238,74,cs), (251,219,ls), (254,261,o), (290,289,o), (332,289,cs), (457,289,l), (479,429,l), (354,429,ls), (312,429,o), (285,457,o), (295,499,cs), (329,650,ls), (353,760,o), (287,830,o), (177,830,cs), (22,830,l), (0,690,l), (125,690,ls), (163,690,o), (186,673,o), (176,630,cs), (142,479,ls), (125,406,o), (180,357,o), (278,357,c), (279,364,l), (181,364,o), (111,314,o), (104,239,cs), (90,89,ls), (86,53,o), (57,29,o), (21,29,cs), (-104,29,l), (-127,-111,l) ); }, { alignment = -1; pos = (-580,0); ref = bar; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1,-110,ls), (117,-110,o), (199,-49,o), (210,56,cs), (226,220,ls), (233,291,o), (256,320,o), (342,320,cs), (452,320,l), (464,400,l), (354,400,ls), (267,400,o), (255,429,o), (270,500,cs), (306,664,ls), (329,769,o), (265,830,o), (147,830,cs), (32,830,l), (20,750,l), (135,750,ls), (198,750,o), (228,721,o), (216,664,cs), (180,500,ls), (161,413,o), (203,358,o), (288,358,c), (288,363,l), (204,363,o), (144,306,o), (136,220,cs), (120,56,ls), (114,-1,o), (74,-30,o), (11,-30,cs), (-104,-30,l), (-116,-110,l) ); }, { alignment = -1; pos = (-580,0); ref = bar; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (23,-110,ls), (119,-110,o), (189,-55,o), (197,40,cs), (214,237,ls), (220,308,o), (244,336,o), (330,336,cs), (440,336,l), (447,382,l), (337,382,ls), (255,382,o), (236,408,o), (253,482,cs), (298,680,ls), (320,775,o), (268,830,o), (172,830,cs), (58,830,l), (51,785,l), (165,785,ls), (227,785,o), (263,745,o), (248,680,cs), (203,482,ls), (186,407,o), (221,357,o), (288,357,c), (289,364,l), (222,364,o), (171,313,o), (164,237,cs), (147,40,ls), (141,-25,o), (92,-65,o), (30,-65,cs), (-84,-65,l), (-91,-110,l) ); }, { alignment = -1; pos = (-580,0); ref = bar; } ); width = 600; } ); }, { glyphname = bar_bracketright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (309,-110,l), (457,830,l), (42,830,l), (20,690,l), (285,690,l), (181,30,l), (-84,30,l), (-106,-110,l) ); }, { closed = 1; nodes = ( (-281,-110,l), (-133,830,l), (-283,830,l), (-431,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (264,-110,l), (412,830,l), (27,830,l), (15,750,l), (310,750,l), (186,-30,l), (-109,-30,l), (-121,-110,l) ); }, { closed = 1; nodes = ( (-296,-110,l), (-148,830,l), (-238,830,l), (-386,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (244,-110,l), (392,830,l), (37,830,l), (30,785,l), (335,785,l), (201,-65,l), (-104,-65,l), (-111,-110,l) ); }, { closed = 1; nodes = ( (-316,-110,l), (-168,830,l), (-218,830,l), (-366,-110,l) ); } ); width = 600; } ); }, { glyphname = bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-60,0); ref = bar; }, { alignment = -1; pos = (-540,0); ref = bar; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-60,0); ref = bar; }, { alignment = -1; pos = (-540,0); ref = bar; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-65,0); ref = bar; }, { alignment = -1; pos = (-535,0); ref = bar; } ); width = 600; } ); }, { glyphname = bar_bar_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-367,-85,l), (-313,260,l), (367,260,l), (389,400,l), (-291,400,l), (-235,750,l), (-385,750,l), (-517,-85,l) ); }, { closed = 1; nodes = ( (-797,-85,l), (-665,750,l), (-815,750,l), (-947,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-397,-85,l), (-338,290,l), (372,290,l), (385,370,l), (-325,370,l), (-265,750,l), (-355,750,l), (-487,-85,l) ); }, { closed = 1; nodes = ( (-827,-85,l), (-695,750,l), (-785,750,l), (-917,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-416,-85,l), (-354,310,l), (375,310,l), (382,355,l), (-347,355,l), (-284,750,l), (-334,750,l), (-466,-85,l) ); }, { closed = 1; nodes = ( (-842,-85,l), (-710,750,l), (-760,750,l), (-892,-85,l) ); } ); width = 600; } ); }, { glyphname = bar_bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (205,-110,l), (353,830,l), (203,830,l), (55,-110,l) ); }, { closed = 1; nodes = ( (-776,-110,l), (-628,830,l), (-778,830,l), (-926,-110,l) ); }, { closed = 1; nodes = ( (-293,-110,l), (-145,830,l), (-295,830,l), (-443,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (164,-110,l), (312,830,l), (222,830,l), (74,-110,l) ); }, { closed = 1; nodes = ( (-796,-110,l), (-648,830,l), (-738,830,l), (-886,-110,l) ); }, { closed = 1; nodes = ( (-316,-110,l), (-168,830,l), (-258,830,l), (-406,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (144,-110,l), (292,830,l), (242,830,l), (94,-110,l) ); }, { closed = 1; nodes = ( (-816,-110,l), (-668,830,l), (-718,830,l), (-866,-110,l) ); }, { closed = 1; nodes = ( (-336,-110,l), (-188,830,l), (-238,830,l), (-386,-110,l) ); } ); width = 600; } ); }, { glyphname = bar_bar_bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-842,-85,l), (-710,750,l), (-860,750,l), (-992,-85,l) ); }, { closed = 1; nodes = ( (-1272,-85,l), (-1140,750,l), (-1290,750,l), (-1422,-85,l) ); }, { alignment = -1; pos = (-150,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-872,-85,l), (-740,750,l), (-830,750,l), (-962,-85,l) ); }, { closed = 1; nodes = ( (-1302,-85,l), (-1170,750,l), (-1260,750,l), (-1392,-85,l) ); }, { alignment = -1; pos = (-150,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-892,-85,l), (-760,750,l), (-810,750,l), (-942,-85,l) ); }, { closed = 1; nodes = ( (-1322,-85,l), (-1190,750,l), (-1240,750,l), (-1372,-85,l) ); }, { alignment = -1; pos = (-150,0); ref = bar_greater.liga; } ); width = 600; } ); }, { glyphname = bar_bar_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-367,-85,l), (-333,135,l), (348,135,l), (371,275,l), (-310,275,l), (-293,385,l), (388,385,l), (410,525,l), (-271,525,l), (-235,750,l), (-385,750,l), (-517,-85,l) ); }, { closed = 1; nodes = ( (-797,-85,l), (-665,750,l), (-815,750,l), (-947,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-397,-85,l), (-357,170,l), (353,170,l), (366,250,l), (-344,250,l), (-319,410,l), (391,410,l), (404,490,l), (-306,490,l), (-265,750,l), (-355,750,l), (-487,-85,l) ); }, { closed = 1; nodes = ( (-827,-85,l), (-695,750,l), (-785,750,l), (-917,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-416,-85,l), (-372,195,l), (323,195,l), (330,240,l), (-365,240,l), (-336,421,l), (359,421,l), (366,466,l), (-329,466,l), (-284,750,l), (-334,750,l), (-466,-85,l) ); }, { closed = 1; nodes = ( (-842,-85,l), (-710,750,l), (-760,750,l), (-892,-85,l) ); } ); width = 600; } ); }, { glyphname = bar_bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-747,-85,l), (-615,750,l), (-765,750,l), (-897,-85,l) ); }, { alignment = -1; pos = (-60,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-777,-85,l), (-645,750,l), (-735,750,l), (-867,-85,l) ); }, { alignment = -1; pos = (-55,0); ref = bar_greater.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-797,-85,l), (-665,750,l), (-715,750,l), (-847,-85,l) ); }, { alignment = -1; pos = (-55,0); ref = bar_greater.liga; } ); width = 600; } ); }, { glyphname = bar_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-282,-85,l), (-248,135,l), (397,135,l), (420,275,l), (-225,275,l), (-208,385,l), (437,385,l), (459,525,l), (-186,525,l), (-150,750,l), (-300,750,l), (-432,-85,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-312,-85,l), (-272,170,l), (403,170,l), (416,250,l), (-259,250,l), (-234,410,l), (441,410,l), (454,490,l), (-221,490,l), (-180,750,l), (-270,750,l), (-402,-85,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-332,-85,l), (-288,195,l), (407,195,l), (414,240,l), (-281,240,l), (-252,421,l), (443,421,l), (450,466,l), (-245,466,l), (-200,750,l), (-250,750,l), (-382,-85,l) ); } ); width = 600; } ); }, { glyphname = bar_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-968,35,l), (-953,135,l), (183,135,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (194,625,l), (252,525,l), (-891,525,l), (-875,625,l), (-1025,625,l), (-1118,35,l) ); }, { closed = 1; nodes = ( (-913,385,l), (335,385,l), (364,331,l), (312,275,l), (-930,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1018,35,l), (-997,170,l), (274,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-946,490,l), (-925,625,l), (-1015,625,l), (-1108,35,l) ); }, { closed = 1; nodes = ( (-959,410,l), (383,410,l), (432,328,l), (351,250,l), (-984,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1048,35,l), (-1023,195,l), (327,195,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-980,466,l), (-955,625,l), (-1005,625,l), (-1098,35,l) ); }, { closed = 1; nodes = ( (-987,421,l), (405,421,l), (465,333,l), (372,240,l), (-1016,240,l) ); } ); width = 600; } ); }, { glyphname = bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-247,-85,l), (382,258,l), (405,402,l), (-115,750,l), (-265,750,l), (-397,-85,l) ); }, { closed = 1; nodes = ( (-138,594,l), (204,367,ls), (226,352,o), (251,343,o), (263,340,c), (251,336,o), (222,325,o), (194,310,c), (-218,88,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-292,-85,l), (360,280,l), (376,380,l), (-160,750,l), (-250,750,l), (-382,-85,l) ); }, { closed = 1; nodes = ( (-175,650,l), (226,376,ls), (253,358,o), (279,342,o), (291,335,c), (277,329,o), (246,314,o), (214,296,cs), (-274,26,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-312,-85,l), (344,302,l), (352,356,l), (-180,750,l), (-230,750,l), (-362,-85,l) ); }, { closed = 1; nodes = ( (-188,694,l), (211,402,ls), (252,372,o), (291,345,o), (309,333,c), (287,322,o), (239,296,o), (190,267,cs), (-301,-23,l) ); } ); width = 600; } ); }, { glyphname = dollar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-301,-140,l), (-280,-9,l), (-143,2,o), (-42,86,o), (-23,206,cs), (-6,320,o), (-62,404,o), (-184,427,cs), (-210,432,l), (-183,608,l), (-153,605,o), (-127,602,o), (-101,589,cs), (358,357,ls), (383,344,o), (408,337,o), (421,334,c), (407,331,o), (379,324,o), (350,312,cs), (55,190,l), (34,49,l), (527,258,l), (550,401,l), (-32,694,ls), (-76,716,o), (-123,732,o), (-162,737,c), (-141,870,l), (-206,870,l), (-227,739,l), (-358,727,o), (-450,647,o), (-468,529,cs), (-485,418,o), (-428,338,o), (-308,305,cs), (-297,302,l), (-324,124,l), (-366,134,o), (-387,161,o), (-380,200,c), (-530,200,l), (-549,82,o), (-478,3,o), (-345,-9,c), (-366,-140,l) ); }, { closed = 1; nodes = ( (-223,354,l), (-287,292,l), (-210,298,o), (-164,261,o), (-174,199,cs), (-181,157,o), (-213,129,o), (-260,122,c) ); }, { closed = 1; nodes = ( (-222,439,l), (-290,436,o), (-327,474,o), (-317,535,cs), (-311,573,o), (-286,598,o), (-248,607,c), (-283,387,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-296,-140,l), (-275,-9,l), (-154,3,o), (-68,77,o), (-51,190,cs), (-36,286,o), (-82,364,o), (-171,394,cs), (-209,407,l), (-170,658,l), (-137,655,o), (-107,648,o), (-60,621,cs), (397,357,ls), (418,345,o), (441,338,o), (452,336,c), (441,333,o), (417,324,o), (389,311,cs), (71,160,l), (56,65,l), (505,280,l), (521,380,l), (-20,690,ls), (-66,716,o), (-115,733,o), (-157,738,c), (-136,870,l), (-196,870,l), (-217,738,l), (-331,727,o), (-414,653,o), (-431,546,cs), (-442,452,o), (-396,376,o), (-307,345,cs), (-281,336,l), (-323,72,l), (-393,81,o), (-427,124,o), (-417,190,c), (-507,190,l), (-523,75,o), (-460,1,o), (-335,-9,c), (-356,-140,l) ); }, { closed = 1; nodes = ( (-224,318,l), (-212,314,ls), (-157,296,o), (-132,246,o), (-141,188,cs), (-151,124,o), (-196,82,o), (-263,72,c) ); }, { closed = 1; nodes = ( (-238,418,l), (-316,430,o), (-351,484,o), (-340,554,cs), (-331,614,o), (-293,649,o), (-230,658,c), (-272,386,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-296,-140,l), (-275,-9,l), (-158,-2,o), (-73,69,o), (-56,177,cs), (-40,274,o), (-88,350,o), (-184,381,cs), (-212,390,l), (-164,693,l), (-129,690,o), (-95,682,o), (-64,662,cs), (391,374,ls), (415,359,o), (449,341,o), (466,332,c), (446,323,o), (408,305,o), (377,290,cs), (67,136,l), (59,80,l), (510,307,l), (517,353,l), (-35,699,ls), (-72,722,o), (-114,736,o), (-157,739,c), (-136,870,l), (-176,870,l), (-197,739,l), (-309,732,o), (-389,664,o), (-405,559,cs), (-420,466,o), (-374,394,o), (-282,366,cs), (-256,358,l), (-308,36,l), (-399,43,o), (-448,100,o), (-435,185,c), (-485,185,l), (-503,72,o), (-437,-2,o), (-315,-9,c), (-336,-140,l) ); }, { closed = 1; nodes = ( (-218,346,l), (-201,341,ls), (-129,320,o), (-93,259,o), (-106,177,cs), (-119,94,o), (-179,42,o), (-268,36,c) ); }, { closed = 1; nodes = ( (-264,406,ls), (-333,426,o), (-367,485,o), (-355,563,cs), (-343,638,o), (-285,686,o), (-204,693,c), (-250,402,l) ); } ); width = 600; } ); }, { glyphname = plus_plus.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-200,90,l), (-173,260,l), (167,260,l), (140,90,l), (290,90,l), (317,260,l), (487,260,l), (509,400,l), (339,400,l), (366,570,l), (216,570,l), (189,400,l), (-151,400,l), (-124,570,l), (-274,570,l), (-301,400,l), (-471,400,l), (-493,260,l), (-323,260,l), (-350,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-230,95,l), (-199,290,l), (203,290,l), (172,95,l), (260,95,l), (291,290,l), (482,290,l), (495,370,l), (304,370,l), (334,565,l), (246,565,l), (216,370,l), (-186,370,l), (-156,565,l), (-244,565,l), (-274,370,l), (-465,370,l), (-478,290,l), (-287,290,l), (-318,95,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-243,100,l), (-210,310,l), (220,310,l), (187,100,l), (237,100,l), (270,310,l), (470,310,l), (477,355,l), (277,355,l), (310,565,l), (260,565,l), (227,355,l), (-203,355,l), (-170,565,l), (-220,565,l), (-253,355,l), (-453,355,l), (-460,310,l), (-260,310,l), (-293,100,l) ); } ); width = 600; } ); }, { glyphname = plus_plus_plus.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-745,90,l), (-718,260,l), (-378,260,l), (-405,90,l), (-255,90,l), (-228,260,l), (112,260,l), (85,90,l), (235,90,l), (262,260,l), (432,260,l), (454,400,l), (284,400,l), (311,570,l), (161,570,l), (134,400,l), (-206,400,l), (-179,570,l), (-329,570,l), (-356,400,l), (-696,400,l), (-669,570,l), (-819,570,l), (-846,400,l), (-1016,400,l), (-1038,260,l), (-868,260,l), (-895,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-775,95,l), (-744,290,l), (-342,290,l), (-373,95,l), (-285,95,l), (-254,290,l), (148,290,l), (117,95,l), (205,95,l), (236,290,l), (427,290,l), (440,370,l), (249,370,l), (279,565,l), (191,565,l), (161,370,l), (-241,370,l), (-211,565,l), (-299,565,l), (-329,370,l), (-731,370,l), (-701,565,l), (-789,565,l), (-819,370,l), (-1010,370,l), (-1023,290,l), (-832,290,l), (-863,95,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-793,100,l), (-760,310,l), (-320,310,l), (-353,100,l), (-303,100,l), (-270,310,l), (170,310,l), (137,100,l), (187,100,l), (220,310,l), (420,310,l), (427,355,l), (227,355,l), (260,565,l), (210,565,l), (177,355,l), (-263,355,l), (-230,565,l), (-280,565,l), (-313,355,l), (-753,355,l), (-720,565,l), (-770,565,l), (-803,355,l), (-1003,355,l), (-1010,310,l), (-810,310,l), (-843,100,l) ); } ); width = 600; } ); }, { glyphname = plus_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-227,45,l), (-193,260,l), (17,260,l), (39,400,l), (-171,400,l), (-137,615,l), (-287,615,l), (-321,400,l), (-531,400,l), (-553,260,l), (-343,260,l), (-377,45,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-258,45,l), (-219,290,l), (22,290,l), (35,370,l), (-206,370,l), (-168,615,l), (-256,615,l), (-294,370,l), (-535,370,l), (-548,290,l), (-307,290,l), (-346,45,l) ); }, { alignment = -1; pos = (15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-264,60,l), (-225,310,l), (15,310,l), (22,355,l), (-218,355,l), (-178,605,l), (-228,605,l), (-268,355,l), (-508,355,l), (-515,310,l), (-275,310,l), (-314,60,l) ); }, { alignment = -1; pos = (10,0); ref = greater; } ); width = 600; } ); }, { glyphname = equal_colon.liga; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-472,240,l), (-479,195,l), (71,195,l), (78,240,l) ); }, { closed = 1; nodes = ( (354,550,o), (318,521,o), (311,480,cs), (305,439,o), (332,410,o), (375,410,cs), (419,410,o), (456,439,o), (462,480,cs), (469,521,o), (442,550,o), (398,550,cs) ); }, { closed = 1; nodes = ( (306,250,o), (270,221,o), (264,180,cs), (257,139,o), (285,110,o), (328,110,cs), (372,110,o), (408,139,o), (415,180,cs), (421,221,o), (394,250,o), (350,250,cs) ); }, { closed = 1; nodes = ( (-436,465,l), (-443,420,l), (107,420,l), (114,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-464,250,l), (-477,170,l), (73,170,l), (86,250,l) ); }, { closed = 1; nodes = ( (357,560,o), (320,528,o), (312,479,cs), (305,431,o), (332,400,o), (380,400,cs), (428,400,o), (465,431,o), (472,479,cs), (480,528,o), (453,560,o), (405,560,cs) ); }, { closed = 1; nodes = ( (310,260,o), (273,229,o), (265,180,cs), (257,132,o), (284,100,o), (332,100,cs), (380,100,o), (417,132,o), (425,180,cs), (433,229,o), (406,260,o), (358,260,cs) ); }, { closed = 1; nodes = ( (-426,490,l), (-439,410,l), (111,410,l), (124,490,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-450,275,l), (-472,135,l), (78,135,l), (100,275,l) ); }, { closed = 1; nodes = ( (358,575,o), (312,537,o), (302,480,cs), (293,419,o), (326,379,o), (386,379,cs), (446,379,o), (493,419,o), (502,480,cs), (512,537,o), (478,575,o), (418,575,cs) ); }, { closed = 1; nodes = ( (311,281,o), (265,243,o), (256,186,cs), (246,125,o), (280,85,o), (340,85,cs), (400,85,o), (446,125,o), (456,186,cs), (465,243,o), (431,281,o), (371,281,cs) ); }, { closed = 1; nodes = ( (-410,525,l), (-433,385,l), (117,385,l), (140,525,l) ); } ); width = 600; } ); }, { glyphname = equal_colon_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (-11,525,l), (-33,385,l) ); }, { closed = 1; nodes = ( (-573,135,l), (-550,275,l), (-1120,275,l), (-1143,135,l) ); }, { closed = 1; nodes = ( (-533,385,l), (-511,525,l), (-1081,525,l), (-1103,385,l) ); }, { closed = 1; nodes = ( (-271,85,o), (-225,123,o), (-215,180,cs), (-206,241,o), (-239,281,o), (-299,281,cs), (-359,281,o), (-406,241,o), (-415,180,cs), (-425,123,o), (-391,85,o), (-331,85,cs) ); }, { closed = 1; nodes = ( (-224,379,o), (-178,417,o), (-169,474,cs), (-159,535,o), (-193,575,o), (-253,575,cs), (-313,575,o), (-359,535,o), (-369,474,cs), (-378,417,o), (-344,379,o), (-284,379,cs) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (-50,275,l), (-73,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,410,l), (554,490,l), (9,490,l), (-4,410,l) ); }, { closed = 1; nodes = ( (-592,170,l), (-579,250,l), (-1124,250,l), (-1137,170,l) ); }, { closed = 1; nodes = ( (-554,410,l), (-541,490,l), (-1086,490,l), (-1099,410,l) ); }, { closed = 1; nodes = ( (-280,100,o), (-243,132,o), (-235,180,cs), (-228,229,o), (-255,260,o), (-303,260,cs), (-351,260,o), (-388,229,o), (-395,180,cs), (-403,132,o), (-376,100,o), (-328,100,cs) ); }, { closed = 1; nodes = ( (-233,400,o), (-196,431,o), (-188,480,cs), (-180,528,o), (-207,560,o), (-255,560,cs), (-303,560,o), (-340,528,o), (-348,480,cs), (-356,431,o), (-329,400,o), (-281,400,cs) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (-29,250,l), (-42,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (540,405,l), (548,455,l), (8,455,l), (0,405,l) ); }, { closed = 1; nodes = ( (-591,210,l), (-583,260,l), (-1123,260,l), (-1131,210,l) ); }, { closed = 1; nodes = ( (-560,405,l), (-552,455,l), (-1092,455,l), (-1100,405,l) ); }, { closed = 1; nodes = ( (-283,110,o), (-247,139,o), (-240,180,cs), (-234,221,o), (-261,250,o), (-304,250,cs), (-348,250,o), (-385,221,o), (-391,180,cs), (-398,139,o), (-371,110,o), (-327,110,cs) ); }, { closed = 1; nodes = ( (-235,410,o), (-199,439,o), (-193,480,cs), (-186,521,o), (-214,550,o), (-257,550,cs), (-301,550,o), (-337,521,o), (-344,480,cs), (-350,439,o), (-323,410,o), (-279,410,cs) ); }, { closed = 1; nodes = ( (509,210,l), (517,260,l), (-23,260,l), (-31,210,l) ); } ); width = 600; } ); }, { glyphname = equal_exclam_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (-11,525,l), (-33,385,l) ); }, { closed = 1; nodes = ( (-573,135,l), (-550,275,l), (-1120,275,l), (-1143,135,l) ); }, { closed = 1; nodes = ( (-533,385,l), (-511,525,l), (-1081,525,l), (-1103,385,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (-50,275,l), (-73,135,l) ); }, { alignment = -1; pos = (-600,0); ref = exclam; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,410,l), (554,490,l), (9,490,l), (-4,410,l) ); }, { closed = 1; nodes = ( (-592,170,l), (-579,250,l), (-1124,250,l), (-1137,170,l) ); }, { closed = 1; nodes = ( (-554,410,l), (-541,490,l), (-1086,490,l), (-1099,410,l) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (-29,250,l), (-42,170,l) ); }, { alignment = -1; pos = (-600,0); ref = exclam; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (543,420,l), (550,465,l), (5,465,l), (-2,420,l) ); }, { closed = 1; nodes = ( (-588,195,l), (-581,240,l), (-1126,240,l), (-1133,195,l) ); }, { closed = 1; nodes = ( (-552,420,l), (-545,465,l), (-1090,465,l), (-1097,420,l) ); }, { closed = 1; nodes = ( (507,195,l), (514,240,l), (-31,240,l), (-38,195,l) ); }, { alignment = -1; pos = (-600,0); ref = exclam; } ); width = 600; } ); }, { glyphname = equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (537,385,l), (559,525,l), (-481,525,l), (-503,385,l) ); }, { closed = 1; nodes = ( (497,135,l), (520,275,l), (-520,275,l), (-543,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (541,410,l), (554,490,l), (-486,490,l), (-499,410,l) ); }, { closed = 1; nodes = ( (503,170,l), (516,250,l), (-524,250,l), (-537,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (543,421,l), (550,466,l), (-490,466,l), (-497,421,l) ); }, { closed = 1; nodes = ( (507,195,l), (514,240,l), (-526,240,l), (-533,195,l) ); } ); width = 600; } ); }, { glyphname = equal_equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (560,530,l), (581,660,l), (-1059,660,l), (-1080,530,l) ); }, { closed = 1; nodes = ( (476,0,l), (497,130,l), (-1143,130,l), (-1164,0,l) ); }, { closed = 1; nodes = ( (518,265,l), (539,395,l), (-1101,395,l), (-1122,265,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (551,508,l), (563,584,l), (-1067,584,l), (-1079,508,l) ); }, { closed = 1; nodes = ( (483,76,l), (495,152,l), (-1135,152,l), (-1147,76,l) ); }, { closed = 1; nodes = ( (517,292,l), (529,368,l), (-1101,368,l), (-1113,292,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (541,502,l), (547,546,l), (-1063,546,l), (-1069,502,l) ); }, { closed = 1; nodes = ( (479,114,l), (486,158,l), (-1124,158,l), (-1131,114,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,352,l), (-1093,352,l), (-1100,308,l) ); } ); width = 600; } ); }, { glyphname = equal_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-1081,525,l), (-1103,385,l), (333,385,l), (366,333,l), (311,275,l), (-1120,275,l), (-1143,135,l), (183,135,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-1081,490,l), (-1094,410,l), (383,410,l), (433,335,l), (351,250,l), (-1119,250,l), (-1132,170,l), (274,170,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-1075,466,l), (-1082,421,l), (405,421,l), (465,334,l), (372,240,l), (-1111,240,l), (-1118,195,l), (327,195,l), (170,35,l) ); } ); width = 600; } ); }, { glyphname = equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-481,525,l), (-503,385,l), (333,385,l), (364,332,l), (309,275,l), (-520,275,l), (-543,135,l), (181,135,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-481,490,l), (-494,410,l), (383,410,l), (433,333,l), (351,250,l), (-519,250,l), (-532,170,l), (274,170,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-475,466,l), (-482,421,l), (405,421,l), (465,333,l), (373,240,l), (-511,240,l), (-518,195,l), (328,195,l), (170,35,l) ); } ); width = 600; } ); }, { glyphname = equal_greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-49,35,l), (218,330,l), (45,625,l), (-127,625,l), (-69,525,l), (-1081,525,l), (-1103,385,l), (13,385,l), (46,334,l), (-10,275,l), (-1120,275,l), (-1143,135,l), (-138,135,l), (-230,35,l) ); }, { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (366,334,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-45,35,l), (233,330,l), (49,625,l), (-52,625,l), (33,490,l), (-1081,490,l), (-1094,410,l), (83,410,l), (135,334,l), (51,250,l), (-1119,250,l), (-1132,170,l), (-26,170,l), (-155,35,l) ); }, { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (434,335,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-48,35,l), (243,331,l), (46,625,l), (-11,625,l), (95,466,l), (-1075,466,l), (-1082,421,l), (125,421,l), (185,333,l), (92,240,l), (-1111,240,l), (-1118,195,l), (47,195,l), (-110,35,l) ); }, { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (464,334,l), (170,35,l) ); } ); width = 600; } ); }, { glyphname = equal_less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (147,35,l), (-23,326,l), (250,625,l), (69,625,l), (-22,525,l), (-1081,525,l), (-1103,385,l), (-149,385,l), (-199,330,l), (-166,275,l), (-1120,275,l), (-1143,135,l), (-85,135,l), (-25,35,l) ); }, { closed = 1; nodes = ( (467,35,l), (297,326,l), (570,625,l), (389,625,l), (121,330,l), (295,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (177,35,l), (-7,328,l), (280,625,l), (170,625,l), (43,490,l), (-1081,490,l), (-1094,410,l), (-33,410,l), (-109,330,l), (-58,250,l), (-1119,250,l), (-1132,170,l), (-9,170,l), (76,35,l) ); }, { closed = 1; nodes = ( (457,35,l), (273,328,l), (560,625,l), (450,625,l), (171,330,l), (356,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (173,35,l), (-25,327,l), (274,625,l), (211,625,l), (54,466,l), (-1075,466,l), (-1082,421,l), (10,421,l), (-81,330,l), (-21,240,l), (-1111,240,l), (-1118,195,l), (10,195,l), (117,35,l) ); }, { closed = 1; nodes = ( (453,35,l), (255,327,l), (554,625,l), (491,625,l), (199,330,l), (397,35,l) ); } ); width = 600; } ); }, { glyphname = equal_slash_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-503,0,l), (-395,135,l), (497,135,l), (520,275,l), (-281,275,l), (-193,385,l), (537,385,l), (559,525,l), (-81,525,l), (32,665,l), (-118,665,l), (-231,525,l), (-1121,525,l), (-1143,385,l), (-343,385,l), (-431,275,l), (-1160,275,l), (-1183,135,l), (-545,135,l), (-653,0,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-534,0,l), (-397,170,l), (483,170,l), (496,250,l), (-332,250,l), (-204,410,l), (521,410,l), (534,490,l), (-139,490,l), (1,665,l), (-89,665,l), (-229,490,l), (-1106,490,l), (-1119,410,l), (-294,410,l), (-422,250,l), (-1144,250,l), (-1157,170,l), (-487,170,l), (-624,0,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-549,0,l), (-396,190,l), (486,190,l), (494,240,l), (-356,240,l), (-210,420,l), (523,420,l), (530,470,l), (-171,470,l), (-14,665,l), (-74,665,l), (-231,470,l), (-1110,470,l), (-1117,420,l), (-270,420,l), (-416,240,l), (-1146,240,l), (-1154,190,l), (-456,190,l), (-609,0,l) ); } ); width = 600; } ); }, { glyphname = greater_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-414,35,l), (-210,260,l), (517,260,l), (539,400,l), (-188,400,l), (-320,625,l), (-492,625,l), (-324,334,l), (-595,34,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-433,35,l), (-192,290,l), (517,290,l), (530,370,l), (-179,370,l), (-339,625,l), (-440,625,l), (-259,337,l), (-543,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-474,35,l), (-205,308,l), (510,308,l), (517,353,l), (-197,353,l), (-380,625,l), (-437,625,l), (-242,334,l), (-536,35,l) ); } ); width = 600; } ); }, { glyphname = greater_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-969,35,l), (-765,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (323,400,l), (-743,400,l), (-875,625,l), (-1047,625,l), (-878,333,l), (-1150,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1034,35,l), (-793,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (410,370,l), (-780,370,l), (-940,625,l), (-1041,625,l), (-858,337,l), (-1144,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1073,35,l), (-804,308,l), (440,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (451,353,l), (-796,353,l), (-979,625,l), (-1036,625,l), (-842,335,l), (-1135,35,l) ); } ); width = 600; } ); }, { glyphname = greater_bracketright.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-485,15); ref = greater; }, { alignment = -1; pos = (-25,0); ref = bracketright; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-500,15); ref = greater; }, { alignment = -1; pos = (-50,0); ref = bracketright; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-500,15); ref = greater; }, { alignment = -1; pos = (-50,0); ref = bracketright; } ); width = 600; } ); }, { glyphname = greater_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-460,0); ref = greater; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-460,0); ref = greater; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-460,0); ref = greater; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; } ); }, { glyphname = greater_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (317,351,l), (340,498,l), (-238,700,l), (-260,568,l), (147,444,ls), (173,436,o), (214,434,o), (236,435,c), (235,425,l), (212,425,o), (171,421,o), (142,413,cs), (-304,291,l), (-325,150,l) ); }, { closed = 1; nodes = ( (280,121,l), (300,248,l), (-342,47,l), (-362,-80,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (320,375,l), (336,475,l), (-238,700,l), (-252,617,l), (211,446,ls), (233,438,o), (254,434,o), (264,433,c), (263,426,l), (253,425,o), (230,421,o), (206,413,cs), (-311,245,l), (-325,150,l) ); }, { closed = 1; nodes = ( (285,151,l), (299,237,l), (-346,12,l), (-361,-74,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (304,398,l), (313,453,l), (-212,676,l), (-221,622,l), (184,457,ls), (210,446,o), (242,436,o), (259,431,c), (258,426,l), (239,421,o), (205,410,o), (175,399,cs), (-283,231,l), (-291,174,l) ); }, { closed = 1; nodes = ( (271,187,l), (279,240,l), (-316,20,l), (-324,-33,l) ); } ); width = 600; } ); }, { glyphname = greater_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-969,35,l), (-879,135,l), (182,135,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-816,525,l), (-875,625,l), (-1047,625,l), (-882,333,l), (-1150,35,l) ); }, { closed = 1; nodes = ( (-702,330,l), (-734,385,l), (333,385,l), (363,333,l), (309,275,l), (-751,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1034,35,l), (-907,170,l), (273,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (334,490,l), (-855,490,l), (-940,625,l), (-1041,625,l), (-859,333,l), (-1144,35,l) ); }, { closed = 1; nodes = ( (-756,330,l), (-806,410,l), (384,410,l), (434,333,l), (350,250,l), (-831,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1073,35,l), (-916,195,l), (327,195,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-872,466,l), (-979,625,l), (-1036,625,l), (-844,334,l), (-1135,35,l) ); }, { closed = 1; nodes = ( (-782,331,l), (-842,421,l), (405,421,l), (464,333,l), (372,240,l), (-871,240,l) ); } ); width = 600; } ); }, { glyphname = greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-44,0); ref = greater; }, { alignment = -1; pos = (-555,-1); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-44,0); ref = greater; }, { alignment = -1; pos = (-555,-1); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-44,0); ref = greater; }, { alignment = -1; pos = (-555,0); ref = greater; } ); width = 600; } ); }, { glyphname = greater_greater_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-669,35,l), (-465,260,l), (517,260,l), (539,400,l), (-443,400,l), (-575,625,l), (-747,625,l), (-582,334,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-969,35,l), (-702,330,l), (-875,625,l), (-1047,625,l), (-882,334,l), (-1150,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-734,35,l), (-493,290,l), (517,290,l), (530,370,l), (-480,370,l), (-640,625,l), (-741,625,l), (-561,337,l), (-844,35,l) ); }, { closed = 1; nodes = ( (-1034,35,l), (-756,330,l), (-940,625,l), (-1041,625,l), (-861,337,l), (-1144,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-788,35,l), (-519,308,l), (510,308,l), (517,353,l), (-511,353,l), (-694,625,l), (-751,625,l), (-559,334,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-1068,35,l), (-777,331,l), (-974,625,l), (-1031,625,l), (-839,334,l), (-1130,35,l) ); } ); width = 600; } ); }, { glyphname = greater_greater_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-669,35,l), (-579,135,l), (497,135,l), (520,275,l), (-451,275,l), (-402,330,l), (-434,385,l), (537,385,l), (559,525,l), (-516,525,l), (-575,625,l), (-747,625,l), (-581,333,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-969,35,l), (-702,330,l), (-875,625,l), (-1047,625,l), (-881,333,l), (-1150,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-734,35,l), (-607,170,l), (498,170,l), (511,250,l), (-531,250,l), (-456,330,l), (-506,410,l), (536,410,l), (549,490,l), (-555,490,l), (-640,625,l), (-741,625,l), (-564,336,l), (-844,35,l) ); }, { closed = 1; nodes = ( (-1034,35,l), (-756,330,l), (-940,625,l), (-1041,625,l), (-864,336,l), (-1144,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-788,35,l), (-631,195,l), (493,195,l), (500,240,l), (-586,240,l), (-497,331,l), (-557,421,l), (529,421,l), (536,466,l), (-587,466,l), (-694,625,l), (-751,625,l), (-560,333,l), (-850,35,l) ); }, { closed = 1; nodes = ( (-1068,35,l), (-777,331,l), (-974,625,l), (-1031,625,l), (-840,333,l), (-1130,35,l) ); } ); width = 600; } ); }, { glyphname = greater_greater_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1000,0); ref = greater; }, { alignment = -1; pos = (-500,0); ref = greater; }, { alignment = -1; ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1000,0); ref = greater; }, { alignment = -1; pos = (-500,0); ref = greater; }, { alignment = -1; ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1000,0); ref = greater; }, { alignment = -1; pos = (-500,0); ref = greater; }, { alignment = -1; ref = greater; } ); width = 600; } ); }, { glyphname = less_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-176,35,l), (-307,260,l), (497,260,l), (519,400,l), (-277,400,l), (-73,625,l), (-254,625,l), (-522,330,l), (-348,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-231,35,l), (-393,290,l), (502,290,l), (515,370,l), (-371,370,l), (-128,625,l), (-238,625,l), (-517,330,l), (-332,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-253,35,l), (-437,307,l), (510,307,l), (517,352,l), (-424,352,l), (-153,625,l), (-215,625,l), (-507,330,l), (-309,35,l) ); } ); width = 600; } ); }, { glyphname = less_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-771,35,l), (-894,246,ls), (-897,251,o), (-899,256,o), (-902,260,c), (517,260,l), (539,400,l), (-882,400,l), (-878,405,o), (-873,410,o), (-868,415,cs), (-678,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-826,35,l), (-975,270,ls), (-982,279,o), (-987,288,o), (-992,295,c), (518,295,l), (530,370,l), (-976,370,l), (-972,375,o), (-966,381,o), (-961,386,c), (-733,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-850,35,l), (-1010,271,ls), (-1021,286,o), (-1029,299,o), (-1035,308,c), (510,308,l), (517,353,l), (-1026,353,l), (-1017,362,o), (-1005,373,o), (-992,387,cs), (-756,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); }, { glyphname = less_hyphen_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-882,400,l), (-678,625,l), (-854,625,l), (-1122,330,l), (-948,35,l), (-771,35,l), (-902,260,l), (327,260,l), (292,35,l), (442,35,l), (535,625,l), (385,625,l), (349,400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-976,370,l), (-733,625,l), (-838,625,l), (-1117,330,l), (-932,35,l), (-826,35,l), (-988,290,l), (382,290,l), (342,35,l), (432,35,l), (525,625,l), (435,625,l), (395,370,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1026,353,l), (-756,625,l), (-815,625,l), (-1107,330,l), (-909,35,l), (-850,35,l), (-1035,308,l), (415,308,l), (372,35,l), (422,35,l), (515,625,l), (465,625,l), (422,353,l) ); } ); width = 600; } ); }, { glyphname = less_hyphen_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-776,35,l), (-907,260,l), (293,260,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (194,625,l), (324,400,l), (-876,400,l), (-672,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-993,290,l), (388,290,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (411,370,l), (-971,370,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-1038,308,l), (440,308,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (451,353,l), (-1023,353,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); }, { glyphname = less_hyphen_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-776,35,l), (-907,260,l), (162,260,l), (295,35,l), (467,35,l), (304,324,l), (570,625,l), (389,625,l), (184,400,l), (-877,400,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-993,290,l), (196,290,l), (356,35,l), (457,35,l), (281,326,l), (560,625,l), (450,625,l), (209,370,l), (-971,370,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-1038,308,l), (214,308,l), (397,35,l), (453,35,l), (259,326,l), (553,625,l), (491,625,l), (222,353,l), (-1023,353,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); }, { glyphname = less_colon.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-465,0); ref = less; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-460,0); ref = less; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-460,0); ref = less; }, { alignment = -1; pos = (0,55); ref = colon; } ); width = 600; } ); }, { glyphname = less_exclam_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1371,35,l), (-1494,246,ls), (-1526,301,o), (-1542,327,o), (-1546,331,c), (-1542,335,o), (-1518,361,o), (-1468,415,cs), (-1278,625,l), (-1454,625,l), (-1722,330,l), (-1548,35,l) ); }, { closed = 1; nodes = ( (-1113,260,l), (-1091,400,l), (-1581,400,l), (-1603,260,l) ); }, { closed = 1; nodes = ( (517,260,l), (539,400,l), (-671,400,l), (-693,260,l) ); }, { alignment = -1; pos = (-1244,0); ref = exclam; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1426,35,l), (-1575,270,ls), (-1598,304,o), (-1612,325,o), (-1616,331,c), (-1610,337,o), (-1591,355,o), (-1561,386,cs), (-1333,625,l), (-1438,625,l), (-1717,330,l), (-1532,35,l) ); }, { closed = 1; nodes = ( (-1098,290,l), (-1085,370,l), (-1630,370,l), (-1643,290,l) ); }, { closed = 1; nodes = ( (517,290,l), (530,370,l), (-685,370,l), (-698,290,l) ); }, { alignment = -1; pos = (-1244,0); ref = exclam; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1440,35,l), (-1600,271,ls), (-1623,305,o), (-1638,324,o), (-1642,330,c), (-1634,336,o), (-1613,356,o), (-1582,387,cs), (-1346,625,l), (-1405,625,l), (-1697,330,l), (-1499,35,l) ); }, { closed = 1; nodes = ( (-1095,308,l), (-1088,353,l), (-1658,353,l), (-1665,308,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,353,l), (-688,353,l), (-695,308,l) ); }, { alignment = -1; pos = (-1244,0); ref = exclam; } ); width = 600; } ); }, { glyphname = less_asterisk.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (187,127,ls), (228,175,o), (265,257,o), (282,299,c), (288,299,l), (293,257,o), (304,174,o), (329,127,cs), (369,52,l), (487,126,l), (448,202,l), (422,248,o), (363,297,o), (331,322,c), (334,326,l), (379,326,o), (459,330,o), (514,348,cs), (601,377,l), (575,499,l), (488,470,ls), (434,452,o), (362,401,o), (323,372,c), (319,375,l), (341,416,o), (382,497,o), (391,555,cs), (404,640,l), (274,640,l), (261,555,ls), (252,497,o), (267,416,o), (275,375,c), (270,371,l), (240,400,o), (185,452,o), (135,470,cs), (58,499,l), (-5,377,l), (71,348,ls), (120,329,o), (201,326,o), (246,326,c), (247,323,l), (206,298,o), (131,248,o), (92,201,cs), (29,126,l), (123,52,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (203,172,ls), (234,209,o), (266,264,o), (284,300,c), (292,300,l), (298,264,o), (312,208,o), (331,172,cs), (389,64,l), (469,114,l), (411,222,ls), (392,258,o), (354,297,o), (328,322,c), (333,331,l), (372,334,o), (430,341,o), (473,355,cs), (599,397,l), (582,480,l), (456,438,ls), (412,423,o), (357,390,o), (322,368,c), (318,371,l), (335,408,o), (359,469,o), (367,515,cs), (386,640,l), (298,640,l), (279,515,ls), (271,469,o), (277,408,o), (281,371,c), (275,367,l), (248,390,o), (203,423,o), (163,438,cs), (51,480,l), (8,397,l), (120,355,ls), (159,341,o), (216,333,o), (253,330,c), (255,323,l), (221,299,o), (170,259,o), (139,222,cs), (48,114,l), (112,64,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (208,207,ls), (254,259,o), (263,287,o), (279,310,c), (290,310,l), (297,286,o), (299,259,o), (329,207,cs), (394,93,l), (443,124,l), (378,238,ls), (349,289,o), (329,305,o), (314,323,c), (320,336,l), (345,339,o), (373,340,o), (430,362,cs), (570,416,l), (560,466,l), (419,413,ls), (364,392,o), (340,376,o), (317,364,c), (309,371,l), (318,395,o), (330,421,o), (339,480,cs), (363,630,l), (309,630,l), (285,480,ls), (276,421,o), (281,395,o), (281,371,c), (271,364,l), (252,376,o), (232,392,o), (182,414,cs), (60,467,l), (33,417,l), (155,363,ls), (206,341,o), (234,341,o), (257,338,c), (259,324,l), (238,306,o), (215,289,o), (169,238,cs), (68,125,l), (108,94,l) ); }, { alignment = -1; pos = (-610,0); ref = less; } ); width = 600; } ); }, { glyphname = less_asterisk_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-395,127,ls), (-354,175,o), (-317,257,o), (-300,299,c), (-294,299,l), (-289,257,o), (-278,174,o), (-253,127,cs), (-213,52,l), (-95,126,l), (-134,202,l), (-160,248,o), (-219,297,o), (-251,322,c), (-248,326,l), (-203,326,o), (-123,330,o), (-68,348,cs), (19,377,l), (-7,499,l), (-94,470,ls), (-148,452,o), (-220,401,o), (-259,372,c), (-263,375,l), (-241,416,o), (-200,497,o), (-191,555,cs), (-178,640,l), (-308,640,l), (-321,555,ls), (-330,497,o), (-315,416,o), (-307,375,c), (-312,371,l), (-342,400,o), (-397,452,o), (-447,470,cs), (-524,499,l), (-587,377,l), (-511,348,ls), (-462,329,o), (-381,326,o), (-336,326,c), (-335,323,l), (-401,282,o), (-462,235,o), (-490,201,cs), (-553,126,l), (-459,52,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-382,172,ls), (-351,209,o), (-319,264,o), (-301,300,c), (-293,300,l), (-287,264,o), (-273,208,o), (-254,172,cs), (-196,64,l), (-116,114,l), (-174,222,ls), (-193,258,o), (-231,297,o), (-257,322,c), (-252,331,l), (-213,334,o), (-155,341,o), (-112,355,cs), (14,397,l), (-3,480,l), (-129,438,ls), (-173,423,o), (-228,390,o), (-263,368,c), (-267,371,l), (-250,408,o), (-226,469,o), (-218,515,cs), (-199,640,l), (-287,640,l), (-306,515,ls), (-314,469,o), (-308,408,o), (-304,371,c), (-310,367,l), (-337,390,o), (-382,423,o), (-422,438,cs), (-534,480,l), (-577,397,l), (-465,355,ls), (-426,341,o), (-369,333,o), (-332,330,c), (-330,323,l), (-364,299,o), (-415,259,o), (-446,222,cs), (-537,114,l), (-473,64,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-372,207,ls), (-326,259,o), (-317,287,o), (-301,310,c), (-290,310,l), (-283,286,o), (-281,259,o), (-251,207,cs), (-186,93,l), (-137,124,l), (-202,238,ls), (-231,289,o), (-251,305,o), (-266,323,c), (-260,336,l), (-235,339,o), (-207,340,o), (-150,362,cs), (-10,416,l), (-20,466,l), (-161,413,ls), (-216,392,o), (-240,376,o), (-263,364,c), (-271,371,l), (-262,395,o), (-250,421,o), (-241,480,cs), (-217,630,l), (-271,630,l), (-295,480,ls), (-304,421,o), (-299,395,o), (-299,371,c), (-309,364,l), (-328,376,o), (-348,392,o), (-398,414,cs), (-520,467,l), (-547,417,l), (-425,363,ls), (-374,341,o), (-346,341,o), (-323,338,c), (-321,324,l), (-342,306,o), (-365,289,o), (-411,238,cs), (-512,125,l), (-472,94,l) ); }, { alignment = -1; pos = (-1172,0); ref = less; }, { alignment = -1; pos = (-2,0); ref = greater; } ); width = 600; } ); }, { glyphname = less_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (283,-85,l), (415,750,l), (265,750,l), (-365,402,l), (-388,258,l), (133,-85,l) ); }, { closed = 1; nodes = ( (-245,333,l), (236,587,l), (156,81,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (268,-85,l), (400,750,l), (310,750,l), (-344,380,l), (-360,280,l), (178,-85,l) ); }, { closed = 1; nodes = ( (-276,328,l), (290,643,l), (191,19,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (248,-85,l), (380,750,l), (330,750,l), (-328,356,l), (-336,302,l), (198,-85,l) ); }, { closed = 1; nodes = ( (-290,328,l), (320,689,l), (207,-29,l) ); } ); width = 600; } ); }, { glyphname = less_bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (183,-85,l), (315,750,l), (165,750,l), (33,-85,l) ); }, { alignment = -1; pos = (-545,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (153,-85,l), (285,750,l), (195,750,l), (63,-85,l) ); }, { alignment = -1; pos = (-545,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (133,-85,l), (265,750,l), (215,750,l), (83,-85,l) ); }, { alignment = -1; pos = (-545,0); ref = less_bar.liga; } ); width = 600; } ); }, { glyphname = less_bar_bar_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (108,-85,l), (240,750,l), (90,750,l), (-42,-85,l) ); }, { closed = 1; nodes = ( (-322,-85,l), (-190,750,l), (-340,750,l), (-472,-85,l) ); }, { alignment = -1; pos = (-1050,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (78,-85,l), (210,750,l), (120,750,l), (-12,-85,l) ); }, { closed = 1; nodes = ( (-352,-85,l), (-220,750,l), (-310,750,l), (-442,-85,l) ); }, { alignment = -1; pos = (-1050,0); ref = less_bar.liga; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (58,-85,l), (190,750,l), (140,750,l), (8,-85,l) ); }, { closed = 1; nodes = ( (-372,-85,l), (-240,750,l), (-290,750,l), (-422,-85,l) ); }, { alignment = -1; pos = (-1050,0); ref = less_bar.liga; } ); width = 600; } ); }, { glyphname = less_bar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,258,l), (480,402,l), (-40,750,l), (-65,595,l), (335,341,l), (-146,89,l), (-172,-85,l) ); }, { closed = 1; nodes = ( (-517,76,l), (-918,326,l), (-437,582,l), (-410,750,l), (-1040,402,l), (-1063,258,l), (-542,-85,l) ); }, { closed = 1; nodes = ( (-286,-110,l), (-145,780,l), (-295,780,l), (-436,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (450,280,l), (466,380,l), (-70,750,l), (-87,652,l), (377,335,l), (-186,26,l), (-203,-86,l) ); }, { closed = 1; nodes = ( (-496,14,l), (-961,325,l), (-397,641,l), (-380,750,l), (-1034,380,l), (-1050,280,l), (-513,-87,l) ); }, { closed = 1; nodes = ( (-316,-110,l), (-175,780,l), (-265,780,l), (-406,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (444,306,l), (453,360,l), (-80,750,l), (-90,691,l), (396,336,l), (-203,-23,l), (-213,-86,l) ); }, { closed = 1; nodes = ( (-492,-27,l), (-979,328,l), (-380,687,l), (-370,750,l), (-1027,357,l), (-1036,304,l), (-503,-86,l) ); }, { closed = 1; nodes = ( (-336,-110,l), (-195,780,l), (-245,780,l), (-386,-110,l) ); } ); width = 600; } ); }, { glyphname = less_dollar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (238,-140,l), (259,-9,l), (396,2,o), (497,86,o), (516,206,cs), (533,317,o), (472,400,o), (353,429,cs), (328,435,l), (356,606,l), (394,597,o), (412,572,o), (406,535,c), (556,535,l), (574,651,o), (505,728,o), (377,739,c), (398,870,l), (333,870,l), (312,739,l), (181,727,o), (89,647,o), (71,529,cs), (54,418,o), (111,337,o), (232,305,cs), (243,302,l), (214,121,l), (157,123,o), (110,125,o), (83,136,c), (-415,325,l), (-39,469,l), (-18,609,l), (-511,400,l), (-533,257,l), (16,24,ls), (58,6,o), (123,-6,o), (194,-9,c), (173,-140,l) ); }, { closed = 1; nodes = ( (316,351,l), (248,290,l), (330,298,o), (374,257,o), (365,199,cs), (358,157,o), (326,129,o), (279,122,c) ); }, { closed = 1; nodes = ( (320,444,l), (249,441,o), (212,475,o), (222,535,cs), (228,573,o), (253,598,o), (291,607,c), (256,387,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (254,-140,l), (275,-9,l), (393,3,o), (482,80,o), (499,190,cs), (515,287,o), (468,365,o), (379,395,cs), (341,408,l), (380,658,l), (439,648,o), (466,607,o), (456,545,c), (546,545,l), (562,654,o), (502,728,o), (393,739,c), (414,870,l), (354,870,l), (333,738,l), (219,727,o), (136,653,o), (119,546,cs), (104,449,o), (151,372,o), (243,344,cs), (269,336,l), (227,71,l), (155,73,o), (97,82,o), (42,108,c), (-436,327,l), (-39,503,l), (-25,595,l), (-489,380,l), (-505,280,l), (-3,42,ls), (62,11,o), (134,-6,o), (215,-9,c), (194,-140,l) ); }, { closed = 1; nodes = ( (326,317,l), (337,313,ls), (391,293,o), (418,248,o), (409,188,cs), (399,124,o), (354,82,o), (287,72,c) ); }, { closed = 1; nodes = ( (300,418,l), (232,433,o), (198,482,o), (210,550,cs), (219,610,o), (260,650,o), (320,658,c), (278,387,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (239,-140,l), (260,-9,l), (379,1,o), (462,70,o), (479,177,cs), (495,274,o), (447,351,o), (351,382,cs), (323,391,l), (371,694,l), (452,686,o), (491,632,o), (478,548,c), (528,548,l), (546,658,o), (486,732,o), (378,739,c), (399,870,l), (359,870,l), (338,739,l), (226,732,o), (146,664,o), (130,559,cs), (115,469,o), (163,393,o), (252,366,cs), (278,358,l), (227,35,l), (171,37,o), (111,48,o), (58,75,cs), (-449,330,l), (-46,525,l), (-37,580,l), (-493,353,l), (-500,307,l), (36,34,ls), (91,6,o), (158,-8,o), (219,-10,c), (199,-140,l) ); }, { closed = 1; nodes = ( (316,346,l), (333,341,ls), (406,320,o), (442,259,o), (429,177,cs), (417,101,o), (353,47,o), (267,37,c) ); }, { closed = 1; nodes = ( (271,408,ls), (201,434,o), (169,488,o), (180,563,cs), (192,639,o), (249,687,o), (331,694,c), (285,403,l) ); } ); width = 600; } ); }, { glyphname = less_dollar_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-331,-140,l), (-310,-9,l), (-173,2,o), (-72,86,o), (-53,206,cs), (-35,324,o), (-90,398,o), (-215,428,cs), (-240,434,l), (-213,608,l), (-183,605,o), (-157,602,o), (-131,589,c), (401,334,l), (25,190,l), (4,49,l), (497,258,l), (520,401,l), (-62,694,ls), (-106,716,o), (-153,732,o), (-192,737,c), (-171,870,l), (-236,870,l), (-257,739,l), (-388,727,o), (-480,647,o), (-498,529,cs), (-516,414,o), (-457,338,o), (-338,306,cs), (-327,303,l), (-355,121,l), (-412,123,o), (-459,124,o), (-486,135,c), (-985,324,l), (-609,468,l), (-588,609,l), (-1081,400,l), (-1103,257,l), (-553,24,ls), (-511,6,o), (-446,-6,o), (-375,-9,c), (-396,-140,l) ); }, { closed = 1; nodes = ( (-258,324,l), (-322,291,l), (-240,299,o), (-195,257,o), (-204,199,cs), (-211,157,o), (-243,129,o), (-290,122,c) ); }, { closed = 1; nodes = ( (-248,443,l), (-320,440,o), (-356,480,o), (-347,535,cs), (-341,573,o), (-316,598,o), (-278,607,c), (-308,414,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-331,-140,l), (-310,-9,l), (-192,3,o), (-103,80,o), (-86,190,cs), (-71,285,o), (-118,365,o), (-206,395,cs), (-244,408,l), (-205,658,l), (-172,653,o), (-136,645,o), (-96,623,c), (438,333,l), (40,157,l), (26,65,l), (490,280,l), (506,380,l), (-48,689,ls), (-94,715,o), (-147,732,o), (-192,737,c), (-171,870,l), (-231,870,l), (-252,737,l), (-366,726,o), (-449,653,o), (-466,546,cs), (-481,449,o), (-434,372,o), (-342,344,cs), (-316,336,l), (-358,71,l), (-430,73,o), (-488,82,o), (-543,108,c), (-1021,327,l), (-624,503,l), (-610,595,l), (-1074,380,l), (-1090,280,l), (-588,42,ls), (-523,11,o), (-451,-6,o), (-370,-9,c), (-391,-140,l) ); }, { closed = 1; nodes = ( (-259,317,l), (-248,313,ls), (-192,293,o), (-167,249,o), (-176,188,cs), (-186,124,o), (-231,82,o), (-298,72,c) ); }, { closed = 1; nodes = ( (-275,416,l), (-346,427,o), (-385,479,o), (-375,550,cs), (-366,607,o), (-323,649,o), (-265,658,c), (-307,389,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-346,-140,l), (-325,-9,l), (-203,-1,o), (-118,68,o), (-101,177,cs), (-86,271,o), (-134,348,o), (-229,382,cs), (-261,393,l), (-214,693,l), (-179,690,o), (-146,681,o), (-114,662,cs), (446,332,l), (42,136,l), (34,80,l), (490,307,l), (497,353,l), (-84,699,ls), (-123,722,o), (-164,736,o), (-207,739,c), (-186,870,l), (-226,870,l), (-247,739,l), (-355,731,o), (-434,662,o), (-450,559,cs), (-465,468,o), (-420,396,o), (-328,366,cs), (-307,359,l), (-358,35,l), (-413,37,o), (-471,48,o), (-522,74,cs), (-1030,328,l), (-626,524,l), (-617,580,l), (-1073,353,l), (-1080,307,l), (-544,34,ls), (-491,7,o), (-425,-8,o), (-366,-10,c), (-386,-140,l) ); }, { closed = 1; nodes = ( (-268,348,l), (-247,341,ls), (-175,317,o), (-139,256,o), (-151,177,cs), (-163,99,o), (-229,45,o), (-318,36,c) ); }, { closed = 1; nodes = ( (-309,408,ls), (-378,428,o), (-412,486,o), (-400,563,cs), (-388,637,o), (-332,686,o), (-254,693,c), (-299,405,l) ); } ); width = 600; } ); }, { glyphname = less_numbersign_hyphen_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1376,35,l), (-1507,260,l), (-1233,260,l), (-1211,400,l), (-1477,400,l), (-1273,625,l), (-1454,625,l), (-1722,330,l), (-1548,35,l) ); }, { closed = 1; nodes = ( (517,260,l), (539,400,l), (-541,400,l), (-563,260,l) ); }, { alignment = -1; pos = (-1200,0); ref = numbersign; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1430,35,l), (-1592,290,l), (-1228,290,l), (-1215,370,l), (-1572,370,l), (-1329,625,l), (-1438,625,l), (-1717,330,l), (-1532,35,l) ); }, { closed = 1; nodes = ( (517,290,l), (530,370,l), (-545,370,l), (-558,290,l) ); }, { alignment = -1; pos = (-1200,0); ref = numbersign; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1443,35,l), (-1628,308,l), (-1225,308,l), (-1218,353,l), (-1613,353,l), (-1343,625,l), (-1405,625,l), (-1697,330,l), (-1499,35,l) ); }, { closed = 1; nodes = ( (510,308,l), (517,353,l), (-548,353,l), (-555,308,l) ); }, { alignment = -1; pos = (-1200,0); ref = numbersign; } ); width = 600; } ); }, { glyphname = less_plus.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (303,45,l), (337,260,l), (547,260,l), (569,400,l), (359,400,l), (393,615,l), (243,615,l), (209,400,l), (-1,400,l), (-23,260,l), (187,260,l), (153,45,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (272,45,l), (311,290,l), (552,290,l), (565,370,l), (324,370,l), (362,615,l), (274,615,l), (236,370,l), (-5,370,l), (-18,290,l), (223,290,l), (184,45,l) ); }, { alignment = -1; pos = (-615,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (236,60,l), (275,310,l), (515,310,l), (522,355,l), (282,355,l), (322,605,l), (272,605,l), (232,355,l), (-8,355,l), (-15,310,l), (225,310,l), (186,60,l) ); }, { alignment = -1; pos = (-610,0); ref = less; } ); width = 600; } ); }, { glyphname = less_plus_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-252,45,l), (-218,260,l), (-8,260,l), (14,400,l), (-196,400,l), (-162,615,l), (-312,615,l), (-346,400,l), (-556,400,l), (-578,260,l), (-368,260,l), (-402,45,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-293,45,l), (-254,290,l), (-13,290,l), (0,370,l), (-241,370,l), (-203,615,l), (-291,615,l), (-329,370,l), (-570,370,l), (-583,290,l), (-342,290,l), (-381,45,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-309,60,l), (-270,310,l), (-30,310,l), (-23,355,l), (-263,355,l), (-223,605,l), (-273,605,l), (-313,355,l), (-553,355,l), (-560,310,l), (-320,310,l), (-359,60,l) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; } ); }, { glyphname = less_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (306,283,l), (-99,411,ls), (-126,419,o), (-166,421,o), (-189,420,c), (-187,430,l), (-165,429,o), (-124,430,o), (-95,438,cs), (350,560,l), (372,700,l), (-270,498,l), (-293,351,l), (285,150,l) ); }, { closed = 1; nodes = ( (268,47,l), (-310,248,l), (-330,121,l), (248,-80,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (299,240,l), (-164,411,ls), (-186,419,o), (-207,423,o), (-217,423,c), (-216,430,l), (-206,431,o), (-183,435,o), (-159,443,cs), (358,611,l), (372,700,l), (-274,475,l), (-290,375,l), (285,150,l) ); }, { closed = 1; nodes = ( (263,11,l), (-311,237,l), (-325,152,l), (249,-74,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (277,226,l), (-127,394,ls), (-153,405,o), (-185,416,o), (-202,421,c), (-201,426,l), (-182,431,o), (-148,441,o), (-118,452,cs), (339,617,l), (348,676,l), (-247,453,l), (-256,398,l), (269,174,l) ); }, { closed = 1; nodes = ( (244,19,l), (-281,239,l), (-289,187,l), (236,-33,l) ); } ); width = 600; } ); }, { glyphname = less_equal_bar.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-777,35,l), (-835,135,l), (307,135,l), (292,35,l), (442,35,l), (535,625,l), (385,625,l), (369,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); }, { closed = 1; nodes = ( (-944,327,l), (-891,385,l), (347,385,l), (330,275,l), (-916,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-916,170,l), (363,170,l), (342,35,l), (432,35,l), (525,625,l), (435,625,l), (414,490,l), (-857,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); }, { closed = 1; nodes = ( (-1013,326,l), (-934,410,l), (401,410,l), (376,250,l), (-966,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-962,195,l), (397,195,l), (372,35,l), (422,35,l), (515,625,l), (465,625,l), (440,466,l), (-910,466,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); }, { closed = 1; nodes = ( (-1049,328,l), (-955,421,l), (433,421,l), (404,240,l), (-992,240,l) ); } ); width = 600; } ); }, { glyphname = less_equal_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-776,35,l), (-834,135,l), (497,135,l), (520,275,l), (-914,275,l), (-942,326,l), (-890,385,l), (537,385,l), (559,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-916,170,l), (498,170,l), (511,250,l), (-966,250,l), (-1013,326,l), (-934,410,l), (536,410,l), (549,490,l), (-857,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-961,195,l), (492,195,l), (499,240,l), (-991,240,l), (-1050,327,l), (-956,421,l), (528,421,l), (535,466,l), (-911,466,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); }, { glyphname = less_equal_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-1377,35,l), (-1436,135,l), (181,135,l), (89,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-1364,525,l), (-1273,625,l), (-1454,625,l), (-1722,330,l), (-1548,35,l) ); }, { closed = 1; nodes = ( (-1543,326,l), (-1490,385,l), (332,385,l), (362,333,l), (308,275,l), (-1516,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-1431,35,l), (-1516,170,l), (274,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-1457,490,l), (-1328,625,l), (-1438,625,l), (-1717,330,l), (-1532,35,l) ); }, { closed = 1; nodes = ( (-1611,326,l), (-1534,410,l), (383,410,l), (431,334,l), (351,250,l), (-1566,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-1443,35,l), (-1551,195,l), (328,195,l), (170,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (375,466,l), (-1501,466,l), (-1343,625,l), (-1405,625,l), (-1697,330,l), (-1499,35,l) ); }, { closed = 1; nodes = ( (-1638,327,l), (-1546,421,l), (405,421,l), (462,333,l), (373,240,l), (-1581,240,l) ); } ); width = 600; } ); }, { glyphname = less_equal_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-777,35,l), (-835,135,l), (181,135,l), (90,35,l), (271,35,l), (538,330,l), (365,625,l), (193,625,l), (251,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); }, { closed = 1; nodes = ( (-943,326,l), (-890,385,l), (333,385,l), (363,333,l), (308,275,l), (-915,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-917,170,l), (274,170,l), (145,35,l), (255,35,l), (533,330,l), (349,625,l), (248,625,l), (333,490,l), (-856,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); }, { closed = 1; nodes = ( (-1014,325,l), (-933,410,l), (383,410,l), (431,333,l), (351,250,l), (-967,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-960,195,l), (327,195,l), (169,35,l), (232,35,l), (523,331,l), (326,625,l), (269,625,l), (374,466,l), (-910,466,l), (-752,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); }, { closed = 1; nodes = ( (-1048,326,l), (-955,421,l), (404,421,l), (460,333,l), (371,240,l), (-990,240,l) ); } ); width = 600; } ); }, { glyphname = less_equal_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-777,35,l), (-836,135,l), (235,135,l), (295,35,l), (466,35,l), (299,326,l), (570,625,l), (389,625,l), (298,525,l), (-764,525,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); }, { closed = 1; nodes = ( (-945,326,l), (-891,385,l), (171,385,l), (121,330,l), (154,275,l), (-917,275,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-831,35,l), (-916,170,l), (271,170,l), (356,35,l), (457,35,l), (276,326,l), (560,625,l), (450,625,l), (323,490,l), (-857,490,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); }, { closed = 1; nodes = ( (-1013,327,l), (-934,410,l), (247,410,l), (171,330,l), (222,250,l), (-966,250,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-853,35,l), (-961,195,l), (290,195,l), (397,35,l), (453,35,l), (259,326,l), (553,625,l), (491,625,l), (334,466,l), (-911,466,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); }, { closed = 1; nodes = ( (-1049,326,l), (-956,421,l), (290,421,l), (199,330,l), (259,240,l), (-991,240,l) ); } ); width = 600; } ); }, { glyphname = less_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (457,258,l), (480,401,l), (57,640,l), (-440,401,l), (-463,258,l), (-41,20,l) ); }, { closed = 1; nodes = ( (-273,304,ls), (-297,318,o), (-325,327,o), (-339,330,c), (-324,331,o), (-293,339,o), (-265,353,cs), (38,504,l), (289,355,ls), (313,341,o), (341,333,o), (356,331,c), (341,330,o), (311,323,o), (281,308,cs), (-25,157,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (460,280,l), (476,380,l), (54,620,l), (-444,380,l), (-460,280,l), (-38,40,l) ); }, { closed = 1; nodes = ( (-326,306,ls), (-348,319,o), (-365,326,o), (-371,328,c), (-364,330,o), (-345,338,o), (-319,350,cs), (46,526,l), (352,354,ls), (374,341,o), (388,335,o), (394,333,c), (389,330,o), (371,322,o), (343,309,cs), (-27,135,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (454,300,l), (463,360,l), (54,620,l), (-437,360,l), (-446,300,l), (-38,40,l) ); }, { closed = 1; nodes = ( (-354,302,ls), (-375,315,o), (-394,325,o), (-403,328,c), (-393,332,o), (-370,343,o), (-345,356,cs), (49,564,l), (373,361,ls), (394,348,o), (414,336,o), (423,331,c), (413,326,o), (389,314,o), (361,300,cs), (-30,97,l) ); } ); width = 600; } ); }, { glyphname = less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-526,0); ref = less; }, { alignment = -1; pos = (-45,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-526,0); ref = less; }, { alignment = -1; pos = (-45,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-526,0); ref = less; }, { alignment = -1; pos = (-45,0); ref = less; } ); width = 600; } ); }, { glyphname = less_less_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-456,35,l), (-587,260,l), (517,260,l), (539,400,l), (-557,400,l), (-353,625,l), (-534,625,l), (-802,330,l), (-628,35,l) ); }, { closed = 1; nodes = ( (-776,35,l), (-944,325,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-531,35,l), (-697,295,l), (518,295,l), (530,370,l), (-671,370,l), (-428,625,l), (-538,625,l), (-817,330,l), (-632,35,l) ); }, { closed = 1; nodes = ( (-831,35,l), (-1015,326,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-573,35,l), (-758,308,l), (510,308,l), (517,353,l), (-743,353,l), (-473,625,l), (-535,625,l), (-827,330,l), (-629,35,l) ); }, { closed = 1; nodes = ( (-853,35,l), (-1049,327,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); }, { glyphname = less_less_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-456,35,l), (-515,135,l), (497,135,l), (520,275,l), (-596,275,l), (-626,326,l), (-571,385,l), (537,385,l), (559,525,l), (-444,525,l), (-353,625,l), (-534,625,l), (-802,330,l), (-628,35,l) ); }, { closed = 1; nodes = ( (-776,35,l), (-944,326,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-531,35,l), (-618,170,l), (458,170,l), (471,250,l), (-668,250,l), (-713,326,l), (-632,410,l), (496,410,l), (509,490,l), (-555,490,l), (-428,625,l), (-538,625,l), (-817,330,l), (-632,35,l) ); }, { closed = 1; nodes = ( (-831,35,l), (-1012,326,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-574,35,l), (-682,195,l), (492,195,l), (499,240,l), (-712,240,l), (-769,326,l), (-676,421,l), (528,421,l), (535,466,l), (-631,466,l), (-473,625,l), (-532,625,l), (-827,330,l), (-629,35,l) ); }, { closed = 1; nodes = ( (-853,35,l), (-1048,326,l), (-752,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); }, { glyphname = less_less_less.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (-1120,0); ref = less; }, { alignment = -1; pos = (-595,0); ref = less; }, { alignment = -1; pos = (-70,0); ref = less; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (-1120,0); ref = less; }, { alignment = -1; pos = (-595,0); ref = less; }, { alignment = -1; pos = (-70,0); ref = less; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (-1120,0); ref = less; }, { alignment = -1; pos = (-595,0); ref = less; }, { alignment = -1; pos = (-70,0); ref = less; } ); width = 600; } ); }, { glyphname = less_less_asciitilde.liga; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-572,35,l), (-769,328,l), (-714,383,l), (-633,383,ls), (-543,383,o), (-555,240,o), (-440,240,cs), (-325,240,o), (-288,383,o), (-203,383,cs), (-113,383,o), (-125,240,o), (-10,240,cs), (105,240,o), (142,383,o), (227,383,cs), (312,383,o), (300,240,o), (420,240,cs), (483,240,o), (526,281,o), (537,350,cs), (545,400,l), (500,400,l), (492,350,ls), (485,307,o), (461,282,o), (426,282,cs), (337,282,o), (349,425,o), (234,425,cs), (119,425,o), (81,282,o), (-4,282,cs), (-89,282,o), (-76,425,o), (-196,425,cs), (-311,425,o), (-349,282,o), (-434,282,cs), (-519,282,o), (-506,425,o), (-626,425,cs), (-672,425,l), (-473,625,l), (-534,625,l), (-826,330,l), (-629,35,l) ); }, { closed = 1; nodes = ( (-852,35,l), (-1048,328,l), (-753,625,l), (-814,625,l), (-1106,330,l), (-909,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-530,35,l), (-715,327,l), (-684,359,l), (-597,359,ls), (-527,359,o), (-543,229,o), (-418,229,cs), (-293,229,o), (-267,359,o), (-197,359,cs), (-127,359,o), (-138,229,o), (-13,229,cs), (112,229,o), (145,359,o), (215,359,cs), (285,359,o), (267,229,o), (392,229,cs), (470,229,o), (531,282,o), (543,359,cs), (549,399,l), (464,399,l), (458,359,ls), (453,323,o), (432,304,o), (402,304,cs), (334,304,o), (349,434,o), (224,434,cs), (99,434,o), (69,304,o), (-1,304,cs), (-69,304,o), (-61,434,o), (-186,434,cs), (-311,434,o), (-336,304,o), (-406,304,cs), (-476,304,o), (-461,434,o), (-586,434,cs), (-613,434,l), (-430,625,l), (-538,625,l), (-817,330,l), (-633,35,l) ); }, { closed = 1; nodes = ( (-830,35,l), (-1014,327,l), (-730,625,l), (-838,625,l), (-1117,330,l), (-933,35,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-455,35,l), (-627,325,l), (-622,331,l), (-566,330,ls), (-511,330,o), (-507,230,o), (-387,230,cs), (-267,230,o), (-231,330,o), (-176,330,cs), (-121,330,o), (-117,230,o), (3,230,cs), (123,230,o), (159,330,o), (214,330,cs), (269,330,o), (273,230,o), (383,230,cs), (467,230,o), (531,280,o), (543,355,cs), (550,400,l), (440,400,l), (435,368,ls), (431,345,o), (416,330,o), (389,330,cs), (334,330,o), (350,430,o), (230,430,cs), (110,430,o), (74,330,o), (19,330,cs), (-36,330,o), (-50,430,o), (-160,430,cs), (-280,430,o), (-316,330,o), (-371,330,cs), (-435,330,o), (-443,465,o), (-611,421,c), (-578,379,l), (-353,625,l), (-533,625,l), (-801,330,l), (-628,35,l) ); }, { closed = 1; nodes = ( (-775,35,l), (-945,325,l), (-673,625,l), (-853,625,l), (-1121,330,l), (-948,35,l) ); } ); width = 600; } ); }, { glyphname = less_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-176,35,l), (-296,246,l), (-214,267,o), (-198,335,o), (-156,335,cs), (-106,335,o), (-120,215,o), (0,215,cs), (120,215,o), (144,335,o), (194,335,cs), (244,335,o), (240,215,o), (360,215,cs), (445,215,o), (518,268,o), (531,350,cs), (539,400,l), (419,400,l), (414,364,ls), (411,339,o), (394,325,o), (372,325,cs), (317,325,o), (331,445,o), (211,445,cs), (91,445,o), (67,325,o), (17,325,cs), (-33,325,o), (-19,445,o), (-139,445,cs), (-273,445,o), (-258,304,o), (-383,366,c), (-386,350,l), (-374,296,l), (-73,625,l), (-254,625,l), (-522,330,l), (-348,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-231,35,l), (-377,265,l), (-294,284,o), (-258,359,o), (-197,359,cs), (-127,359,o), (-138,229,o), (-13,229,cs), (112,229,o), (145,359,o), (215,359,cs), (285,359,o), (267,229,o), (392,229,cs), (470,229,o), (531,283,o), (543,360,cs), (549,400,l), (464,400,l), (458,360,ls), (453,324,o), (432,304,o), (402,304,cs), (334,304,o), (350,434,o), (225,434,cs), (100,434,o), (69,304,o), (-1,304,cs), (-69,304,o), (-60,434,o), (-185,434,cs), (-310,434,o), (-332,330,o), (-402,330,cs), (-408,330,l), (-410,330,l), (-128,625,l), (-238,625,l), (-517,330,l), (-332,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-253,35,l), (-411,268,l), (-308,275,o), (-295,383,o), (-208,383,cs), (-118,383,o), (-136,240,o), (-21,240,cs), (94,240,o), (127,383,o), (212,383,cs), (297,383,o), (279,240,o), (399,240,cs), (466,240,o), (515,283,o), (526,350,cs), (534,400,l), (484,400,l), (476,350,ls), (469,308,o), (447,282,o), (406,282,cs), (317,282,o), (333,425,o), (218,425,cs), (103,425,o), (71,282,o), (-14,282,cs), (-99,282,o), (-82,425,o), (-202,425,cs), (-312,425,o), (-342,308,o), (-411,308,cs), (-437,308,l), (-451,327,l), (-153,625,l), (-215,625,l), (-507,330,l), (-309,35,l) ); } ); width = 600; } ); }, { glyphname = less_asciitilde_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-270,215,o), (-265,335,o), (-215,335,cs), (-165,335,o), (-150,215,o), (-15,215,cs), (72,215,o), (130,269,o), (130,350,cs), (130,400,l), (10,400,l), (10,364,ls), (10,341,o), (-6,325,o), (-30,325,cs), (-90,325,o), (-95,445,o), (-215,445,cs), (-335,445,o), (-340,325,o), (-390,325,cs), (-440,325,o), (-445,445,o), (-585,445,cs), (-673,445,o), (-730,392,o), (-730,310,cs), (-730,260,l), (-610,260,l), (-610,296,ls), (-610,319,o), (-594,335,o), (-571,335,cs), (-515,335,o), (-510,215,o), (-390,215,cs) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-278,229,o), (-255,359,o), (-185,359,cs), (-115,359,o), (-133,229,o), (-8,229,cs), (70,229,o), (131,282,o), (143,359,cs), (149,399,l), (64,399,l), (58,359,ls), (52,323,o), (32,304,o), (2,304,cs), (-66,304,o), (-50,434,o), (-175,434,cs), (-300,434,o), (-323,304,o), (-393,304,cs), (-463,304,o), (-446,434,o), (-570,434,cs), (-648,434,o), (-708,382,o), (-721,304,cs), (-727,264,l), (-642,264,l), (-636,304,ls), (-630,340,o), (-610,359,o), (-580,359,cs), (-512,359,o), (-528,229,o), (-403,229,cs) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-296,240,o), (-263,383,o), (-178,383,cs), (-93,383,o), (-111,240,o), (9,240,cs), (76,240,o), (126,283,o), (136,350,cs), (144,400,l), (99,400,l), (91,350,ls), (85,308,o), (57,282,o), (16,282,cs), (-73,282,o), (-57,425,o), (-172,425,cs), (-287,425,o), (-319,282,o), (-404,282,cs), (-489,282,o), (-472,425,o), (-592,425,cs), (-659,425,o), (-708,382,o), (-719,315,cs), (-727,265,l), (-682,265,l), (-674,315,ls), (-667,357,o), (-639,383,o), (-598,383,cs), (-508,383,o), (-526,240,o), (-411,240,cs) ); }, { alignment = -1; pos = (-1185,0); ref = less; }, { alignment = -1; pos = (-15,0); ref = greater; } ); width = 600; } ); }, { glyphname = less_asciitilde_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-648,230,o), (-622,330,o), (-567,330,cs), (-512,330,o), (-508,230,o), (-388,230,cs), (-268,230,o), (-232,330,o), (-177,330,cs), (-122,330,o), (-118,230,o), (2,230,cs), (122,230,o), (158,330,o), (213,330,cs), (268,330,o), (272,230,o), (382,230,cs), (466,230,o), (530,280,o), (542,355,cs), (549,400,l), (439,400,l), (434,368,ls), (430,345,o), (415,330,o), (388,330,cs), (333,330,o), (349,430,o), (229,430,cs), (109,430,o), (73,330,o), (18,330,cs), (-37,330,o), (-51,430,o), (-161,430,cs), (-281,430,o), (-317,330,o), (-372,330,cs), (-427,330,o), (-441,430,o), (-551,430,cs), (-671,430,o), (-697,330,o), (-752,330,cs), (-807,330,o), (-811,430,o), (-921,430,cs), (-977,430,l), (-992,330,l), (-937,330,ls), (-882,330,o), (-888,230,o), (-768,230,cs) ); }, { closed = 1; nodes = ( (-776,35,l), (-946,326,l), (-673,625,l), (-854,625,l), (-1122,330,l), (-948,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-693,229,o), (-667,359,o), (-597,359,cs), (-527,359,o), (-543,229,o), (-418,229,cs), (-293,229,o), (-267,359,o), (-197,359,cs), (-127,359,o), (-138,229,o), (-13,229,cs), (112,229,o), (145,359,o), (215,359,cs), (285,359,o), (267,229,o), (392,229,cs), (470,229,o), (531,282,o), (543,359,cs), (549,399,l), (464,399,l), (458,359,ls), (453,323,o), (432,304,o), (402,304,cs), (334,304,o), (350,434,o), (225,434,cs), (100,434,o), (69,304,o), (-1,304,cs), (-69,304,o), (-60,434,o), (-185,434,cs), (-310,434,o), (-336,304,o), (-406,304,cs), (-476,304,o), (-460,434,o), (-585,434,cs), (-710,434,o), (-736,304,o), (-806,304,cs), (-876,304,o), (-860,434,o), (-985,434,cs), (-1010,434,l), (-1022,359,l), (-997,359,ls), (-927,359,o), (-943,229,o), (-818,229,cs) ); }, { closed = 1; nodes = ( (-831,35,l), (-1015,327,l), (-728,625,l), (-838,625,l), (-1117,330,l), (-932,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-746,240,o), (-723,383,o), (-633,383,cs), (-543,383,o), (-556,240,o), (-441,240,cs), (-326,240,o), (-288,383,o), (-203,383,cs), (-113,383,o), (-126,240,o), (-11,240,cs), (104,240,o), (142,383,o), (227,383,cs), (312,383,o), (299,240,o), (419,240,cs), (482,240,o), (525,281,o), (536,350,cs), (544,400,l), (499,400,l), (491,350,ls), (484,307,o), (461,282,o), (426,282,cs), (337,282,o), (348,425,o), (233,425,cs), (118,425,o), (81,282,o), (-4,282,cs), (-89,282,o), (-77,425,o), (-197,425,cs), (-312,425,o), (-349,282,o), (-434,282,cs), (-519,282,o), (-507,425,o), (-627,425,cs), (-747,425,o), (-769,282,o), (-854,282,cs), (-944,282,o), (-901,397,o), (-1021,397,cs), (-1031,397,l), (-1036,357,l), (-1027,357,ls), (-948,357,o), (-971,240,o), (-861,240,cs) ); }, { closed = 1; nodes = ( (-853,35,l), (-1050,326,l), (-753,625,l), (-815,625,l), (-1107,330,l), (-909,35,l) ); } ); width = 600; } ); }, { glyphname = less_slash.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (107,-110,l), (597,830,l), (439,830,l), (70,125,l), (-367,326,l), (7,469,l), (28,609,l), (-465,400,l), (-487,257,l), (13,12,l), (-51,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (74,-110,l), (577,830,l), (482,830,l), (77,73,l), (-393,327,l), (-4,500,l), (10,595,l), (-454,380,l), (-470,280,l), (39,3,l), (-21,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (55,-110,l), (559,830,l), (501,830,l), (79,43,l), (-414,328,l), (-11,524,l), (-2,580,l), (-458,353,l), (-465,307,l), (57,3,l), (-3,-110,l) ); } ); width = 600; } ); }, { glyphname = less_slash_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-454,-110,l), (-111,546,l), (347,333,l), (-25,189,l), (-46,49,l), (447,258,l), (470,401,l), (-52,660,l), (37,830,l), (-120,830,l), (-489,125,l), (-932,325,l), (-559,469,l), (-538,609,l), (-1031,400,l), (-1053,257,l), (-547,12,l), (-611,-110,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-491,-110,l), (-114,597,l), (384,333,l), (-15,157,l), (-29,65,l), (435,280,l), (451,380,l), (-74,667,l), (12,830,l), (-83,830,l), (-488,73,l), (-958,327,l), (-569,500,l), (-555,595,l), (-1019,380,l), (-1035,280,l), (-526,3,l), (-586,-110,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-510,-110,l), (-115,628,l), (390,332,l), (-13,136,l), (-21,80,l), (435,307,l), (442,353,l), (-92,668,l), (-6,830,l), (-64,830,l), (-486,43,l), (-974,328,l), (-571,524,l), (-562,580,l), (-1018,353,l), (-1025,307,l), (-508,3,l), (-568,-110,l) ); } ); width = 600; } ); }, { glyphname = asciitilde_hyphen.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-19,195,o), (34,220,o), (70,260,c), (507,260,l), (529,400,l), (4,400,l), (0,375,ls), (-6,334,o), (-30,310,o), (-66,310,cs), (-155,310,o), (-150,465,o), (-310,465,cs), (-409,465,o), (-491,397,o), (-505,310,cs), (-517,235,l), (-397,235,l), (-387,295,ls), (-382,329,o), (-357,350,o), (-324,350,cs), (-234,350,o), (-238,195,o), (-78,195,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-48,220,o), (4,246,o), (37,290,c), (502,290,l), (515,370,l), (-15,370,l), (-16,365,l), (-23,325,o), (-55,295,o), (-97,295,cs), (-185,295,o), (-174,440,o), (-314,440,cs), (-407,440,o), (-478,382,o), (-492,295,cs), (-502,235,l), (-417,235,l), (-407,295,ls), (-401,337,o), (-368,365,o), (-326,365,cs), (-236,365,o), (-246,220,o), (-109,220,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-44,245,o), (4,270,o), (27,310,c), (505,310,l), (512,355,l), (-3,355,l), (-4,350,ls), (-10,312,o), (-48,287,o), (-94,287,cs), (-194,287,o), (-225,435,o), (-340,435,cs), (-405,435,o), (-452,393,o), (-463,325,cs), (-474,250,l), (-429,250,l), (-418,325,ls), (-411,368,o), (-385,393,o), (-347,393,cs), (-262,393,o), (-230,245,o), (-100,245,cs) ); } ); width = 600; } ); }, { glyphname = asciitilde_at.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (8,225,o), (115,321,o), (136,457,c), (58,457,l), (47,387,o), (-20,340,o), (-93,340,cs), (-220,340,o), (-204,480,o), (-353,480,cs), (-453,480,o), (-539,411,o), (-553,320,cs), (-564,255,l), (-444,255,l), (-435,310,ls), (-430,341,o), (-404,365,o), (-371,365,cs), (-288,365,o), (-286,225,o), (-116,225,cs) ); }, { ref = at; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (12,250,o), (103,340,o), (124,471,c), (79,471,l), (65,384,o), (-3,325,o), (-91,325,cs), (-210,325,o), (-204,455,o), (-349,455,cs), (-436,455,o), (-511,395,o), (-524,315,cs), (-534,255,l), (-449,255,l), (-439,315,ls), (-433,352,o), (-399,380,o), (-359,380,cs), (-271,380,o), (-266,250,o), (-102,250,cs) ); }, { ref = at; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (31,260,o), (108,344,o), (126,454,c), (96,454,l), (82,369,o), (17,302,o), (-71,302,cs), (-208,302,o), (-197,445,o), (-341,445,cs), (-426,445,o), (-492,390,o), (-505,310,cs), (-513,260,l), (-468,260,l), (-460,310,ls), (-451,365,o), (-405,403,o), (-347,403,cs), (-234,403,o), (-240,260,o), (-78,260,cs) ); }, { ref = at; } ); width = 600; } ); }, { glyphname = asciitilde_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (193,625,l), (381,295,l), (406,348,l), (409,364,l), (268,307,o), (324,445,o), (191,445,cs), (71,445,o), (47,325,o), (-3,325,cs), (-53,325,o), (-39,445,o), (-159,445,cs), (-279,445,o), (-303,325,o), (-358,325,cs), (-380,325,o), (-389,339,o), (-386,364,cs), (-381,400,l), (-501,400,l), (-509,350,ls), (-522,268,o), (-465,215,o), (-380,215,cs), (-260,215,o), (-226,335,o), (-176,335,cs), (-126,335,o), (-140,215,o), (-20,215,cs), (100,215,o), (124,335,o), (174,335,cs), (217,335,o), (208,266,o), (285,246,c), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (439,330,l), (428,330,l), (418,330,ls), (348,330,o), (360,434,o), (235,434,cs), (110,434,o), (77,304,o), (9,304,cs), (-61,304,o), (-50,434,o), (-175,434,cs), (-300,434,o), (-326,304,o), (-394,304,cs), (-424,304,o), (-437,323,o), (-432,359,cs), (-426,399,l), (-511,399,l), (-517,359,ls), (-529,282,o), (-486,229,o), (-408,229,cs), (-283,229,o), (-259,359,o), (-189,359,cs), (-119,359,o), (-128,229,o), (-3,229,cs), (122,229,o), (153,359,o), (223,359,cs), (284,359,o), (286,284,o), (363,264,c), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (464,332,l), (442,308,l), (424,308,ls), (355,308,o), (363,425,o), (253,425,cs), (133,425,o), (106,282,o), (21,282,cs), (-64,282,o), (-52,425,o), (-167,425,cs), (-282,425,o), (-310,282,o), (-399,282,cs), (-440,282,o), (-461,308,o), (-454,350,cs), (-446,400,l), (-491,400,l), (-499,350,ls), (-510,283,o), (-473,240,o), (-406,240,cs), (-286,240,o), (-258,383,o), (-173,383,cs), (-88,383,o), (-101,240,o), (14,240,cs), (129,240,o), (157,383,o), (247,383,cs), (333,383,o), (310,279,o), (403,269,c), (170,35,l) ); } ); width = 600; } ); }, { glyphname = asciitilde_asciitilde.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (35,215,o), (59,335,o), (109,335,cs), (159,335,o), (155,215,o), (290,215,cs), (377,215,o), (444,269,o), (456,350,cs), (464,400,l), (344,400,l), (339,364,ls), (335,341,o), (316,325,o), (292,325,cs), (232,325,o), (246,445,o), (126,445,cs), (6,445,o), (-18,325,o), (-68,325,cs), (-118,325,o), (-104,445,o), (-244,445,cs), (-332,445,o), (-397,392,o), (-410,310,cs), (-418,260,l), (-298,260,l), (-292,296,ls), (-288,319,o), (-270,335,o), (-247,335,cs), (-191,335,o), (-205,215,o), (-85,215,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (22,230,o), (45,360,o), (115,360,cs), (185,360,o), (167,230,o), (292,230,cs), (370,230,o), (431,283,o), (443,360,cs), (449,400,l), (364,400,l), (358,360,ls), (352,324,o), (332,305,o), (302,305,cs), (234,305,o), (250,435,o), (125,435,cs), (0,435,o), (-23,305,o), (-93,305,cs), (-163,305,o), (-146,435,o), (-270,435,cs), (-348,435,o), (-408,383,o), (-421,305,cs), (-427,265,l), (-342,265,l), (-336,305,ls), (-330,341,o), (-310,360,o), (-280,360,cs), (-212,360,o), (-228,230,o), (-103,230,cs) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (4,240,o), (37,383,o), (122,383,cs), (207,383,o), (189,240,o), (309,240,cs), (376,240,o), (426,283,o), (436,350,cs), (444,400,l), (399,400,l), (391,350,ls), (385,308,o), (357,282,o), (316,282,cs), (227,282,o), (243,425,o), (128,425,cs), (13,425,o), (-19,282,o), (-104,282,cs), (-189,282,o), (-172,425,o), (-292,425,cs), (-359,425,o), (-408,382,o), (-419,315,cs), (-427,265,l), (-382,265,l), (-374,315,ls), (-367,357,o), (-339,383,o), (-298,383,cs), (-208,383,o), (-226,240,o), (-111,240,cs) ); } ); width = 600; } ); }, { glyphname = asciitilde_asciitilde_greater.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (271,35,l), (538,330,l), (365,625,l), (194,625,l), (311,422,l), (238,399,o), (202,330,o), (157,330,cs), (102,330,o), (108,430,o), (-12,430,cs), (-122,430,o), (-168,330,o), (-223,330,cs), (-278,330,o), (-282,430,o), (-402,430,cs), (-512,430,o), (-558,330,o), (-613,330,cs), (-668,330,o), (-672,430,o), (-792,430,cs), (-912,430,o), (-928,330,o), (-983,330,cs), (-1010,330,o), (-1021,345,o), (-1017,368,cs), (-1012,400,l), (-1122,400,l), (-1129,355,ls), (-1141,280,o), (-1093,230,o), (-1009,230,cs), (-899,230,o), (-863,330,o), (-808,330,cs), (-753,330,o), (-749,230,o), (-629,230,cs), (-509,230,o), (-473,330,o), (-418,330,cs), (-363,330,o), (-359,230,o), (-239,230,cs), (-119,230,o), (-83,330,o), (-28,330,cs), (27,330,o), (21,230,o), (141,230,cs), (261,230,o), (287,330,o), (342,330,cs), (363,330,l), (90,35,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (255,35,l), (533,330,l), (349,625,l), (248,625,l), (382,414,l), (303,386,o), (272,304,o), (214,304,cs), (144,304,o), (160,434,o), (35,434,cs), (-90,434,o), (-116,304,o), (-186,304,cs), (-256,304,o), (-240,434,o), (-365,434,cs), (-490,434,o), (-523,304,o), (-591,304,cs), (-661,304,o), (-650,434,o), (-775,434,cs), (-900,434,o), (-926,304,o), (-994,304,cs), (-1024,304,o), (-1037,323,o), (-1032,359,cs), (-1026,399,l), (-1111,399,l), (-1117,359,ls), (-1129,282,o), (-1086,229,o), (-1008,229,cs), (-883,229,o), (-859,359,o), (-789,359,cs), (-719,359,o), (-728,229,o), (-603,229,cs), (-478,229,o), (-447,359,o), (-377,359,cs), (-307,359,o), (-323,229,o), (-198,229,cs), (-73,229,o), (-47,359,o), (23,359,cs), (93,359,o), (77,229,o), (202,229,cs), (326,229,o), (354,347,o), (422,349,c), (434,333,l), (145,35,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (232,35,l), (523,331,l), (326,625,l), (269,625,l), (421,392,l), (340,371,o), (335,282,o), (256,282,cs), (171,282,o), (193,425,o), (73,425,cs), (-47,425,o), (-79,282,o), (-164,282,cs), (-249,282,o), (-242,425,o), (-357,425,cs), (-477,425,o), (-509,282,o), (-594,282,cs), (-679,282,o), (-672,425,o), (-787,425,cs), (-902,425,o), (-935,282,o), (-1024,282,cs), (-1059,282,o), (-1076,307,o), (-1069,350,cs), (-1061,400,l), (-1106,400,l), (-1114,350,ls), (-1125,281,o), (-1094,240,o), (-1031,240,cs), (-911,240,o), (-878,383,o), (-793,383,cs), (-708,383,o), (-716,240,o), (-601,240,cs), (-486,240,o), (-453,383,o), (-363,383,cs), (-278,383,o), (-286,240,o), (-171,240,cs), (-56,240,o), (-23,383,o), (67,383,cs), (157,383,o), (134,240,o), (249,240,cs), (355,240,o), (373,349,o), (446,357,c), (463,332,l), (170,35,l) ); } ); width = 600; } ); }, { glyphname = asciicircum_equal.liga; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-310,385,l), (-141,637,l), (-53,385,l), (432,385,l), (454,525,l), (31,525,l), (-64,760,l), (-184,760,l), (-453,385,l) ); }, { closed = 1; nodes = ( (392,135,l), (415,275,l), (-70,275,l), (-93,135,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-338,410,l), (-144,691,l), (-46,410,l), (436,410,l), (449,490,l), (18,490,l), (-95,760,l), (-179,760,l), (-434,410,l) ); }, { closed = 1; nodes = ( (398,170,l), (411,250,l), (-74,250,l), (-87,170,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-317,420,l), (-126,711,l), (-32,420,l), (438,420,l), (445,465,l), (4,465,l), (-97,760,l), (-144,760,l), (-374,420,l) ); }, { closed = 1; nodes = ( (402,195,l), (409,240,l), (-61,240,l), (-68,195,l) ); } ); width = 600; } ); }, { export = 0; glyphname = equal_equal_equal.liga.old; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (552,480,l), (568,580,l), (-1072,580,l), (-1088,480,l) ); }, { closed = 1; nodes = ( (486,60,l), (502,160,l), (-1138,160,l), (-1154,60,l) ); }, { closed = 1; nodes = ( (519,270,l), (535,370,l), (-1105,370,l), (-1121,270,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (554,491,l), (565,561,l), (-1075,561,l), (-1086,491,l) ); }, { closed = 1; nodes = ( (489,79,l), (500,149,l), (-1140,149,l), (-1151,79,l) ); }, { closed = 1; nodes = ( (521,285,l), (533,355,l), (-1107,355,l), (-1119,285,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (557,517,l), (565,562,l), (-1075,562,l), (-1083,517,l) ); }, { closed = 1; nodes = ( (487,75,l), (495,120,l), (-1145,120,l), (-1153,75,l) ); }, { closed = 1; nodes = ( (522,296,l), (530,341,l), (-1110,341,l), (-1118,296,l) ); } ); width = 600; } ); }, { glyphname = "flat-musical"; layers = ( { background = { shapes = ( { closed = 1; nodes = ( (132,0,l), (319,72,ls), (428,114,o), (495,191,o), (495,275,cs), (495,340,ls), (495,452,o), (444,525,o), (365,525,cs), (300,525,o), (255,476,o), (255,400,c), (266,427,l), (255,427,l), (255,730,l), (105,730,l), (105,0,l) ); }, { closed = 1; nodes = ( (255,340,ls), (255,375,o), (271,395,o), (300,395,cs), (329,395,o), (345,375,o), (345,340,cs), (345,275,ls), (345,235,o), (318,200,o), (274,184,cs), (255,177,l) ); } ); }; layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (361,72,ls), (470,114,o), (537,191,o), (537,275,cs), (537,340,ls), (537,452,o), (486,525,o), (407,525,cs), (342,525,o), (297,476,o), (297,400,c), (308,427,l), (297,427,l), (297,730,l), (147,730,l), (147,-10,l) ); }, { closed = 1; nodes = ( (297,340,ls), (297,375,o), (313,395,o), (342,395,cs), (371,395,o), (387,375,o), (387,340,cs), (387,275,ls), (387,235,o), (360,200,o), (316,184,cs), (297,177,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (230,341,ls), (230,387,o), (256,414,o), (300,414,cs), (344,414,o), (370,387,o), (370,341,cs), (370,256,ls), (370,198,o), (338,154,o), (283,133,cs), (230,113,l) ); }, { closed = 1; nodes = ( (311,55,ls), (404,90,o), (460,166,o), (460,256,cs), (460,341,ls), (460,435,o), (409,496,o), (332,496,cs), (270,496,o), (230,454,o), (230,390,c), (250,410,l), (230,410,l), (230,730,l), (140,730,l), (140,0,l), (167,0,l) ); } ); }; layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (353,55,ls), (446,90,o), (502,166,o), (502,256,cs), (502,341,ls), (502,435,o), (451,496,o), (374,496,cs), (312,496,o), (272,454,o), (272,390,c), (292,410,l), (272,410,l), (272,730,l), (182,730,l), (182,-10,l) ); }, { closed = 1; nodes = ( (272,341,ls), (272,387,o), (298,414,o), (342,414,cs), (386,414,o), (412,387,o), (412,341,cs), (412,256,ls), (412,198,o), (380,154,o), (325,133,cs), (272,113,l) ); } ); width = 600; }, { background = { shapes = ( { closed = 1; nodes = ( (182,0,l), (315,50,ls), (398,81,o), (445,142,o), (445,213,cs), (445,318,ls), (445,406,o), (393,463,o), (313,463,cs), (245,463,o), (200,419,o), (200,352,c), (215,399,l), (205,399,l), (205,730,l), (155,730,l), (155,0,l) ); }, { closed = 1; nodes = ( (205,318,ls), (205,378,o), (243,418,o), (300,418,cs), (357,418,o), (395,378,o), (395,318,cs), (395,213,ls), (395,158,o), (360,112,o), (300,90,cs), (205,55,l) ); } ); }; layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (357,50,ls), (440,81,o), (487,142,o), (487,213,cs), (487,318,ls), (487,406,o), (435,463,o), (355,463,cs), (287,463,o), (242,419,o), (242,352,c), (257,399,l), (247,399,l), (247,730,l), (197,730,l), (197,-10,l) ); }, { closed = 1; nodes = ( (247,318,ls), (247,378,o), (285,418,o), (342,418,cs), (399,418,o), (437,378,o), (437,318,cs), (437,213,ls), (437,158,o), (402,112,o), (342,90,cs), (247,55,l) ); } ); width = 600; } ); unicode = 9837; }, { glyphname = "sharp-musical"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (556,593,l), (556,663,l), (86,415,l), (86,346,l) ); }, { closed = 1; nodes = ( (247,0,l), (247,640,l), (204,640,l), (204,0,l) ); }, { closed = 1; nodes = ( (556,328,l), (556,398,l), (86,150,l), (86,81,l) ); }, { closed = 1; nodes = ( (445,90,l), (445,730,l), (402,730,l), (402,90,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (556,583,l), (556,664,l), (86,416,l), (86,336,l) ); }, { closed = 1; nodes = ( (247,0,l), (247,640,l), (204,640,l), (204,0,l) ); }, { closed = 1; nodes = ( (556,327,l), (556,408,l), (86,160,l), (86,80,l) ); }, { closed = 1; nodes = ( (445,90,l), (445,730,l), (402,730,l), (402,90,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (560,551,l), (560,686,l), (90,438,l), (90,303,l) ); }, { closed = 1; nodes = ( (251,0,l), (251,640,l), (208,640,l), (208,0,l) ); }, { closed = 1; nodes = ( (560,304,l), (560,439,l), (90,192,l), (90,57,l) ); }, { closed = 1; nodes = ( (449,90,l), (449,730,l), (406,730,l), (406,90,l) ); } ); width = 600; } ); unicode = 9839; }, { glyphname = "numeral-greek"; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (291,409,l), (470,720,l), (290,720,l), (161,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (266,410,l), (445,721,l), (315,721,l), (186,410,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (246,410,l), (420,721,l), (330,721,l), (206,410,l) ); } ); width = 600; } ); unicode = 884; }, { glyphname = "lowernumeral-greek"; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { ref = comma; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { ref = comma; } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { ref = comma; } ); width = 600; } ); unicode = 885; }, { glyphname = apostrophemod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (300,465,l), (479,776,l), (299,776,l), (170,465,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (275,465,l), (454,776,l), (324,776,l), (195,465,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (255,465,l), (429,776,l), (339,776,l), (215,465,l) ); } ); width = 600; } ); unicode = 700; }, { glyphname = doubleprimemod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (466,409,l), (645,720,l), (465,720,l), (336,409,l) ); }, { closed = 1; nodes = ( (191,409,l), (370,720,l), (190,720,l), (61,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (431,409,l), (610,720,l), (480,720,l), (351,409,l) ); }, { closed = 1; nodes = ( (156,409,l), (335,720,l), (205,720,l), (76,409,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (406,409,l), (580,720,l), (490,720,l), (366,409,l) ); }, { closed = 1; nodes = ( (136,409,l), (310,720,l), (220,720,l), (96,409,l) ); } ); width = 600; } ); unicode = 698; }, { glyphname = firsttonechinese; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 713; }, { glyphname = primemod; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (291,409,l), (470,720,l), (290,720,l), (161,409,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (266,410,l), (445,721,l), (315,721,l), (186,410,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (246,410,l), (420,721,l), (330,721,l), (206,410,l) ); } ); width = 600; } ); unicode = 697; }, { glyphname = dieresiscomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-221,777); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-91,649,o), (-62,673,o), (-56,712,cs), (-50,752,o), (-71,777,o), (-110,777,cs), (-149,777,o), (-178,752,o), (-184,712,cs), (-190,673,o), (-169,649,o), (-130,649,cs) ); }, { closed = 1; nodes = ( (-313,649,o), (-284,673,o), (-278,712,cs), (-272,752,o), (-293,777,o), (-332,777,cs), (-371,777,o), (-400,752,o), (-406,712,cs), (-412,673,o), (-391,649,o), (-352,649,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-218,793); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-71,637,o), (-35,667,o), (-28,715,cs), (-20,763,o), (-46,793,o), (-95,793,cs), (-144,793,o), (-180,763,o), (-188,715,cs), (-195,667,o), (-169,637,o), (-120,637,cs) ); }, { closed = 1; nodes = ( (-315,637,o), (-279,667,o), (-272,715,cs), (-264,763,o), (-290,793,o), (-339,793,cs), (-388,793,o), (-424,763,o), (-432,715,cs), (-439,667,o), (-413,637,o), (-364,637,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-222,765); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-100,655,o), (-77,677,o), (-72,710,cs), (-66,743,o), (-83,765,o), (-114,765,cs), (-146,765,o), (-170,743,o), (-176,710,cs), (-181,677,o), (-163,655,o), (-131,655,cs) ); }, { closed = 1; nodes = ( (-315,655,o), (-291,677,o), (-286,710,cs), (-280,743,o), (-298,765,o), (-329,765,cs), (-360,765,o), (-384,743,o), (-390,710,cs), (-395,677,o), (-377,655,o), (-346,655,cs) ); } ); visible = 1; width = 0; } ); unicode = 776; }, { glyphname = dotaccentcomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-222,765); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-205,655,o), (-178,677,o), (-173,710,cs), (-168,743,o), (-187,765,o), (-222,765,cs), (-257,765,o), (-284,743,o), (-289,710,cs), (-294,677,o), (-275,655,o), (-240,655,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-221,777); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-197,649,o), (-166,673,o), (-160,712,cs), (-154,752,o), (-177,777,o), (-221,777,cs), (-265,777,o), (-296,752,o), (-302,712,cs), (-308,673,o), (-285,649,o), (-241,649,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,793); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-188,637,o), (-148,667,o), (-141,715,cs), (-133,763,o), (-163,793,o), (-218,793,cs), (-273,793,o), (-313,763,o), (-321,715,cs), (-328,667,o), (-298,637,o), (-243,637,cs) ); } ); width = 0; } ); unicode = 775; }, { glyphname = gravecomb; layers = ( { anchors = ( { name = _top; pos = (-245,550); }, { name = top; pos = (-253,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-193,645,l), (-277,785,l), (-335,785,l), (-245,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-243,550); }, { name = top; pos = (-249,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-169,645,l), (-257,785,l), (-351,785,l), (-258,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-243,550); }, { name = top; pos = (-251,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-141,645,l), (-224,785,l), (-383,785,l), (-288,645,l) ); } ); width = 0; } ); unicode = 768; }, { glyphname = acutecomb; layers = ( { anchors = ( { name = _top; pos = (-278,550); }, { name = top; pos = (-184,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-234,645,l), (-100,785,l), (-163,785,l), (-291,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-268,550); }, { name = top; pos = (-188,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-217,645,l), (-84,785,l), (-186,785,l), (-314,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-269,550); }, { name = top; pos = (-187,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-190,645,l), (-51,785,l), (-218,785,l), (-345,645,l) ); } ); width = 0; } ); unicode = 769; }, { glyphname = hungarumlautcomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-182,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-153,645,l), (-19,785,l), (-81,785,l), (-209,645,l) ); }, { closed = 1; nodes = ( (-312,645,l), (-178,785,l), (-240,785,l), (-368,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-182,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-127,645,l), (10,785,l), (-84,785,l), (-216,645,l) ); }, { closed = 1; nodes = ( (-308,645,l), (-171,785,l), (-265,785,l), (-397,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-182,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-84,645,l), (53,785,l), (-93,785,l), (-220,645,l) ); }, { closed = 1; nodes = ( (-304,645,l), (-167,785,l), (-313,785,l), (-440,645,l) ); } ); width = 0; } ); unicode = 779; }, { glyphname = caroncomb.alt; layers = ( { anchors = ( { name = _top; pos = (-278,730); }, { name = _topright; pos = (-152,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-2,550,l), (47,730,l), (-93,730,l), (-132,550,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-278,730); }, { name = _topright; pos = (-132,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-37,550,l), (12,730,l), (-73,730,l), (-112,550,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-278,730); }, { name = _topright; pos = (-112,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-52,550,l), (-3,730,l), (-53,730,l), (-92,550,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-338,645,l), (-222,754,l), (-138,645,l), (-91,645,l), (-189,785,l), (-249,785,l), (-391,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-319,645,l), (-226,723,l), (-157,645,l), (-60,645,l), (-178,785,l), (-261,785,l), (-422,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-307,645,l), (-229,715,l), (-168,645,l), (-36,645,l), (-149,785,l), (-289,785,l), (-446,645,l) ); } ); width = 0; } ); unicode = 770; }, { glyphname = caroncomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-211,645,l), (-69,785,l), (-119,785,l), (-236,676,l), (-320,785,l), (-369,785,l), (-271,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-199,645,l), (-38,785,l), (-141,785,l), (-233,707,l), (-303,785,l), (-400,785,l), (-282,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-219,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-171,645,l), (-14,785,l), (-153,785,l), (-231,715,l), (-292,785,l), (-424,785,l), (-311,645,l) ); } ); width = 0; } ); unicode = 780; }, { glyphname = brevecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,643,o), (-87,698,o), (-74,785,c), (-119,785,l), (-129,722,o), (-174,683,o), (-236,683,cs), (-297,683,o), (-329,722,o), (-319,785,c), (-364,785,l), (-377,698,o), (-330,643,o), (-241,643,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-146,640,o), (-72,698,o), (-59,785,c), (-131,785,l), (-139,733,o), (-180,698,o), (-234,698,cs), (-287,698,o), (-317,733,o), (-309,785,c), (-379,785,l), (-392,698,o), (-338,640,o), (-242,640,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-219,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-131,635,o), (-48,695,o), (-34,785,c), (-151,785,l), (-157,747,o), (-189,722,o), (-231,722,cs), (-272,722,o), (-297,747,o), (-291,785,c), (-404,785,l), (-418,695,o), (-352,635,o), (-242,635,cs) ); } ); width = 0; } ); unicode = 774; }, { glyphname = ringcomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-214,815); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-183,615,o), (-134,655,o), (-125,715,cs), (-115,775,o), (-151,815,o), (-213,815,cs), (-276,815,o), (-325,775,o), (-335,715,cs), (-344,655,o), (-308,615,o), (-245,615,cs) ); }, { closed = 1; nodes = ( (-279,650,o), (-301,676,o), (-295,715,cs), (-289,754,o), (-258,780,o), (-219,780,cs), (-180,780,o), (-159,754,o), (-165,715,cs), (-171,676,o), (-201,650,o), (-240,650,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-211,836); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-175,608,o), (-119,654,o), (-109,722,cs), (-98,790,o), (-139,836,o), (-211,836,cs), (-283,836,o), (-338,790,o), (-349,722,cs), (-359,654,o), (-319,608,o), (-247,608,cs) ); }, { closed = 1; nodes = ( (-274,661,o), (-295,685,o), (-289,722,cs), (-283,759,o), (-255,784,o), (-219,784,cs), (-183,784,o), (-163,759,o), (-169,722,cs), (-175,685,o), (-202,661,o), (-238,661,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-209,853); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-165,599,o), (-101,650,o), (-89,726,cs), (-77,802,o), (-125,853,o), (-209,853,cs), (-293,853,o), (-357,802,o), (-369,726,cs), (-381,650,o), (-333,599,o), (-249,599,cs) ); }, { closed = 1; nodes = ( (-274,669,o), (-294,692,o), (-289,726,cs), (-284,760,o), (-256,783,o), (-220,783,cs), (-184,783,o), (-164,760,o), (-169,726,cs), (-174,692,o), (-202,669,o), (-238,669,cs) ); } ); width = 0; } ); unicode = 778; }, { glyphname = tildecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-220,780); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-113,650,o), (-76,684,o), (-67,740,cs), (-61,775,l), (-101,775,l), (-107,740,ls), (-112,709,o), (-132,689,o), (-160,689,cs), (-209,689,o), (-215,780,o), (-290,780,cs), (-346,780,o), (-386,746,o), (-395,690,cs), (-400,655,l), (-360,655,l), (-355,690,ls), (-350,721,o), (-328,741,o), (-297,741,cs), (-248,741,o), (-241,650,o), (-166,650,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-221,780); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-117,650,o), (-76,685,o), (-66,745,cs), (-61,775,l), (-126,775,l), (-131,745,ls), (-135,721,o), (-149,710,o), (-167,710,cs), (-212,710,o), (-210,780,o), (-290,780,cs), (-344,780,o), (-386,745,o), (-396,685,cs), (-400,655,l), (-335,655,l), (-331,685,ls), (-327,709,o), (-313,720,o), (-295,720,cs), (-250,720,o), (-251,650,o), (-171,650,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-218,795); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-107,635,o), (-55,686,o), (-44,755,cs), (-39,790,l), (-124,790,l), (-128,763,ls), (-131,746,o), (-145,735,o), (-163,735,cs), (-203,735,o), (-203,795,o), (-288,795,cs), (-354,795,o), (-406,744,o), (-417,675,cs), (-423,640,l), (-338,640,l), (-334,662,ls), (-331,682,o), (-317,695,o), (-299,695,cs), (-259,695,o), (-258,635,o), (-173,635,cs) ); } ); width = 0; } ); unicode = 771; }, { glyphname = macroncomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-228,727); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-95,684,l), (-88,727,l), (-368,727,l), (-375,684,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-226,745); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-78,670,l), (-66,745,l), (-386,745,l), (-398,670,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-223,765); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-60,655,l), (-43,765,l), (-403,765,l), (-420,655,l) ); } ); width = 0; } ); unicode = 772; }, { glyphname = hookabovecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-207,834); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-189,645,l), (-147,687,ls), (-130,704,o), (-119,726,o), (-116,748,cs), (-107,800,o), (-144,834,o), (-207,834,cs), (-312,834,l), (-325,749,l), (-251,749,ls), (-232,749,o), (-225,745,o), (-227,732,cs), (-228,724,o), (-234,716,o), (-247,703,cs), (-305,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-208,825); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-199,645,l), (-151,697,ls), (-138,712,o), (-128,731,o), (-125,751,cs), (-118,797,o), (-147,825,o), (-198,825,cs), (-303,825,l), (-314,760,l), (-236,760,ls), (-218,760,o), (-209,753,o), (-211,740,cs), (-212,732,o), (-219,720,o), (-230,708,cs), (-290,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-210,820); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-218,645,l), (-163,708,ls), (-148,725,o), (-139,745,o), (-136,761,cs), (-131,797,o), (-157,820,o), (-204,820,cs), (-292,820,l), (-298,785,l), (-210,785,ls), (-187,785,o), (-175,774,o), (-178,757,cs), (-179,749,o), (-190,735,o), (-202,721,cs), (-270,645,l) ); } ); width = 0; } ); unicode = 777; }, { glyphname = dblgravecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-258,785); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-363,785,l), (-418,785,l), (-328,645,l), (-279,645,l) ); }, { closed = 1; nodes = ( (-204,785,l), (-259,785,l), (-169,645,l), (-120,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-257,785); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-356,785,l), (-445,785,l), (-352,645,l), (-268,645,l) ); }, { closed = 1; nodes = ( (-180,785,l), (-269,785,l), (-176,645,l), (-92,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-257,785); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-347,785,l), (-487,785,l), (-394,645,l), (-264,645,l) ); }, { closed = 1; nodes = ( (-133,785,l), (-273,785,l), (-180,645,l), (-50,645,l) ); } ); width = 0; } ); unicode = 783; }, { glyphname = commaturnedabovecomb; layers = ( { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-185,880); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,880,l), (-304,645,l), (-235,645,l), (-103,880,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-192,880); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-162,880,l), (-329,645,l), (-210,645,l), (-93,880,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-257,550); }, { name = top; pos = (-190,880); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-188,880,l), (-355,645,l), (-179,645,l), (-62,880,l) ); } ); width = 0; } ); unicode = 786; }, { glyphname = horncomb; layers = ( { anchors = ( { name = _horn; pos = (-267,550); }, { name = _topright; pos = (-237,550); }, { name = topright; pos = (36,660); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-163,450,ls), (-76,450,o), (-9,504,o), (4,585,cs), (16,660,l), (-104,660,l), (-116,585,ls), (-120,563,o), (-135,550,o), (-157,550,cs), (-217,550,l), (-233,450,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-233,550); }, { name = _topright; pos = (-209,550); }, { name = topright; pos = (-15,660); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-168,485,ls), (-105,485,o), (-57,523,o), (-48,580,cs), (-35,660,l), (-110,660,l), (-122,585,ls), (-126,562,o), (-140,550,o), (-163,550,cs), (-189,550,l), (-199,485,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-247,550); }, { name = _topright; pos = (-217,550); }, { name = topright; pos = (-19,660); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-147,515,ls), (-96,515,o), (-57,549,o), (-49,600,cs), (-39,660,l), (-79,660,l), (-89,600,ls), (-94,570,o), (-115,550,o), (-142,550,cs), (-197,550,l), (-202,515,l) ); } ); width = 0; } ); unicode = 795; }, { glyphname = dotbelowcomb; layers = ( { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-380,-233); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-325,-233,o), (-285,-203,o), (-278,-155,cs), (-270,-107,o), (-300,-77,o), (-355,-77,cs), (-410,-77,o), (-450,-107,o), (-458,-155,cs), (-465,-203,o), (-435,-233,o), (-380,-233,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-377,-213); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-333,-213,o), (-302,-189,o), (-296,-150,cs), (-289,-110,o), (-312,-85,o), (-356,-85,cs), (-400,-85,o), (-431,-110,o), (-438,-150,cs), (-444,-189,o), (-421,-213,o), (-377,-213,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-376,-205); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-340,-205,o), (-314,-183,o), (-309,-150,cs), (-304,-117,o), (-323,-95,o), (-358,-95,cs), (-393,-95,o), (-420,-117,o), (-425,-150,cs), (-430,-183,o), (-410,-205,o), (-375,-205,cs) ); } ); width = 0; } ); unicode = 803; }, { glyphname = ringbelowcomb; layers = ( { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-385,-260); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-306,-260,o), (-248,-218,o), (-238,-155,cs), (-228,-92,o), (-273,-50,o), (-351,-50,cs), (-429,-50,o), (-488,-92,o), (-498,-155,cs), (-508,-218,o), (-462,-260,o), (-384,-260,cs) ); }, { closed = 1; nodes = ( (-413,-206,o), (-432,-186,o), (-428,-155,cs), (-423,-124,o), (-396,-104,o), (-360,-104,cs), (-323,-104,o), (-303,-124,o), (-308,-155,cs), (-312,-186,o), (-340,-206,o), (-377,-206,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-383,-250); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-311,-250,o), (-256,-210,o), (-247,-150,cs), (-237,-90,o), (-279,-50,o), (-351,-50,cs), (-423,-50,o), (-477,-90,o), (-487,-150,cs), (-496,-210,o), (-455,-250,o), (-383,-250,cs) ); }, { closed = 1; nodes = ( (-411,-199,o), (-431,-179,o), (-427,-150,cs), (-422,-120,o), (-395,-100,o), (-360,-100,cs), (-322,-100,o), (-301,-116,o), (-307,-150,cs), (-311,-179,o), (-339,-199,o), (-376,-199,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-382,-245); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-319,-245,o), (-271,-207,o), (-262,-150,cs), (-253,-93,o), (-289,-55,o), (-352,-55,cs), (-415,-55,o), (-463,-93,o), (-472,-150,cs), (-481,-207,o), (-445,-245,o), (-382,-245,cs) ); }, { closed = 1; nodes = ( (-415,-210,o), (-437,-185,o), (-432,-150,cs), (-426,-115,o), (-396,-89,o), (-358,-89,cs), (-315,-89,o), (-296,-115,o), (-302,-150,cs), (-307,-185,o), (-337,-210,o), (-377,-210,cs) ); } ); width = 0; } ); unicode = 805; }, { glyphname = commaaccentcomb; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-384,-240); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-377,-240,l), (-239,-95,l), (-389,-95,l), (-507,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-392,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-397,-240,l), (-269,-95,l), (-374,-95,l), (-492,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-389,-240); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-417,-240,l), (-289,-95,l), (-354,-95,l), (-467,-240,l) ); } ); width = 600; } ); unicode = 806; }, { glyphname = cedillacomb; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-375,-195); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-385,-195,ls), (-325,-195,o), (-279,-161,o), (-273,-118,cs), (-264,-61,o), (-323,-37,o), (-369,-34,c), (-337,26,l), (-379,26,l), (-428,-64,l), (-357,-64,o), (-314,-86,o), (-319,-118,cs), (-322,-140,o), (-347,-160,o), (-379,-160,cs), (-459,-160,l), (-465,-195,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-369,-203); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-386,-203,ls), (-314,-203,o), (-260,-166,o), (-253,-120,cs), (-245,-68,o), (-308,-41,o), (-360,-35,c), (-329,26,l), (-386,26,l), (-436,-69,l), (-369,-69,o), (-334,-89,o), (-338,-112,cs), (-341,-130,o), (-363,-148,o), (-392,-148,cs), (-462,-148,l), (-471,-203,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-365,-225); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-380,-225,ls), (-296,-225,o), (-233,-182,o), (-225,-133,cs), (-215,-72,o), (-292,-43,o), (-352,-39,c), (-324,16,l), (-397,16,l), (-446,-69,l), (-373,-69,o), (-333,-88,o), (-338,-119,cs), (-340,-135,o), (-366,-155,o), (-399,-155,cs), (-479,-155,l), (-490,-225,l) ); } ); width = 0; } ); unicode = 807; }, { glyphname = ogonekcomb; layers = ( { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-300,-195,l), (-293,-153,l), (-357,-153,ls), (-389,-153,o), (-405,-134,o), (-400,-103,cs), (-396,-75,o), (-367,-36,o), (-323,0,cs), (-310,10,l), (-347,10,l), (-404,-27,o), (-443,-74,o), (-449,-115,cs), (-457,-165,o), (-428,-195,o), (-373,-195,c) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-291,-203,l), (-282,-143,l), (-342,-143,ls), (-376,-143,o), (-393,-122,o), (-389,-93,cs), (-384,-65,o), (-361,-36,o), (-310,1,c), (-297,10,l), (-372,10,l), (-442,-34,o), (-470,-72,o), (-476,-110,cs), (-485,-164,o), (-443,-203,o), (-369,-203,cs) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-276,-225,l), (-259,-120,l), (-328,-120,ls), (-357,-120,o), (-371,-103,o), (-368,-83,cs), (-365,-66,o), (-347,-42,o), (-317,-18,cs), (-280,11,l), (-366,11,l), (-439,-19,o), (-490,-68,o), (-497,-115,cs), (-508,-180,o), (-465,-225,o), (-384,-225,cs) ); } ); width = 0; } ); unicode = 808; }, { glyphname = strokelongcomb; layers = ( { anchors = ( { name = _center; pos = (-294,316); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (27,260,l), (45,371,l), (-615,371,l), (-633,260,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-293,325); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,290,l), (43,360,l), (-617,360,l), (-628,290,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-292,326); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (34,306,l), (41,346,l), (-618,346,l), (-625,306,l) ); } ); width = 0; } ); unicode = 822; }, { glyphname = slashshortcomb; layers = ( { anchors = ( { name = _center; pos = (-299,280); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-537,-30,l), (-10,590,l), (-61,590,l), (-588,-30,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-299,280); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-520,-30,l), (15,590,l), (-79,590,l), (-613,-30,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-299,280); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-504,-30,l), (25,590,l), (-94,590,l), (-623,-30,l) ); } ); width = 0; } ); unicode = 823; }, { glyphname = slashlongcomb; layers = ( { anchors = ( { name = _center; pos = (-300,275); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-461,-110,l), (-44,660,l), (-139,660,l), (-556,-110,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-300,275); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-485,-110,l), (-49,660,l), (-115,660,l), (-551,-110,l) ); } ); width = 0; }, { anchors = ( { name = _center; pos = (-300,275); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-493,-110,l), (-59,660,l), (-107,660,l), (-541,-110,l) ); } ); width = 0; } ); unicode = 824; }, { glyphname = dieresis; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dieresiscomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dieresiscomb; } ); width = 600; } ); unicode = 168; }, { glyphname = dotaccent; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = dotaccentcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = dotaccentcomb; } ); width = 600; } ); unicode = 729; }, { glyphname = grave; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = gravecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = gravecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = gravecomb; } ); width = 600; } ); unicode = 96; }, { glyphname = acute; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = acutecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = acutecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = acutecomb; } ); width = 600; } ); unicode = 180; }, { glyphname = hungarumlaut; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = hungarumlautcomb; } ); width = 600; } ); unicode = 733; }, { glyphname = circumflex; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = circumflexcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = circumflexcomb; } ); width = 600; } ); unicode = 710; }, { glyphname = caron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = caroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = caroncomb; } ); width = 600; } ); unicode = 711; }, { glyphname = breve; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = brevecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = brevecomb; } ); width = 600; } ); unicode = 728; }, { glyphname = ring; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ringcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = ringcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = ringcomb; } ); width = 600; } ); unicode = 730; }, { glyphname = tilde; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = tildecomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = tildecomb; } ); width = 600; } ); unicode = 732; }, { glyphname = macron; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = macroncomb; } ); width = 600; } ); unicode = 175; }, { glyphname = cedilla; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = cedillacomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = cedillacomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = cedillacomb; } ); width = 600; } ); unicode = 184; }, { glyphname = ogonek; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { pos = (600,0); ref = ogonekcomb; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { pos = (600,0); ref = ogonekcomb; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { pos = (600,0); ref = ogonekcomb; } ); width = 600; } ); unicode = 731; }, { glyphname = commaaccentcomb.alt; layers = ( { anchors = ( { name = _bottom; pos = (-346,0); }, { name = bottom; pos = (-384,-240); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; ref = commaaccentcomb; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (-354,0); }, { name = bottom; pos = (-392,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; ref = commaaccentcomb; } ); width = 600; }, { anchors = ( { name = _bottom; pos = (-351,0); }, { name = bottom; pos = (-389,-240); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; ref = commaaccentcomb; } ); width = 600; } ); }, { glyphname = dieresiscomb.case; layers = ( { anchors = ( { name = _top; pos = (-229,730); }, { name = top; pos = (-195,935); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-73,825,o), (-50,847,o), (-45,880,cs), (-39,913,o), (-56,935,o), (-87,935,cs), (-119,935,o), (-143,913,o), (-149,880,cs), (-154,847,o), (-136,825,o), (-104,825,cs) ); }, { closed = 1; nodes = ( (-288,825,o), (-264,847,o), (-259,880,cs), (-253,913,o), (-271,935,o), (-302,935,cs), (-333,935,o), (-357,913,o), (-363,880,cs), (-368,847,o), (-350,825,o), (-319,825,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-194,945); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-64,817,o), (-35,841,o), (-29,880,cs), (-22,920,o), (-43,945,o), (-82,945,cs), (-121,945,o), (-150,920,o), (-157,880,cs), (-163,841,o), (-142,817,o), (-103,817,cs) ); }, { closed = 1; nodes = ( (-286,817,o), (-257,841,o), (-251,880,cs), (-244,920,o), (-265,945,o), (-304,945,cs), (-343,945,o), (-372,920,o), (-379,880,cs), (-385,841,o), (-364,817,o), (-325,817,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-192,958); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-45,802,o), (-9,832,o), (-2,880,cs), (6,928,o), (-20,958,o), (-69,958,cs), (-118,958,o), (-154,928,o), (-162,880,cs), (-169,832,o), (-143,802,o), (-94,802,cs) ); }, { closed = 1; nodes = ( (-289,802,o), (-253,832,o), (-246,880,cs), (-238,928,o), (-264,958,o), (-313,958,cs), (-362,958,o), (-398,928,o), (-406,880,cs), (-413,832,o), (-387,802,o), (-338,802,cs) ); } ); width = 0; } ); }, { glyphname = dotaccentcomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-195,935); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-177,825,o), (-151,847,o), (-146,880,cs), (-140,913,o), (-160,935,o), (-195,935,cs), (-230,935,o), (-256,913,o), (-262,880,cs), (-267,847,o), (-247,825,o), (-212,825,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-194,944); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-170,816,o), (-139,841,o), (-133,880,cs), (-126,919,o), (-149,944,o), (-193,944,cs), (-237,944,o), (-268,919,o), (-275,880,cs), (-281,841,o), (-258,816,o), (-214,816,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-192,958); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-161,802,o), (-121,832,o), (-114,880,cs), (-106,928,o), (-136,958,o), (-191,958,cs), (-246,958,o), (-286,928,o), (-294,880,cs), (-301,832,o), (-271,802,o), (-216,802,cs) ); } ); width = 0; } ); }, { glyphname = gravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-215,730); }, { name = top; pos = (-227,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-167,810,l), (-251,950,l), (-309,950,l), (-219,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-214,730); }, { name = top; pos = (-223,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-143,810,l), (-231,950,l), (-325,950,l), (-232,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-214,730); }, { name = top; pos = (-225,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-115,810,l), (-198,950,l), (-357,950,l), (-262,810,l) ); } ); width = 0; } ); }, { glyphname = acutecomb.case; layers = ( { anchors = ( { name = _top; pos = (-239,730); }, { name = top; pos = (-158,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-208,810,l), (-74,950,l), (-137,950,l), (-265,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-239,730); }, { name = top; pos = (-162,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-191,810,l), (-58,950,l), (-160,950,l), (-288,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-240,730); }, { name = top; pos = (-161,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-164,810,l), (-25,950,l), (-192,950,l), (-319,810,l) ); } ); width = 0; } ); }, { glyphname = hungarumlautcomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-156,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-127,810,l), (7,950,l), (-55,950,l), (-183,810,l) ); }, { closed = 1; nodes = ( (-286,810,l), (-152,950,l), (-214,950,l), (-342,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-156,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-100,810,l), (37,950,l), (-58,950,l), (-190,810,l) ); }, { closed = 1; nodes = ( (-282,810,l), (-145,950,l), (-240,950,l), (-372,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-156,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-58,810,l), (79,950,l), (-67,950,l), (-194,810,l) ); }, { closed = 1; nodes = ( (-278,810,l), (-141,950,l), (-287,950,l), (-414,810,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-312,810,l), (-195,919,l), (-112,810,l), (-65,810,l), (-163,950,l), (-223,950,l), (-365,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-293,810,l), (-200,888,l), (-131,810,l), (-34,810,l), (-152,950,l), (-235,950,l), (-396,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-281,810,l), (-203,880,l), (-142,810,l), (-10,810,l), (-123,950,l), (-263,950,l), (-420,810,l) ); } ); width = 0; } ); }, { glyphname = caroncomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-185,810,l), (-43,950,l), (-93,950,l), (-210,841,l), (-294,950,l), (-343,950,l), (-245,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-173,810,l), (-12,950,l), (-115,950,l), (-207,872,l), (-277,950,l), (-374,950,l), (-256,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-145,810,l), (12,950,l), (-127,950,l), (-205,880,l), (-266,950,l), (-398,950,l), (-285,810,l) ); } ); width = 0; } ); }, { glyphname = brevecomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-126,808,o), (-61,863,o), (-48,950,c), (-93,950,l), (-103,887,o), (-148,848,o), (-210,848,cs), (-271,848,o), (-303,887,o), (-293,950,c), (-338,950,l), (-351,863,o), (-304,808,o), (-215,808,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-120,805,o), (-46,863,o), (-33,950,c), (-105,950,l), (-113,898,o), (-154,863,o), (-208,863,cs), (-261,863,o), (-291,898,o), (-283,950,c), (-353,950,l), (-366,863,o), (-312,805,o), (-216,805,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-106,800,o), (-23,860,o), (-9,950,c), (-126,950,l), (-132,912,o), (-164,887,o), (-206,887,cs), (-247,887,o), (-271,912,o), (-265,950,c), (-378,950,l), (-392,860,o), (-327,800,o), (-217,800,cs) ); } ); width = 0; } ); }, { glyphname = ringcomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-188,980); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-156,780,o), (-108,820,o), (-99,880,cs), (-89,940,o), (-125,980,o), (-187,980,cs), (-250,980,o), (-299,940,o), (-309,880,cs), (-318,820,o), (-281,780,o), (-218,780,cs) ); }, { closed = 1; nodes = ( (-253,815,o), (-275,841,o), (-269,880,cs), (-262,919,o), (-232,945,o), (-193,945,cs), (-154,945,o), (-132,919,o), (-139,880,cs), (-145,841,o), (-175,815,o), (-214,815,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-186,994); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-150,766,o), (-94,812,o), (-84,880,cs), (-73,948,o), (-114,994,o), (-186,994,cs), (-258,994,o), (-313,948,o), (-324,880,cs), (-334,812,o), (-294,766,o), (-222,766,cs) ); }, { closed = 1; nodes = ( (-249,819,o), (-269,843,o), (-264,880,cs), (-258,917,o), (-230,942,o), (-194,942,cs), (-158,942,o), (-138,917,o), (-144,880,cs), (-149,843,o), (-177,819,o), (-213,819,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-184,1007); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-140,753,o), (-76,804,o), (-64,880,cs), (-52,956,o), (-100,1007,o), (-184,1007,cs), (-268,1007,o), (-332,956,o), (-344,880,cs), (-356,804,o), (-308,753,o), (-224,753,cs) ); }, { closed = 1; nodes = ( (-249,823,o), (-269,846,o), (-264,880,cs), (-258,914,o), (-231,937,o), (-195,937,cs), (-159,937,o), (-138,914,o), (-144,880,cs), (-149,846,o), (-177,823,o), (-213,823,cs) ); } ); width = 0; } ); }, { glyphname = tildecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-194,945); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-87,815,o), (-50,849,o), (-41,905,cs), (-35,940,l), (-75,940,l), (-81,905,ls), (-86,874,o), (-106,854,o), (-134,854,cs), (-183,854,o), (-189,945,o), (-264,945,cs), (-320,945,o), (-360,911,o), (-369,855,cs), (-374,820,l), (-334,820,l), (-329,855,ls), (-324,886,o), (-302,906,o), (-271,906,cs), (-222,906,o), (-215,815,o), (-140,815,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-194,945); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-91,815,o), (-49,850,o), (-40,910,cs), (-35,940,l), (-100,940,l), (-105,910,ls), (-109,886,o), (-122,875,o), (-140,875,cs), (-185,875,o), (-184,945,o), (-264,945,cs), (-318,945,o), (-360,910,o), (-369,850,cs), (-374,820,l), (-309,820,l), (-304,850,ls), (-301,874,o), (-287,885,o), (-269,885,cs), (-224,885,o), (-225,815,o), (-145,815,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-192,960); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-81,800,o), (-29,851,o), (-18,920,cs), (-13,955,l), (-98,955,l), (-102,928,ls), (-105,911,o), (-118,900,o), (-136,900,cs), (-176,900,o), (-177,960,o), (-262,960,cs), (-328,960,o), (-380,909,o), (-391,840,cs), (-397,805,l), (-312,805,l), (-308,827,ls), (-305,847,o), (-291,860,o), (-273,860,cs), (-233,860,o), (-232,800,o), (-147,800,cs) ); } ); width = 0; } ); }, { glyphname = macroncomb.case; layers = ( { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-201,897); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-68,854,l), (-61,897,l), (-341,897,l), (-348,854,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-199,915); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-51,840,l), (-39,915,l), (-359,915,l), (-371,840,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-197,930); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-34,820,l), (-17,930,l), (-377,930,l), (-394,820,l) ); } ); width = 0; } ); }, { glyphname = hookabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,985); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-165,796,l), (-123,838,ls), (-106,855,o), (-95,877,o), (-92,899,cs), (-83,951,o), (-120,985,o), (-183,985,cs), (-288,985,l), (-301,900,l), (-227,900,ls), (-208,900,o), (-201,896,o), (-203,883,cs), (-204,875,o), (-210,867,o), (-223,854,cs), (-281,796,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-184,980); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-175,800,l), (-127,852,ls), (-114,867,o), (-104,886,o), (-101,906,cs), (-94,952,o), (-123,980,o), (-174,980,cs), (-279,980,l), (-290,915,l), (-212,915,ls), (-194,915,o), (-185,908,o), (-187,895,cs), (-188,887,o), (-195,875,o), (-206,863,cs), (-266,800,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-186,975); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-194,800,l), (-139,863,ls), (-124,880,o), (-115,900,o), (-112,916,cs), (-107,952,o), (-133,975,o), (-180,975,cs), (-268,975,l), (-274,940,l), (-186,940,ls), (-163,940,o), (-151,929,o), (-154,912,cs), (-155,904,o), (-166,890,o), (-178,876,cs), (-246,800,l) ); } ); width = 0; } ); }, { glyphname = dblgravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-232,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-337,950,l), (-392,950,l), (-302,810,l), (-253,810,l) ); }, { closed = 1; nodes = ( (-178,950,l), (-233,950,l), (-143,810,l), (-94,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-231,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-330,950,l), (-419,950,l), (-326,810,l), (-242,810,l) ); }, { closed = 1; nodes = ( (-154,950,l), (-243,950,l), (-150,810,l), (-66,810,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-231,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-321,950,l), (-461,950,l), (-368,810,l), (-238,810,l) ); }, { closed = 1; nodes = ( (-107,950,l), (-247,950,l), (-154,810,l), (-24,810,l) ); } ); width = 0; } ); }, { glyphname = breveinvertedcomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-194,950); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-316,808,l), (-306,871,o), (-262,910,o), (-201,910,cs), (-139,910,o), (-106,871,o), (-116,808,c), (-71,808,l), (-57,895,o), (-105,950,o), (-194,950,cs), (-283,950,o), (-347,895,o), (-361,808,c) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-193,950); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-304,805,l), (-295,857,o), (-255,892,o), (-202,892,cs), (-148,892,o), (-117,857,o), (-126,805,c), (-56,805,l), (-42,892,o), (-97,950,o), (-193,950,cs), (-289,950,o), (-362,892,o), (-376,805,c) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-193,950); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-288,800,l), (-282,838,o), (-250,863,o), (-209,863,cs), (-167,863,o), (-143,838,o), (-149,800,c), (-32,800,l), (-18,890,o), (-83,950,o), (-194,950,cs), (-304,950,o), (-387,890,o), (-401,800,c) ); } ); width = 0; } ); }, { glyphname = commaturnedabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-168,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-140,1020,l), (-278,810,l), (-209,810,l), (-91,1020,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-175,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-150,1020,l), (-303,810,l), (-184,810,l), (-81,1020,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-173,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-176,1020,l), (-329,810,l), (-153,810,l), (-50,1020,l) ); } ); width = 0; } ); }, { glyphname = horncomb.case; layers = ( { anchors = ( { name = _horn; pos = (-248,730); }, { name = _topright; pos = (-188,730); }, { name = topright; pos = (10,840); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-119,695,ls), (-68,695,o), (-29,729,o), (-20,780,cs), (-11,840,l), (-51,840,l), (-60,780,ls), (-65,750,o), (-86,730,o), (-113,730,cs), (-168,730,l), (-174,695,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-228,730); }, { name = _topright; pos = (-178,730); }, { name = topright; pos = (19,840); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-134,665,ls), (-70,665,o), (-23,702,o), (-14,760,cs), (-1,840,l), (-76,840,l), (-88,765,ls), (-91,744,o), (-107,730,o), (-128,730,cs), (-157,730,l), (-168,665,l) ); } ); width = 0; }, { anchors = ( { name = _horn; pos = (-224,730); }, { name = _topright; pos = (-173,730); }, { name = topright; pos = (79,840); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-119,630,ls), (-32,630,o), (34,684,o), (47,765,cs), (59,840,l), (-61,840,l), (-73,765,ls), (-76,743,o), (-91,730,o), (-113,730,cs), (-153,730,l), (-169,630,l) ); } ); width = 0; } ); }, { glyphname = dotbelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-377,-205); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-341,-205,o), (-315,-183,o), (-310,-150,cs), (-305,-117,o), (-324,-95,o), (-359,-95,cs), (-394,-95,o), (-421,-117,o), (-426,-150,cs), (-431,-183,o), (-411,-205,o), (-376,-205,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-378,-213); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-334,-213,o), (-303,-189,o), (-297,-150,cs), (-290,-110,o), (-313,-85,o), (-357,-85,cs), (-401,-85,o), (-432,-110,o), (-439,-150,cs), (-445,-189,o), (-422,-213,o), (-378,-213,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-381,-233); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-326,-233,o), (-286,-203,o), (-279,-155,cs), (-271,-107,o), (-301,-77,o), (-356,-77,cs), (-411,-77,o), (-451,-107,o), (-459,-155,cs), (-466,-203,o), (-436,-233,o), (-381,-233,cs) ); } ); width = 0; } ); }, { glyphname = dieresisbelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-376,-205); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-236,-205,o), (-213,-183,o), (-208,-150,cs), (-203,-117,o), (-219,-95,o), (-250,-95,cs), (-282,-95,o), (-307,-117,o), (-312,-150,cs), (-317,-183,o), (-299,-205,o), (-267,-205,cs) ); }, { closed = 1; nodes = ( (-451,-205,o), (-427,-183,o), (-422,-150,cs), (-417,-117,o), (-434,-95,o), (-465,-95,cs), (-496,-95,o), (-521,-117,o), (-526,-150,cs), (-531,-183,o), (-513,-205,o), (-482,-205,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-377,-213); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-227,-213,o), (-198,-189,o), (-192,-150,cs), (-185,-110,o), (-206,-85,o), (-245,-85,cs), (-284,-85,o), (-313,-110,o), (-320,-150,cs), (-326,-189,o), (-305,-213,o), (-266,-213,cs) ); }, { closed = 1; nodes = ( (-449,-213,o), (-420,-189,o), (-414,-150,cs), (-407,-110,o), (-428,-85,o), (-467,-85,cs), (-506,-85,o), (-535,-110,o), (-542,-150,cs), (-548,-189,o), (-527,-213,o), (-488,-213,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-343,0); }, { name = bottom; pos = (-380,-233); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-209,-233,o), (-173,-203,o), (-166,-155,cs), (-158,-107,o), (-184,-77,o), (-233,-77,cs), (-282,-77,o), (-318,-107,o), (-326,-155,cs), (-333,-203,o), (-307,-233,o), (-258,-233,cs) ); }, { closed = 1; nodes = ( (-453,-233,o), (-417,-203,o), (-410,-155,cs), (-402,-107,o), (-428,-77,o), (-477,-77,cs), (-526,-77,o), (-562,-107,o), (-570,-155,cs), (-577,-203,o), (-551,-233,o), (-502,-233,cs) ); } ); width = 0; } ); }, { glyphname = commaaccentcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-389,-240); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-417,-240,l), (-289,-95,l), (-354,-95,l), (-467,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-392,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-399,-240,l), (-271,-95,l), (-372,-95,l), (-490,-240,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-384,-240); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-374,-240,l), (-236,-95,l), (-392,-95,l), (-510,-240,l) ); } ); width = 0; } ); }, { glyphname = cedillacomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-369,0); }, { name = bottom; pos = (-375,-195); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-385,-195,ls), (-325,-195,o), (-279,-161,o), (-273,-118,cs), (-264,-61,o), (-323,-37,o), (-369,-34,c), (-337,26,l), (-379,26,l), (-428,-64,l), (-357,-64,o), (-314,-86,o), (-319,-118,cs), (-322,-140,o), (-347,-160,o), (-379,-160,cs), (-459,-160,l), (-465,-195,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-369,-203); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-386,-203,ls), (-314,-203,o), (-260,-166,o), (-253,-120,cs), (-245,-68,o), (-308,-41,o), (-360,-35,c), (-329,26,l), (-386,26,l), (-436,-69,l), (-369,-69,o), (-334,-89,o), (-338,-112,cs), (-341,-130,o), (-363,-148,o), (-392,-148,cs), (-462,-148,l), (-471,-203,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-360,-225); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-375,-225,ls), (-291,-225,o), (-228,-182,o), (-220,-133,cs), (-210,-72,o), (-287,-43,o), (-347,-39,c), (-319,16,l), (-392,16,l), (-441,-69,l), (-368,-69,o), (-328,-88,o), (-333,-119,cs), (-335,-135,o), (-361,-155,o), (-394,-155,cs), (-474,-155,l), (-485,-225,l) ); } ); width = 0; } ); }, { glyphname = ogonekcomb.case; layers = ( { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-300,-195,l), (-293,-153,l), (-357,-153,ls), (-389,-153,o), (-405,-134,o), (-400,-103,cs), (-396,-75,o), (-367,-36,o), (-323,0,cs), (-310,10,l), (-347,10,l), (-404,-27,o), (-443,-74,o), (-449,-115,cs), (-457,-165,o), (-428,-195,o), (-373,-195,c) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-291,-203,l), (-282,-143,l), (-342,-143,ls), (-376,-143,o), (-393,-122,o), (-389,-93,cs), (-384,-65,o), (-361,-36,o), (-310,1,c), (-297,10,l), (-372,10,l), (-442,-34,o), (-470,-72,o), (-476,-110,cs), (-485,-164,o), (-443,-203,o), (-369,-203,cs) ); } ); width = 0; }, { anchors = ( { name = _ogonek; pos = (-344,0); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-276,-225,l), (-259,-120,l), (-328,-120,ls), (-357,-120,o), (-371,-103,o), (-368,-83,cs), (-365,-66,o), (-347,-42,o), (-317,-18,cs), (-280,11,l), (-366,11,l), (-439,-19,o), (-490,-68,o), (-497,-115,cs), (-508,-180,o), (-465,-225,o), (-384,-225,cs) ); } ); width = 0; } ); }, { glyphname = brevebelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-381,-237); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-293,-237,o), (-228,-182,o), (-214,-95,c), (-259,-95,l), (-269,-158,o), (-314,-197,o), (-376,-197,cs), (-437,-197,o), (-469,-158,o), (-459,-95,c), (-504,-95,l), (-518,-182,o), (-471,-237,o), (-382,-237,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-382,-240); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-286,-240,o), (-213,-182,o), (-199,-95,c), (-270,-95,l), (-278,-147,o), (-320,-182,o), (-374,-182,cs), (-427,-182,o), (-456,-147,o), (-448,-95,c), (-519,-95,l), (-533,-182,o), (-478,-240,o), (-382,-240,cs) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-383,-245); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-272,-245,o), (-188,-185,o), (-174,-95,c), (-289,-95,l), (-295,-133,o), (-327,-158,o), (-369,-158,cs), (-410,-158,o), (-435,-133,o), (-429,-95,c), (-544,-95,l), (-558,-185,o), (-493,-245,o), (-383,-245,cs) ); } ); width = 0; } ); }, { glyphname = macronbelowcomb.case; layers = ( { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-371,-170); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-231,-170,l), (-224,-127,l), (-504,-127,l), (-511,-170,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-375,-195); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-215,-195,l), (-203,-120,l), (-523,-120,l), (-535,-195,l) ); } ); width = 0; }, { anchors = ( { name = _bottom; pos = (-344,0); }, { name = bottom; pos = (-379,-220); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-199,-220,l), (-181,-110,l), (-541,-110,l), (-559,-220,l) ); } ); width = 0; } ); }, { glyphname = dieresis.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = dieresiscomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = dieresiscomb.case; } ); width = 600; } ); }, { glyphname = dotaccent.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = dotaccentcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = dotaccentcomb.case; } ); width = 600; } ); }, { glyphname = grave.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = gravecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = gravecomb.case; } ); width = 600; } ); }, { glyphname = acute.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = acutecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = acutecomb.case; } ); width = 600; } ); }, { glyphname = hungarumlaut.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = hungarumlautcomb.case; } ); width = 600; } ); }, { glyphname = circumflex.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = circumflexcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = circumflexcomb.case; } ); width = 600; } ); }, { glyphname = caron.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = caroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = caroncomb.case; } ); width = 600; } ); }, { glyphname = breve.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = brevecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = brevecomb.case; } ); width = 600; } ); }, { glyphname = ring.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = ringcomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = ringcomb.case; } ); width = 600; } ); }, { glyphname = tilde.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = tildecomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = tildecomb.case; } ); visible = 1; width = 600; } ); }, { glyphname = macron.case; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { alignment = -1; pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { alignment = -1; pos = (600,0); ref = macroncomb.case; } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { alignment = -1; pos = (600,0); ref = macroncomb.case; } ); width = 600; } ); }, { glyphname = tonos; layers = ( { anchors = ( { name = _top; pos = (303,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (345,645,l), (479,785,l), (420,785,l), (292,645,l) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (313,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (362,645,l), (495,785,l), (398,785,l), (270,645,l) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (313,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (389,645,l), (528,785,l), (367,785,l), (240,645,l) ); } ); width = 600; } ); unicode = 900; }, { glyphname = tonos.case; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (339,568,l), (426,728,l), (372,728,l), (291,568,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (357,570,l), (447,730,l), (353,730,l), (271,570,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (375,570,l), (467,730,l), (335,730,l), (251,570,l) ); } ); width = 600; } ); }, { glyphname = dieresistonos; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (394,769,l), (503,900,l), (454,900,l), (352,769,l) ); }, { closed = 1; nodes = ( (499,655,o), (522,677,o), (527,710,cs), (533,743,o), (516,765,o), (485,765,cs), (453,765,o), (429,743,o), (423,710,cs), (418,677,o), (436,655,o), (468,655,cs) ); }, { closed = 1; nodes = ( (284,655,o), (308,677,o), (313,710,cs), (319,743,o), (301,765,o), (270,765,cs), (239,765,o), (215,743,o), (209,710,cs), (204,677,o), (222,655,o), (253,655,cs) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (407,769,l), (516,900,l), (436,900,l), (337,769,l) ); }, { closed = 1; nodes = ( (509,649,o), (538,673,o), (544,712,cs), (550,752,o), (529,777,o), (490,777,cs), (451,777,o), (422,752,o), (416,712,cs), (410,673,o), (431,649,o), (470,649,cs) ); }, { closed = 1; nodes = ( (287,649,o), (316,673,o), (322,712,cs), (328,752,o), (307,777,o), (268,777,cs), (229,777,o), (200,752,o), (194,712,cs), (188,673,o), (209,649,o), (248,649,cs) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (436,796,l), (543,926,l), (413,926,l), (316,796,l) ); }, { closed = 1; nodes = ( (528,637,o), (564,667,o), (571,715,cs), (579,763,o), (553,793,o), (504,793,cs), (455,793,o), (419,763,o), (411,715,cs), (404,667,o), (430,637,o), (479,637,cs) ); }, { closed = 1; nodes = ( (284,637,o), (320,667,o), (327,715,cs), (335,763,o), (309,793,o), (260,793,cs), (211,793,o), (175,763,o), (167,715,cs), (160,667,o), (186,637,o), (235,637,cs) ); } ); width = 600; } ); unicode = 901; }, { glyphname = "brevecomb-cy"; layers = ( { anchors = ( { name = _top; pos = (-256,550); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,643,o), (-87,698,o), (-74,785,c), (-119,785,l), (-129,722,o), (-174,683,o), (-236,683,cs), (-297,683,o), (-329,722,o), (-319,785,c), (-364,785,l), (-377,698,o), (-330,643,o), (-241,643,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-146,640,o), (-72,698,o), (-59,785,c), (-131,785,l), (-139,733,o), (-180,698,o), (-234,698,cs), (-287,698,o), (-317,733,o), (-309,785,c), (-379,785,l), (-392,698,o), (-338,640,o), (-242,640,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-131,635,o), (-48,695,o), (-34,785,c), (-151,785,l), (-157,747,o), (-189,722,o), (-231,722,cs), (-272,722,o), (-297,747,o), (-291,785,c), (-404,785,l), (-418,695,o), (-352,635,o), (-242,635,cs) ); } ); width = 0; } ); }, { glyphname = brevecomb_acutecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,925); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-164,785,l), (-16,925,l), (-148,925,l), (-286,785,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-144,640,o), (-64,692,o), (-52,770,c), (-123,770,l), (-130,726,o), (-172,700,o), (-234,700,cs), (-295,700,o), (-330,726,o), (-323,770,c), (-392,770,l), (-404,692,o), (-342,640,o), (-243,640,cs) ); }, { closed = 1; nodes = ( (-194,760,l), (-53,890,l), (-152,890,l), (-288,760,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-118,770,l), (-126,719,o), (-174,685,o), (-237,685,cs), (-299,685,o), (-336,719,o), (-328,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-214,760,l), (-73,890,l), (-137,890,l), (-268,760,l) ); } ); width = 0; } ); }, { glyphname = brevecomb_gravecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,925); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-156,785,l), (-248,925,l), (-376,925,l), (-274,785,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-144,640,o), (-64,692,o), (-52,770,c), (-123,770,l), (-130,726,o), (-172,701,o), (-234,701,cs), (-295,701,o), (-330,726,o), (-323,770,c), (-392,770,l), (-404,692,o), (-342,640,o), (-243,640,cs) ); }, { closed = 1; nodes = ( (-162,760,l), (-256,890,l), (-349,890,l), (-250,760,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-203,890); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-118,770,l), (-126,719,o), (-174,685,o), (-237,685,cs), (-300,685,o), (-336,719,o), (-328,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-183,760,l), (-272,890,l), (-329,890,l), (-230,760,l) ); } ); width = 0; } ); }, { glyphname = brevecomb_hookabovecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-190,970); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-168,780,l), (-127,822,ls), (-110,840,o), (-97,862,o), (-94,884,cs), (-86,935,o), (-123,970,o), (-186,970,cs), (-290,970,l), (-304,885,l), (-230,885,ls), (-212,885,o), (-205,879,o), (-207,867,cs), (-208,859,o), (-213,851,o), (-226,838,cs), (-284,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,930); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-144,640,o), (-64,692,o), (-52,770,c), (-122,770,l), (-129,726,o), (-171,701,o), (-233,701,cs), (-294,701,o), (-329,726,o), (-322,770,c), (-392,770,l), (-404,692,o), (-342,640,o), (-243,640,cs) ); }, { closed = 1; nodes = ( (-192,760,l), (-149,810,ls), (-136,825,o), (-127,841,o), (-124,859,cs), (-117,901,o), (-150,930,o), (-207,930,cs), (-272,930,l), (-281,870,l), (-232,870,ls), (-215,870,o), (-207,861,o), (-209,846,cs), (-210,838,o), (-215,829,o), (-222,821,cs), (-277,760,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,926); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-118,770,l), (-126,719,o), (-174,685,o), (-237,685,cs), (-300,685,o), (-336,719,o), (-328,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-214,760,l), (-167,811,ls), (-149,831,o), (-137,853,o), (-135,869,cs), (-130,904,o), (-156,926,o), (-201,926,cs), (-275,926,l), (-280,891,l), (-206,891,ls), (-186,891,o), (-176,881,o), (-179,865,cs), (-180,855,o), (-188,841,o), (-200,829,cs), (-264,760,l) ); } ); width = 0; } ); }, { glyphname = brevecomb_tildecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-192,955); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-135,635,o), (-50,691,o), (-36,775,c), (-148,775,l), (-153,743,o), (-183,725,o), (-232,725,cs), (-279,725,o), (-303,743,o), (-298,775,c), (-406,775,l), (-420,691,o), (-351,635,o), (-243,635,cs) ); }, { closed = 1; nodes = ( (-81,800,o), (-29,846,o), (-19,915,cs), (-14,950,l), (-99,950,l), (-104,913,ls), (-106,896,o), (-121,885,o), (-139,885,cs), (-179,885,o), (-178,955,o), (-263,955,cs), (-329,955,o), (-379,909,o), (-391,840,cs), (-397,805,l), (-312,805,l), (-306,837,ls), (-302,857,o), (-289,870,o), (-271,870,cs), (-231,870,o), (-232,800,o), (-147,800,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,928); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-146,645,o), (-74,697,o), (-61,775,c), (-127,775,l), (-135,729,o), (-175,702,o), (-235,702,cs), (-294,702,o), (-325,729,o), (-317,775,c), (-381,775,l), (-394,697,o), (-338,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-93,812,o), (-49,847,o), (-41,900,cs), (-38,920,l), (-103,920,l), (-107,895,ls), (-110,876,o), (-122,865,o), (-142,865,cs), (-191,865,o), (-182,928,o), (-263,928,cs), (-319,928,o), (-363,893,o), (-371,840,cs), (-374,820,l), (-309,820,l), (-305,845,ls), (-302,865,o), (-289,875,o), (-270,875,cs), (-221,875,o), (-229,812,o), (-149,812,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,925); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-152,645,o), (-84,695,o), (-72,770,c), (-117,770,l), (-125,719,o), (-173,685,o), (-236,685,cs), (-299,685,o), (-335,719,o), (-327,770,c), (-372,770,l), (-384,695,o), (-331,645,o), (-242,645,cs) ); }, { closed = 1; nodes = ( (-96,815,o), (-65,843,o), (-57,895,cs), (-53,920,l), (-93,920,l), (-97,895,ls), (-101,869,o), (-116,855,o), (-139,855,cs), (-192,855,o), (-191,925,o), (-262,925,cs), (-314,925,o), (-347,897,o), (-355,845,cs), (-359,820,l), (-319,820,l), (-315,845,ls), (-311,872,o), (-296,885,o), (-269,885,cs), (-216,885,o), (-217,815,o), (-145,815,cs) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_acutecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-111,895); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (33,755,l), (185,895,l), (38,895,l), (-104,755,l) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-129,900); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-18,760,l), (124,900,l), (20,900,l), (-117,760,l) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-136,900); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-68,760,l), (79,900,l), (15,900,l), (-122,760,l) ); }, { closed = 1; nodes = ( (-339,645,l), (-223,754,l), (-139,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_gravecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-155,895); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (75,755,l), (-23,895,l), (-166,895,l), (-58,755,l) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-164,900); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (32,760,l), (-71,900,l), (-167,900,l), (-59,760,l) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-179,900); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-28,760,l), (-125,900,l), (-181,900,l), (-74,760,l) ); }, { closed = 1; nodes = ( (-339,645,l), (-223,754,l), (-139,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_hookabovecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-145,944); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (24,755,l), (65,797,ls), (82,814,o), (93,836,o), (97,858,cs), (105,910,o), (69,944,o), (6,944,cs), (-99,944,l), (-113,859,l), (-38,859,ls), (-19,859,o), (-12,855,o), (-14,842,cs), (-15,834,o), (-20,826,o), (-33,813,cs), (-91,755,l) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-162,930); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-26,760,l), (17,810,ls), (30,825,o), (39,841,o), (42,859,cs), (49,901,o), (16,930,o), (-41,930,cs), (-106,930,l), (-115,870,l), (-66,870,ls), (-49,870,o), (-41,861,o), (-43,846,cs), (-44,838,o), (-49,829,o), (-56,821,cs), (-111,760,l) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-157,926); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-55,760,l), (-8,811,ls), (10,831,o), (22,853,o), (24,869,cs), (29,904,o), (3,926,o), (-42,926,cs), (-116,926,l), (-121,891,l), (-47,891,ls), (-27,891,o), (-17,881,o), (-20,865,cs), (-21,855,o), (-29,841,o), (-41,829,cs), (-105,760,l) ); }, { closed = 1; nodes = ( (-339,645,l), (-223,754,l), (-139,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_tildecomb; layers = ( { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-191,970); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-77,826,o), (-27,872,o), (-15,941,cs), (-11,964,l), (-96,964,l), (-100,939,ls), (-103,922,o), (-117,911,o), (-135,911,cs), (-175,911,o), (-175,970,o), (-260,970,cs), (-326,970,o), (-378,924,o), (-389,855,cs), (-393,830,l), (-308,830,l), (-304,852,ls), (-300,872,o), (-287,885,o), (-269,885,cs), (-229,885,o), (-228,826,o), (-143,826,cs) ); }, { closed = 1; nodes = ( (-309,645,l), (-231,715,l), (-170,645,l), (-37,645,l), (-150,785,l), (-290,785,l), (-447,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-197,928); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-93,812,o), (-49,847,o), (-41,900,cs), (-38,920,l), (-103,920,l), (-107,895,ls), (-110,876,o), (-122,865,o), (-142,865,cs), (-187,865,o), (-178,928,o), (-263,928,cs), (-319,928,o), (-363,893,o), (-371,840,cs), (-374,820,l), (-309,820,l), (-305,845,ls), (-302,865,o), (-289,875,o), (-270,875,cs), (-225,875,o), (-233,812,o), (-149,812,cs) ); }, { closed = 1; nodes = ( (-320,645,l), (-227,723,l), (-158,645,l), (-61,645,l), (-179,785,l), (-262,785,l), (-423,645,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-256,550); }, { name = top; pos = (-198,925); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-96,815,o), (-65,843,o), (-57,895,cs), (-53,920,l), (-93,920,l), (-97,895,ls), (-101,869,o), (-116,855,o), (-139,855,cs), (-192,855,o), (-190,925,o), (-262,925,cs), (-314,925,o), (-347,897,o), (-355,845,cs), (-359,820,l), (-319,820,l), (-315,845,ls), (-311,872,o), (-296,885,o), (-269,885,cs), (-215,885,o), (-216,815,o), (-145,815,cs) ); }, { closed = 1; nodes = ( (-338,645,l), (-222,754,l), (-138,645,l), (-92,645,l), (-190,785,l), (-250,785,l), (-392,645,l) ); } ); width = 0; } ); }, { glyphname = brevecomb_acutecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-148,905,l), (-15,1020,l), (-151,1020,l), (-274,905,l) ); }, { closed = 1; nodes = ( (-185,780,ls), (-84,780,o), (-12,832,o), (1,915,c), (-94,915,l), (-99,881,o), (-129,860,o), (-173,860,cs), (-244,860,ls), (-289,860,o), (-310,881,o), (-305,915,c), (-400,915,l), (-413,832,o), (-357,780,o), (-256,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-171,900,l), (-42,1020,l), (-142,1020,l), (-266,900,l) ); }, { closed = 1; nodes = ( (-196,780,ls), (-110,780,o), (-48,830,o), (-35,910,c), (-105,910,l), (-112,867,o), (-143,840,o), (-187,840,cs), (-236,840,ls), (-279,840,o), (-302,867,o), (-295,910,c), (-365,910,l), (-378,830,o), (-331,780,o), (-245,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-193,895,l), (-63,1020,l), (-125,1020,l), (-245,895,l) ); }, { closed = 1; nodes = ( (-200,780,ls), (-122,780,o), (-63,830,o), (-51,905,c), (-96,905,l), (-104,854,o), (-143,820,o), (-194,820,cs), (-234,820,ls), (-285,820,o), (-314,854,o), (-306,905,c), (-351,905,l), (-363,830,o), (-318,780,o), (-240,780,cs) ); } ); width = 0; } ); }, { glyphname = brevecomb_gravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-185,780,ls), (-84,780,o), (-12,832,o), (1,915,c), (-94,915,l), (-99,881,o), (-129,860,o), (-173,860,cs), (-244,860,ls), (-289,860,o), (-310,881,o), (-305,915,c), (-400,915,l), (-413,832,o), (-357,780,o), (-256,780,cs) ); }, { closed = 1; nodes = ( (-137,905,l), (-203,1020,l), (-317,1020,l), (-241,905,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-182,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-195,780,ls), (-109,780,o), (-47,830,o), (-34,910,c), (-104,910,l), (-111,867,o), (-142,840,o), (-186,840,cs), (-235,840,ls), (-278,840,o), (-301,867,o), (-294,910,c), (-364,910,l), (-377,830,o), (-330,780,o), (-244,780,cs) ); }, { closed = 1; nodes = ( (-139,900,l), (-215,1020,l), (-307,1020,l), (-226,900,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-227,730); }, { name = top; pos = (-182,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-199,780,ls), (-121,780,o), (-62,830,o), (-50,905,c), (-95,905,l), (-103,854,o), (-142,820,o), (-193,820,cs), (-233,820,ls), (-284,820,o), (-313,854,o), (-305,905,c), (-350,905,l), (-362,830,o), (-317,780,o), (-239,780,cs) ); }, { closed = 1; nodes = ( (-157,895,l), (-230,1020,l), (-286,1020,l), (-203,895,l) ); } ); width = 0; } ); }, { glyphname = brevecomb_hookabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-148,890,l), (-138,901,ls), (-125,916,o), (-112,931,o), (-108,954,cs), (-101,995,o), (-127,1020,o), (-182,1020,cs), (-282,1020,l), (-294,949,l), (-228,949,ls), (-219,949,o), (-214,945,o), (-215,938,cs), (-216,932,o), (-220,927,o), (-227,920,cs), (-257,890,l) ); }, { closed = 1; nodes = ( (-185,780,ls), (-84,780,o), (-12,832,o), (1,915,c), (-94,915,l), (-99,881,o), (-129,860,o), (-173,860,cs), (-244,860,ls), (-289,860,o), (-310,881,o), (-305,915,c), (-400,915,l), (-413,832,o), (-357,780,o), (-256,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-174,880,l), (-136,920,ls), (-123,934,o), (-116,955,o), (-113,972,cs), (-108,1003,o), (-126,1020,o), (-160,1020,cs), (-257,1020,l), (-267,960,l), (-196,960,ls), (-190,960,o), (-186,957,o), (-187,952,cs), (-188,948,o), (-193,942,o), (-199,936,cs), (-254,880,l) ); }, { closed = 1; nodes = ( (-196,780,ls), (-110,780,o), (-48,830,o), (-35,910,c), (-105,910,l), (-112,867,o), (-143,840,o), (-187,840,cs), (-236,840,ls), (-279,840,o), (-302,867,o), (-295,910,c), (-365,910,l), (-378,830,o), (-331,780,o), (-245,780,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-183,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-188,880,l), (-152,915,ls), (-134,932,o), (-121,952,o), (-118,971,cs), (-113,1001,o), (-135,1020,o), (-178,1020,cs), (-249,1020,l), (-255,985,l), (-181,985,ls), (-164,985,o), (-156,977,o), (-158,966,cs), (-159,958,o), (-169,947,o), (-183,933,cs), (-238,880,l) ); }, { closed = 1; nodes = ( (-200,780,ls), (-122,780,o), (-63,830,o), (-51,905,c), (-96,905,l), (-104,854,o), (-143,820,o), (-194,820,cs), (-234,820,ls), (-285,820,o), (-314,854,o), (-306,905,c), (-351,905,l), (-363,830,o), (-318,780,o), (-240,780,cs) ); } ); width = 0; } ); }, { glyphname = brevecomb_tildecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-175,780,ls), (-92,780,o), (-34,820,o), (-23,890,c), (-118,890,l), (-121,872,o), (-137,860,o), (-158,860,cs), (-257,860,ls), (-279,860,o), (-291,872,o), (-288,890,c), (-383,890,l), (-394,820,o), (-347,780,o), (-263,780,cs) ); }, { closed = 1; nodes = ( (-59,910,o), (-16,949,o), (-4,1010,cs), (-3,1015,l), (-88,1015,l), (-89,1010,ls), (-92,995,o), (-103,985,o), (-118,985,cs), (-163,985,o), (-192,1020,o), (-262,1020,cs), (-323,1020,o), (-366,980,o), (-378,920,cs), (-379,915,l), (-294,915,l), (-293,920,ls), (-290,935,o), (-279,945,o), (-264,945,cs), (-219,945,o), (-190,910,o), (-120,910,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-196,780,ls), (-110,780,o), (-49,820,o), (-36,900,c), (-106,900,l), (-113,857,o), (-143,840,o), (-187,840,cs), (-236,840,ls), (-279,840,o), (-303,857,o), (-296,900,c), (-366,900,l), (-379,820,o), (-331,780,o), (-245,780,cs) ); }, { closed = 1; nodes = ( (-67,920,o), (-27,952,o), (-20,1003,cs), (-19,1010,l), (-84,1010,l), (-85,1003,ls), (-88,985,o), (-102,973,o), (-120,973,cs), (-170,973,o), (-177,1020,o), (-257,1020,cs), (-312,1020,o), (-354,988,o), (-361,937,cs), (-362,930,l), (-297,930,l), (-296,937,ls), (-293,955,o), (-279,967,o), (-261,967,cs), (-211,967,o), (-200,920,o), (-121,920,cs) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-200,780,ls), (-122,780,o), (-63,828,o), (-51,900,c), (-96,900,l), (-104,852,o), (-143,820,o), (-194,820,cs), (-234,820,ls), (-285,820,o), (-314,852,o), (-306,900,c), (-351,900,l), (-363,828,o), (-318,780,o), (-240,780,cs) ); }, { closed = 1; nodes = ( (-77,920,o), (-42,949,o), (-36,995,cs), (-34,1010,l), (-74,1010,l), (-76,995,ls), (-79,972,o), (-96,958,o), (-117,958,cs), (-172,958,o), (-182,1020,o), (-252,1020,cs), (-301,1020,o), (-335,991,o), (-344,945,cs), (-347,930,l), (-307,930,l), (-304,945,ls), (-299,968,o), (-283,982,o), (-258,982,cs), (-203,982,o), (-193,920,o), (-123,920,cs) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_acutecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-98,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (57,905,l), (191,1020,l), (40,1020,l), (-84,905,l) ); }, { closed = 1; nodes = ( (-284,780,l), (-204,850,l), (-146,780,l), (-15,780,l), (-128,920,l), (-268,920,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-113,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (6,900,l), (135,1020,l), (29,1020,l), (-95,900,l) ); }, { closed = 1; nodes = ( (-298,780,l), (-205,858,l), (-137,780,l), (-39,780,l), (-156,920,l), (-240,920,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-121,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-46,895,l), (89,1020,l), (27,1020,l), (-98,895,l) ); }, { closed = 1; nodes = ( (-317,780,l), (-201,889,l), (-117,780,l), (-70,780,l), (-168,920,l), (-228,920,l), (-370,780,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_gravecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-142,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (85,905,l), (-1,1020,l), (-139,1020,l), (-43,905,l) ); }, { closed = 1; nodes = ( (-284,780,l), (-204,850,l), (-146,780,l), (-15,780,l), (-128,920,l), (-268,920,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-153,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (37,900,l), (-59,1020,l), (-155,1020,l), (-54,900,l) ); }, { closed = 1; nodes = ( (-298,780,l), (-205,858,l), (-137,780,l), (-39,780,l), (-156,920,l), (-240,920,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-160,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-8,895,l), (-97,1020,l), (-155,1020,l), (-56,895,l) ); }, { closed = 1; nodes = ( (-317,780,l), (-201,889,l), (-117,780,l), (-70,780,l), (-168,920,l), (-228,920,l), (-370,780,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_hookabovecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-139,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (42,870,l), (63,886,ls), (79,898,o), (93,921,o), (96,938,cs), (104,991,o), (67,1020,o), (3,1020,cs), (-92,1020,l), (-104,944,l), (-36,944,ls), (-20,944,o), (-12,938,o), (-14,927,cs), (-15,920,o), (-19,914,o), (-31,904,cs), (-70,870,l) ); }, { closed = 1; nodes = ( (-284,780,l), (-204,850,l), (-146,780,l), (-15,780,l), (-128,920,l), (-268,920,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-147,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-5,880,l), (35,915,ls), (47,925,o), (55,940,o), (58,958,cs), (64,995,o), (41,1020,o), (-2,1020,cs), (-87,1020,l), (-97,962,l), (-35,962,ls), (-26,962,o), (-21,955,o), (-22,946,cs), (-23,939,o), (-27,932,o), (-33,927,cs), (-89,880,l) ); }, { closed = 1; nodes = ( (-298,780,l), (-205,858,l), (-137,780,l), (-39,780,l), (-156,920,l), (-240,920,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-138,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-22,880,l), (14,915,ls), (32,932,o), (45,952,o), (48,971,cs), (53,1001,o), (31,1020,o), (-12,1020,cs), (-83,1020,l), (-89,985,l), (-15,985,ls), (2,985,o), (10,977,o), (8,966,cs), (7,958,o), (-3,947,o), (-17,933,cs), (-72,880,l) ); }, { closed = 1; nodes = ( (-317,780,l), (-201,889,l), (-117,780,l), (-70,780,l), (-168,920,l), (-228,920,l), (-370,780,l) ); } ); width = 0; } ); }, { glyphname = circumflexcomb_tildecomb.case; layers = ( { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (-59,910,o), (-16,949,o), (-4,1010,cs), (-3,1015,l), (-88,1015,l), (-89,1010,ls), (-92,995,o), (-103,985,o), (-118,985,cs), (-163,985,o), (-192,1020,o), (-262,1020,cs), (-323,1020,o), (-366,980,o), (-378,920,cs), (-379,915,l), (-294,915,l), (-293,920,ls), (-290,935,o), (-279,945,o), (-264,945,cs), (-219,945,o), (-190,910,o), (-120,910,cs) ); }, { closed = 1; nodes = ( (-289,780,l), (-209,855,l), (-151,780,l), (-15,780,l), (-94,884,l), (-314,884,l), (-425,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (-67,920,o), (-27,952,o), (-20,1003,cs), (-19,1010,l), (-84,1010,l), (-85,1003,ls), (-88,985,o), (-102,973,o), (-120,973,cs), (-170,973,o), (-177,1020,o), (-257,1020,cs), (-312,1020,o), (-354,988,o), (-361,937,cs), (-362,930,l), (-297,930,l), (-296,937,ls), (-293,955,o), (-279,967,o), (-261,967,cs), (-211,967,o), (-200,920,o), (-121,920,cs) ); }, { closed = 1; nodes = ( (-298,780,l), (-206,853,l), (-138,780,l), (-40,780,l), (-139,890,l), (-267,890,l), (-400,780,l) ); } ); width = 0; }, { anchors = ( { name = _top; pos = (-228,730); }, { name = top; pos = (-182,1020); } ); layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (-77,920,o), (-42,949,o), (-36,995,cs), (-34,1010,l), (-74,1010,l), (-76,995,ls), (-79,972,o), (-96,958,o), (-117,958,cs), (-172,958,o), (-182,1020,o), (-252,1020,cs), (-301,1020,o), (-335,991,o), (-344,945,cs), (-347,930,l), (-307,930,l), (-304,945,ls), (-299,968,o), (-283,982,o), (-258,982,cs), (-203,982,o), (-193,920,o), (-123,920,cs) ); }, { closed = 1; nodes = ( (-317,780,l), (-204,872,l), (-117,780,l), (-70,780,l), (-171,901,l), (-231,901,l), (-370,780,l) ); } ); width = 0; } ); }, { glyphname = uniE0A0; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (210,-270,l), (210,100,ls), (210,138,o), (229,175,o), (263,200,cs), (418,315,ls), (461,347,o), (490,402,o), (490,451,cs), (490,631,l), (600,631,l), (430,801,l), (260,631,l), (370,631,l), (370,461,ls), (370,436,o), (349,403,o), (316,379,cs), (171,271,ls), (122,235,o), (90,170,o), (90,111,cs), (90,-270,l) ); }, { closed = 1; nodes = ( (210,453,l), (210,970,l), (90,970,l), (90,364,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (210,-270,l), (210,100,ls), (210,138,o), (229,175,o), (263,200,cs), (418,315,ls), (461,347,o), (490,402,o), (490,451,cs), (490,631,l), (600,631,l), (430,801,l), (260,631,l), (370,631,l), (370,461,ls), (370,436,o), (349,403,o), (316,379,cs), (171,271,ls), (122,235,o), (90,170,o), (90,111,cs), (90,-270,l) ); }, { closed = 1; nodes = ( (210,453,l), (210,970,l), (90,970,l), (90,364,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (210,-270,l), (210,100,ls), (210,138,o), (229,175,o), (263,200,cs), (418,315,ls), (461,347,o), (490,402,o), (490,451,cs), (490,631,l), (600,631,l), (430,801,l), (260,631,l), (370,631,l), (370,461,ls), (370,436,o), (349,403,o), (316,379,cs), (171,271,ls), (122,235,o), (90,170,o), (90,111,cs), (90,-270,l) ); }, { closed = 1; nodes = ( (210,453,l), (210,970,l), (90,970,l), (90,364,l) ); } ); width = 600; } ); unicode = 57504; }, { glyphname = uniE0A1; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (240,-190,l), (240,85,ls), (240,127,o), (231,189,o), (224,225,c), (234,225,l), (242,194,o), (259,140,o), (275,103,cs), (403,-190,l), (495,-190,l), (495,300,l), (420,300,l), (420,25,ls), (420,-29,o), (436,-115,o), (435,-115,c), (425,-115,l), (418,-84,o), (403,-30,o), (387,7,cs), (258,300,l), (165,300,l), (165,-190,l) ); }, { closed = 1; nodes = ( (406,400,l), (406,475,l), (185,475,l), (185,890,l), (105,890,l), (105,400,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (240,-190,l), (240,85,ls), (240,127,o), (231,189,o), (224,225,c), (234,225,l), (242,194,o), (259,140,o), (275,103,cs), (403,-190,l), (495,-190,l), (495,300,l), (420,300,l), (420,25,ls), (420,-29,o), (436,-115,o), (435,-115,c), (425,-115,l), (418,-84,o), (403,-30,o), (387,7,cs), (258,300,l), (165,300,l), (165,-190,l) ); }, { closed = 1; nodes = ( (406,400,l), (406,475,l), (185,475,l), (185,890,l), (105,890,l), (105,400,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (240,-190,l), (240,85,ls), (240,127,o), (231,189,o), (224,225,c), (234,225,l), (242,194,o), (259,140,o), (275,103,cs), (403,-190,l), (495,-190,l), (495,300,l), (420,300,l), (420,25,ls), (420,-29,o), (436,-115,o), (435,-115,c), (425,-115,l), (418,-84,o), (403,-30,o), (387,7,cs), (258,300,l), (165,300,l), (165,-190,l) ); }, { closed = 1; nodes = ( (406,400,l), (406,475,l), (185,475,l), (185,890,l), (105,890,l), (105,400,l) ); } ); width = 600; } ); unicode = 57505; }, { glyphname = uniE0A2; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (490,-80,ls), (523,-80,o), (550,-53,o), (550,-20,cs), (550,414,ls), (550,447,o), (523,474,o), (490,474,cs), (480,474,l), (480,705,ls), (480,804,o), (405,875,o), (300,875,cs), (198,875,o), (120,807,o), (120,705,cs), (120,474,l), (110,474,ls), (77,474,o), (50,447,o), (50,414,cs), (50,-20,ls), (50,-53,o), (77,-80,o), (110,-80,cs) ); }, { closed = 1; nodes = ( (255,210,l), (231,219,o), (200,246,o), (200,291,cs), (200,344,o), (240,380,o), (300,380,cs), (360,380,o), (400,344,o), (400,291,cs), (400,246,o), (368,219,o), (344,210,c), (345,50,l), (255,50,l) ); }, { closed = 1; nodes = ( (200,705,ls), (200,765,o), (240,805,o), (300,805,cs), (360,805,o), (400,765,o), (400,705,cs), (400,475,l), (200,475,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (490,-80,ls), (523,-80,o), (550,-53,o), (550,-20,cs), (550,414,ls), (550,447,o), (523,474,o), (490,474,cs), (480,474,l), (480,705,ls), (480,804,o), (405,875,o), (300,875,cs), (198,875,o), (120,807,o), (120,705,cs), (120,474,l), (110,474,ls), (77,474,o), (50,447,o), (50,414,cs), (50,-20,ls), (50,-53,o), (77,-80,o), (110,-80,cs) ); }, { closed = 1; nodes = ( (255,210,l), (231,219,o), (200,246,o), (200,291,cs), (200,344,o), (240,380,o), (300,380,cs), (360,380,o), (400,344,o), (400,291,cs), (400,246,o), (368,219,o), (344,210,c), (344,50,l), (255,50,l) ); }, { closed = 1; nodes = ( (200,705,ls), (200,765,o), (240,805,o), (300,805,cs), (360,805,o), (400,765,o), (400,705,cs), (400,475,l), (200,475,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (490,-80,ls), (523,-80,o), (550,-53,o), (550,-20,cs), (550,414,ls), (550,447,o), (523,474,o), (490,474,cs), (480,474,l), (480,705,ls), (480,804,o), (405,875,o), (300,875,cs), (198,875,o), (120,807,o), (120,705,cs), (120,474,l), (110,474,ls), (77,474,o), (50,447,o), (50,414,cs), (50,-20,ls), (50,-53,o), (77,-80,o), (110,-80,cs) ); }, { closed = 1; nodes = ( (255,210,l), (231,219,o), (200,246,o), (200,291,cs), (200,344,o), (240,380,o), (300,380,cs), (360,380,o), (400,344,o), (400,291,cs), (400,246,o), (368,219,o), (344,210,c), (344,50,l), (255,50,l) ); }, { closed = 1; nodes = ( (200,705,ls), (200,765,o), (240,805,o), (300,805,cs), (360,805,o), (400,765,o), (400,705,cs), (400,475,l), (200,475,l) ); } ); width = 600; } ); unicode = 57506; }, { glyphname = uniE0B0; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,360,l), (10,1020,l), (-40,1020,l), (-40,-300,l), (10,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,360,l), (10,1020,l), (-40,1020,l), (-40,-300,l), (10,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,360,l), (10,1020,l), (-40,1020,l), (-40,-300,l), (10,-300,l) ); } ); width = 600; } ); unicode = 57520; }, { glyphname = uniE0B1; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (118,-300,l), (600,360,l), (118,1020,l), (6,1020,l), (482,358,l), (0,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (118,-300,l), (600,360,l), (118,1020,l), (6,1020,l), (482,358,l), (0,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (118,-300,l), (600,360,l), (118,1020,l), (6,1020,l), (482,358,l), (0,-300,l) ); } ); width = 600; } ); unicode = 57521; }, { glyphname = uniE0B2; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (640,-300,l), (640,1020,l), (590,1020,l), (0,360,l), (590,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (640,-300,l), (640,1020,l), (590,1020,l), (0,360,l), (590,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (640,-300,l), (640,1020,l), (590,1020,l), (0,360,l), (590,-300,l) ); } ); width = 600; } ); unicode = 57522; }, { glyphname = uniE0B3; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (118,358,l), (594,1020,l), (482,1020,l), (0,360,l), (482,-300,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (118,358,l), (594,1020,l), (482,1020,l), (0,360,l), (482,-300,l) ); } ); width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (600,-300,l), (118,358,l), (594,1020,l), (482,1020,l), (0,360,l), (482,-300,l) ); } ); width = 600; } ); unicode = 57523; }, { glyphname = NULL; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 0; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 0; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 0; } ); }, { glyphname = SPC; layers = ( { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; width = 600; }, { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; width = 600; } ); }, { export = 0; glyphname = _similiar_tilda; layers = ( { layerId = "EDF5EB54-295C-4C90-9A2F-67CD82979CFF"; shapes = ( { closed = 1; nodes = ( (129,267,l), (132,285,ls), (138,325,o), (167,350,o), (207,350,cs), (280,350,o), (318,267,o), (404,267,cs), (466,267,o), (521,311,o), (532,377,cs), (534,392,l), (489,392,l), (486,374,ls), (480,334,o), (451,309,o), (411,309,cs), (338,309,o), (305,392,o), (214,392,cs), (148,392,o), (97,348,o), (87,282,cs), (84,267,l) ); } ); width = 600; }, { layerId = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; shapes = ( { closed = 1; nodes = ( (147,258,l), (152,288,ls), (156,316,o), (177,333,o), (206,333,cs), (268,333,o), (300,253,o), (401,253,cs), (481,253,o), (539,305,o), (552,388,cs), (555,403,l), (470,403,l), (465,373,ls), (461,345,o), (440,328,o), (411,328,cs), (348,328,o), (316,408,o), (216,408,cs), (136,408,o), (77,356,o), (64,273,cs), (62,258,l) ); } ); width = 600; }, { layerId = "9ADF6715-3D0F-493D-8567-18A6FBCFC567"; shapes = ( { closed = 1; nodes = ( (155,248,l), (160,278,ls), (164,303,o), (181,318,o), (206,318,cs), (266,318,o), (282,228,o), (397,228,cs), (492,228,o), (562,288,o), (577,383,cs), (581,413,l), (461,413,l), (457,383,ls), (453,358,o), (435,343,o), (410,343,cs), (350,343,o), (335,433,o), (220,433,cs), (125,433,o), (55,373,o), (40,278,cs), (35,248,l) ); } ); width = 600; } ); } ); instances = ( { axesValues = ( 100 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = 1; }; isItalic = 1; linkStyle = Thin; name = "Thin Italic"; weightClass = 100; }, { axesValues = ( 220 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.4; "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = 0.6; }; isItalic = 1; linkStyle = ExtraLight; name = "ExtraLight Italic"; weightClass = 200; }, { axesValues = ( 320 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.73333; "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = 0.26667; }; isItalic = 1; linkStyle = Light; name = "Light Italic"; weightClass = 300; }, { axesValues = ( 400 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 1; }; isItalic = 1; name = Italic; }, { axesValues = ( 460 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 0.15; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.85; }; isItalic = 1; linkStyle = Medium; name = "Medium Italic"; weightClass = 500; }, { axesValues = ( 520 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--Increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 0.3; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.7; }; isItalic = 1; linkStyle = SemiBold; name = "SemiBold Italic"; weightClass = 600; }, { axesValues = ( 634 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 0.585; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = 0.415; }; isBold = 1; isItalic = 1; name = "Bold Italic"; weightClass = 700; }, { axesValues = ( 800 ); customParameters = ( { name = panose; value = ( 2, 0, 0, 9, 0, 0, 0, 0, 0, 0 ); }, { name = "TTFAutohint options"; value = "--increase-x-height=0"; } ); instanceInterpolations = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = 1; }; isItalic = 1; linkStyle = ExtraBold; name = "ExtraBold Italic"; weightClass = 800; }, { customParameters = ( { name = "Variable Font Origin"; value = "CCC0BD40-BA8C-414E-B576-CF0B94E6C996"; } ); name = Regular; type = variable; } ); metrics = ( { type = ascender; }, { type = "cap height"; }, { type = "x-height"; }, { type = baseline; }, { type = descender; }, { type = "italic angle"; } ); properties = ( { key = copyrights; values = ( { language = dflt; value = "Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)"; } ); }, { key = designers; values = ( { language = dflt; value = "Philipp Nurullin, Konstantin Bulenkov"; } ); }, { key = designerURL; value = "https://www.jetbrains.com"; }, { key = licenses; values = ( { language = dflt; value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL"; } ); }, { key = licenseURL; value = "https://scripts.sil.org/OFL"; }, { key = manufacturers; values = ( { language = dflt; value = JetBrains; } ); }, { key = manufacturerURL; value = "https://www.jetbrains.com"; }, { key = trademarks; values = ( { language = dflt; value = "JetBrains Mono is a trademark of JetBrains s.r.o."; } ); }, { key = vendorID; value = JB; } ); stems = ( { horizontal = 1; name = hStem0; }, { name = vStem0; }, { horizontal = 1; name = hStem1; }, { name = vStem1; } ); unitsPerEm = 1000; userData = { GSDimensionPlugin.Dimensions = { "9ADF6715-3D0F-493D-8567-18A6FBCFC567" = { HH = 140; HV = 150; OH = 130; OV = 150; nV = 150; oH = 130; oV = 150; tH = 135; }; "CCC0BD40-BA8C-414E-B576-CF0B94E6C996" = { HH = 82; HV = 92; OH = 80; OV = 90; nV = 90; oH = 80; oV = 90; tH = 82; }; "EDF5EB54-295C-4C90-9A2F-67CD82979CFF" = { HH = 45; HV = 50; OH = 44; OV = 50; nV = 50; oH = 44; oV = 50; tH = 45; }; }; }; versionMajor = 2; versionMinor = 240; } glyphspkg-0.2.1/tests/package_to_single_test.py000066400000000000000000000022301472355150100217330ustar00rootroot00000000000000import unittest from pathlib import Path import pytest from glyphspkg.package_to_single import package_to_single from glyphspkg.paths import rmdir def get_mono_path(): return Path(__file__).parent / "data" / "JetBrainsMono-Italic.glyphspackage" def get_tmp_path(): return Path(__file__).parent / "data" / "tmp" class PackageToSingleText(unittest.TestCase): def test_same_dir(self): package_to_single(get_mono_path()) out_file = get_mono_path().with_suffix(".glyphs") assert out_file.is_file() # TODO: Check against original file? out_file.unlink() def test_with_output_dir(self): out_dir = get_tmp_path() out_dir.mkdir(exist_ok=True) package_to_single(get_mono_path(), out_dir) out_file = out_dir / "JetBrainsMono-Italic.glyphs" assert out_file.is_file() def test_with_output_file(self): out_dir = get_tmp_path() out_dir.mkdir(exist_ok=True) out_file = out_dir / "custom.glyphs" package_to_single(get_mono_path(), out_file) assert out_file.is_file() @classmethod def tearDownClass(cls): rmdir(get_tmp_path())