[
  {
    "path": ".github/workflows/build.yaml",
    "content": "name: Build font and specimen\n\non: [push, release]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v2\n    - name: Set up Python 3.8\n      uses: actions/setup-python@v2\n      with:\n        python-version: 3.8\n    - name: Install sys tools/deps\n      run: |\n        sudo apt-get update\n        sudo apt-get install ttfautohint\n        sudo snap install yq\n    - uses: actions/cache@v2\n      with:\n        path: ./venv/\n        key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }}\n        restore-keys: |\n          ${{ runner.os }}-venv-\n    - name: Do first-run script if necessary\n      run: make .init.stamp\n      if: github.repository != 'googlefonts/googlefonts-project-template'\n    - uses: stefanzweifel/git-auto-commit-action@v4\n      name: First-run setup\n      if: github.repository != 'googlefonts/googlefonts-project-template'\n      with:\n        file_pattern: .init.stamp README.md requirements.txt OFL.txt\n        commit_message: \"Personalize for this repo\"\n    - name: gen zip file name\n      id: zip-name\n      shell: bash\n      # Set the archive name to repo name + \"-assets\" e.g \"MavenPro-assets\"\n      run: echo \"ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-fonts\" >> $GITHUB_ENV\n      # If a new release is cut, use the release tag to auto-bump the source files\n    - name: Bump release\n      if: github.event_name == 'release'\n      run: |\n        . venv/bin/activate\n        SRCS=$(yq e \".sources[]\" sources/config.yaml)\n        TAG_NAME=${GITHUB_REF/refs\\/tags\\//}\n        echo \"Bumping $SRCS to $TAG_NAME\"\n        for src in $SRCS\n        do\n          bumpfontversion sources/$src --new-version $TAG_NAME;\n        done\n    - name: Build font\n      run: make build\n    - name: Check with fontbakery\n      run: make test\n      continue-on-error: true\n    - name: proof\n      run: make proof\n    - name: setup site\n      run: cp scripts/index.html out/index.html\n    - name: Deploy\n      uses: peaceiris/actions-gh-pages@v3\n      if: ${{ github.ref == 'refs/heads/main' }}\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        publish_dir: ./out\n    - name: Archive artifacts\n      uses: actions/upload-artifact@v2\n      with:\n        name: ${{ env.ZIP_NAME }}\n        path: |\n          fonts\n          out\n    outputs:\n      zip_name: ${{ env.ZIP_NAME }}\n  release:\n    # only run if the commit is tagged...\n    if: github.event_name == 'release'\n    # ... and it builds successfully\n    needs:\n      - build\n    runs-on: ubuntu-latest\n    env:\n      ZIP_NAME: ${{ needs.build.outputs.zip_name }}\n    steps:\n      - uses: actions/checkout@v2\n      - name: Download artefact files\n        uses: actions/download-artifact@v2\n        with:\n          name: ${{ env.ZIP_NAME }}\n          path: ${{ env.ZIP_NAME }}\n      - name: Zip files\n        run: zip -r ${{ env.ZIP_NAME }}.zip ${{ env.ZIP_NAME }}\n      - name: Upload binaries to release\n        uses: svenstaro/upload-release-action@v2\n        with:\n          repo_token: ${{ secrets.GITHUB_TOKEN }}\n          file: ${{ env.ZIP_NAME }}.zip\n          asset_name: ${{ env.ZIP_NAME }}.zip\n          tag: ${{ github.ref }}\n          overwrite: true\n          body: \"Production ready fonts\"\n"
  },
  {
    "path": ".gitignore",
    "content": "*~\nvenv\nbuild.stamp\nproof\nnode_modules\npackage-lock.json\npackage.json\n\n# OS generated files #\n######################\n.DS_Store\n.DS_Store?\n._*\n.Spotlight-V100\n.Trashes\nehthumbs.db\nThumbs.db\n"
  },
  {
    "path": ".init.stamp",
    "content": ""
  },
  {
    "path": ".templaterc.json",
    "content": "{\n  \"files\": [\".github/**/*\", \"Makefile\", \"scripts/**/*\", \"requirements.txt\"]\n}\n"
  },
  {
    "path": "AUTHORS.txt",
    "content": "# This is the official list of project authors for copyright purposes.\n# This file is distinct from the CONTRIBUTORS.txt file.\n# See the latter for an explanation.\n#\n# Names should be added to this file as:\n# Name or Organization <email address>\n\nOlivia King <liv@oliviaking.com>"
  },
  {
    "path": "CONTRIBUTORS.txt",
    "content": "# This is the list of people who have contributed to this project,\n# and includes those not listed in AUTHORS.txt because they are not\n# copyright authors. For example, company employees may be listed\n# here because their company holds the copyright and is listed there.\n#\n# When adding J Random Contributor's name to this file, either J's\n# name or J's organization's name should be added to AUTHORS.txt\n#\n# Names should be added to this file as:\n# Name <email address>\n\nEmma Marichal <bonjour@emmamarichal.fr>"
  },
  {
    "path": "Makefile",
    "content": "SOURCES=$(shell python3 scripts/read-config.py --sources )\nFAMILY=$(shell python3 scripts/read-config.py --family )\nDRAWBOT_SCRIPTS=$(shell ls documentation/*.py)\nDRAWBOT_OUTPUT=$(shell ls documentation/*.py | sed 's/\\.py/.png/g')\n\nhelp:\n\t@echo \"###\"\n\t@echo \"# Build targets for $(FAMILY)\"\n\t@echo \"###\"\n\t@echo\n\t@echo \"  make build:  Builds the fonts and places them in the fonts/ directory\"\n\t@echo \"  make test:   Tests the fonts with fontbakery\"\n\t@echo \"  make proof:  Creates HTML proof documents in the proof/ directory\"\n\t@echo \"  make images: Creates PNG specimen images in the documentation/ directory\"\n\t@echo\n\nbuild: build.stamp\n\nvenv: venv/touchfile\n\nbuild.stamp: venv .init.stamp sources/config.yaml $(SOURCES)\n\t. venv/bin/activate; rm -rf fonts/; gftools builder sources/config.yaml && touch build.stamp\n\n.init.stamp: venv\n\t. venv/bin/activate; python3 scripts/first-run.py\n\nvenv/touchfile: requirements.txt\n\ttest -d venv || python3 -m venv venv\n\t. venv/bin/activate; pip install -Ur requirements.txt\n\ttouch venv/touchfile\n\ntest: venv build.stamp\n\t. venv/bin/activate; mkdir -p out/ out/fontbakery; fontbakery check-googlefonts -l WARN --full-lists --succinct --badges out/badges --html out/fontbakery/fontbakery-report.html --ghmarkdown out/fontbakery/fontbakery-report.md $(shell find fonts/ttf -type f)  || echo '::warning file=sources/config.yaml,title=Fontbakery failures::The fontbakery QA check reported errors in your font. Please check the generated report.'\n\nproof: venv build.stamp\n\t. venv/bin/activate; mkdir -p out/ out/proof; gftools gen-html proof $(shell find fonts/ttf -type f) -o out/proof\n\nimages: venv build.stamp $(DRAWBOT_OUTPUT)\n\tgit add documentation/*.png && git commit -m \"Rebuild images\" documentation/*.png\n\n%.png: %.py build.stamp\n\tpython3 $< --output $@\n\nclean:\n\trm -rf venv\n\tfind . -name \"*.pyc\" | xargs rm delete\n\nupdate-project-template:\n\tnpx update-template https://github.com/googlefonts/googlefonts-project-template/\n\nupdate:\n\tpip install --upgrade $(dependency); pip freeze > requirements.txt\n"
  },
  {
    "path": "OFL.txt",
    "content": "Copyright 2022 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://scripts.sil.org/OFL\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "\n# Inclusive Sans\n\nInclusive Sans is a text font designed for accessibility and readability. It is inspired by the friendly personality of contemporary neo-grotesques while incorporating key features to make it highly legible in all uses. \n\n\n![Sample Image](documentation/InclusiveSans.jpg)\n![Sample Image](documentation/InclusiveSans2.jpg)\n![Sample Image](documentation/InclusiveSans3.jpg)\n![Sample Image](documentation/InclusiveSans4.jpg)\n![Sample Image](documentation/InclusiveSans5.jpg)\n![Sample Image](documentation/InclusiveSans6.jpg)\n![Sample Image](documentation/InclusiveSans7.jpg)\n\n\n\n## Background\n\nThe conversation and guidelines around accessibility in typography has largely centred on type sizes and colour contrasts [^1]. However research [^2] has shown that accessibility in type is crucial at a character level, where key features can enhance the readability of text for those who are hard of seeing or are neurodiverse. \n\nAfter reading Sophie Beier's book Reading Letters: Designing for Legibility [^3], working with clients across in disability non-for-profits and large government organisations, as well as conversations with fellow designer Johanna Roca, Olivia King was inspired to create a typeface that was truly legible at a character level. While some typefaces had been created in the same spirit [^4], she wanted to create a font that was more contemporary and usable as a text typeface for all types of use. \n\nTo meet the criteria as outlined in Beier's work as well as Gareth Ford William's Guide [^5], Inclusive Sans incorporates the following key features:\n\n1. Clear distinction between I, l and 1\n2. Non-mirroring of letters d, b, q and p\n3. Distinction between O and 0\n4. Wider, more open counter forms on c, o, a and e\n5. A higher x-height for easier readability at small sizes\n6. Wider default letter-spacing \n7. Clear difference between capital height and ascender height\n\nIn early 2021 Olivia started work on the regular weight of Inclusive Sans while participating in a 10 week type design course run by Troy Leinster, and by August that year she had completed the majority of the full Latin set. Living and working on Gadigal Country (Sydney, Australia) she felt it was important to include support for Aboriginal and Torres Strait Islander languages. She added an additional 48 glyphs with the help of Vincent Chan (in consultation with Sasha Wilmouth from the University of Melbourne).\n\nAdditional weights and styles are currently in development.\n\n\n[^1]: See WCAG 2 section 1.4 on Distinguishable https://www.w3.org/WAI/WCAG21/quickref/#distinguishable\n[^2]: See Sophie Beier's 2009 thesis on typeface legibility\n[^3]: http://sofiebeier.dk/?page_id=390\n[^4]: https://www.myfonts.com/collections/fs-me-font-fontsmith\n[^5]: https://medium.com/the-readability-group/a-guide-to-understanding-what-makes-a-typeface-accessible-and-how-to-make-informed-decisions-9e5c0b9040a0\n\n\n\n## Building\n\nFonts are built automatically by GitHub Actions - take a look in the \"Actions\" tab for the latest build.\n\nIf you want to build fonts manually on your own computer:\n\n* `make build` will produce font files.\n* `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests.\n* `make proof` will generate HTML proof files.\n\nThe proof files and QA tests are also available automatically via GitHub Actions - look at https://LivKing.github.io/Inclusive-Sans.\n\n## Changelog\n\nWhen you update your font (new version or new release), please report all notable changes here, with a date.\n[Font Versioning](https://github.com/googlefonts/gf-docs/tree/main/Spec#font-versioning) is based on semver. \nChangelog example:\n\n**26 May 2021. Version 2.13**\n- MAJOR Font turned to a variable font.\n- SIGNIFICANT New Stylistic sets added.\n\n## License\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is available with a FAQ at\nhttps://scripts.sil.org/OFL\n\n## Repository Layout\n\nThis font repository structure is inspired by [Unified Font Repository v0.3](https://github.com/unified-font-repository/Unified-Font-Repository), modified for the Google Fonts workflow.\n"
  },
  {
    "path": "fonts/variable/.ninja_log",
    "content": "# ninja log v5\n0\t1853\t1736348997572032296\tout/Diffbrowsers\t14e52ca88f40a7ab\n0\t1654\t1736348999248472446\tout/Diffbrowsers\t8994a002886e94ae\n"
  },
  {
    "path": "requirements.txt",
    "content": "absl-py==1.3.0\nappdirs==1.4.4\nattrs==22.2.0\naxisregistry==0.3.10\nbabelfont==3.0.0\nbeautifulsoup4==4.11.1\nbeziers==0.5.0\nblackrenderer==0.6.0\nbooleanOperations==0.9.0\nBrotli==1.0.9\nbrowserstack-local==1.2.2\nbump2version==1.0.1\nbumpfontversion==0.4.1\ncattrs==22.2.0\ncertifi==2022.12.7\ncffi==1.15.1\ncffsubr==0.2.9.post1\ncharset-normalizer==2.1.1\nclick==8.1.3\ncmarkgfm==2022.10.27\ncollidoscope==0.5.2\ncolorlog==6.7.0\ncommandlines==0.4.1\ncommonmark==0.9.1\ncompreffor==0.5.3\ncu2qu==1.6.7.post2\ndefcon==0.10.2\ndehinter==4.0.0\nDeprecated==1.2.13\ndrawbot-skia==0.5.0\nexceptiongroup==1.0.4\nfont-v==2.1.0\nfontbakery==0.8.10\nfontdiffenator==0.9.13\nfontFeatures==1.7.4\nfontmake==3.5.1\nfontMath==0.9.3\nfonttools==4.38.0\nfreetype-py==2.3.0\nfs==2.4.16\ngfdiffbrowsers==0.1.7\ngflanguages==0.4.3\ngftools==0.9.21\ngitdb==4.0.10\nGitPython==3.1.29\nglyphsets==0.5.4\nglyphsLib==6.1.0\nglyphtools==0.8.0\nhyperglot==0.4.4\nidna==3.4\nimportlib-resources==5.10.1\nJinja2==3.1.2\nkurbopy==0.8.32\nlxml==4.9.2\nMarkupSafe==2.1.1\nnanoemoji==0.15.1\nninja==1.11.1\nnumpy==1.24.0\nopenstep-plist==0.3.0.post1\nopentype-sanitizer==9.0.0\nopentypespec==1.9.1\norjson==3.8.3\npackaging==22.0\npicosvg==0.20.6\nPillow==9.3.0\npip-api==0.0.30\npngquant-cli==2.17.0.post5\nprotobuf==3.20.3\npsutil==5.9.4\npybind11==2.10.2\npybrowserstack-screenshots==0.1\npycairo==1.23.0\npyclipper==1.3.0.post4\npycparser==2.21\npygit2==1.11.1\nPyGithub==1.57\nPygments==2.13.0\nPyJWT==2.6.0\nPyNaCl==1.5.0\npyparsing==3.0.9\npython-bidi==0.4.2\npython-dateutil==2.8.2\nPyYAML==6.0\nregex==2022.10.31\nrequests==2.28.1\nresvg-cli==0.22.0.post3\nrich==12.6.0\nrstr==3.2.0\nsh==1.14.3\nsimplejson==3.18.0\nsix==1.16.0\nskia-pathops==0.7.4\nskia-python==87.5\nsmmap==5.0.0\nsoupsieve==2.3.2.post1\nsre-yield==1.2\nstatmake==0.6.0\nstrictyaml==1.6.2\nstringbrewer==0.0.1\ntabulate==0.9.0\ntoml==0.10.2\nttfautohint-py==0.5.1\ntyping_extensions==4.4.0\nufo2ft==2.30.0\nufoLib2==0.14.0\nufolint==1.2.0\nuharfbuzz==0.33.0\nunicodedata2==15.0.0\nUnidecode==1.3.6\nurllib3==1.26.13\nvharfbuzz==0.1.4\nvttLib==0.11.0\nwrapt==1.14.1\nzipp==3.11.0\nzopfli==0.2.2\n"
  },
  {
    "path": "scripts/first-run.py",
    "content": "#!/usr/bin/env python3\n\n# This script is run the first time any action is performed after the repository\n# is cloned. If you are reading this because the automatic initialization failed,\n# skip down to the section headed \"INITIALIZATION STEPS\".\n\nfrom sh import git\nimport datetime\nimport re\nimport sys\nfrom urllib.parse import quote\nimport subprocess\n\nBASE_OWNER = \"googlefonts\"\nBASE_REPONAME = \"googlefonts-project-template\"\nDUMMY_URL = \"https://yourname.github.io/your-font-repository-name\"\n\n\ndef repo_url(owner, name):\n    return f\"https://github.com/{owner}/{name}\"\n\n\ndef web_url(owner, name):\n    return f\"https://{owner}.github.io/{name}\"\n\n\ndef raw_url(owner, name):\n    return f\"https://raw.githubusercontent.com/{owner}/{name}\"\n\n\ndef touch():\n    open(\".init.stamp\", \"w\").close()\n\n\ndef lose(msg, e=None):\n    print(msg)\n    print(\"You will need to do the initialization steps manually.\")\n    print(\"Read scripts/first-run.py for more instructions how to do this.\")\n    if e:\n        print(\n            \"\\nHere's an additional error message which may help diagnose the problem.\"\n        )\n        raise e\n    sys.exit(1)\n\n\ntry:\n    my_repo_url = git.remote(\"get-url\", \"origin\")\nexcept Exception as e:\n    lose(\"Could not use git to find my own repository URL\", e)\n\nm = re.match(r\"(?:https://github.com/|git@github.com:)(.*)/(.*)/?\", str(my_repo_url))\nif not m:\n    lose(\n        f\"My git repository URL ({my_repo_url}) didn't look what I expected - are you hosting this on github?\"\n    )\n\nowner, reponame = m[1], m[2]\n\nif owner == BASE_OWNER and reponame == BASE_REPONAME:\n    print(\"I am being run on the upstream repository (probably due to CI)\")\n    print(\"All I'm going to do is create the touch file and quit.\")\n    touch()\n    sys.exit()\n\n# INITIALIZATION STEPS\n\n# First, the README file contains URLs to pages in the `gh-pages` branch of the\n# repo. When initially cloned, these URLs will point to the\n# googlefonts/Unified-Font-Repository itself. But downstream users want links\n# and badges about their own font, not ours! So any URLs need to be adjusted to\n# refer to the end user's repository.\n\n# We will also pin the dependencies so future builds are reproducible.\n\nreadme = open(\"README.md\").read()\n\nprint(\n    \"Fixing URLs:\", web_url(BASE_OWNER, BASE_REPONAME), \"->\", web_url(owner, reponame)\n)\n\nreadme = readme.replace(web_url(BASE_OWNER, BASE_REPONAME), web_url(owner, reponame))\n# In the badges, the URLs to raw.githubusercontent.com are URL-encoded as they\n# are passed to shields.io.\nprint(\n    \"Fixing URLs:\",\n    quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=\"\"),\n    \"->\",\n    quote(raw_url(owner, reponame), safe=\"\"),\n)\nreadme = readme.replace(\n    quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=\"\"),\n    quote(raw_url(owner, reponame), safe=\"\"),\n)\n\nprint(\n    \"Fixing URLs:\",\n    DUMMY_URL,\n    \"->\",\n    web_url(owner, reponame),\n)\nreadme = readme.replace(\n    f\"`{DUMMY_URL}`\",\n    web_url(owner, reponame),\n)\n\nwith open(\"README.md\", \"w\") as fh:\n    fh.write(readme)\n\n# Fix the OFL\n\nofl = open(\"OFL.txt\").read()\nofl = ofl.replace(web_url(BASE_OWNER, BASE_REPONAME), web_url(owner, reponame))\nofl = ofl.replace(\"My Font\", reponame.title())\nofl = ofl.replace(\"20**\", str(datetime.date.today().year))\nwith open(\"OFL.txt\", \"w\") as fh:\n    fh.write(ofl)\n\n# Pin the dependencies\nprint(\"Pinning dependencies\")\ndependencies = subprocess.check_output([\"pip\", \"freeze\"])\nwith open(\"requirements.txt\", \"wb\") as dependency_file:\n    dependency_file.write(dependencies)\n\n# Finally, we add a \"touch file\" called \".init.stamp\" to the repository which\n# prevents this first-run process from being run again.\ntouch()\n"
  },
  {
    "path": "scripts/index.html",
    "content": "<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n\t\t<title>My Font development</title>\n\t</head>\n\t<body>\n\t\t<h1>My Font testing pages</h1>\n\t\t<ul>\n\t\t\t<li>\n\t\t\t\t<a href=\"fontbakery/fontbakery-report.html\">FontBakery Report</a>\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<a href=\"proof/glyphs.html\">All glyphs</a>\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<a href=\"proof/text.html\">Sample text</a>\n\t\t\t</li>\n\t\t\t<li>\n\t\t\t\t<a href=\"proof/waterfall.html\">Waterfall test</a>\n\t\t\t</li>\n\t\t</ul>\n\t</body>\n</html>\n"
  },
  {
    "path": "scripts/read-config.py",
    "content": "#!/usr/bin/env python3\n# Yes, this is a Bad YAML Parser, but at this stage we are not in the\n# venv and do not know what modules the user has available, so for\n# maximum compatibility, we are just assuming a plain Python distribution.\nimport argparse\nimport re\nimport sys\nimport os\n\nparser = argparse.ArgumentParser()\ngroup = parser.add_mutually_exclusive_group(required=True)\ngroup.add_argument('--sources',action='store_true')\ngroup.add_argument('--family',action='store_true')\nargs = parser.parse_args()\n\nwith open(os.path.join(\"sources\", \"config.yaml\")) as config:\n\tdata = config.read()\n\nif args.family:\n\tm = re.search(r\"(?m)^familyName: (.*)\", data)\n\tif m:\n\t\tprint(m[1])\n\t\tsys.exit(0)\n\telse:\n\t\tprint(\"Could not determine family name from config file!\")\n\t\tsys.exit(1)\n\ntoggle = False\nsources = []\nfor line in data.splitlines():\n\tif re.match(\"^sources:\", line):\n\t\ttoggle = True\n\t\tcontinue\n\tif toggle:\n\t\tm = re.match(r\"^\\s+-\\s*(.*)\", line)\n\t\tif m:\n\t\t\tsources.append(\"sources/\"+m[1])\n\t\telse:\n\t\t\ttoggle = False\nif sources:\n\tprint(\" \".join(sources))\n\tsys.exit(0)\nelse:\n\tprint(\"Could not determine sources from config file!\")\n\tsys.exit(1)\n"
  },
  {
    "path": "sources/CustomFilter_GFLatinCore.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<array>\n\t<dict>\n\t\t<key>list</key>\n\t\t<array>\n\t\t\t<string>zero</string>\n\t\t\t<string>one</string>\n\t\t\t<string>two</string>\n\t\t\t<string>three</string>\n\t\t\t<string>four</string>\n\t\t\t<string>five</string>\n\t\t\t<string>six</string>\n\t\t\t<string>seven</string>\n\t\t\t<string>eight</string>\n\t\t\t<string>nine</string>\n\t\t\t<string>space</string>\n\t\t\t<string>nbspace</string>\n\t\t\t<string>period</string>\n\t\t\t<string>colon</string>\n\t\t\t<string>ellipsis</string>\n\t\t\t<string>exclam</string>\n\t\t\t<string>asterisk</string>\n\t\t\t<string>numbersign</string>\n\t\t\t<string>slash</string>\n\t\t\t<string>backslash</string>\n\t\t\t<string>hyphen</string>\n\t\t\t<string>parenleft</string>\n\t\t\t<string>parenright</string>\n\t\t\t<string>braceleft</string>\n\t\t\t<string>braceright</string>\n\t\t\t<string>bracketleft</string>\n\t\t\t<string>bracketright</string>\n\t\t\t<string>quotedblleft</string>\n\t\t\t<string>quotedblright</string>\n\t\t\t<string>quoteleft</string>\n\t\t\t<string>quoteright</string>\n\t\t\t<string>guillemetleft</string>\n\t\t\t<string>guillemetright</string>\n\t\t\t<string>quotedbl</string>\n\t\t\t<string>quotesingle</string>\n\t\t\t<string>bar</string>\n\t\t\t<string>plus</string>\n\t\t\t<string>multiply</string>\n\t\t\t<string>divide</string>\n\t\t\t<string>equal</string>\n\t\t\t<string>greater</string>\n\t\t\t<string>less</string>\n\t\t\t<string>percent</string>\n\t\t\t<string>dieresiscomb</string>\n\t\t\t<string>gravecomb</string>\n\t\t\t<string>acutecomb</string>\n\t\t\t<string>hungarumlautcomb</string>\n\t\t\t<string>macroncomb</string>\n\t\t\t<string>dotaccent</string>\n\t\t\t<string>A</string>\n\t\t\t<string>Aacute</string>\n\t\t\t<string>Abreve</string>\n\t\t\t<string>Acaron</string>\n\t\t\t<string>Acircumflex</string>\n\t\t\t<string>Adieresis</string>\n\t\t\t<string>Agrave</string>\n\t\t\t<string>Amacron</string>\n\t\t\t<string>Aogonek</string>\n\t\t\t<string>Aring</string>\n\t\t\t<string>Atilde</string>\n\t\t\t<string>AE</string>\n\t\t\t<string>B</string>\n\t\t\t<string>C</string>\n\t\t\t<string>Cacute</string>\n\t\t\t<string>Ccaron</string>\n\t\t\t<string>Ccedilla</string>\n\t\t\t<string>Cdotaccent</string>\n\t\t\t<string>D</string>\n\t\t\t<string>Eth</string>\n\t\t\t<string>Dcaron</string>\n\t\t\t<string>Dcroat</string>\n\t\t\t<string>E</string>\n\t\t\t<string>Eacute</string>\n\t\t\t<string>Ecaron</string>\n\t\t\t<string>Ecircumflex</string>\n\t\t\t<string>Edieresis</string>\n\t\t\t<string>Edotaccent</string>\n\t\t\t<string>Egrave</string>\n\t\t\t<string>Emacron</string>\n\t\t\t<string>Eogonek</string>\n\t\t\t<string>F</string>\n\t\t\t<string>G</string>\n\t\t\t<string>Gbreve</string>\n\t\t\t<string>Gcommaaccent</string>\n\t\t\t<string>Gdotaccent</string>\n\t\t\t<string>H</string>\n\t\t\t<string>Hbar</string>\n\t\t\t<string>I</string>\n\t\t\t<string>IJ</string>\n\t\t\t<string>Iacute</string>\n\t\t\t<string>Icircumflex</string>\n\t\t\t<string>Idieresis</string>\n\t\t\t<string>Idotaccent</string>\n\t\t\t<string>Igrave</string>\n\t\t\t<string>Imacron</string>\n\t\t\t<string>Iogonek</string>\n\t\t\t<string>J</string>\n\t\t\t<string>K</string>\n\t\t\t<string>Kcommaaccent</string>\n\t\t\t<string>L</string>\n\t\t\t<string>Lacute</string>\n\t\t\t<string>Lcaron</string>\n\t\t\t<string>Lcommaaccent</string>\n\t\t\t<string>Lslash</string>\n\t\t\t<string>M</string>\n\t\t\t<string>N</string>\n\t\t\t<string>Nacute</string>\n\t\t\t<string>Ncaron</string>\n\t\t\t<string>Ncommaaccent</string>\n\t\t\t<string>Ntilde</string>\n\t\t\t<string>Eng</string>\n\t\t\t<string>O</string>\n\t\t\t<string>Oacute</string>\n\t\t\t<string>Ocircumflex</string>\n\t\t\t<string>Odieresis</string>\n\t\t\t<string>Ograve</string>\n\t\t\t<string>Ohungarumlaut</string>\n\t\t\t<string>Omacron</string>\n\t\t\t<string>Oslash</string>\n\t\t\t<string>Otilde</string>\n\t\t\t<string>OE</string>\n\t\t\t<string>P</string>\n\t\t\t<string>Thorn</string>\n\t\t\t<string>Q</string>\n\t\t\t<string>R</string>\n\t\t\t<string>Racute</string>\n\t\t\t<string>Rcaron</string>\n\t\t\t<string>Rcommaaccent</string>\n\t\t\t<string>S</string>\n\t\t\t<string>Sacute</string>\n\t\t\t<string>Scaron</string>\n\t\t\t<string>Scedilla</string>\n\t\t\t<string>Scommaaccent</string>\n\t\t\t<string>Germandbls</string>\n\t\t\t<string>T</string>\n\t\t\t<string>Tcaron</string>\n\t\t\t<string>Tcommaaccent</string>\n\t\t\t<string>U</string>\n\t\t\t<string>Uacute</string>\n\t\t\t<string>Ubreve</string>\n\t\t\t<string>Ucircumflex</string>\n\t\t\t<string>Udieresis</string>\n\t\t\t<string>Ugrave</string>\n\t\t\t<string>Uhungarumlaut</string>\n\t\t\t<string>Umacron</string>\n\t\t\t<string>Uogonek</string>\n\t\t\t<string>Uring</string>\n\t\t\t<string>V</string>\n\t\t\t<string>W</string>\n\t\t\t<string>Wacute</string>\n\t\t\t<string>Wcircumflex</string>\n\t\t\t<string>Wdieresis</string>\n\t\t\t<string>Wgrave</string>\n\t\t\t<string>X</string>\n\t\t\t<string>Y</string>\n\t\t\t<string>Yacute</string>\n\t\t\t<string>Ycircumflex</string>\n\t\t\t<string>Ydieresis</string>\n\t\t\t<string>Ygrave</string>\n\t\t\t<string>Z</string>\n\t\t\t<string>Zacute</string>\n\t\t\t<string>Zcaron</string>\n\t\t\t<string>Zdotaccent</string>\n\t\t\t<string>a</string>\n\t\t\t<string>aacute</string>\n\t\t\t<string>abreve</string>\n\t\t\t<string>acaron</string>\n\t\t\t<string>acircumflex</string>\n\t\t\t<string>adieresis</string>\n\t\t\t<string>agrave</string>\n\t\t\t<string>amacron</string>\n\t\t\t<string>aogonek</string>\n\t\t\t<string>aring</string>\n\t\t\t<string>atilde</string>\n\t\t\t<string>ae</string>\n\t\t\t<string>b</string>\n\t\t\t<string>c</string>\n\t\t\t<string>cacute</string>\n\t\t\t<string>ccaron</string>\n\t\t\t<string>ccedilla</string>\n\t\t\t<string>cdotaccent</string>\n\t\t\t<string>d</string>\n\t\t\t<string>eth</string>\n\t\t\t<string>dcaron</string>\n\t\t\t<string>dcroat</string>\n\t\t\t<string>e</string>\n\t\t\t<string>eacute</string>\n\t\t\t<string>ecaron</string>\n\t\t\t<string>ecircumflex</string>\n\t\t\t<string>edieresis</string>\n\t\t\t<string>edotaccent</string>\n\t\t\t<string>egrave</string>\n\t\t\t<string>emacron</string>\n\t\t\t<string>eogonek</string>\n\t\t\t<string>f</string>\n\t\t\t<string>g</string>\n\t\t\t<string>gbreve</string>\n\t\t\t<string>gcommaaccent</string>\n\t\t\t<string>gdotaccent</string>\n\t\t\t<string>h</string>\n\t\t\t<string>hbar</string>\n\t\t\t<string>i</string>\n\t\t\t<string>idotless</string>\n\t\t\t<string>iacute</string>\n\t\t\t<string>icircumflex</string>\n\t\t\t<string>idieresis</string>\n\t\t\t<string>idotaccent</string>\n\t\t\t<string>igrave</string>\n\t\t\t<string>ij</string>\n\t\t\t<string>imacron</string>\n\t\t\t<string>iogonek</string>\n\t\t\t<string>j</string>\n\t\t\t<string>jdotless</string>\n\t\t\t<string>k</string>\n\t\t\t<string>kcommaaccent</string>\n\t\t\t<string>l</string>\n\t\t\t<string>lacute</string>\n\t\t\t<string>lcaron</string>\n\t\t\t<string>lcommaaccent</string>\n\t\t\t<string>lslash</string>\n\t\t\t<string>m</string>\n\t\t\t<string>n</string>\n\t\t\t<string>nacute</string>\n\t\t\t<string>ncaron</string>\n\t\t\t<string>ncommaaccent</string>\n\t\t\t<string>ntilde</string>\n\t\t\t<string>eng</string>\n\t\t\t<string>o</string>\n\t\t\t<string>oacute</string>\n\t\t\t<string>ocircumflex</string>\n\t\t\t<string>odieresis</string>\n\t\t\t<string>ograve</string>\n\t\t\t<string>ohungarumlaut</string>\n\t\t\t<string>omacron</string>\n\t\t\t<string>oslash</string>\n\t\t\t<string>otilde</string>\n\t\t\t<string>oe</string>\n\t\t\t<string>p</string>\n\t\t\t<string>thorn</string>\n\t\t\t<string>q</string>\n\t\t\t<string>r</string>\n\t\t\t<string>racute</string>\n\t\t\t<string>rcaron</string>\n\t\t\t<string>rcommaaccent</string>\n\t\t\t<string>s</string>\n\t\t\t<string>sacute</string>\n\t\t\t<string>scaron</string>\n\t\t\t<string>scedilla</string>\n\t\t\t<string>scommaaccent</string>\n\t\t\t<string>germandbls</string>\n\t\t\t<string>t</string>\n\t\t\t<string>tcaron</string>\n\t\t\t<string>tcommaaccent</string>\n\t\t\t<string>u</string>\n\t\t\t<string>uacute</string>\n\t\t\t<string>ubreve</string>\n\t\t\t<string>ucircumflex</string>\n\t\t\t<string>udieresis</string>\n\t\t\t<string>ugrave</string>\n\t\t\t<string>uhungarumlaut</string>\n\t\t\t<string>umacron</string>\n\t\t\t<string>uogonek</string>\n\t\t\t<string>uring</string>\n\t\t\t<string>v</string>\n\t\t\t<string>w</string>\n\t\t\t<string>wacute</string>\n\t\t\t<string>wcircumflex</string>\n\t\t\t<string>wdieresis</string>\n\t\t\t<string>wgrave</string>\n\t\t\t<string>x</string>\n\t\t\t<string>y</string>\n\t\t\t<string>yacute</string>\n\t\t\t<string>ycircumflex</string>\n\t\t\t<string>ydieresis</string>\n\t\t\t<string>ygrave</string>\n\t\t\t<string>z</string>\n\t\t\t<string>zacute</string>\n\t\t\t<string>zcaron</string>\n\t\t\t<string>zdotaccent</string>\n\t\t\t<string>ordfeminine</string>\n\t\t\t<string>ordmasculine</string>\n\t\t\t<string>.notdef</string>\n\t\t\t<string>comma</string>\n\t\t\t<string>semicolon</string>\n\t\t\t<string>exclamdown</string>\n\t\t\t<string>question</string>\n\t\t\t<string>questiondown</string>\n\t\t\t<string>periodcentered</string>\n\t\t\t<string>bullet</string>\n\t\t\t<string>periodcentered.loclCAT</string>\n\t\t\t<string>periodcentered.loclCAT.case</string>\n\t\t\t<string>endash</string>\n\t\t\t<string>emdash</string>\n\t\t\t<string>underscore</string>\n\t\t\t<string>quotesinglbase</string>\n\t\t\t<string>quotedblbase</string>\n\t\t\t<string>guilsinglleft</string>\n\t\t\t<string>guilsinglright</string>\n\t\t\t<string>at</string>\n\t\t\t<string>ampersand</string>\n\t\t\t<string>paragraph</string>\n\t\t\t<string>section</string>\n\t\t\t<string>copyright</string>\n\t\t\t<string>registered</string>\n\t\t\t<string>trademark</string>\n\t\t\t<string>degree</string>\n\t\t\t<string>cent</string>\n\t\t\t<string>dollar</string>\n\t\t\t<string>euro</string>\n\t\t\t<string>sterling</string>\n\t\t\t<string>yen</string>\n\t\t\t<string>minus</string>\n\t\t\t<string>asciitilde</string>\n\t\t\t<string>asciicircum</string>\n\t\t\t<string>dotaccentcomb</string>\n\t\t\t<string>caroncomb.alt</string>\n\t\t\t<string>circumflexcomb</string>\n\t\t\t<string>caroncomb</string>\n\t\t\t<string>brevecomb</string>\n\t\t\t<string>ringcomb</string>\n\t\t\t<string>tildecomb</string>\n\t\t\t<string>commaturnedabovecomb</string>\n\t\t\t<string>commaaccentcomb</string>\n\t\t\t<string>cedillacomb</string>\n\t\t\t<string>ogonekcomb</string>\n\t\t\t<string>dieresis</string>\n\t\t\t<string>grave</string>\n\t\t\t<string>acute</string>\n\t\t\t<string>hungarumlaut</string>\n\t\t\t<string>circumflex</string>\n\t\t\t<string>caron</string>\n\t\t\t<string>breve</string>\n\t\t\t<string>ring</string>\n\t\t\t<string>tilde</string>\n\t\t\t<string>macron</string>\n\t\t\t<string>cedilla</string>\n\t\t\t<string>ogonek</string>\n\t\t</array>\n\t\t<key>name</key>\n\t\t<string>GF_Latin_Core</string>\n\t</dict>\n</array>\n</plist>\n"
  },
  {
    "path": "sources/InclusiveSans-Italic.glyphs",
    "content": "{\n.appVersion = \"3260\";\n.formatVersion = 3;\nDisplayStrings = (\n\"rř\"\n);\naxes = (\n{\nname = Weight;\ntag = wght;\n}\n);\ncustomParameters = (\n{\ndisabled = 1;\nname = glyphOrder;\nvalue = (\nspace,\nexclam,\nquotesingle,\nquotedbl,\nnumbersign,\ndollar,\npercent,\nampersand,\nparenleft,\nparenright,\nasterisk,\nplus,\ncomma,\nhyphen,\nperiod,\nslash,\nzero,\none,\ntwo,\nthree,\nfour,\nfive,\nsix,\nseven,\neight,\nnine,\ncolon,\nsemicolon,\nless,\nequal,\ngreater,\nquestion,\nat,\nA,\nB,\nC,\nD,\nE,\nF,\nG,\nH,\nI,\nJ,\nK,\nL,\nM,\nN,\nO,\nP,\nQ,\nR,\nS,\nT,\nU,\nV,\nW,\nX,\nY,\nZ,\nbracketleft,\nbackslash,\nbracketright,\nasciicircum,\nunderscore,\ngrave,\na,\nb,\nc,\nd,\ne,\nf,\ng,\nh,\ni,\nj,\nk,\nl,\nm,\nn,\no,\np,\nq,\nr,\ns,\nt,\nu,\nv,\nw,\nx,\ny,\nz,\nbraceleft,\nbar,\nbraceright,\nasciitilde,\nexclamdown,\ncent,\nsterling,\ncurrency,\nyen,\nbrokenbar,\nsection,\ndieresis,\ncopyright,\nordfeminine,\nguillemetleft,\nlogicalnot,\nregistered,\nmacron,\ndegree,\nplusminus,\ntwosuperior,\nthreesuperior,\nacute,\nmu,\nparagraph,\nperiodcentered,\ncedilla,\nonesuperior,\nordmasculine,\nguillemetright,\nonequarter,\nonehalf,\nthreequarters,\nquestiondown,\nAgrave,\nAacute,\nAcircumflex,\nAtilde,\nAdieresis,\nAring,\nAE,\nCcedilla,\nEgrave,\nEacute,\nEcircumflex,\nEdieresis,\nIgrave,\nIacute,\nIcircumflex,\nIdieresis,\nEth,\nNtilde,\nOgrave,\nOacute,\nOcircumflex,\nOtilde,\nOdieresis,\nmultiply,\nOslash,\nUgrave,\nUacute,\nUcircumflex,\nUdieresis,\nYacute,\nThorn,\ngermandbls,\nagrave,\naacute,\nacircumflex,\natilde,\nadieresis,\naring,\nae,\nccedilla,\negrave,\neacute,\necircumflex,\nedieresis,\nigrave,\niacute,\nicircumflex,\nidieresis,\neth,\nntilde,\nograve,\noacute,\nocircumflex,\notilde,\nodieresis,\ndivide,\noslash,\nugrave,\nuacute,\nucircumflex,\nudieresis,\nyacute,\nthorn,\nydieresis,\ndotlessi,\ncircumflex,\ncaron,\nbreve,\ndotaccent,\nring,\nogonek,\ntilde,\nhungarumlaut,\nquoteleft,\nquoteright,\nminus,\ng.ss01,\na.ss01\n);\n},\n{\nname = \"Use Typo Metrics\";\nvalue = 1;\n},\n{\nname = fsType;\nvalue = (\n);\n},\n{\nname = \"Variable Font Origin\";\nvalue = m002;\n}\n);\ndate = \"2024-11-02 04:16:01 +0000\";\nfamilyName = \"Inclusive Sans\";\nfeaturePrefixes = (\n{\nautomatic = 1;\ncode = \"languagesystem DFLT dflt;\n\nlanguagesystem latn dflt;\nlanguagesystem latn AZE;\nlanguagesystem latn CRT;\nlanguagesystem latn KAZ;\nlanguagesystem latn TAT;\nlanguagesystem latn TRK;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn MAH;\nlanguagesystem latn CAT;\nlanguagesystem latn NLD;\n\";\nname = Languagesystems;\n}\n);\nfeatures = (\n{\nautomatic = 1;\ncode = \"feature locl;\nfeature case;\nfeature ss01;\nfeature ordn;\n\";\ntag = aalt;\n},\n{\nautomatic = 1;\ncode = \"lookup ccmp_DFLT_1 {\n\t@CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb];\n\tlookupflag UseMarkFilteringSet @CombiningTopAccents;\n\tsub i' @CombiningTopAccents by idotless;\n\tsub j' @CombiningTopAccents by jdotless;\n} ccmp_DFLT_1;\n\nlookup ccmp_DFLT_2 {\n\tlookupflag 0;\n\tsub brevecomb acutecomb by brevecomb_acutecomb;\n\tsub brevecomb gravecomb by brevecomb_gravecomb;\n\tsub brevecomb hookabovecomb by brevecomb_hookabovecomb;\n\tsub brevecomb tildecomb by brevecomb_tildecomb;\n\tsub circumflexcomb acutecomb by circumflexcomb_acutecomb;\n\tsub circumflexcomb gravecomb by circumflexcomb_gravecomb;\n\tsub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb;\n\tsub circumflexcomb tildecomb by circumflexcomb_tildecomb;\n} ccmp_DFLT_2;\n\";\ntag = ccmp;\n},\n{\nautomatic = 1;\ncode = \"script latn;\nlanguage AZE;\nlookup locl_latn_0 {\n\tsub i by idotaccent;\n} locl_latn_0;\nlanguage CRT;\nlookup locl_latn_0;\nlanguage KAZ;\nlookup locl_latn_0;\nlanguage TAT;\nlookup locl_latn_0;\nlanguage TRK;\nlookup locl_latn_0;\n\nscript latn;\nlanguage ROM;\nlookup locl_latn_1 {\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_1;\nlanguage MOL;\nlookup locl_latn_1;\n\nscript latn;\nlanguage MAH;\nlookup locl_latn_2 {\n\tsub Lcommaaccent by Lcommaaccent.loclMAH;\n\tsub Ncommaaccent by Ncommaaccent.loclMAH;\n\tsub lcommaaccent by lcommaaccent.loclMAH;\n\tsub ncommaaccent by ncommaaccent.loclMAH;\n\tsub commaaccentcomb by commaaccentcomb.loclMAH;\n} locl_latn_2;\n\nscript latn;\nlanguage CAT;\nlookup locl_latn_3 {\n\tsub l periodcentered' l by periodcentered.loclCAT;\n\tsub L periodcentered' L by periodcentered.loclCAT.case;\n} locl_latn_3;\n\nscript latn;\nlanguage NLD;\nlookup locl_latn_4 {\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_4;\n\";\ntag = locl;\n},\n{\nautomatic = 1;\ncode = \"sub periodcentered.loclCAT by periodcentered.loclCAT.case;\n\";\ntag = case;\n},\n{\ncode = \"sub a by a.ss01;\nsub aacute by aacute.ss01;\nsub abreve by abreve.ss01;\nsub abreveacute by abreveacute.ss01;\nsub abrevedotbelow by abrevedotbelow.ss01;\nsub abrevegrave by abrevegrave.ss01;\nsub abrevehookabove by abrevehookabove.ss01;\nsub abrevetilde by abrevetilde.ss01;\nsub acircumflex by acircumflex.ss01;\nsub acircumflexacute by acircumflexacute.ss01;\nsub acircumflexdotbelow by acircumflexdotbelow.ss01;\nsub acircumflexgrave by acircumflexgrave.ss01;\nsub acircumflexhookabove by acircumflexhookabove.ss01;\nsub acircumflextilde by acircumflextilde.ss01;\nsub adieresis by adieresis.ss01;\nsub adotbelow by adotbelow.ss01;\nsub agrave by agrave.ss01;\nsub ahookabove by ahookabove.ss01;\nsub amacron by amacron.ss01;\nsub aogonek by aogonek.ss01;\nsub aring by aring.ss01;\nsub atilde by atilde.ss01;\nsub g by g.ss01;\nsub gbreve by gbreve.ss01;\nsub gcommaaccent by gcommaaccent.ss01;\nsub gdotaccent by gdotaccent.ss01;\nsub gmacron by gmacron.ss01;\n\";\nlabels = (\n{\nlanguage = dflt;\nvalue = ss01;\n}\n);\ntag = ss01;\n},\n{\nautomatic = 1;\ncode = \"sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\nsub N o period by numero;\n\";\ntag = ordn;\n}\n);\nfontMaster = (\n{\naxesValues = (\n300\n);\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1150;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\nguides = (\n{\nangle = 262.9959;\npos = (108,350);\n}\n);\niconName = Light;\nid = m01;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 500;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 512;\n},\n{\npos = -12;\n},\n{\npos = 712;\n},\n{\npos = 7;\n}\n);\nname = \"Light Italic\";\nvisible = 1;\n},\n{\naxesValues = (\n400\n);\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1150;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\nid = m002;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 500;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 512;\n},\n{\npos = -12;\n},\n{\npos = 712;\n},\n{\npos = 7;\n}\n);\nname = Italic;\nvisible = 1;\n},\n{\naxesValues = (\n700\n);\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1150;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\niconName = Bold;\nid = m003;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 508;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 520;\n},\n{\npos = -12;\n},\n{\npos = 712;\n},\n{\npos = 7;\n}\n);\nname = \"Bold Italic\";\n}\n);\nglyphs = (\n{\nglyphname = A;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 08:57:52 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = ogonek;\npos = (516,29);\n},\n{\nname = top;\npos = (349,712);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,0,l),\n(376,700,l),\n(314,700,l),\n(-21,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(444,206,l),\n(450,262,l),\n(129,262,l),\n(123,206,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(539,0,l),\n(376,700,l),\n(318,700,l),\n(475,0,l)\n);\n}\n);\nwidth = 580;\n},\n{\nanchors = (\n{\nname = ogonek;\npos = (525,34);\n},\n{\nname = top;\npos = (355,712);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(73,0,l),\n(394,700,l),\n(308,700,l),\n(-23,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(448,195,l),\n(458,275,l),\n(137,275,l),\n(127,195,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(552,0,l),\n(394,700,l),\n(314,700,l),\n(464,0,l)\n);\n}\n);\nwidth = 591;\n},\n{\nanchors = (\n{\nname = ogonek;\npos = (595,41);\n},\n{\nname = top;\npos = (392,712);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,0,l),\n(455,700,l),\n(305,700,l),\n(-26,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(490,161,l),\n(505,287,l),\n(183,287,l),\n(168,161,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(633,0,l),\n(475,700,l),\n(337,700,l),\n(481,0,l)\n);\n}\n);\nwidth = 669;\n}\n);\nunicode = 65;\n},\n{\nglyphname = Aacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 09:00:47 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (267,200);\nref = acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (276,200);\nref = acutecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (292,204);\nref = acutecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 193;\n},\n{\nglyphname = Abreve;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (172,200);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (180,200);\nref = brevecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (192,204);\nref = brevecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 258;\n},\n{\nglyphname = Abreveacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:16:21 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (149,200);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (154,212);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (218,204);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7854;\n},\n{\nglyphname = Abrevedotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:23:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (209,0);\nref = dotbelowcomb;\n},\n{\npos = (172,200);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (232,0);\nref = dotbelowcomb;\n},\n{\npos = (180,200);\nref = brevecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (230,0);\nref = dotbelowcomb;\n},\n{\npos = (192,204);\nref = brevecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7862;\n},\n{\nglyphname = Abrevegrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:17:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (133,200);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (144,212);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (219,204);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7856;\n},\n{\nglyphname = Abrevehookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (129,200);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (124,212);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (186,204);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7858;\n},\n{\nglyphname = Abrevetilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:17:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (112,200);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (126,200);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (216,204);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7860;\n},\n{\nglyphname = Acircumflex;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (183,200);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (166,200);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (182,204);\nref = circumflexcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 194;\n},\n{\nglyphname = Acircumflexacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (65,200);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (75,212);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (212,204);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7844;\n},\n{\nglyphname = Acircumflexdotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (236,0);\nref = dotbelowcomb;\n},\n{\npos = (183,200);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (237,0);\nref = dotbelowcomb;\n},\n{\npos = (166,200);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (255,0);\nref = dotbelowcomb;\n},\n{\npos = (182,204);\nref = circumflexcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7852;\n},\n{\nglyphname = Acircumflexgrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (207,200);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (199,212);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (212,205);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7846;\n},\n{\nglyphname = Acircumflexhookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (210,200);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (202,212);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (211,204);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7848;\n},\n{\nglyphname = Acircumflextilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (215,212);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (206,212);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (187,204);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7850;\n},\n{\nglyphname = Adieresis;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 09:01:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (152,200);\nref = dieresiscomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (158,200);\nref = dieresiscomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (146,204);\nref = dieresiscomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 196;\n},\n{\nglyphname = Adotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 09:02:24 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (229,0);\nref = dotbelowcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (251,0);\nref = dotbelowcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7840;\n},\n{\nglyphname = Agrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 09:02:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (153,200);\nref = gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (160,200);\nref = gravecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (162,204);\nref = gravecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 192;\n},\n{\nglyphname = Ahookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (268,212);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (255,212);\nref = hookabovecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (296,204);\nref = hookabovecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7842;\n},\n{\nglyphname = Amacron;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (184,200);\nref = macroncomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (148,200);\nref = macroncomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (189,201);\nref = macroncomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 256;\n},\n{\nglyphname = Aogonek;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 09:04:23 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (411,5);\nref = ogonekcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (420,1);\nref = ogonekcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (489,0);\nref = ogonekcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 260;\n},\n{\nglyphname = Aring;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 09:04:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (192,200);\nref = ringcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (192,200);\nref = ringcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (216,204);\nref = ringcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 197;\n},\n{\nglyphname = Atilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (156,200);\nref = tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (169,200);\nref = tildecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (162,204);\nref = tildecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 195;\n},\n{\nglyphname = AE;\nkernLeft = A;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (649,701);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(35,0,l),\n(492,700,l),\n(430,700,l),\n(-36,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(408,190,l),\n(415,246,l),\n(161,246,l),\n(154,190,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(776,0,l),\n(783,56,l),\n(449,56,l),\n(483,332,l),\n(755,332,l),\n(762,388,l),\n(490,388,l),\n(521,644,l),\n(855,644,l),\n(862,700,l),\n(464,700,l),\n(378,0,l)\n);\n}\n);\nwidth = 867;\n},\n{\nanchors = (\n{\nname = top;\npos = (669,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(73,0,l),\n(525,700,l),\n(439,700,l),\n(-23,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(459,169,l),\n(469,249,l),\n(185,249,l),\n(175,169,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(807,0,l),\n(817,80,l),\n(494,80,l),\n(524,320,l),\n(786,320,l),\n(795,398,l),\n(533,398,l),\n(560,620,l),\n(883,620,l),\n(893,700,l),\n(482,700,l),\n(396,0,l)\n);\n}\n);\nwidth = 896;\n},\n{\nanchors = (\n{\nname = top;\npos = (715,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,0,l),\n(589,700,l),\n(439,700,l),\n(-26,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(460,142,l),\n(476,268,l),\n(185,268,l),\n(169,142,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(894,0,l),\n(909,126,l),\n(598,126,l),\n(619,297,l),\n(879,297,l),\n(895,423,l),\n(635,423,l),\n(653,574,l),\n(964,574,l),\n(980,700,l),\n(523,700,l),\n(437,0,l)\n);\n}\n);\nwidth = 967;\n}\n);\nunicode = 198;\n},\n{\nglyphname = AEacute;\nkernLeft = A;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = AE;\n},\n{\npos = (567,189);\nref = acutecomb;\n}\n);\nwidth = 867;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = AE;\n},\n{\npos = (590,188);\nref = acutecomb;\n}\n);\nwidth = 896;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = AE;\n},\n{\npos = (615,192);\nref = acutecomb;\n}\n);\nwidth = 967;\n}\n);\nunicode = 508;\n},\n{\nglyphname = B;\nkernLeft = B;\nkernRight = B;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(299,0,ls),\n(459,0,o),\n(545,72,o),\n(561,202,cs),\n(572,288,o),\n(530,343,o),\n(439,365,c),\n(501,385,o),\n(551,438,o),\n(562,526,cs),\n(576,642,o),\n(506,701,o),\n(374,701,cs),\n(155,701,l),\n(69,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(170,330,l),\n(170,330,o),\n(359,330,o),\n(359,330,cs),\n(457,330,o),\n(508,277,o),\n(499,202,cs),\n(489,122,o),\n(427,56,o),\n(316,56,cs),\n(136,56,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(208,645,l),\n(208,645,o),\n(362,645,o),\n(362,645,cs),\n(469,645,o),\n(508,595,o),\n(500,525,cs),\n(489,439,o),\n(429,386,o),\n(332,386,cs),\n(177,386,l)\n);\n}\n);\nwidth = 618;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(322,0,ls),\n(487,0,o),\n(575,73,o),\n(591,200,cs),\n(602,287,o),\n(561,344,o),\n(469,366,c),\n(530,384,o),\n(579,424,o),\n(591,521,cs),\n(606,637,o),\n(537,701,o),\n(400,701,cs),\n(164,701,l),\n(78,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(205,319,l),\n(205,319,o),\n(371,319,o),\n(371,319,cs),\n(463,319,o),\n(507,267,o),\n(499,200,cs),\n(489,120,o),\n(429,80,o),\n(332,80,cs),\n(176,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(243,621,l),\n(243,621,o),\n(386,621,o),\n(386,621,cs),\n(459,621,o),\n(508,587,o),\n(500,520,cs),\n(490,435,o),\n(432,399,o),\n(359,399,cs),\n(215,399,l)\n);\n}\n);\nwidth = 655;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,0,ls),\n(542,0,o),\n(635,77,o),\n(651,204,cs),\n(661,283,o),\n(621,341,o),\n(545,363,c),\n(593,386,o),\n(640,434,o),\n(650,518,cs),\n(663,620,o),\n(597,701,o),\n(449,701,cs),\n(164,701,l),\n(78,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(260,293,l),\n(260,293,o),\n(397,293,o),\n(397,293,c),\n(464,293,o),\n(504,264,o),\n(498,211,cs),\n(490,145,o),\n(443,126,o),\n(366,126,cs),\n(239,126,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(294,575,l),\n(294,575,o),\n(415,575,o),\n(415,575,cs),\n(471,575,o),\n(501,549,o),\n(496,504,cs),\n(488,441,o),\n(452,419,o),\n(397,419,cs),\n(275,419,l)\n);\n}\n);\nwidth = 701;\n}\n);\nunicode = 66;\n},\n{\nglyphname = C;\nkernLeft = O;\nlastChange = \"2025-01-08 14:19:36 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (307,-6);\n},\n{\nname = top;\npos = (411,713);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(467,-13,o),\n(567,76,o),\n(610,199,c),\n(551,211,l),\n(515,117,o),\n(441,43,o),\n(329,43,cs),\n(182,43,o),\n(112,167,o),\n(135,357,cs),\n(158,542,o),\n(273,657,o),\n(404,657,cs),\n(502,657,o),\n(575,581,o),\n(581,488,c),\n(647,501,l),\n(634,624,o),\n(556,713,o),\n(411,713,cs),\n(208,713,o),\n(96,541,o),\n(73,355,cs),\n(49,163,o),\n(114,-13,o),\n(322,-13,cs)\n);\n}\n);\nwidth = 663;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (318,-13);\n},\n{\nname = top;\npos = (417,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(474,-13,o),\n(587,75,o),\n(630,198,c),\n(543,216,l),\n(509,130,o),\n(430,67,o),\n(338,67,cs),\n(207,67,o),\n(147,194,o),\n(167,357,cs),\n(186,512,o),\n(276,633,o),\n(407,633,cs),\n(499,633,o),\n(563,570,o),\n(576,484,c),\n(667,502,l),\n(654,625,o),\n(563,713,o),\n(417,713,cs),\n(211,713,o),\n(101,548,o),\n(77,355,cs),\n(54,171,o),\n(121,-13,o),\n(328,-13,cs)\n);\n}\n);\nwidth = 689;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (332,-12);\n},\n{\nname = top;\npos = (437,713);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(502,-12,o),\n(601,76,o),\n(644,199,c),\n(507,227,l),\n(485,161,o),\n(422,119,o),\n(366,119,cs),\n(245,119,o),\n(198,198,o),\n(218,357,cs),\n(235,499,o),\n(298,583,o),\n(419,583,cs),\n(479,583,o),\n(529,532,o),\n(537,474,c),\n(681,502,l),\n(669,625,o),\n(566,713,o),\n(437,713,cs),\n(213,713,o),\n(87,549,o),\n(63,355,cs),\n(41,171,o),\n(104,-12,o),\n(350,-12,cs)\n);\n}\n);\nwidth = 684;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"09577142-2BA9-4939-A4E9-BA986ECE9950\";\nname = \"27 Mar 24 at 12:02\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(596,-12,o),\n(684,157,o),\n(684,349,cs),\n(684,543,o),\n(596,712,o),\n(372,712,cs),\n(148,712,o),\n(60,543,o),\n(60,349,cs),\n(60,157,o),\n(148,-12,o),\n(372,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(217,44,o),\n(122,154,o),\n(122,349,cs),\n(122,540,o),\n(217,656,o),\n(372,656,cs),\n(527,656,o),\n(622,540,o),\n(622,349,cs),\n(622,154,o),\n(527,44,o),\n(372,44,cs)\n);\n}\n);\nwidth = 693;\n}\n);\nunicode = 67;\n},\n{\nglyphname = Cacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-08 14:19:36 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (329,201);\nref = acutecomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (338,201);\nref = acutecomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (337,205);\nref = acutecomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 262;\n},\n{\nglyphname = Ccaron;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-08 14:19:36 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (245,201);\nref = caroncomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (233,201);\nref = caroncomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (225,205);\nref = caroncomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 268;\n},\n{\nglyphname = Ccedilla;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (230,-8);\nref = cedillacomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (231,-15);\nref = cedillacomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (235,-11);\nref = cedillacomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 199;\n},\n{\nglyphname = Ccircumflex;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-08 14:19:36 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (245,201);\nref = circumflexcomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (228,201);\nref = circumflexcomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (227,205);\nref = circumflexcomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 264;\n},\n{\nglyphname = Cdotaccent;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (313,201);\nref = dotaccentcomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (311,201);\nref = dotaccentcomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (310,205);\nref = dotaccentcomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 266;\n},\n{\nglyphname = D;\nkernRight = O;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (283,0);\n},\n{\nname = top;\npos = (369,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(260,0,ls),\n(486,0,o),\n(611,141,o),\n(636,349,cs),\n(662,560,o),\n(572,700,o),\n(346,700,cs),\n(159,700,l),\n(73,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,644,l),\n(342,644,ls),\n(536,644,o),\n(594,507,o),\n(574,350,cs),\n(555,192,o),\n(464,56,o),\n(270,56,cs),\n(144,56,l)\n);\n}\n);\nwidth = 681;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (289,0);\n},\n{\nname = top;\npos = (375,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(260,0,ls),\n(492,0,o),\n(617,141,o),\n(642,349,cs),\n(668,560,o),\n(578,700,o),\n(346,700,cs),\n(151,700,l),\n(65,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,620,l),\n(339,620,ls),\n(502,620,o),\n(570,507,o),\n(550,350,cs),\n(531,192,o),\n(436,80,o),\n(273,80,cs),\n(163,80,l)\n);\n}\n);\nwidth = 680;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (320,0);\n},\n{\nname = top;\npos = (406,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(307,0,ls),\n(537,0,o),\n(661,141,o),\n(687,349,cs),\n(713,560,o),\n(623,700,o),\n(393,700,cs),\n(145,700,l),\n(59,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,574,l),\n(380,574,ls),\n(498,574,o),\n(552,507,o),\n(533,350,cs),\n(513,192,o),\n(443,126,o),\n(325,126,cs),\n(220,126,l)\n);\n}\n);\nwidth = 723;\n}\n);\nunicode = 68;\n},\n{\nglyphname = Dcaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = D;\n},\n{\npos = (203,188);\nref = caroncomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = D;\n},\n{\npos = (191,188);\nref = caroncomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = D;\n},\n{\npos = (194,192);\nref = caroncomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 270;\n},\n{\nglyphname = Dcroat;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 723;\n}\n);\nunicode = 272;\n},\n{\nglyphname = Ddotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = D;\n},\n{\npos = (257,1);\nref = dotbelowcomb;\n}\n);\nwidth = 723;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = D;\n},\n{\npos = (251,0);\nref = dotbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = D;\n},\n{\npos = (245,0);\nref = dotbelowcomb;\n}\n);\nwidth = 680;\n}\n);\nunicode = 7692;\n},\n{\nglyphname = Dmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = D;\n},\n{\npos = (171,1);\nref = macronbelowcomb;\n}\n);\nwidth = 723;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = D;\n},\n{\npos = (173,12);\nref = macronbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = D;\n},\n{\npos = (161,12);\nref = macronbelowcomb;\n}\n);\nwidth = 680;\n}\n);\nunicode = 7694;\n},\n{\nglyphname = Eth;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = D;\n},\n{\nclosed = 1;\nnodes = (\n(354,329,l),\n(361,385,l),\n(39,385,l),\n(32,329,l)\n);\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = D;\n},\n{\nclosed = 1;\nnodes = (\n(372,315,l),\n(381,385,l),\n(44,385,l),\n(35,315,l)\n);\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = D;\n},\n{\nclosed = 1;\nnodes = (\n(388,291,l),\n(401,401,l),\n(18,401,l),\n(5,291,l)\n);\n}\n);\nwidth = 723;\n}\n);\nunicode = 208;\n},\n{\nglyphname = E;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (268,0);\n},\n{\nname = top;\npos = (354,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(467,0,l),\n(474,56,l),\n(140,56,l),\n(174,332,l),\n(446,332,l),\n(453,388,l),\n(181,388,l),\n(212,644,l),\n(546,644,l),\n(553,700,l),\n(155,700,l),\n(69,0,l)\n);\n}\n);\nwidth = 558;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (271,0);\n},\n{\nname = top;\npos = (357,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(476,0,l),\n(486,80,l),\n(163,80,l),\n(193,320,l),\n(455,320,l),\n(464,398,l),\n(202,398,l),\n(229,620,l),\n(552,620,l),\n(562,700,l),\n(151,700,l),\n(65,0,l)\n);\n}\n);\nwidth = 564;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (288,0);\n},\n{\nname = top;\npos = (374,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(516,0,l),\n(531,126,l),\n(220,126,l),\n(241,297,l),\n(501,297,l),\n(517,423,l),\n(257,423,l),\n(275,574,l),\n(586,574,l),\n(602,700,l),\n(145,700,l),\n(59,0,l)\n);\n}\n);\nwidth = 589;\n}\n);\nunicode = 69;\n},\n{\nglyphname = Eacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (272,188);\nref = acutecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (278,188);\nref = acutecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (274,192);\nref = acutecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 201;\n},\n{\nglyphname = Ebreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (177,188);\nref = brevecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (182,188);\nref = brevecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (174,192);\nref = brevecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 276;\n},\n{\nglyphname = Ecaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (188,188);\nref = caroncomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (173,188);\nref = caroncomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (162,192);\nref = caroncomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 282;\n},\n{\nglyphname = Ecircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (188,188);\nref = circumflexcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (168,188);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (164,192);\nref = circumflexcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 202;\n},\n{\nglyphname = Ecircumflexacute;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (70,188);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (77,200);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (194,192);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7870;\n},\n{\nglyphname = Ecircumflexdotbelow;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (236,0);\nref = dotbelowcomb;\n},\n{\npos = (188,188);\nref = circumflexcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n},\n{\npos = (168,188);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (225,1);\nref = dotbelowcomb;\n},\n{\npos = (164,192);\nref = circumflexcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7878;\n},\n{\nglyphname = Ecircumflexgrave;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (212,188);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (201,200);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (194,193);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7872;\n},\n{\nglyphname = Ecircumflexhookabove;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (215,188);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (204,200);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (193,192);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7874;\n},\n{\nglyphname = Ecircumflextilde;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (220,200);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (208,200);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (169,192);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7876;\n},\n{\nglyphname = Edieresis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (157,188);\nref = dieresiscomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (160,188);\nref = dieresiscomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (128,192);\nref = dieresiscomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 203;\n},\n{\nglyphname = Edotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (256,188);\nref = dotaccentcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (251,188);\nref = dotaccentcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (247,192);\nref = dotaccentcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 278;\n},\n{\nglyphname = Edotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (236,0);\nref = dotbelowcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (225,1);\nref = dotbelowcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7864;\n},\n{\nglyphname = Egrave;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (158,188);\nref = gravecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (162,188);\nref = gravecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (144,192);\nref = gravecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 200;\n},\n{\nglyphname = Ehookabove;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (273,200);\nref = hookabovecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (257,200);\nref = hookabovecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (278,192);\nref = hookabovecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7866;\n},\n{\nglyphname = Emacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (189,188);\nref = macroncomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (150,188);\nref = macroncomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (171,189);\nref = macroncomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 274;\n},\n{\nglyphname = Eogonek;\nlastChange = \"2025-01-01 09:05:47 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (339,5);\nref = ogonekcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (344,1);\nref = ogonekcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (372,0);\nref = ogonekcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 280;\n},\n{\nglyphname = Eopen;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (267,0);\n},\n{\nname = top;\npos = (353,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(407,-12,o),\n(513,61,o),\n(542,195,c),\n(481,199,l),\n(460,120,o),\n(403,44,o),\n(280,44,cs),\n(156,44,o),\n(106,123,o),\n(116,203,cs),\n(125,278,o),\n(190,350,o),\n(315,350,cs),\n(328,350,o),\n(341,349,o),\n(353,348,c),\n(360,404,l),\n(349,402,o),\n(336,401,o),\n(323,401,cs),\n(218,401,o),\n(182,465,o),\n(190,530,cs),\n(197,586,o),\n(246,656,o),\n(352,656,cs),\n(437,656,o),\n(476,611,o),\n(485,564,c),\n(547,584,l),\n(534,668,o),\n(461,712,o),\n(360,712,cs),\n(241,712,o),\n(143,649,o),\n(128,530,cs),\n(120,465,o),\n(156,415,o),\n(192,384,c),\n(126,348,o),\n(64,286,o),\n(54,203,cs),\n(37,64,o),\n(133,-12,o),\n(272,-12,cs)\n);\n}\n);\nwidth = 596;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (299,0);\n},\n{\nname = top;\npos = (385,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(470,-12,o),\n(574,63,o),\n(606,200,c),\n(515,207,l),\n(483,93,o),\n(412,68,o),\n(338,68,cs),\n(238,68,o),\n(183,123,o),\n(193,203,cs),\n(202,278,o),\n(266,340,o),\n(369,340,cs),\n(384,340,o),\n(398,340,o),\n(413,340,c),\n(423,418,l),\n(409,418,o),\n(394,418,o),\n(380,418,cs),\n(293,418,o),\n(255,465,o),\n(263,530,cs),\n(270,586,o),\n(316,636,o),\n(404,636,cs),\n(482,636,o),\n(521,597,o),\n(523,549,c),\n(611,576,l),\n(602,665,o),\n(526,712,o),\n(415,712,cs),\n(288,712,o),\n(190,649,o),\n(175,530,cs),\n(167,465,o),\n(191,415,o),\n(227,384,c),\n(161,348,o),\n(111,286,o),\n(101,203,cs),\n(84,64,o),\n(182,-12,o),\n(327,-12,cs)\n);\n}\n);\nwidth = 660;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (313,0);\n},\n{\nname = top;\npos = (399,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(521,-12,o),\n(618,81,o),\n(648,207,c),\n(502,216,l),\n(488,161,o),\n(451,116,o),\n(364,116,cs),\n(281,116,o),\n(251,157,o),\n(258,212,cs),\n(264,260,o),\n(304,306,o),\n(385,306,cs),\n(400,306,o),\n(417,307,o),\n(432,307,c),\n(448,434,l),\n(433,434,o),\n(417,433,o),\n(402,433,cs),\n(354,433,o),\n(318,458,o),\n(325,512,cs),\n(329,550,o),\n(370,584,o),\n(419,584,cs),\n(460,584,o),\n(492,559,o),\n(498,527,c),\n(651,569,l),\n(642,656,o),\n(565,712,o),\n(435,712,cs),\n(290,712,o),\n(190,639,o),\n(177,530,cs),\n(169,465,o),\n(193,415,o),\n(229,384,c),\n(163,348,o),\n(113,286,o),\n(103,203,cs),\n(87,74,o),\n(187,-12,o),\n(347,-12,cs)\n);\n}\n);\nwidth = 687;\n}\n);\nunicode = 400;\n},\n{\nglyphname = Etilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (161,188);\nref = tildecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (171,188);\nref = tildecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (144,192);\nref = tildecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7868;\n},\n{\nglyphname = Schwa;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (321,0);\n},\n{\nname = top;\npos = (407,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(503,-12,o),\n(643,126,o),\n(671,352,cs),\n(698,575,o),\n(601,712,o),\n(410,712,cs),\n(245,712,o),\n(142,608,o),\n(95,496,c),\n(157,482,l),\n(191,559,o),\n(268,656,o),\n(397,656,cs),\n(552,656,o),\n(631,531,o),\n(609,356,cs),\n(588,186,o),\n(496,44,o),\n(327,44,cs),\n(179,44,o),\n(114,174,o),\n(130,310,c),\n(623,310,l),\n(630,365,l),\n(74,365,l),\n(69,326,l),\n(43,112,o),\n(159,-12,o),\n(325,-12,cs)\n);\n}\n);\nwidth = 704;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (332,0);\n},\n{\nname = top;\npos = (418,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(518,-12,o),\n(658,126,o),\n(686,353,cs),\n(713,574,o),\n(607,712,o),\n(413,712,cs),\n(240,712,o),\n(146,618,o),\n(98,506,c),\n(182,485,l),\n(210,569,o),\n(301,632,o),\n(394,632,c),\n(566,632,o),\n(610,487,o),\n(594,357,cs),\n(573,187,o),\n(483,68,o),\n(333,68,cs),\n(201,68,o),\n(145,163,o),\n(161,287,c),\n(607,287,l),\n(616,367,l),\n(78,367,l),\n(74,334,l),\n(45,96,o),\n(155,-12,o),\n(328,-12,cs)\n);\n}\n);\nwidth = 726;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (344,0);\n},\n{\nname = top;\npos = (430,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(507,-12,o),\n(697,103,o),\n(727,347,cs),\n(756,583,o),\n(599,712,o),\n(428,712,cs),\n(321,712,o),\n(185,663,o),\n(103,512,c),\n(241,469,l),\n(269,538,o),\n(342,582,o),\n(409,582,cs),\n(527,582,o),\n(593,504,o),\n(573,347,cs),\n(556,204,o),\n(470,118,o),\n(359,118,cs),\n(258,118,o),\n(204,205,o),\n(214,286,c),\n(597,286,l),\n(610,402,l),\n(69,402,l),\n(64,357,l),\n(35,126,o),\n(149,-12,o),\n(341,-12,cs)\n);\n}\n);\nwidth = 749;\n}\n);\nunicode = 399;\n},\n{\nglyphname = F;\nkernLeft = E;\nkernRight = F;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(174,335,l),\n(446,335,l),\n(453,391,l),\n(181,391,l),\n(212,644,l),\n(546,644,l),\n(553,700,l),\n(155,700,l),\n(69,0,l)\n);\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(153,0,l),\n(193,320,l),\n(455,320,l),\n(464,400,l),\n(202,400,l),\n(229,620,l),\n(552,620,l),\n(562,700,l),\n(151,700,l),\n(65,0,l)\n);\n}\n);\nwidth = 541;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,0,l),\n(241,297,l),\n(501,297,l),\n(517,423,l),\n(257,423,l),\n(275,574,l),\n(586,574,l),\n(602,700,l),\n(145,700,l),\n(59,0,l)\n);\n}\n);\nwidth = 577;\n}\n);\nunicode = 70;\n},\n{\nglyphname = G;\nkernLeft = O;\nkernRight = G;\nlastChange = \"2025-01-08 14:18:45 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (316,-13);\n},\n{\nname = top;\npos = (416,713);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(438,-13,o),\n(529,49,o),\n(563,127,c),\n(563,127,o),\n(554,0,o),\n(554,0,c),\n(606,0,l),\n(651,368,l),\n(372,368,l),\n(366,312,l),\n(583,312,l),\n(564,159,o),\n(459,43,o),\n(334,43,cs),\n(180,43,o),\n(110,167,o),\n(133,357,cs),\n(156,542,o),\n(271,657,o),\n(409,657,cs),\n(515,657,o),\n(588,581,o),\n(594,488,c),\n(660,501,l),\n(647,624,o),\n(569,713,o),\n(416,713,cs),\n(206,713,o),\n(94,541,o),\n(71,355,cs),\n(47,163,o),\n(112,-13,o),\n(327,-13,cs)\n);\n}\n);\nwidth = 701;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (329,-12);\n},\n{\nname = top;\npos = (418,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,-12,o),\n(511,30,o),\n(560,107,c),\n(560,107,o),\n(560,0,o),\n(560,0,c),\n(629,0,l),\n(674,368,l),\n(394,368,l),\n(384,284,l),\n(575,284,l),\n(560,158,o),\n(447,67,o),\n(344,67,cs),\n(202,67,o),\n(145,194,o),\n(165,357,cs),\n(184,512,o),\n(274,633,o),\n(416,633,c),\n(519,633,o),\n(583,570,o),\n(596,484,c),\n(687,502,l),\n(674,625,o),\n(583,713,o),\n(426,713,c),\n(209,713,o),\n(99,548,o),\n(75,355,cs),\n(51,158,o),\n(122,-12,o),\n(347,-12,c)\n);\n}\n);\nwidth = 740;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (323,-12);\n},\n{\nname = top;\npos = (442,712);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(411,-12,o),\n(485,13,o),\n(533,80,c),\n(533,80,o),\n(535,0,o),\n(535,0,c),\n(633,0,l),\n(679,380,l),\n(394,380,l),\n(380,260,l),\n(530,260,l),\n(512,170,o),\n(432,119,o),\n(369,119,cs),\n(242,119,o),\n(195,198,o),\n(215,357,cs),\n(232,499,o),\n(299,583,o),\n(426,583,cs),\n(490,583,o),\n(539,532,o),\n(547,474,c),\n(691,502,l),\n(679,625,o),\n(578,712,o),\n(442,712,cs),\n(212,712,o),\n(84,549,o),\n(60,355,cs),\n(38,171,o),\n(101,-12,o),\n(353,-12,cs)\n);\n}\n);\nwidth = 726;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"60D9B074-3643-47F8-BA45-851CCB9418B6\";\nname = \"6 Jul 24 at 15:54\";\nshapes = (\n{\nclosed = 0;\nnodes = (\n(514,106,l)\n);\n},\n{\nclosed = 0;\nnodes = (\n(531,106,l),\n(533,94,o),\n(544,0,o),\n(544,0,c),\n(596,0,l),\n(596,368,l),\n(349,368,l),\n(349,312,l),\n(516,312,l),\n(516,158,o),\n(420,43,o),\n(299,43,cs),\n(142,43,o),\n(57,167,o),\n(57,357,cs),\n(57,542,o),\n(158,657,o),\n(299,657,cs),\n(406,657,o),\n(488,581,o),\n(506,488,c),\n(570,501,l),\n(542,624,o),\n(453,713,o),\n(299,713,cs),\n(86,713,o),\n(-5,541,o),\n(-5,355,cs),\n(-5,163,o),\n(81,-13,o),\n(299,-13,cs),\n(453,-13,o),\n(542,76,o),\n(570,199,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(453,-13,o),\n(542,76,o),\n(570,199,c),\n(510,211,l),\n(485,117,o),\n(420,43,o),\n(299,43,cs),\n(142,43,o),\n(57,167,o),\n(57,357,cs),\n(57,542,o),\n(158,657,o),\n(299,657,cs),\n(406,657,o),\n(488,581,o),\n(506,488,c),\n(570,501,l),\n(542,624,o),\n(453,713,o),\n(299,713,cs),\n(86,713,o),\n(-5,541,o),\n(-5,355,cs),\n(-5,163,o),\n(81,-13,o),\n(299,-13,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 71;\n},\n{\nglyphname = Gbreve;\nlastChange = \"2025-01-08 14:18:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (239,201);\nref = brevecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (243,201);\nref = brevecomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (242,204);\nref = brevecomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 286;\n},\n{\nglyphname = Gcircumflex;\nlastChange = \"2025-01-08 14:18:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (250,201);\nref = circumflexcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (229,201);\nref = circumflexcomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (232,204);\nref = circumflexcomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 284;\n},\n{\nglyphname = Gcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (287,-1);\nref = commaaccentcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (284,0);\nref = commaaccentcomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (259,-11);\nref = commaaccentcomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 290;\n},\n{\nglyphname = Gdotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (318,201);\nref = dotaccentcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (312,201);\nref = dotaccentcomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (315,204);\nref = dotaccentcomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 288;\n},\n{\nglyphname = Gmacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (251,201);\nref = macroncomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (211,201);\nref = macroncomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (239,201);\nref = macroncomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 7712;\n},\n{\nglyphname = H;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(175,336,l),\n(537,336,l),\n(495,0,l),\n(559,0,l),\n(645,700,l),\n(581,700,l),\n(543,392,l),\n(181,392,l),\n(219,700,l),\n(155,700,l),\n(69,0,l)\n);\n}\n);\nwidth = 690;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(151,0,l),\n(191,324,l),\n(527,324,l),\n(487,0,l),\n(575,0,l),\n(661,700,l),\n(573,700,l),\n(537,404,l),\n(201,404,l),\n(237,700,l),\n(149,700,l),\n(63,0,l)\n);\n}\n);\nwidth = 700;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,0,l),\n(242,301,l),\n(524,301,l),\n(487,0,l),\n(633,0,l),\n(719,700,l),\n(573,700,l),\n(539,427,l),\n(257,427,l),\n(291,700,l),\n(145,700,l),\n(59,0,l)\n);\n}\n);\nwidth = 754;\n}\n);\nunicode = 72;\n},\n{\nglyphname = Hbar;\nlastChange = \"2025-01-08 14:18:24 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(175,336,l),\n(537,336,l),\n(495,0,l),\n(559,0,l),\n(645,700,l),\n(581,700,l),\n(543,392,l),\n(181,392,l),\n(219,700,l),\n(155,700,l),\n(69,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(699,496,l),\n(706,550,l),\n(62,550,l),\n(55,496,l)\n);\n}\n);\nwidth = 690;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,0,l),\n(187,318,l),\n(523,318,l),\n(484,0,l),\n(572,0,l),\n(658,700,l),\n(570,700,l),\n(533,398,l),\n(197,398,l),\n(234,700,l),\n(146,700,l),\n(60,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(699,498,l),\n(708,568,l),\n(64,568,l),\n(55,498,l)\n);\n}\n);\nwidth = 700;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,0,l),\n(240,290,l),\n(522,290,l),\n(487,0,l),\n(633,0,l),\n(719,700,l),\n(573,700,l),\n(538,416,l),\n(256,416,l),\n(291,700,l),\n(145,700,l),\n(59,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(780,497,l),\n(793,607,l),\n(51,607,l),\n(38,497,l)\n);\n}\n);\nwidth = 754;\n}\n);\nunicode = 294;\n},\n{\nglyphname = Hcircumflex;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = H;\n},\n{\npos = (205,201);\nref = circumflexcomb;\n}\n);\nwidth = 690;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = H;\n},\n{\npos = (195,201);\nref = circumflexcomb;\n}\n);\nwidth = 700;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = H;\n},\n{\npos = (190,204);\nref = circumflexcomb;\n}\n);\nwidth = 754;\n}\n);\nunicode = 292;\n},\n{\nglyphname = I;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (207,0);\n},\n{\nname = top;\npos = (293,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(370,0,l),\n(377,56,l),\n(246,56,l),\n(318,644,l),\n(449,644,l),\n(456,700,l),\n(130,700,l),\n(123,644,l),\n(254,644,l),\n(182,56,l),\n(51,56,l),\n(44,0,l)\n);\n}\n);\nwidth = 476;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (207,0);\n},\n{\nname = top;\npos = (293,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(369,0,l),\n(379,76,l),\n(261,76,l),\n(328,624,l),\n(446,624,l),\n(455,700,l),\n(131,700,l),\n(122,624,l),\n(240,624,l),\n(173,76,l),\n(55,76,l),\n(45,0,l)\n);\n}\n);\nwidth = 476;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (236,0);\n},\n{\nname = top;\npos = (322,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,0,l),\n(437,122,l),\n(324,122,l),\n(380,578,l),\n(493,578,l),\n(508,700,l),\n(135,700,l),\n(120,578,l),\n(234,578,l),\n(178,122,l),\n(64,122,l),\n(49,0,l)\n);\n}\n);\nwidth = 533;\n}\n);\nunicode = 73;\n},\n{\nglyphname = IJ;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (466,0);\nref = J;\n}\n);\nwidth = 982;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (476,0);\nref = J;\n}\n);\nwidth = 1003;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (533,0);\nref = J;\n}\n);\nwidth = 1108;\n}\n);\nunicode = 306;\n},\n{\nglyphname = Iacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (211,188);\nref = acutecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (214,188);\nref = acutecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (222,192);\nref = acutecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 205;\n},\n{\nglyphname = Ibreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (116,188);\nref = brevecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (118,188);\nref = brevecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (122,192);\nref = brevecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 300;\n},\n{\nglyphname = Icircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (127,188);\nref = circumflexcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (104,188);\nref = circumflexcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (112,192);\nref = circumflexcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 206;\n},\n{\nglyphname = Idieresis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (96,188);\nref = dieresiscomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (96,188);\nref = dieresiscomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (76,192);\nref = dieresiscomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 207;\n},\n{\nglyphname = Idotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (195,188);\nref = dotaccentcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (187,188);\nref = dotaccentcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (195,192);\nref = dotaccentcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 304;\n},\n{\nglyphname = Idotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (175,0);\nref = dotbelowcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (163,0);\nref = dotbelowcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (173,1);\nref = dotbelowcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 7882;\n},\n{\nglyphname = Igrave;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (97,188);\nref = gravecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (98,188);\nref = gravecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (92,192);\nref = gravecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 204;\n},\n{\nglyphname = Ihookabove;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (212,200);\nref = hookabovecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (193,200);\nref = hookabovecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (226,192);\nref = hookabovecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 7880;\n},\n{\nglyphname = Imacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (128,188);\nref = macroncomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (86,188);\nref = macroncomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (119,189);\nref = macroncomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 298;\n},\n{\nglyphname = Iogonek;\nlastChange = \"2025-01-01 09:06:08 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (242,5);\nref = ogonekcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (237,1);\nref = ogonekcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (278,0);\nref = ogonekcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 302;\n},\n{\nglyphname = Itilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (100,188);\nref = tildecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (107,188);\nref = tildecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (92,192);\nref = tildecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 296;\n},\n{\nglyphname = J;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (453,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,-12,o),\n(405,65,o),\n(428,253,cs),\n(483,700,l),\n(423,700,l),\n(368,252,ls),\n(351,111,o),\n(304,44,o),\n(194,44,cs),\n(108,44,o),\n(69,107,o),\n(66,192,c),\n(6,173,l),\n(9,56,o),\n(74,-12,o),\n(191,-12,cs)\n);\n}\n);\nwidth = 516;\n},\n{\nanchors = (\n{\nname = top;\npos = (454,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(348,-12,o),\n(425,85,o),\n(446,256,cs),\n(500,700,l),\n(412,700,l),\n(358,255,ls),\n(344,148,o),\n(299,68,o),\n(208,68,cs),\n(135,68,o),\n(93,120,o),\n(89,200,c),\n(2,173,l),\n(5,56,o),\n(80,-12,o),\n(202,-12,cs)\n);\n}\n);\nwidth = 527;\n},\n{\nanchors = (\n{\nname = top;\npos = (481,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(395,-12,o),\n(481,90,o),\n(502,261,cs),\n(556,700,l),\n(410,700,l),\n(356,260,ls),\n(347,185,o),\n(311,118,o),\n(238,118,cs),\n(162,118,o),\n(130,170,o),\n(126,227,c),\n(-7,183,l),\n(-3,66,o),\n(83,-12,o),\n(223,-12,cs)\n);\n}\n);\nwidth = 575;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"F0224C38-C702-4CDE-838B-2E373CDF467B\";\nname = \"5 Aug 24 at 10:34\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(314,-12,o),\n(407,94,o),\n(407,275,cs),\n(407,701,l),\n(347,701,l),\n(347,275,l),\n(347,121,o),\n(270,44,o),\n(164,44,cs),\n(60,44,o),\n(-19,121,o),\n(-19,275,cs),\n(-19,701,l),\n(-79,701,l),\n(-79,275,ls),\n(-79,94,o),\n(15,-12,o),\n(168,-12,cs)\n);\n}\n);\nwidth = 496;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"D039DF4E-49D3-4032-B6A6-5E0752F96B5B\";\nname = \"5 Aug 24 at 10:37\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(328,-12,o),\n(413,98,o),\n(413,275,cs),\n(413,701,l),\n(325,701,l),\n(325,275,ls),\n(325,139,o),\n(251,73,o),\n(162,73,cs),\n(69,73,o),\n(-1,139,o),\n(-1,275,cs),\n(-1,701,l),\n(-89,701,l),\n(-89,275,ls),\n(-89,98,o),\n(7,-12,o),\n(166,-12,cs)\n);\n}\n);\nwidth = 495;\n}\n);\nunicode = 74;\n},\n{\nglyphname = Jacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = J;\n},\n{\npos = (371,188);\nref = acutecomb;\n}\n);\nwidth = 516;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = J;\n},\n{\npos = (375,188);\nref = acutecomb;\n}\n);\nwidth = 527;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = J;\n},\n{\npos = (381,192);\nref = acutecomb;\n}\n);\nwidth = 575;\n}\n);\n},\n{\nglyphname = Jcircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = J;\n},\n{\npos = (287,188);\nref = circumflexcomb;\n}\n);\nwidth = 516;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = J;\n},\n{\npos = (265,188);\nref = circumflexcomb;\n}\n);\nwidth = 527;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = J;\n},\n{\npos = (271,192);\nref = circumflexcomb;\n}\n);\nwidth = 575;\n}\n);\nunicode = 308;\n},\n{\nglyphname = K;\nkernRight = K;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (285,0);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(129,0,l),\n(159,244,l),\n(616,700,l),\n(539,700,l),\n(170,330,l),\n(215,700,l),\n(155,700,l),\n(69,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(545,0,l),\n(338,429,l),\n(290,382,l),\n(467,0,l)\n);\n}\n);\nwidth = 592;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (321,0);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(149,0,l),\n(179,242,l),\n(642,700,l),\n(535,700,l),\n(193,358,l),\n(235,700,l),\n(147,700,l),\n(61,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(574,0,l),\n(363,435,l),\n(294,373,l),\n(469,0,l)\n);\n}\n);\nwidth = 615;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (309,0);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,0,l),\n(232,224,l),\n(706,700,l),\n(546,700,l),\n(254,404,l),\n(291,700,l),\n(145,700,l),\n(59,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(630,0,l),\n(439,450,l),\n(324,340,l),\n(460,0,l)\n);\n}\n);\nwidth = 665;\n}\n);\nunicode = 75;\n},\n{\nglyphname = Kcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = K;\n},\n{\npos = (256,12);\nref = commaaccentcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = K;\n},\n{\npos = (276,12);\nref = commaaccentcomb;\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = K;\n},\n{\npos = (245,1);\nref = commaaccentcomb;\n}\n);\nwidth = 665;\n}\n);\nunicode = 310;\n},\n{\nglyphname = L;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (277,0);\n},\n{\nname = top;\npos = (185,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(478,0,l),\n(485,56,l),\n(138,56,l),\n(217,700,l),\n(153,700,l),\n(67,0,l)\n);\n}\n);\nwidth = 529;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (270,0);\n},\n{\nname = top;\npos = (191,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(475,0,l),\n(485,80,l),\n(161,80,l),\n(237,700,l),\n(149,700,l),\n(63,0,l)\n);\n}\n);\nwidth = 524;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (304,0);\n},\n{\nname = top;\npos = (214,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(534,0,l),\n(549,126,l),\n(220,126,l),\n(291,700,l),\n(145,700,l),\n(59,0,l)\n);\n}\n);\nwidth = 579;\n}\n);\nunicode = 76;\n},\n{\nglyphname = Lacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (103,188);\nref = acutecomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (112,188);\nref = acutecomb;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (114,192);\nref = acutecomb;\n}\n);\nwidth = 579;\n}\n);\nunicode = 313;\n},\n{\nglyphname = Lcaron;\nlastChange = \"2025-01-08 14:20:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\nalignment = -1;\npos = (292,-4);\nref = caroncomb.alt;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\nalignment = -1;\npos = (310,-28);\nref = caroncomb.alt;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nalignment = -1;\npos = (-31,0);\nref = L;\n},\n{\nalignment = -1;\npos = (291,-30);\nref = caroncomb.alt;\n}\n);\nwidth = 579;\n}\n);\nunicode = 317;\n},\n{\nglyphname = Lcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (248,12);\nref = commaaccentcomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (225,12);\nref = commaaccentcomb;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (240,1);\nref = commaaccentcomb;\n}\n);\nwidth = 579;\n}\n);\nunicode = 315;\n},\n{\nglyphname = Ldot;\nlastChange = \"2025-01-01 08:48:18 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (238,46);\nref = periodcentered.loclCAT.case;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (224,46);\nref = periodcentered.loclCAT.case;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (264,45);\nref = periodcentered.loclCAT.case;\n}\n);\nwidth = 579;\n}\n);\nunicode = 319;\n},\n{\nglyphname = Ldotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (241,1);\nref = dotbelowcomb;\n}\n);\nwidth = 579;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (245,0);\nref = dotbelowcomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (226,0);\nref = dotbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7734;\n},\n{\nglyphname = Lmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (155,1);\nref = macronbelowcomb;\n}\n);\nwidth = 579;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (167,12);\nref = macronbelowcomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (142,12);\nref = macronbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7738;\n},\n{\nglyphname = Lslash;\nlastChange = \"2025-01-01 09:14:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(145,302,l),\n(165,310,l),\n(370,392,l),\n(356,444,l),\n(165,369,l),\n(138,358,l),\n(5,305,l),\n(18,252,l)\n);\n},\n{\npos = (11,0);\nref = L;\n}\n);\nwidth = 571;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,293,l),\n(183,304,l),\n(408,395,l),\n(389,459,l),\n(195,381,l),\n(161,368,l),\n(13,308,l),\n(34,243,l)\n);\n},\n{\npos = (25,0);\nref = L;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(168,283,l),\n(271,315,l),\n(466,394,l),\n(439,494,l),\n(289,431,l),\n(176,395,l),\n(-4,320,l),\n(22,223,l)\n);\n},\n{\npos = (43,0);\nref = L;\n}\n);\nwidth = 653;\n}\n);\nunicode = 321;\n},\n{\nglyphname = M;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(240,700,l),\n(153,700,l),\n(67,0,l),\n(127,0,l),\n(203,613,l),\n(364,80,l),\n(434,80,l),\n(727,613,l),\n(651,0,l),\n(711,0,l),\n(797,700,l),\n(710,700,l),\n(407,139,l)\n);\n}\n);\nwidth = 840;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(272,700,l),\n(150,700,l),\n(64,0,l),\n(152,0,l),\n(221,562,l),\n(366,62,l),\n(461,62,l),\n(723,562,l),\n(654,0,l),\n(742,0,l),\n(828,700,l),\n(706,700,l),\n(423,164,l)\n);\n}\n);\nwidth = 868;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(317,700,l),\n(145,700,l),\n(59,0,l),\n(205,0,l),\n(257,429,l),\n(364,62,l),\n(499,62,l),\n(691,430,l),\n(638,0,l),\n(784,0,l),\n(870,700,l),\n(699,700,l),\n(452,244,l)\n);\n}\n);\nwidth = 905;\n}\n);\nunicode = 77;\n},\n{\nglyphname = N;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (309,0);\n},\n{\nname = top;\npos = (395,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(129,0,l),\n(210,656,l),\n(179,656,l),\n(475,0,l),\n(550,0,l),\n(636,700,l),\n(576,700,l),\n(496,44,l),\n(527,44,l),\n(231,700,l),\n(155,700,l),\n(69,0,l)\n);\n}\n);\nwidth = 681;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (321,0);\n},\n{\nname = top;\npos = (407,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(153,0,l),\n(230,623,l),\n(200,623,l),\n(463,0,l),\n(572,0,l),\n(658,700,l),\n(570,700,l),\n(494,77,l),\n(524,77,l),\n(273,700,l),\n(151,700,l),\n(65,0,l)\n);\n}\n);\nwidth = 699;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (342,0);\n},\n{\nname = top;\npos = (425,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(199,0,l),\n(261,504,l),\n(229,504,l),\n(474,0,l),\n(618,0,l),\n(704,700,l),\n(558,700,l),\n(497,204,l),\n(529,204,l),\n(295,700,l),\n(139,700,l),\n(53,0,l)\n);\n}\n);\nwidth = 732;\n}\n);\nunicode = 78;\n},\n{\nglyphname = Nacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (313,188);\nref = acutecomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (328,188);\nref = acutecomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (325,192);\nref = acutecomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 323;\n},\n{\nglyphname = Ncaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (229,188);\nref = caroncomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (223,188);\nref = caroncomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (213,192);\nref = caroncomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 327;\n},\n{\nglyphname = Ncommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (280,12);\nref = commaaccentcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (276,12);\nref = commaaccentcomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (278,1);\nref = commaaccentcomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 325;\n},\n{\nglyphname = Ndotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (279,1);\nref = dotbelowcomb;\n}\n);\nwidth = 732;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (277,0);\nref = dotbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (277,0);\nref = dotbelowcomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 7750;\n},\n{\nglyphname = Nhookleft;\nlastChange = \"2025-01-01 09:35:24 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (257,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(224,-230,o),\n(291,-169,o),\n(302,-76,c),\n(367,451,l),\n(587,0,l),\n(730,0,l),\n(816,700,l),\n(671,700,l),\n(616,258,l),\n(408,700,l),\n(252,700,l),\n(162,-28,l),\n(158,-66,o),\n(133,-90,o),\n(97,-90,cs),\n(84,-90,o),\n(59,-89,o),\n(43,-86,c),\n(26,-222,l),\n(42,-227,o),\n(80,-230,o),\n(96,-230,cs)\n);\n}\n);\nwidth = 845;\n},\n{\nguides = (\n{\npos = (680,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(181,-230,o),\n(226,-179,o),\n(237,-86,cs),\n(321,604,l),\n(605,0,l),\n(660,0,l),\n(746,700,l),\n(687,700,l),\n(617,128,l),\n(349,700,l),\n(273,700,l),\n(176,-85,ls),\n(167,-158,o),\n(142,-176,o),\n(94,-176,cs),\n(81,-176,o),\n(64,-175,o),\n(48,-172,c),\n(42,-222,l),\n(58,-227,o),\n(80,-230,o),\n(96,-230,cs)\n);\n}\n);\nwidth = 791;\n},\n{\nguides = (\n{\npos = (429,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(202,-230,o),\n(249,-179,o),\n(261,-86,c),\n(341,571,l),\n(588,0,l),\n(675,0,l),\n(761,700,l),\n(673,700,l),\n(609,176,l),\n(398,700,l),\n(269,700,l),\n(175,-85,l),\n(169,-139,o),\n(140,-158,o),\n(93,-158,cs),\n(80,-158,o),\n(62,-157,o),\n(46,-154,c),\n(38,-222,l),\n(54,-227,o),\n(77,-230,o),\n(93,-230,cs)\n);\n}\n);\nwidth = 802;\n}\n);\nunicode = 413;\n},\n{\nglyphname = Nmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (193,1);\nref = macronbelowcomb;\n}\n);\nwidth = 732;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (199,12);\nref = macronbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (193,12);\nref = macronbelowcomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 7752;\n},\n{\nglyphname = Ntilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (202,188);\nref = tildecomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (221,188);\nref = tildecomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (195,192);\nref = tildecomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 209;\n},\n{\nglyphname = Eng;\nlastChange = \"2025-01-01 09:35:22 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (342,0);\n},\n{\nname = top;\npos = (425,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(529,-230,o),\n(596,-169,o),\n(607,-76,cs),\n(703,700,l),\n(558,700,l),\n(503,258,l),\n(295,700,l),\n(139,700,l),\n(53,0,l),\n(199,0,l),\n(254,451,l),\n(474,0,l),\n(470,-28,ls),\n(466,-66,o),\n(441,-90,o),\n(405,-90,cs),\n(392,-90,o),\n(364,-89,o),\n(348,-86,c),\n(331,-222,l),\n(347,-227,o),\n(385,-230,o),\n(401,-230,cs)\n);\n}\n);\nwidth = 733;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (302,0);\n},\n{\nname = top;\npos = (388,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(476,-232,o),\n(520,-181,o),\n(531,-88,cs),\n(628,700,l),\n(569,700,l),\n(499,130,l),\n(231,700,l),\n(155,700,l),\n(69,0,l),\n(129,0,l),\n(203,604,l),\n(488,2,l),\n(476,-87,ls),\n(466,-160,o),\n(436,-178,o),\n(388,-178,cs),\n(375,-178,o),\n(359,-177,o),\n(343,-174,c),\n(337,-224,l),\n(353,-229,o),\n(375,-232,o),\n(391,-232,cs)\n);\n}\n);\nwidth = 674;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (306,0);\n},\n{\nname = top;\npos = (392,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(488,-230,o),\n(535,-179,o),\n(547,-86,cs),\n(643,700,l),\n(555,700,l),\n(491,176,l),\n(280,700,l),\n(151,700,l),\n(65,0,l),\n(153,0,l),\n(223,571,l),\n(470,0,l),\n(461,-85,ls),\n(455,-139,o),\n(426,-158,o),\n(379,-158,cs),\n(366,-158,o),\n(348,-157,o),\n(332,-154,c),\n(324,-222,l),\n(340,-227,o),\n(363,-230,o),\n(379,-230,cs)\n);\n}\n);\nwidth = 684;\n}\n);\nunicode = 330;\n},\n{\nglyphname = O;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (331,-11);\n},\n{\nname = top;\npos = (420,713);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(552,-12,o),\n(661,157,o),\n(684,349,cs),\n(708,543,o),\n(641,712,o),\n(425,712,cs),\n(209,712,o),\n(100,543,o),\n(76,349,cs),\n(53,157,o),\n(120,-12,o),\n(336,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,44,o),\n(114,154,o),\n(138,349,cs),\n(162,540,o),\n(271,656,o),\n(418,656,cs),\n(565,656,o),\n(646,540,o),\n(622,349,cs),\n(598,154,o),\n(490,44,o),\n(343,44,cs)\n);\n}\n);\nwidth = 736;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (336,-11);\n},\n{\nname = top;\npos = (425,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(560,-11,o),\n(674,158,o),\n(697,351,cs),\n(721,544,o),\n(649,713,o),\n(429,713,cs),\n(209,713,o),\n(95,544,o),\n(71,351,cs),\n(48,158,o),\n(120,-11,o),\n(340,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(207,69,o),\n(144,196,o),\n(163,351,cs),\n(182,506,o),\n(276,633,o),\n(419,633,cs),\n(572,633,o),\n(624,506,o),\n(605,351,cs),\n(586,196,o),\n(503,69,o),\n(350,69,cs)\n);\n}\n);\nwidth = 744;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (342,-11);\n},\n{\nname = top;\npos = (431,713);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(571,-11,o),\n(697,148,o),\n(722,351,cs),\n(747,554,o),\n(660,713,o),\n(436,713,cs),\n(212,713,o),\n(85,554,o),\n(60,351,cs),\n(35,148,o),\n(123,-11,o),\n(347,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(249,115,o),\n(195,196,o),\n(214,351,cs),\n(233,506,o),\n(307,587,o),\n(421,587,cs),\n(543,587,o),\n(587,506,o),\n(568,351,cs),\n(549,196,o),\n(485,115,o),\n(363,115,cs)\n);\n}\n);\nwidth = 758;\n}\n);\nunicode = 79;\n},\n{\nglyphname = Oacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (338,201);\nref = acutecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (346,201);\nref = acutecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (331,205);\nref = acutecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 211;\n},\n{\nglyphname = Obreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (243,201);\nref = brevecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (250,201);\nref = brevecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (231,205);\nref = brevecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 334;\n},\n{\nglyphname = Ocircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (254,201);\nref = circumflexcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (236,201);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (221,205);\nref = circumflexcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 212;\n},\n{\nglyphname = Ocircumflexacute;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (136,201);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (145,213);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (251,205);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7888;\n},\n{\nglyphname = Ocircumflexdotbelow;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (299,-11);\nref = dotbelowcomb;\n},\n{\npos = (254,201);\nref = circumflexcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (292,-11);\nref = dotbelowcomb;\n},\n{\npos = (236,201);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (279,-10);\nref = dotbelowcomb;\n},\n{\npos = (221,205);\nref = circumflexcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7896;\n},\n{\nglyphname = Ocircumflexgrave;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (278,201);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (269,213);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (251,206);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7890;\n},\n{\nglyphname = Ocircumflexhookabove;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (281,201);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (272,213);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (250,205);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7892;\n},\n{\nglyphname = Ocircumflextilde;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (286,213);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (276,213);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (226,205);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7894;\n},\n{\nglyphname = Odieresis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (223,201);\nref = dieresiscomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (228,201);\nref = dieresiscomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (185,205);\nref = dieresiscomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 214;\n},\n{\nglyphname = Odotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (299,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (292,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (279,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7884;\n},\n{\nglyphname = Ograve;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (224,201);\nref = gravecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (230,201);\nref = gravecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (201,205);\nref = gravecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 210;\n},\n{\nglyphname = Ohookabove;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (339,213);\nref = hookabovecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (325,213);\nref = hookabovecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (335,205);\nref = hookabovecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7886;\n},\n{\nglyphname = Ohorn;\nkernLeft = O;\nlastChange = \"2025-01-01 09:35:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(660,627,o),\n(754,705,o),\n(720,827,c),\n(657,808,l),\n(679,738,o),\n(643,676,o),\n(579,676,cs),\n(549,676,o),\n(520,691,o),\n(491,698,c),\n(484,641,l),\n(573,627,l)\n);\n},\n{\npos = (-31,0);\nref = O;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(687,612,o),\n(761,708,o),\n(727,830,c),\n(645,808,l),\n(666,749,o),\n(648,679,o),\n(580,679,cs),\n(544,679,o),\n(517,695,o),\n(494,699,c),\n(485,625,l),\n(553,612,l)\n);\n},\n{\npos = (-31,0);\nref = O;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(729,601,o),\n(827,710,o),\n(790,845,c),\n(672,814,l),\n(694,755,o),\n(681,682,o),\n(600,682,cs),\n(564,682,o),\n(542,696,o),\n(489,704,c),\n(479,621,l),\n(596,601,l)\n);\n},\n{\npos = (-31,0);\nref = O;\n}\n);\nwidth = 775;\n}\n);\nunicode = 416;\n},\n{\nglyphname = Ohornacute;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (307,201);\nref = acutecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (315,201);\nref = acutecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (300,205);\nref = acutecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7898;\n},\n{\nglyphname = Ohorndotbelow;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (268,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (261,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (248,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7906;\n},\n{\nglyphname = Ohorngrave;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (193,201);\nref = gravecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (199,201);\nref = gravecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (170,205);\nref = gravecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7900;\n},\n{\nglyphname = Ohornhookabove;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (308,213);\nref = hookabovecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (294,213);\nref = hookabovecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (304,205);\nref = hookabovecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7902;\n},\n{\nglyphname = Ohorntilde;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (196,201);\nref = tildecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (208,201);\nref = tildecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (170,205);\nref = tildecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7904;\n},\n{\nglyphname = Ohungarumlaut;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (269,201);\nref = hungarumlautcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (270,201);\nref = hungarumlautcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (234,205);\nref = hungarumlautcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 336;\n},\n{\nglyphname = Omacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (255,201);\nref = macroncomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (218,201);\nref = macroncomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (228,202);\nref = macroncomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 332;\n},\n{\nglyphname = Oopen;\nlastChange = \"2025-01-08 14:16:04 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nangle = 180;\npos = (688,700);\nref = C;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nangle = 180;\npos = (714,700);\nref = C;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nangle = 180;\npos = (708,700);\nref = C;\n}\n);\nwidth = 684;\n}\n);\nunicode = 390;\n},\n{\nglyphname = Oslash;\nlastChange = \"2025-01-01 09:34:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (21,0);\nref = O;\n},\n{\nclosed = 1;\nnodes = (\n(68,-12,l),\n(807,682,l),\n(766,720,l),\n(30,31,l)\n);\n}\n);\nwidth = 827;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (31,0);\nref = O;\n},\n{\nclosed = 1;\nnodes = (\n(65,-12,l),\n(828,656,l),\n(775,712,l),\n(16,47,l)\n);\n}\n);\nwidth = 855;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (33,0);\nref = O;\n},\n{\nclosed = 1;\nnodes = (\n(90,-12,l),\n(857,619,l),\n(775,712,l),\n(13,85,l)\n);\n}\n);\nwidth = 874;\n}\n);\nunicode = 216;\n},\n{\nglyphname = Oslashacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Oslash;\n},\n{\npos = (359,201);\nref = acutecomb;\n}\n);\nwidth = 827;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Oslash;\n},\n{\npos = (377,201);\nref = acutecomb;\n}\n);\nwidth = 855;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Oslash;\n},\n{\npos = (364,205);\nref = acutecomb;\n}\n);\nwidth = 874;\n}\n);\nunicode = 510;\n},\n{\nglyphname = Otilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (227,201);\nref = tildecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (239,201);\nref = tildecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (201,205);\nref = tildecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 213;\n},\n{\nglyphname = OE;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (459,0);\n},\n{\nname = top;\npos = (545,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(888,0,l),\n(895,56,l),\n(561,56,l),\n(595,332,l),\n(867,332,l),\n(874,388,l),\n(602,388,l),\n(633,644,l),\n(967,644,l),\n(974,700,l),\n(452,700,ls),\n(226,700,o),\n(102,560,o),\n(76,349,cs),\n(51,141,o),\n(140,0,o),\n(366,0,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,56,o),\n(119,192,o),\n(138,350,cs),\n(158,507,o),\n(248,644,o),\n(442,644,cs),\n(568,644,l),\n(496,56,l),\n(370,56,ls)\n);\n}\n);\nwidth = 979;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (460,0);\n},\n{\nname = top;\npos = (546,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(893,0,l),\n(903,80,l),\n(580,80,l),\n(610,320,l),\n(872,320,l),\n(881,398,l),\n(619,398,l),\n(646,620,l),\n(969,620,l),\n(979,700,l),\n(453,700,ls),\n(221,700,o),\n(97,560,o),\n(71,349,cs),\n(46,141,o),\n(135,0,o),\n(367,0,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(211,80,o),\n(144,192,o),\n(163,350,cs),\n(183,507,o),\n(277,620,o),\n(440,620,cs),\n(550,620,l),\n(484,80,l),\n(374,80,ls)\n);\n}\n);\nwidth = 981;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (456,0);\n},\n{\nname = top;\npos = (542,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(901,0,l),\n(916,126,l),\n(605,126,l),\n(626,297,l),\n(886,297,l),\n(902,423,l),\n(642,423,l),\n(660,574,l),\n(971,574,l),\n(987,700,l),\n(440,700,ls),\n(210,700,o),\n(85,554,o),\n(60,349,cs),\n(35,147,o),\n(124,0,o),\n(354,0,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(257,126,o),\n(195,198,o),\n(214,350,cs),\n(232,501,o),\n(312,574,o),\n(421,574,cs),\n(526,574,l),\n(471,126,l),\n(366,126,ls)\n);\n}\n);\nwidth = 974;\n}\n);\nunicode = 338;\n},\n{\nglyphname = P;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(165,262,l),\n(333,262,ls),\n(471,262,o),\n(559,350,o),\n(574,472,cs),\n(592,615,o),\n(516,700,o),\n(389,700,cs),\n(153,700,l),\n(67,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(210,644,l),\n(380,644,ls),\n(474,644,o),\n(525,578,o),\n(512,472,cs),\n(500,375,o),\n(436,318,o),\n(339,318,cs),\n(170,318,l)\n);\n}\n);\nwidth = 585;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(183,252,l),\n(344,252,l),\n(485,252,o),\n(578,342,o),\n(594,472,cs),\n(612,615,o),\n(531,700,o),\n(401,700,cs),\n(150,700,l),\n(64,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,621,l),\n(390,621,ls),\n(463,621,o),\n(517,573,o),\n(504,472,cs),\n(492,376,o),\n(427,332,o),\n(353,332,cs),\n(193,332,l)\n);\n}\n);\nwidth = 602;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,-1,l),\n(235,231,l),\n(385,231,ls),\n(529,231,o),\n(628,336,o),\n(644,465,cs),\n(662,609,o),\n(578,701,o),\n(445,701,cs),\n(145,701,l),\n(59,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,575,l),\n(404,575,ls),\n(467,575,o),\n(498,527,o),\n(490,467,cs),\n(483,410,o),\n(442,357,o),\n(378,357,cs),\n(249,357,l)\n);\n}\n);\nwidth = 638;\n}\n);\nunicode = 80;\n},\n{\nglyphname = Thorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(150,138,l),\n(318,138,ls),\n(456,138,o),\n(544,226,o),\n(559,348,cs),\n(577,491,o),\n(501,576,o),\n(374,576,cs),\n(138,576,l),\n(67,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,520,l),\n(365,520,ls),\n(459,520,o),\n(510,454,o),\n(497,348,cs),\n(485,251,o),\n(421,194,o),\n(324,194,cs),\n(155,194,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(130,512,l),\n(195,512,l),\n(218,700,l),\n(153,700,l)\n);\n}\n);\nwidth = 585;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(168,128,l),\n(329,128,l),\n(470,128,o),\n(563,218,o),\n(579,348,cs),\n(597,491,o),\n(516,576,o),\n(386,576,cs),\n(135,576,l),\n(64,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(213,497,l),\n(374,497,ls),\n(447,497,o),\n(501,449,o),\n(489,348,cs),\n(477,252,o),\n(412,208,o),\n(338,208,cs),\n(178,208,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(126,500,l),\n(212,500,l),\n(236,700,l),\n(150,700,l)\n);\n}\n);\nwidth = 602;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,-1,l),\n(222,122,l),\n(372,122,ls),\n(516,122,o),\n(615,227,o),\n(631,356,cs),\n(648,500,o),\n(565,592,o),\n(432,592,cs),\n(132,592,l),\n(59,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(262,466,l),\n(391,466,ls),\n(454,466,o),\n(484,418,o),\n(477,358,cs),\n(470,301,o),\n(428,248,o),\n(364,248,cs),\n(235,248,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(116,462,l),\n(264,462,l),\n(293,700,l),\n(145,700,l)\n);\n}\n);\nwidth = 638;\n}\n);\nunicode = 222;\n},\n{\nglyphname = Q;\nkernLeft = O;\nkernRight = Q;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(552,-12,o),\n(661,157,o),\n(684,349,cs),\n(708,543,o),\n(641,712,o),\n(425,712,cs),\n(209,712,o),\n(100,543,o),\n(76,349,cs),\n(53,157,o),\n(120,-12,o),\n(336,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(648,-33,l),\n(437,256,l),\n(389,220,l),\n(599,-71,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,44,o),\n(114,154,o),\n(138,349,cs),\n(162,540,o),\n(271,656,o),\n(418,656,cs),\n(565,656,o),\n(646,540,o),\n(622,349,cs),\n(598,154,o),\n(490,44,o),\n(343,44,cs)\n);\n}\n);\nwidth = 745;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(560,-11,o),\n(674,158,o),\n(697,351,cs),\n(721,544,o),\n(649,713,o),\n(429,713,cs),\n(209,713,o),\n(95,544,o),\n(71,351,cs),\n(48,158,o),\n(120,-11,o),\n(340,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(666,-34,l),\n(439,272,l),\n(379,227,l),\n(603,-82,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(197,69,o),\n(144,196,o),\n(163,351,cs),\n(182,506,o),\n(266,633,o),\n(419,633,cs),\n(572,633,o),\n(624,506,o),\n(605,351,cs),\n(586,196,o),\n(503,69,o),\n(350,69,cs)\n);\n}\n);\nwidth = 752;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(565,-11,o),\n(686,158,o),\n(710,351,cs),\n(734,544,o),\n(654,713,o),\n(430,713,cs),\n(206,713,o),\n(84,544,o),\n(60,351,cs),\n(36,158,o),\n(117,-11,o),\n(341,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(676,-30,l),\n(436,299,l),\n(338,226,l),\n(577,-105,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(213,111,o),\n(176,224,o),\n(192,351,cs),\n(206,463,o),\n(266,592,o),\n(416,592,cs),\n(566,592,o),\n(590,463,o),\n(576,351,cs),\n(560,224,o),\n(506,111,o),\n(356,111,cs)\n);\n}\n);\nwidth = 734;\n}\n);\nunicode = 81;\n},\n{\nglyphname = R;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (274,0);\n},\n{\nname = top;\npos = (329,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(169,292,l),\n(321,292,ls),\n(454,292,o),\n(544,395,o),\n(555,488,cs),\n(573,631,o),\n(495,700,o),\n(373,700,cs),\n(153,700,l),\n(67,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(532,0,l),\n(392,306,l),\n(331,292,l),\n(462,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(210,644,l),\n(364,644,ls),\n(453,644,o),\n(506,594,o),\n(493,488,cs),\n(485,420,o),\n(418,348,o),\n(326,348,cs),\n(174,348,l)\n);\n}\n);\nwidth = 608;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (297,0);\n},\n{\nname = top;\npos = (383,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(188,290,l),\n(331,290,ls),\n(475,290,o),\n(579,376,o),\n(594,498,cs),\n(611,631,o),\n(529,700,o),\n(407,700,cs),\n(150,700,l),\n(64,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(571,0,l),\n(424,319,l),\n(338,292,l),\n(469,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(228,620,l),\n(391,620,ls),\n(461,620,o),\n(514,573,o),\n(504,498,cs),\n(495,422,o),\n(431,370,o),\n(361,370,cs),\n(198,370,l)\n);\n}\n);\nwidth = 644;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (286,0);\n},\n{\nname = top;\npos = (372,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,-1,l),\n(238,251,l),\n(388,251,ls),\n(532,251,o),\n(629,341,o),\n(646,478,cs),\n(663,622,o),\n(578,701,o),\n(445,701,cs),\n(145,701,l),\n(59,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(636,0,l),\n(493,283,l),\n(332,269,l),\n(463,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,575,l),\n(404,575,ls),\n(467,575,o),\n(498,533,o),\n(492,480,cs),\n(483,410,o),\n(444,377,o),\n(380,377,cs),\n(251,377,l)\n);\n}\n);\nwidth = 699;\n}\n);\nunicode = 82;\n},\n{\nglyphname = Racute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (247,188);\nref = acutecomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (304,188);\nref = acutecomb;\n}\n);\nwidth = 644;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (272,192);\nref = acutecomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 340;\n},\n{\nglyphname = Rcaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (163,188);\nref = caroncomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (199,188);\nref = caroncomb;\n}\n);\nwidth = 644;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (160,192);\nref = caroncomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 344;\n},\n{\nglyphname = Rcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (245,12);\nref = commaaccentcomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (252,12);\nref = commaaccentcomb;\n}\n);\nwidth = 644;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (222,1);\nref = commaaccentcomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 342;\n},\n{\nglyphname = Rdotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (223,1);\nref = dotbelowcomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (242,0);\nref = dotbelowcomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (253,0);\nref = dotbelowcomb;\n}\n);\nwidth = 644;\n}\n);\nunicode = 7770;\n},\n{\nglyphname = Rmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (137,1);\nref = macronbelowcomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (164,12);\nref = macronbelowcomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (169,12);\nref = macronbelowcomb;\n}\n);\nwidth = 644;\n}\n);\nunicode = 7774;\n},\n{\nglyphname = S;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (275,-12);\n},\n{\nname = top;\npos = (361,712);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,-12,o),\n(519,58,o),\n(536,195,cs),\n(566,437,o),\n(139,334,o),\n(162,521,cs),\n(171,591,o),\n(235,656,o),\n(342,656,cs),\n(460,656,o),\n(501,580,o),\n(501,513,c),\n(567,513,l),\n(573,603,o),\n(501,712,o),\n(356,712,cs),\n(199,712,o),\n(112,618,o),\n(100,516,cs),\n(68,259,o),\n(497,382,o),\n(473,186,cs),\n(464,114,o),\n(401,44,o),\n(280,44,cs),\n(157,44,o),\n(111,121,o),\n(107,214,c),\n(40,214,l),\n(38,99,o),\n(109,-12,o),\n(273,-12,cs)\n);\n}\n);\nwidth = 596;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (281,-12);\n},\n{\nname = top;\npos = (367,712);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,-12,o),\n(535,58,o),\n(552,195,cs),\n(584,457,o),\n(177,344,o),\n(198,521,cs),\n(207,591,o),\n(280,632,o),\n(350,632,cs),\n(445,632,o),\n(486,572,o),\n(488,513,c),\n(581,513,l),\n(587,603,o),\n(520,712,o),\n(367,712,cs),\n(207,712,o),\n(118,618,o),\n(106,516,cs),\n(73,246,o),\n(482,371,o),\n(459,186,cs),\n(450,114,o),\n(374,68,o),\n(291,68,cs),\n(196,68,o),\n(148,129,o),\n(145,214,c),\n(48,214,l),\n(46,99,o),\n(111,-12,o),\n(281,-12,cs)\n);\n}\n);\nwidth = 597;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (281,-5);\n},\n{\nname = top;\npos = (370,712);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,-12,o),\n(552,63,o),\n(568,200,cs),\n(600,459,o),\n(228,386,o),\n(243,509,cs),\n(251,568,o),\n(310,582,o),\n(354,582,cs),\n(410,582,o),\n(444,554,o),\n(447,505,c),\n(600,505,l),\n(606,595,o),\n(548,712,o),\n(370,712,cs),\n(193,712,o),\n(102,606,o),\n(90,504,cs),\n(57,234,o),\n(431,338,o),\n(413,186,cs),\n(407,142,o),\n(357,118,o),\n(296,118,cs),\n(240,118,o),\n(192,147,o),\n(187,222,c),\n(31,222,l),\n(30,107,o),\n(86,-12,o),\n(280,-12,cs)\n);\n}\n);\nwidth = 611;\n}\n);\nunicode = 83;\n},\n{\nglyphname = Sacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (279,200);\nref = acutecomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (288,200);\nref = acutecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (270,204);\nref = acutecomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 346;\n},\n{\nglyphname = Scaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (195,200);\nref = caroncomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (183,200);\nref = caroncomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (158,204);\nref = caroncomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 352;\n},\n{\nglyphname = Scedilla;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (198,-14);\nref = cedillacomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (194,-14);\nref = cedillacomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (184,-4);\nref = cedillacomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 350;\n},\n{\nglyphname = Scircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (195,200);\nref = circumflexcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (178,200);\nref = circumflexcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (160,204);\nref = circumflexcomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 348;\n},\n{\nglyphname = Scommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (246,0);\nref = commaaccentcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (236,0);\nref = commaaccentcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (217,-4);\nref = commaaccentcomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 536;\n},\n{\nglyphname = Germandbls;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(129,0,l),\n(215,700,l),\n(155,700,l),\n(69,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,98,l),\n(215,29,o),\n(284,-12,o),\n(369,-12,cs),\n(491,-12,o),\n(595,69,o),\n(610,204,cs),\n(624,320,o),\n(555,423,o),\n(401,423,c),\n(628,639,l),\n(635,700,l),\n(177,700,l),\n(170,644,l),\n(555,644,l),\n(320,423,l),\n(314,370,l),\n(371,370,ls),\n(500,370,o),\n(562,305,o),\n(550,208,cs),\n(540,124,o),\n(478,44,o),\n(376,44,cs),\n(302,44,o),\n(259,76,o),\n(239,128,c)\n);\n}\n);\nwidth = 667;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(166,0,l),\n(252,700,l),\n(164,700,l),\n(78,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,91,l),\n(236,31,o),\n(299,-12,o),\n(394,-12,cs),\n(529,-12,o),\n(620,77,o),\n(636,210,cs),\n(649,312,o),\n(581,414,o),\n(446,414,c),\n(643,615,l),\n(653,700,l),\n(229,700,l),\n(219,620,l),\n(537,620,l),\n(335,414,l),\n(327,346,l),\n(386,346,ls),\n(494,346,o),\n(555,295,o),\n(543,200,cs),\n(532,114,o),\n(472,68,o),\n(404,68,cs),\n(344,68,o),\n(312,105,o),\n(302,139,c)\n);\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(224,0,l),\n(310,700,l),\n(164,700,l),\n(78,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(270,92,l),\n(298,21,o),\n(373,-13,o),\n(460,-13,cs),\n(623,-13,o),\n(702,92,o),\n(718,218,cs),\n(731,331,o),\n(655,423,o),\n(554,423,c),\n(719,574,l),\n(735,700,l),\n(239,700,l),\n(223,574,l),\n(556,574,l),\n(391,422,l),\n(378,317,l),\n(450,317,ls),\n(525,317,o),\n(581,288,o),\n(572,217,cs),\n(565,155,o),\n(520,117,o),\n(472,117,cs),\n(435,117,o),\n(407,133,o),\n(395,166,c)\n);\n}\n);\nwidth = 760;\n}\n);\nunicode = 7838;\n},\n{\nglyphname = T;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (219,0);\n},\n{\nname = top;\npos = (305,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(251,0,l),\n(330,644,l),\n(532,644,l),\n(539,700,l),\n(71,700,l),\n(64,644,l),\n(266,644,l),\n(187,0,l)\n);\n}\n);\nwidth = 500;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (252,0);\n},\n{\nname = top;\npos = (338,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(296,0,l),\n(372,620,l),\n(561,620,l),\n(571,700,l),\n(105,700,l),\n(95,620,l),\n(284,620,l),\n(208,0,l)\n);\n}\n);\nwidth = 562;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (269,0);\n},\n{\nname = top;\npos = (351,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(338,0,l),\n(408,574,l),\n(595,574,l),\n(611,700,l),\n(95,700,l),\n(79,574,l),\n(262,574,l),\n(192,0,l)\n);\n}\n);\nwidth = 596;\n}\n);\nunicode = 84;\n},\n{\nglyphname = Tcaron;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (139,188);\nref = caroncomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (154,188);\nref = caroncomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (139,192);\nref = caroncomb;\n}\n);\nwidth = 596;\n}\n);\nunicode = 356;\n},\n{\nglyphname = Tcedilla;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (142,-2);\nref = cedillacomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (165,-2);\nref = cedillacomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (172,1);\nref = cedillacomb;\n}\n);\nwidth = 596;\n}\n);\nunicode = 354;\n},\n{\nglyphname = Tcommaaccent;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (190,12);\nref = commaaccentcomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (207,12);\nref = commaaccentcomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (205,1);\nref = commaaccentcomb;\n}\n);\nwidth = 596;\n}\n);\nunicode = 538;\n},\n{\nglyphname = Tdotbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (206,1);\nref = dotbelowcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (187,0);\nref = dotbelowcomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (208,0);\nref = dotbelowcomb;\n}\n);\nwidth = 562;\n}\n);\nunicode = 7788;\n},\n{\nglyphname = Tmacronbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (120,1);\nref = macronbelowcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (109,12);\nref = macronbelowcomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (124,12);\nref = macronbelowcomb;\n}\n);\nwidth = 562;\n}\n);\nunicode = 7790;\n},\n{\nglyphname = U;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (304,-12);\n},\n{\nname = top;\npos = (393,713);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(451,-12,o),\n(557,94,o),\n(579,275,cs),\n(631,701,l),\n(571,701,l),\n(519,275,ls),\n(500,121,o),\n(414,44,o),\n(308,44,cs),\n(204,44,o),\n(134,121,o),\n(153,275,cs),\n(205,701,l),\n(145,701,l),\n(93,275,ls),\n(71,94,o),\n(152,-12,o),\n(305,-12,cs)\n);\n}\n);\nwidth = 666;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (310,-12);\n},\n{\nname = top;\npos = (399,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(477,-12,o),\n(575,98,o),\n(597,275,cs),\n(649,701,l),\n(561,701,l),\n(509,275,ls),\n(492,139,o),\n(410,73,o),\n(318,73,cs),\n(222,73,o),\n(160,139,o),\n(177,275,cs),\n(229,701,l),\n(141,701,l),\n(89,275,ls),\n(67,98,o),\n(150,-12,o),\n(312,-12,cs)\n);\n}\n);\nwidth = 680;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (318,-12);\n},\n{\nname = top;\npos = (406,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(494,-12,o),\n(607,98,o),\n(629,275,cs),\n(681,701,l),\n(535,701,l),\n(483,275,ls),\n(471,184,o),\n(417,118,o),\n(330,118,cs),\n(239,118,o),\n(205,184,o),\n(217,275,cs),\n(269,701,l),\n(123,701,l),\n(71,275,ls),\n(49,98,o),\n(145,-12,o),\n(318,-12,cs)\n);\n}\n);\nwidth = 694;\n}\n);\nunicode = 85;\n},\n{\nglyphname = Uacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (311,201);\nref = acutecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (320,201);\nref = acutecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (306,192);\nref = acutecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 218;\n},\n{\nglyphname = Ubreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (216,201);\nref = brevecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (224,201);\nref = brevecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (206,192);\nref = brevecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 364;\n},\n{\nglyphname = Ucircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (227,201);\nref = circumflexcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (210,201);\nref = circumflexcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (196,192);\nref = circumflexcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 219;\n},\n{\nglyphname = Udieresis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (196,201);\nref = dieresiscomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (202,201);\nref = dieresiscomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (160,192);\nref = dieresiscomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 220;\n},\n{\nglyphname = Udotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (272,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (266,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (255,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 7908;\n},\n{\nglyphname = Ugrave;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (197,201);\nref = gravecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (204,201);\nref = gravecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (176,192);\nref = gravecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 217;\n},\n{\nglyphname = Uhookabove;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (312,213);\nref = hookabovecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (299,213);\nref = hookabovecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (310,192);\nref = hookabovecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 7910;\n},\n{\nglyphname = Uhorn;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2025-01-01 09:15:51 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = U;\n},\n{\nclosed = 1;\nnodes = (\n(679,652,o),\n(773,730,o),\n(739,852,c),\n(676,833,l),\n(698,763,o),\n(662,701,o),\n(598,701,c),\n(592,652,l)\n);\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = U;\n},\n{\nclosed = 1;\nnodes = (\n(733,647,o),\n(805,730,o),\n(771,852,c),\n(688,830,l),\n(710,771,o),\n(697,701,o),\n(616,701,c),\n(610,647,l)\n);\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = U;\n},\n{\nclosed = 1;\nnodes = (\n(769,620,o),\n(870,729,o),\n(833,864,c),\n(715,833,l),\n(737,774,o),\n(727,701,o),\n(646,701,c),\n(636,620,l)\n);\n}\n);\nwidth = 777;\n}\n);\nunicode = 431;\n},\n{\nglyphname = Uhornacute;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (280,201);\nref = acutecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (289,201);\nref = acutecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (275,192);\nref = acutecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7912;\n},\n{\nglyphname = Uhorndotbelow;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (241,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (235,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (224,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7920;\n},\n{\nglyphname = Uhorngrave;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (166,201);\nref = gravecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (173,201);\nref = gravecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (145,192);\nref = gravecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7914;\n},\n{\nglyphname = Uhornhookabove;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (281,213);\nref = hookabovecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (268,213);\nref = hookabovecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (279,192);\nref = hookabovecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7916;\n},\n{\nglyphname = Uhorntilde;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (169,201);\nref = tildecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (182,201);\nref = tildecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (145,192);\nref = tildecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7918;\n},\n{\nglyphname = Uhungarumlaut;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (242,201);\nref = hungarumlautcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (244,201);\nref = hungarumlautcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (209,192);\nref = hungarumlautcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 368;\n},\n{\nglyphname = Umacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (228,201);\nref = macroncomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (192,201);\nref = macroncomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (203,189);\nref = macroncomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 362;\n},\n{\nglyphname = Uogonek;\nlastChange = \"2025-01-01 09:07:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (245,3);\nref = ogonekcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (259,0);\nref = ogonekcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (278,3);\nref = ogonekcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 370;\n},\n{\nglyphname = Uring;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (236,201);\nref = ringcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (236,201);\nref = ringcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (230,192);\nref = ringcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 366;\n},\n{\nglyphname = Utilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (200,201);\nref = tildecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (213,201);\nref = tildecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (176,192);\nref = tildecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 360;\n},\n{\nglyphname = V;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(226,0,l),\n(288,0,l),\n(134,700,l),\n(63,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(230,0,l),\n(288,0,l),\n(623,700,l),\n(559,700,l)\n);\n}\n);\nwidth = 579;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(222,0,l),\n(308,0,l),\n(161,700,l),\n(63,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(228,0,l),\n(308,0,l),\n(638,700,l),\n(552,700,l)\n);\n}\n);\nwidth = 590;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(216,0,l),\n(366,0,l),\n(215,700,l),\n(57,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(248,0,l),\n(386,0,l),\n(716,700,l),\n(564,700,l)\n);\n}\n);\nwidth = 663;\n}\n);\nunicode = 86;\n},\n{\nglyphname = W;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (443,0);\n},\n{\nname = top;\npos = (529,700);\n}\n);\nguides = (\n{\nangle = 270;\npos = (268,658);\n},\n{\nangle = 270;\npos = (474,649);\n},\n{\nangle = 270;\npos = (695,658);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(274,0,l),\n(533,638,l),\n(516,638,l),\n(622,0,l),\n(701,0,l),\n(981,700,l),\n(918,700,l),\n(662,48,l),\n(678,48,l),\n(578,700,l),\n(495,700,l),\n(235,48,l),\n(251,48,l),\n(157,700,l),\n(87,700,l),\n(193,0,l)\n);\n}\n);\nwidth = 958;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (438,0);\n},\n{\nname = top;\npos = (533,700);\n}\n);\nguides = (\n{\nangle = 89.2931;\npos = (265,413);\n},\n{\nangle = 89.2931;\npos = (474,411);\n},\n{\nangle = 89.2931;\npos = (696,411);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(287,0,l),\n(535,616,l),\n(509,616,l),\n(605,0,l),\n(720,0,l),\n(981,700,l),\n(888,700,l),\n(656,59,l),\n(685,59,l),\n(587,700,l),\n(477,700,l),\n(223,59,l),\n(252,59,l),\n(176,700,l),\n(83,700,l),\n(172,0,l)\n);\n}\n);\nwidth = 954;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (460,0);\n},\n{\nname = top;\npos = (546,700);\n}\n);\nguides = (\n{\nangle = 270;\npos = (287,528);\n},\n{\nangle = 270;\npos = (491,528);\n},\n{\nangle = 270;\npos = (696,528);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(331,0,l),\n(547,567,l),\n(511,567,l),\n(591,0,l),\n(755,0,l),\n(1022,700,l),\n(865,700,l),\n(662,129,l),\n(702,129,l),\n(628,700,l),\n(464,700,l),\n(252,129,l),\n(291,129,l),\n(228,700,l),\n(71,700,l),\n(167,0,l)\n);\n}\n);\nwidth = 983;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"61F56607-383A-4625-9FCC-44CDCF2F703C\";\nname = \"14 Jul 24 at 12:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(293,0,l),\n(463,569,l),\n(633,0,l),\n(748,0,l),\n(898,700,l),\n(805,700,l),\n(688,116,l),\n(517,700,l),\n(409,700,l),\n(238,116,l),\n(121,700,l),\n(28,700,l),\n(178,0,l)\n);\n}\n);\nwidth = 926;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"5ACD06B8-073E-40FC-B562-77ADC4AD2B58\";\nname = \"14 Jul 24 at 12:35\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(332,0,l),\n(168,0,l),\n(18,700,l),\n(175,700,l),\n(262,213,l),\n(408,700,l),\n(556,700,l),\n(702,213,l),\n(789,700,l),\n(946,700,l),\n(796,0,l),\n(632,0,l),\n(482,485,l)\n);\n}\n);\nwidth = 964;\n}\n);\nunicode = 87;\n},\n{\nglyphname = Wacute;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (447,188);\nref = acutecomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (454,188);\nref = acutecomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (446,192);\nref = acutecomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 7810;\n},\n{\nglyphname = Wcircumflex;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (363,188);\nref = circumflexcomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (344,188);\nref = circumflexcomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (336,192);\nref = circumflexcomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 372;\n},\n{\nglyphname = Wdieresis;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (332,188);\nref = dieresiscomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (336,188);\nref = dieresiscomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (300,192);\nref = dieresiscomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 7812;\n},\n{\nglyphname = Wgrave;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (333,188);\nref = gravecomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (338,188);\nref = gravecomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (316,192);\nref = gravecomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 7808;\n},\n{\nglyphname = X;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(542,-1,l),\n(167,699,l),\n(96,699,l),\n(472,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(59,-1,l),\n(605,699,l),\n(534,699,l),\n(-11,-1,l)\n);\n}\n);\nwidth = 593;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(549,0,l),\n(182,700,l),\n(81,700,l),\n(449,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(84,0,l),\n(624,700,l),\n(524,700,l),\n(-15,0,l)\n);\n}\n);\nwidth = 596;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(605,0,l),\n(221,700,l),\n(62,700,l),\n(447,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(689,700,l),\n(530,700,l),\n(-25,0,l)\n);\n}\n);\nwidth = 642;\n}\n);\nunicode = 88;\n},\n{\nglyphname = Y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (255,0);\n},\n{\nname = top;\npos = (341,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(286,0,l),\n(319,294,l),\n(613,700,l),\n(546,700,l),\n(298,350,l),\n(135,700,l),\n(61,700,l),\n(262,294,l),\n(223,0,l)\n);\n}\n);\nwidth = 564;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (263,0);\n},\n{\nname = top;\npos = (349,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(308,0,l),\n(341,294,l),\n(632,700,l),\n(539,700,l),\n(308,375,l),\n(160,700,l),\n(60,700,l),\n(259,294,l),\n(220,0,l)\n);\n}\n);\nwidth = 582;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (293,0);\n},\n{\nname = top;\npos = (378,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(366,0,l),\n(398,289,l),\n(700,700,l),\n(542,700,l),\n(342,411,l),\n(216,700,l),\n(55,700,l),\n(257,289,l),\n(219,0,l)\n);\n}\n);\nwidth = 645;\n}\n);\nunicode = 89;\n},\n{\nglyphname = Yacute;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (259,188);\nref = acutecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (270,188);\nref = acutecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (278,192);\nref = acutecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 221;\n},\n{\nglyphname = Ycircumflex;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (175,188);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (160,188);\nref = circumflexcomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (168,192);\nref = circumflexcomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 374;\n},\n{\nglyphname = Ydieresis;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (144,188);\nref = dieresiscomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (152,188);\nref = dieresiscomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (132,192);\nref = dieresiscomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 376;\n},\n{\nglyphname = Ydotbelow;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (223,0);\nref = dotbelowcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (219,0);\nref = dotbelowcomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (230,1);\nref = dotbelowcomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7924;\n},\n{\nglyphname = Ygrave;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (145,188);\nref = gravecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (154,188);\nref = gravecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (148,192);\nref = gravecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7922;\n},\n{\nglyphname = Yhookabove;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (260,200);\nref = hookabovecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (249,200);\nref = hookabovecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (282,192);\nref = hookabovecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7926;\n},\n{\nglyphname = Ytilde;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (148,188);\nref = tildecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (163,188);\nref = tildecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (148,192);\nref = tildecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7928;\n},\n{\nglyphname = Z;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (233,0);\n},\n{\nname = top;\npos = (319,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(452,1,l),\n(459,57,l),\n(90,57,l),\n(531,642,l),\n(538,700,l),\n(101,700,l),\n(94,644,l),\n(464,644,l),\n(23,59,l),\n(15,1,l)\n);\n}\n);\nwidth = 533;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (240,0);\n},\n{\nname = top;\npos = (326,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(464,1,l),\n(474,81,l),\n(129,81,l),\n(540,618,l),\n(550,700,l),\n(101,700,l),\n(91,620,l),\n(436,620,l),\n(25,83,l),\n(15,1,l)\n);\n}\n);\nwidth = 545;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (240,0);\n},\n{\nname = top;\npos = (326,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(486,1,l),\n(501,127,l),\n(183,127,l),\n(557,578,l),\n(572,700,l),\n(85,700,l),\n(69,574,l),\n(389,574,l),\n(14,123,l),\n(-1,1,l)\n);\n}\n);\nwidth = 549;\n}\n);\nunicode = 90;\n},\n{\nglyphname = Zacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (237,188);\nref = acutecomb;\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Z;\n},\n{\npos = (247,188);\nref = acutecomb;\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Z;\n},\n{\npos = (226,192);\nref = acutecomb;\n}\n);\nwidth = 549;\n}\n);\nunicode = 377;\n},\n{\nglyphname = Zcaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (153,188);\nref = caroncomb;\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Z;\n},\n{\npos = (142,188);\nref = caroncomb;\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Z;\n},\n{\npos = (114,192);\nref = caroncomb;\n}\n);\nwidth = 549;\n}\n);\nunicode = 381;\n},\n{\nglyphname = Zdotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (221,188);\nref = dotaccentcomb;\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Z;\n},\n{\npos = (220,188);\nref = dotaccentcomb;\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Z;\n},\n{\npos = (199,192);\nref = dotaccentcomb;\n}\n);\nwidth = 549;\n}\n);\nunicode = 379;\n},\n{\nglyphname = Lcommaaccent.loclMAH;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (198,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (175,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (200,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 579;\n}\n);\n},\n{\nglyphname = Ncommaaccent.loclMAH;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (230,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (226,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (238,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 732;\n}\n);\n},\n{\nglyphname = a;\nkernLeft = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (250,-12);\n},\n{\nname = top;\npos = (313,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(302,-12,o),\n(391,23,o),\n(423,92,c),\n(411,0,l),\n(467,0,l),\n(529,500,l),\n(473,500,l),\n(461,406,l),\n(448,461,o),\n(385,512,o),\n(300,512,cs),\n(183,512,o),\n(77,419,o),\n(56,250,cs),\n(36,86,o),\n(119,-12,o),\n(236,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,38,o),\n(100,124,o),\n(115,252,cs),\n(131,377,o),\n(193,462,o),\n(306,462,cs),\n(385,462,o),\n(459,392,o),\n(443,250,cs),\n(425,112,o),\n(350,38,o),\n(254,38,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (259,-12);\n},\n{\nname = top;\npos = (323,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(312,-12,o),\n(390,27,o),\n(420,96,c),\n(408,0,l),\n(492,0,l),\n(554,500,l),\n(470,500,l),\n(458,402,l),\n(445,457,o),\n(400,512,o),\n(312,512,cs),\n(173,512,o),\n(75,419,o),\n(54,250,cs),\n(34,86,o),\n(109,-12,o),\n(243,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,64,o),\n(126,148,o),\n(139,252,cs),\n(152,356,o),\n(210,437,o),\n(308,437,cs),\n(407,437,o),\n(452,360,o),\n(438,250,cs),\n(425,148,o),\n(361,64,o),\n(265,64,cs)\n);\n}\n);\nwidth = 609;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (252,-12);\n},\n{\nname = top;\npos = (318,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(308,-12,o),\n(362,29,o),\n(395,83,c),\n(385,0,l),\n(524,0,l),\n(587,508,l),\n(447,508,l),\n(436,415,l),\n(417,470,o),\n(374,520,o),\n(290,520,cs),\n(159,520,o),\n(59,421,o),\n(38,253,cs),\n(18,88,o),\n(83,-12,o),\n(219,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(210,95,o),\n(172,157,o),\n(184,253,cs),\n(195,340,o),\n(249,410,o),\n(321,410,cs),\n(389,410,o),\n(427,341,o),\n(416,253,cs),\n(404,158,o),\n(351,97,o),\n(283,96,cs)\n);\n}\n);\nwidth = 610;\n}\n);\nunicode = 97;\n},\n{\nglyphname = aacute;\nkernLeft = a;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (231,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (244,0);\nref = acutecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (218,12);\nref = acutecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 225;\n},\n{\nglyphname = abreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (136,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (148,0);\nref = brevecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (118,12);\nref = brevecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 259;\n},\n{\nglyphname = abreveacute;\nlastChange = \"2025-01-08 14:16:21 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (113,0);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (122,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (144,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7855;\n},\n{\nglyphname = abrevedotbelow;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (218,-12);\nref = dotbelowcomb;\n},\n{\npos = (136,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n},\n{\npos = (148,0);\nref = brevecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (189,-11);\nref = dotbelowcomb;\n},\n{\npos = (118,12);\nref = brevecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7863;\n},\n{\nglyphname = abrevegrave;\nlastChange = \"2025-01-08 14:17:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (97,0);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (112,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (145,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7857;\n},\n{\nglyphname = abrevehookabove;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (93,0);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (92,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (112,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7859;\n},\n{\nglyphname = abrevetilde;\nlastChange = \"2025-01-08 14:17:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (76,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (94,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (142,12);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7861;\n},\n{\nglyphname = acircumflex;\nkernLeft = a;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (147,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (134,0);\nref = circumflexcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (108,12);\nref = circumflexcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 226;\n},\n{\nglyphname = acircumflexacute;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (29,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (43,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (138,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7845;\n},\n{\nglyphname = acircumflexdotbelow;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (218,-12);\nref = dotbelowcomb;\n},\n{\npos = (147,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n},\n{\npos = (134,0);\nref = circumflexcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (189,-11);\nref = dotbelowcomb;\n},\n{\npos = (108,12);\nref = circumflexcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7853;\n},\n{\nglyphname = acircumflexgrave;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (171,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (167,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (138,13);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7847;\n},\n{\nglyphname = acircumflexhookabove;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (174,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (170,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (137,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7849;\n},\n{\nglyphname = acircumflextilde;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (179,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (174,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (113,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7851;\n},\n{\nglyphname = adieresis;\nkernLeft = a;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (116,0);\nref = dieresiscomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (126,0);\nref = dieresiscomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (72,12);\nref = dieresiscomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 228;\n},\n{\nglyphname = adotbelow;\nlastChange = \"2025-01-01 09:19:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (218,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (189,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7841;\n},\n{\nglyphname = agrave;\nkernLeft = a;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (117,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (128,0);\nref = gravecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,12);\nref = gravecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 224;\n},\n{\nglyphname = ahookabove;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (232,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (223,12);\nref = hookabovecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (222,12);\nref = hookabovecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7843;\n},\n{\nglyphname = amacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (148,0);\nref = macroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (116,0);\nref = macroncomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (115,9);\nref = macroncomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 257;\n},\n{\nglyphname = aogonek;\nlastChange = \"2025-01-01 09:07:36 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (339,5);\nref = ogonekcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (360,1);\nref = ogonekcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (380,0);\nref = ogonekcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 261;\n},\n{\nglyphname = aring;\nkernLeft = a;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (156,0);\nref = ringcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (160,0);\nref = ringcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (142,12);\nref = ringcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 229;\n},\n{\nglyphname = atilde;\nkernLeft = a;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (120,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (137,0);\nref = tildecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,12);\nref = tildecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 227;\n},\n{\nglyphname = ae;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (484,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(746,-13,o),\n(822,62,o),\n(857,144,c),\n(805,154,l),\n(780,100,o),\n(723,37,o),\n(627,37,cs),\n(508,37,o),\n(456,118,o),\n(471,245,cs),\n(486,368,o),\n(546,462,o),\n(676,462,cs),\n(783,462,o),\n(828,381,o),\n(818,302,c),\n(467,302,l),\n(461,252,l),\n(872,252,l),\n(874,267,l),\n(893,422,o),\n(806,512,o),\n(678,512,cs),\n(541,512,o),\n(443,412,o),\n(423,248,cs),\n(403,87,o),\n(471,-13,o),\n(617,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(309,-12,o),\n(417,65,o),\n(429,163,c),\n(451,145,l),\n(475,338,ls),\n(489,450,o),\n(440,512,o),\n(304,512,cs),\n(225,512,o),\n(149,476,o),\n(100,400,c),\n(149,373,l),\n(176,420,o),\n(229,460,o),\n(298,460,cs),\n(400,460,o),\n(443,409,o),\n(426,333,cs),\n(419,301,l),\n(179,301,o),\n(59,271,o),\n(42,132,cs),\n(30,40,o),\n(105,-12,o),\n(189,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(134,38,o),\n(96,81,o),\n(102,131,cs),\n(114,228,o),\n(176,251,o),\n(413,251,c),\n(411,230,ls),\n(398,129,o),\n(313,38,o),\n(197,38,cs)\n);\n}\n);\nwidth = 924;\n},\n{\nanchors = (\n{\nname = top;\npos = (503,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(761,-13,o),\n(837,55,o),\n(872,137,c),\n(792,151,l),\n(766,97,o),\n(706,63,o),\n(649,63,cs),\n(524,63,o),\n(502,152,o),\n(514,247,cs),\n(529,369,o),\n(583,436,o),\n(692,436,cs),\n(786,436,o),\n(816,360,o),\n(809,311,c),\n(516,311,l),\n(508,241,l),\n(887,241,l),\n(889,261,l),\n(911,434,o),\n(821,512,o),\n(697,512,cs),\n(560,512,o),\n(461,414,o),\n(441,250,cs),\n(421,89,o),\n(496,-13,o),\n(636,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(321,-12,o),\n(436,73,o),\n(445,147,c),\n(471,148,l),\n(494,332,ls),\n(508,447,o),\n(454,512,o),\n(322,512,cs),\n(211,512,o),\n(143,462,o),\n(104,392,c),\n(169,356,l),\n(193,413,o),\n(255,442,o),\n(310,442,cs),\n(380,442,o),\n(437,414,o),\n(428,339,cs),\n(425,313,l),\n(169,313,o),\n(69,261,o),\n(55,141,cs),\n(43,49,o),\n(116,-12,o),\n(199,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(172,62,o),\n(131,96,o),\n(137,141,cs),\n(145,210,o),\n(193,247,o),\n(417,247,c),\n(413,215,ls),\n(400,110,o),\n(281,62,o),\n(219,62,cs)\n);\n}\n);\nwidth = 941;\n},\n{\nanchors = (\n{\nname = top;\npos = (494,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(699,-13,o),\n(800,23,o),\n(860,134,c),\n(733,173,l),\n(709,130,o),\n(659,107,o),\n(629,107,cs),\n(540,107,o),\n(508,164,o),\n(519,256,cs),\n(529,337,o),\n(576,400,o),\n(660,400,cs),\n(727,400,o),\n(758,346,o),\n(754,311,c),\n(493,311,l),\n(483,225,l),\n(886,225,l),\n(889,248,l),\n(910,418,o),\n(826,520,o),\n(676,520,cs),\n(545,520,o),\n(422,436,o),\n(400,256,cs),\n(379,82,o),\n(477,-13,o),\n(612,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(424,-12,o),\n(450,173,o),\n(450,173,c),\n(478,174,l),\n(499,340,ls),\n(512,451,o),\n(468,520,o),\n(318,520,cs),\n(197,520,o),\n(114,459,o),\n(81,387,c),\n(181,342,l),\n(200,385,o),\n(241,412,o),\n(296,412,cs),\n(364,412,o),\n(395,374,o),\n(388,322,cs),\n(388,318,l),\n(164,318,o),\n(42,273,o),\n(26,144,cs),\n(15,51,o),\n(80,-12,o),\n(194,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(207,93,o),\n(162,109,o),\n(167,151,cs),\n(173,199,o),\n(205,226,o),\n(377,226,c),\n(374,206,ls),\n(364,124,o),\n(298,93,o),\n(228,93,cs)\n);\n}\n);\nwidth = 935;\n}\n);\nunicode = 230;\n},\n{\nglyphname = aeacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ae;\n},\n{\npos = (402,0);\nref = acutecomb;\n}\n);\nwidth = 924;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ae;\n},\n{\npos = (424,0);\nref = acutecomb;\n}\n);\nwidth = 941;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ae;\n},\n{\npos = (394,12);\nref = acutecomb;\n}\n);\nwidth = 935;\n}\n);\nunicode = 509;\n},\n{\nglyphname = b;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,700,l),\n(151,700,l),\n(65,0,l),\n(121,0,l),\n(133,98,l),\n(147,43,o),\n(209,-12,o),\n(294,-12,cs),\n(419,-12,o),\n(517,81,o),\n(538,250,cs),\n(558,414,o),\n(475,512,o),\n(358,512,cs),\n(267,512,o),\n(197,457,o),\n(171,402,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(439,462,o),\n(494,376,o),\n(479,248,cs),\n(463,123,o),\n(401,38,o),\n(288,38,cs),\n(209,38,o),\n(135,108,o),\n(151,250,c),\n(169,392,o),\n(261,462,o),\n(340,462,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(231,700,l),\n(147,700,l),\n(61,0,l),\n(145,0,l),\n(157,98,l),\n(170,43,o),\n(215,-12,o),\n(303,-12,cs),\n(442,-12,o),\n(540,81,o),\n(561,250,cs),\n(581,414,o),\n(506,512,o),\n(372,512,cs),\n(303,512,o),\n(226,476,o),\n(195,407,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(451,436,o),\n(489,352,o),\n(476,248,cs),\n(463,144,o),\n(405,63,o),\n(307,63,cs),\n(208,63,o),\n(163,140,o),\n(177,250,cs),\n(190,352,o),\n(254,436,o),\n(350,436,cs)\n);\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(276,700,l),\n(136,700,l),\n(49,0,l),\n(190,0,l),\n(201,93,l),\n(220,38,o),\n(269,-12,o),\n(347,-12,cs),\n(478,-12,o),\n(578,87,o),\n(599,255,cs),\n(619,420,o),\n(549,520,o),\n(418,520,cs),\n(335,520,o),\n(275,479,o),\n(242,425,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(427,413,o),\n(465,351,o),\n(453,255,cs),\n(442,168,o),\n(388,98,o),\n(316,98,cs),\n(248,98,o),\n(210,167,o),\n(221,255,cs),\n(233,350,o),\n(286,411,o),\n(354,412,cs)\n);\n}\n);\nwidth = 633;\n}\n);\nunicode = 98;\n},\n{\nglyphname = c;\nkernLeft = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (252,-12);\n},\n{\nname = top;\npos = (295,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(462,468,o),\n(395,512,o),\n(312,512,cs),\n(192,512,o),\n(77,422,o),\n(56,250,cs),\n(35,78,o),\n(128,-12,o),\n(248,-12,cs),\n(348,-12,o),\n(406,35,o),\n(455,121,c),\n(406,142,l),\n(378,86,o),\n(325,38,o),\n(254,38,cs),\n(147,38,o),\n(98,121,o),\n(114,250,cs),\n(130,379,o),\n(199,462,o),\n(306,462,cs),\n(376,462,o),\n(421,413,o),\n(436,363,c),\n(490,383,l)\n);\n}\n);\nwidth = 518;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (243,-12);\n},\n{\nname = top;\npos = (307,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(481,464,o),\n(412,512,o),\n(324,512,c),\n(198,512,o),\n(75,424,o),\n(54,248,cs),\n(32,74,o),\n(134,-13,o),\n(260,-13,cs),\n(361,-13,o),\n(429,37,o),\n(474,120,c),\n(402,150,l),\n(374,99,o),\n(327,63,o),\n(267,63,cs),\n(163,63,o),\n(124,140,o),\n(138,251,cs),\n(151,359,o),\n(208,436,o),\n(313,436,cs),\n(373,436,o),\n(412,402,o),\n(426,351,c),\n(506,381,l)\n);\n}\n);\nwidth = 536;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (258,-12);\n},\n{\nname = top;\npos = (324,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,473,o),\n(434,520,o),\n(346,520,cs),\n(183,520,o),\n(64,420,o),\n(44,254,cs),\n(24,88,o),\n(117,-12,o),\n(280,-12,cs),\n(368,-12,o),\n(452,35,o),\n(502,127,c),\n(392,173,l),\n(376,141,o),\n(336,108,o),\n(290,108,cs),\n(218,108,o),\n(179,163,o),\n(190,255,cs),\n(201,347,o),\n(254,400,o),\n(326,400,cs),\n(372,400,o),\n(404,367,o),\n(412,335,c),\n(534,381,l)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"D6DBBF6B-18E3-4F95-B026-A0427CA97C42\";\nname = \"26 Mar 24 at 21:35\";\nvisible = 1;\nwidth = 529;\n}\n);\nunicode = 99;\n},\n{\nglyphname = cacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (213,0);\nref = acutecomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (228,0);\nref = acutecomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (224,12);\nref = acutecomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 263;\n},\n{\nglyphname = ccaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (129,0);\nref = caroncomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (123,0);\nref = caroncomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (112,12);\nref = caroncomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 269;\n},\n{\nglyphname = ccedilla;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (175,-14);\nref = cedillacomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (156,-14);\nref = cedillacomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (161,-11);\nref = cedillacomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 231;\n},\n{\nglyphname = ccircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (129,0);\nref = circumflexcomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (118,0);\nref = circumflexcomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (114,12);\nref = circumflexcomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 265;\n},\n{\nglyphname = cdotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (197,0);\nref = dotaccentcomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (201,0);\nref = dotaccentcomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (197,12);\nref = dotaccentcomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 267;\n},\n{\nglyphname = d;\nkernLeft = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (272,-12);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(413,17,o),\n(451,0,o),\n(490,-1,cs),\n(515,-2,o),\n(526,3,o),\n(541,11,c),\n(546,58,l),\n(501,39,o),\n(474,53,o),\n(480,103,cs),\n(553,700,l),\n(497,700,l),\n(461,404,l),\n(446,473,o),\n(366,512,o),\n(300,512,cs),\n(183,512,o),\n(76,414,o),\n(56,250,cs),\n(35,81,o),\n(113,-12,o),\n(236,-12,cs),\n(302,-12,o),\n(391,19,o),\n(422,88,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(141,38,o),\n(99,123,o),\n(115,248,cs),\n(130,376,o),\n(207,462,o),\n(306,462,cs),\n(402,462,o),\n(459,388,o),\n(443,250,cs),\n(425,112,o),\n(350,38,o),\n(254,38,cs)\n);\n}\n);\nwidth = 610;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (295,-12);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(417,44,o),\n(450,-1,o),\n(502,-1,cs),\n(527,-1,o),\n(541,3,o),\n(556,11,c),\n(564,79,l),\n(514,68,o),\n(502,86,o),\n(507,126,cs),\n(577,700,l),\n(493,700,l),\n(457,406,l),\n(445,461,o),\n(399,512,o),\n(311,512,cs),\n(172,512,o),\n(74,419,o),\n(53,250,cs),\n(33,86,o),\n(104,-12,o),\n(242,-12,cs),\n(311,-12,o),\n(392,25,o),\n(423,94,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(163,64,o),\n(125,148,o),\n(138,252,cs),\n(151,356,o),\n(209,437,o),\n(307,437,cs),\n(406,437,o),\n(451,360,o),\n(437,250,cs),\n(424,148,o),\n(360,64,o),\n(264,64,cs)\n);\n}\n);\nwidth = 627;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (292,-12);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(396,30,o),\n(469,-1,o),\n(516,-1,cs),\n(543,-1,o),\n(578,6,o),\n(593,14,c),\n(606,124,l),\n(556,113,o),\n(544,128,o),\n(548,168,cs),\n(615,700,l),\n(475,700,l),\n(440,415,l),\n(421,470,o),\n(377,520,o),\n(294,520,cs),\n(163,520,o),\n(63,421,o),\n(42,253,cs),\n(22,88,o),\n(92,-12,o),\n(223,-12,cs),\n(311,-12,o),\n(369,32,o),\n(405,101,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(215,95,o),\n(177,157,o),\n(189,253,cs),\n(200,340,o),\n(254,410,o),\n(326,410,cs),\n(394,410,o),\n(432,341,o),\n(421,253,cs),\n(409,158,o),\n(356,97,o),\n(288,96,cs)\n);\n}\n);\nwidth = 660;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"F3AABDD4-5D52-40E7-9352-25D68A3D59C9\";\nname = \"5 Apr 24 at 08:05\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,462,o),\n(444,388,o),\n(445,250,cs),\n(444,108,o),\n(361,38,o),\n(282,38,cs),\n(169,38,o),\n(117,123,o),\n(117,248,cs),\n(117,376,o),\n(183,462,o),\n(282,462,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(500,700,l),\n(444,700,l),\n(444,404,l),\n(421,473,o),\n(336,512,o),\n(270,512,cs),\n(153,512,o),\n(58,414,o),\n(58,250,cs),\n(58,81,o),\n(153,-12,o),\n(270,-12,cs),\n(355,-12,o),\n(424,41,o),\n(444,96,c),\n(444,25,o),\n(484,0,o),\n(523,-1,cs),\n(548,-2,o),\n(558,3,o),\n(572,11,c),\n(572,64,l),\n(529,48,o),\n(500,69,o),\n(500,119,cs)\n);\n}\n);\nwidth = 652;\n}\n);\nunicode = 100;\n},\n{\nglyphname = dcaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(722,700,l),\n(629,700,l),\n(602,582,l),\n(652,582,l)\n);\n}\n);\nwidth = 667;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(763,701,l),\n(653,701,l),\n(626,564,l),\n(698,564,l)\n);\n}\n);\nwidth = 708;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(815,701,l),\n(685,701,l),\n(645,531,l),\n(740,531,l)\n);\n}\n);\nwidth = 760;\n}\n);\nunicode = 271;\n},\n{\nglyphname = dcroat;\nlastChange = \"2025-01-08 14:43:20 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(309,562,l),\n(575,562,l),\n(581,609,l),\n(315,609,l)\n);\n}\n);\nwidth = 617;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(291,564,l),\n(600,564,l),\n(608,632,l),\n(299,632,l)\n);\n}\n);\nwidth = 653;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(303,540,l),\n(646,540,l),\n(658,640,l),\n(315,640,l)\n);\n}\n);\nwidth = 679;\n}\n);\nunicode = 273;\n},\n{\nglyphname = ddotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = d;\n},\n{\npos = (229,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 660;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = d;\n},\n{\npos = (240,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 610;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = d;\n},\n{\npos = (251,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7693;\n},\n{\nglyphname = dmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = d;\n},\n{\npos = (143,-11);\nref = macronbelowcomb;\n}\n);\nwidth = 660;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = d;\n},\n{\npos = (162,0);\nref = macronbelowcomb;\n}\n);\nwidth = 610;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = d;\n},\n{\npos = (167,0);\nref = macronbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7695;\n},\n{\nglyphname = eth;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (250,0);\n},\n{\nname = top;\npos = (339,720);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(399,-12,o),\n(487,105,o),\n(510,289,cs),\n(532,472,o),\n(484,622,o),\n(285,713,c),\n(253,664,l),\n(308,647,o),\n(464,542,o),\n(455,389,c),\n(434,453,o),\n(375,489,o),\n(303,489,cs),\n(189,489,o),\n(75,405,o),\n(55,239,cs),\n(34,72,o),\n(128,-12,o),\n(242,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,38,o),\n(98,113,o),\n(114,239,cs),\n(129,365,o),\n(196,439,o),\n(297,439,cs),\n(390,439,o),\n(448,365,o),\n(433,239,cs),\n(417,113,o),\n(349,38,o),\n(248,38,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(511,635,l),\n(496,678,l),\n(244,562,l),\n(261,519,l)\n);\n}\n);\nwidth = 561;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (257,0);\n},\n{\nname = top;\npos = (346,720);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,-12,o),\n(503,120,o),\n(523,284,cs),\n(553,529,o),\n(458,654,o),\n(300,725,c),\n(257,660,l),\n(308,640,o),\n(441,558,o),\n(441,429,c),\n(410,471,o),\n(354,488,o),\n(310,488,cs),\n(196,488,o),\n(75,402,o),\n(55,238,cs),\n(34,74,o),\n(128,-12,o),\n(252,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(169,60,o),\n(125,128,o),\n(139,238,cs),\n(152,348,o),\n(214,416,o),\n(304,416,cs),\n(397,416,o),\n(441,348,o),\n(428,238,cs),\n(414,128,o),\n(354,60,o),\n(261,60,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(537,644,l),\n(515,702,l),\n(246,571,l),\n(268,512,l)\n);\n}\n);\nwidth = 575;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (261,0);\n},\n{\nname = top;\npos = (349,720);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(419,-12,o),\n(533,129,o),\n(555,307,cs),\n(582,533,o),\n(468,677,o),\n(285,744,c),\n(224,651,l),\n(262,642,o),\n(415,578,o),\n(438,432,c),\n(420,466,o),\n(363,498,o),\n(304,498,cs),\n(183,498,o),\n(56,419,o),\n(35,243,cs),\n(14,76,o),\n(128,-12,o),\n(257,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(200,108,o),\n(167,161,o),\n(177,243,cs),\n(186,323,o),\n(234,378,o),\n(302,378,cs),\n(380,378,o),\n(408,323,o),\n(399,243,cs),\n(389,161,o),\n(346,108,o),\n(269,108,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(549,650,l),\n(517,722,l),\n(222,583,l),\n(253,511,l)\n);\n}\n);\nwidth = 584;\n}\n);\nunicode = 240;\n},\n{\nglyphname = e;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (253,-13);\n},\n{\nname = top;\npos = (317,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,-13,o),\n(466,62,o),\n(501,144,c),\n(449,154,l),\n(424,100,o),\n(367,37,o),\n(271,37,cs),\n(152,37,o),\n(100,118,o),\n(115,245,cs),\n(130,368,o),\n(190,462,o),\n(320,462,cs),\n(427,462,o),\n(470,368,o),\n(461,289,c),\n(110,289,l),\n(104,239,l),\n(515,239,l),\n(518,267,l),\n(537,422,o),\n(450,512,o),\n(322,512,cs),\n(185,512,o),\n(78,412,o),\n(58,248,cs),\n(38,87,o),\n(115,-13,o),\n(261,-13,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (255,-13);\n},\n{\nname = top;\npos = (319,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(389,-13,o),\n(465,55,o),\n(500,137,c),\n(420,151,l),\n(394,97,o),\n(334,63,o),\n(277,63,cs),\n(152,63,o),\n(130,150,o),\n(141,245,cs),\n(156,367,o),\n(211,436,o),\n(320,436,cs),\n(414,436,o),\n(442,345,o),\n(437,304,c),\n(144,304,l),\n(135,234,l),\n(514,234,l),\n(517,261,l),\n(539,434,o),\n(449,512,o),\n(325,512,cs),\n(188,512,o),\n(77,412,o),\n(57,248,cs),\n(37,87,o),\n(124,-13,o),\n(264,-13,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (258,-13);\n},\n{\nname = top;\npos = (324,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(355,-13,o),\n(456,23,o),\n(516,134,c),\n(389,173,l),\n(365,130,o),\n(315,107,o),\n(285,107,cs),\n(196,107,o),\n(164,164,o),\n(175,256,cs),\n(185,337,o),\n(232,400,o),\n(316,400,cs),\n(383,400,o),\n(413,336,o),\n(409,301,c),\n(148,301,l),\n(138,215,l),\n(541,215,l),\n(545,248,l),\n(566,418,o),\n(482,520,o),\n(332,520,cs),\n(201,520,o),\n(60,436,o),\n(38,256,cs),\n(17,82,o),\n(133,-13,o),\n(268,-13,cs)\n);\n}\n);\nwidth = 591;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"35791070-3456-4186-8F4C-DCAEEFC69CEB\";\nname = \"28 Feb 24 at 11:45\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(395,-13,o),\n(490,19,o),\n(537,122,c),\n(402,149,l),\n(385,115,o),\n(339,107,o),\n(309,107,cs),\n(216,107,o),\n(179,161,o),\n(179,253,cs),\n(179,334,o),\n(216,400,o),\n(304,400,cs),\n(375,400,o),\n(410,335,o),\n(410,300,c),\n(141,300,l),\n(142,210,l),\n(553,210,l),\n(553,245,l),\n(553,415,o),\n(456,520,o),\n(302,520,cs),\n(167,520,o),\n(37,436,o),\n(37,256,cs),\n(37,82,o),\n(165,-13,o),\n(304,-13,cs)\n);\n}\n);\nvisible = 1;\nwidth = 582;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"DC9D73E7-764C-4C88-8E22-C9A4CAB6D2B5\";\nname = \"26 Mar 24 at 21:50\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(416,-12,o),\n(550,70,o),\n(550,254,cs),\n(550,440,o),\n(422,520,o),\n(293,520,cs),\n(168,520,o),\n(34,440,o),\n(34,254,cs),\n(34,70,o),\n(160,-12,o),\n(293,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(219,108,o),\n(180,164,o),\n(180,254,cs),\n(180,342,o),\n(220,400,o),\n(293,400,cs),\n(367,400,o),\n(404,342,o),\n(404,254,cs),\n(404,164,o),\n(366,108,o),\n(293,108,cs)\n);\n},\n{\nclosed = 0;\nnodes = (\n(293,520,l)\n);\n}\n);\nvisible = 1;\nwidth = 572;\n}\n);\nunicode = 101;\n},\n{\nglyphname = eacute;\nkernLeft = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (235,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (240,0);\nref = acutecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (224,12);\nref = acutecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 233;\n},\n{\nglyphname = ebreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (140,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (144,0);\nref = brevecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (124,12);\nref = brevecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 277;\n},\n{\nglyphname = ecaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (151,0);\nref = caroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (135,0);\nref = caroncomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (112,12);\nref = caroncomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 283;\n},\n{\nglyphname = ecircumflex;\nkernLeft = o;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (151,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (130,0);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (114,12);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 234;\n},\n{\nglyphname = ecircumflexacute;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (33,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (39,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (144,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7871;\n},\n{\nglyphname = ecircumflexdotbelow;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (221,-13);\nref = dotbelowcomb;\n},\n{\npos = (151,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (211,-13);\nref = dotbelowcomb;\n},\n{\npos = (130,0);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (195,-12);\nref = dotbelowcomb;\n},\n{\npos = (114,12);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7879;\n},\n{\nglyphname = ecircumflexgrave;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (175,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (163,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (144,13);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7873;\n},\n{\nglyphname = ecircumflexhookabove;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (178,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (166,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (143,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7875;\n},\n{\nglyphname = ecircumflextilde;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (183,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (170,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (119,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7877;\n},\n{\nglyphname = edieresis;\nkernLeft = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (120,0);\nref = dieresiscomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (122,0);\nref = dieresiscomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (78,12);\nref = dieresiscomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 235;\n},\n{\nglyphname = edotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (219,0);\nref = dotaccentcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (213,0);\nref = dotaccentcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (197,12);\nref = dotaccentcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 279;\n},\n{\nglyphname = edotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (221,-13);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (211,-13);\nref = dotbelowcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (195,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7865;\n},\n{\nglyphname = egrave;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (121,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (124,0);\nref = gravecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (94,12);\nref = gravecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 232;\n},\n{\nglyphname = ehookabove;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (236,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (219,12);\nref = hookabovecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (228,12);\nref = hookabovecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7867;\n},\n{\nglyphname = emacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (152,0);\nref = macroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (112,0);\nref = macroncomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (121,9);\nref = macroncomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 275;\n},\n{\nglyphname = eogonek;\nlastChange = \"2025-01-01 09:08:25 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = e;\n},\n{\nclosed = 1;\nnodes = (\n(388,-143,o),\n(414,-134,o),\n(429,-121,c),\n(412,-70,l),\n(380,-92,o),\n(335,-78,o),\n(339,-40,cs),\n(343,-12,o),\n(356,3,o),\n(421,67,c),\n(396,86,l),\n(317,49,o),\n(281,0,o),\n(275,-55,cs),\n(268,-110,o),\n(308,-143,o),\n(362,-143,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = e;\n},\n{\nclosed = 1;\nnodes = (\n(385,-152,o),\n(417,-140,o),\n(433,-127,c),\n(417,-64,l),\n(372,-91,o),\n(332,-79,o),\n(337,-39,cs),\n(340,-10,o),\n(371,16,o),\n(409,51,c),\n(377,83,l),\n(306,52,o),\n(268,-4,o),\n(261,-59,cs),\n(254,-116,o),\n(296,-152,o),\n(349,-152,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = e;\n},\n{\nclosed = 1;\nnodes = (\n(404,-183,o),\n(444,-165,o),\n(467,-145,c),\n(438,-70,l),\n(397,-101,o),\n(356,-78,o),\n(362,-35,cs),\n(364,-15,o),\n(376,13,o),\n(428,60,c),\n(408,96,l),\n(305,50,o),\n(264,3,o),\n(254,-74,cs),\n(245,-139,o),\n(296,-183,o),\n(356,-183,cs)\n);\n}\n);\nwidth = 592;\n}\n);\nunicode = 281;\n},\n{\nglyphname = eopen;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(432,143,l),\n(406,76,o),\n(337,38,o),\n(251,38,cs),\n(141,38,o),\n(95,79,o),\n(102,136,cs),\n(108,184,o),\n(159,240,o),\n(289,240,cs),\n(289,240,o),\n(347,240,o),\n(347,240,c),\n(354,294,l),\n(296,294,l),\n(173,294,o),\n(150,339,o),\n(154,375,cs),\n(160,423,o),\n(198,462,o),\n(299,462,cs),\n(367,462,o),\n(415,442,o),\n(430,403,c),\n(476,425,l),\n(451,488,o),\n(380,512,o),\n(305,512,cs),\n(184,512,o),\n(106,456,o),\n(96,374,cs),\n(90,320,o),\n(115,278,o),\n(156,265,c),\n(84,239,o),\n(50,184,o),\n(44,134,cs),\n(31,31,o),\n(113,-12,o),\n(244,-12,cs),\n(349,-12,o),\n(445,38,o),\n(476,128,c)\n);\n}\n);\nwidth = 543;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,159,l),\n(382,87,o),\n(321,64,o),\n(256,64,cs),\n(157,64,o),\n(122,98,o),\n(128,147,cs),\n(134,194,o),\n(176,239,o),\n(286,239,cs),\n(286,239,o),\n(339,239,o),\n(339,239,c),\n(349,312,l),\n(296,312,l),\n(200,312,o),\n(173,335,o),\n(178,371,cs),\n(181,398,o),\n(209,436,o),\n(301,436,cs),\n(344,436,o),\n(383,426,o),\n(400,387,c),\n(470,421,l),\n(458,479,o),\n(373,512,o),\n(306,512,cs),\n(175,512,o),\n(104,457,o),\n(94,375,cs),\n(88,321,o),\n(118,288,o),\n(158,275,c),\n(98,252,o),\n(51,203,o),\n(44,142,cs),\n(31,38,o),\n(108,-12,o),\n(246,-12,cs),\n(349,-12,o),\n(441,39,o),\n(478,139,c)\n);\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(395,177,l),\n(377,140,o),\n(341,108,o),\n(271,108,cs),\n(194,108,o),\n(169,131,o),\n(173,164,cs),\n(177,201,o),\n(207,221,o),\n(283,221,cs),\n(283,221,o),\n(334,221,o),\n(334,221,c),\n(346,309,l),\n(295,309,l),\n(245,309,o),\n(218,325,o),\n(221,354,cs),\n(225,381,o),\n(248,400,o),\n(301,400,cs),\n(348,400,o),\n(370,382,o),\n(376,358,c),\n(502,415,l),\n(491,479,o),\n(408,520,o),\n(312,520,cs),\n(176,520,o),\n(91,461,o),\n(81,379,cs),\n(75,325,o),\n(103,282,o),\n(144,269,c),\n(67,243,o),\n(32,209,o),\n(25,148,cs),\n(12,44,o),\n(104,-12,o),\n(255,-12,cs),\n(391,-12,o),\n(475,56,o),\n(511,149,c)\n);\n}\n);\nwidth = 569;\n}\n);\nunicode = 603;\n},\n{\nglyphname = etilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (124,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (133,0);\nref = tildecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (94,12);\nref = tildecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7869;\n},\n{\nglyphname = schwa;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nangle = 180;\npos = (568,500);\nref = e;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nangle = 180;\npos = (569,500);\nref = e;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nangle = 180;\npos = (591,508);\nref = e;\n}\n);\nwidth = 591;\n}\n);\nunicode = 601;\n},\n{\nglyphname = f;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(169,0,l),\n(225,450,l),\n(352,450,l),\n(358,500,l),\n(231,500,l),\n(240,575,ls),\n(249,648,o),\n(279,666,o),\n(327,666,cs),\n(340,666,o),\n(357,665,o),\n(373,662,c),\n(379,712,l),\n(362,717,o),\n(341,720,o),\n(325,720,cs),\n(240,720,o),\n(195,669,o),\n(184,576,cs),\n(175,500,l),\n(83,500,l),\n(77,450,l),\n(169,450,l),\n(113,0,l)\n);\n}\n);\nwidth = 346;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,0,l),\n(248,424,l),\n(376,424,l),\n(386,500,l),\n(258,500,l),\n(267,575,ls),\n(274,629,o),\n(303,648,o),\n(352,648,cs),\n(365,648,o),\n(383,647,o),\n(398,644,c),\n(407,712,l),\n(390,717,o),\n(368,720,o),\n(352,720,cs),\n(243,720,o),\n(194,669,o),\n(183,576,cs),\n(174,500,l),\n(78,500,l),\n(68,424,l),\n(164,424,l),\n(112,0,l)\n);\n}\n);\nwidth = 375;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(241,0,l),\n(288,388,l),\n(404,388,l),\n(419,508,l),\n(303,508,l),\n(307,539,ls),\n(312,576,o),\n(330,604,o),\n(379,604,cs),\n(392,604,o),\n(409,603,o),\n(424,600,c),\n(439,712,l),\n(423,717,o),\n(388,720,o),\n(353,720,cs),\n(270,720,o),\n(188,686,o),\n(173,576,cs),\n(163,508,l),\n(63,508,l),\n(48,388,l),\n(148,388,l),\n(101,0,l)\n);\n}\n);\nwidth = 400;\n}\n);\nunicode = 102;\n},\n{\nglyphname = g;\nkernLeft = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (349,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(400,-103,o),\n(335,-176,o),\n(221,-176,cs),\n(120,-176,o),\n(82,-109,o),\n(70,-81,c),\n(16,-115,l),\n(37,-171,o),\n(90,-230,o),\n(214,-230,cs),\n(339,-230,o),\n(447,-175,o),\n(470,13,c),\n(529,500,l),\n(473,500,l),\n(461,402,l),\n(447,457,o),\n(385,512,o),\n(300,512,cs),\n(183,512,o),\n(77,419,o),\n(56,250,cs),\n(36,86,o),\n(117,-12,o),\n(236,-12,cs),\n(302,-12,o),\n(393,27,o),\n(424,96,c),\n(414,13,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,38,o),\n(99,124,o),\n(114,252,cs),\n(130,377,o),\n(193,462,o),\n(306,462,cs),\n(385,462,o),\n(459,392,o),\n(443,250,cs),\n(425,112,o),\n(350,38,o),\n(254,38,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nanchors = (\n{\nname = top;\npos = (356,512);\n}\n);\nguides = (\n{\nangle = 270;\npos = (52,419);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(395,-96,o),\n(344,-156,o),\n(234,-156,cs),\n(167,-156,o),\n(116,-117,o),\n(98,-60,c),\n(20,-107,l),\n(45,-195,o),\n(135,-229,o),\n(222,-230,cs),\n(354,-232,o),\n(469,-171,o),\n(492,17,cs),\n(552,500,l),\n(468,500,l),\n(456,402,l),\n(443,457,o),\n(398,512,o),\n(310,512,cs),\n(171,512,o),\n(73,419,o),\n(52,250,cs),\n(32,86,o),\n(107,-12,o),\n(241,-12,cs),\n(310,-12,o),\n(388,27,o),\n(418,96,c),\n(408,17,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(162,64,o),\n(124,148,o),\n(137,252,cs),\n(150,356,o),\n(208,437,o),\n(306,437,cs),\n(405,437,o),\n(450,360,o),\n(436,250,cs),\n(423,148,o),\n(359,64,o),\n(263,64,cs)\n);\n}\n);\nwidth = 607;\n},\n{\nanchors = (\n{\nname = top;\npos = (361,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(384,-80,o),\n(327,-123,o),\n(242,-123,cs),\n(175,-123,o),\n(127,-76,o),\n(111,-29,c),\n(-6,-102,l),\n(18,-180,o),\n(104,-237,o),\n(225,-237,cs),\n(406,-237,o),\n(512,-142,o),\n(530,0,cs),\n(593,508,l),\n(459,508,l),\n(448,419,l),\n(428,474,o),\n(387,520,o),\n(303,520,cs),\n(172,520,o),\n(69,421,o),\n(48,253,cs),\n(28,88,o),\n(101,-12,o),\n(232,-12,cs),\n(315,-12,o),\n(373,25,o),\n(404,79,c),\n(394,0,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(220,95,o),\n(182,157,o),\n(194,253,cs),\n(205,340,o),\n(259,410,o),\n(331,410,cs),\n(399,410,o),\n(437,341,o),\n(426,253,cs),\n(414,158,o),\n(361,97,o),\n(293,96,cs)\n);\n}\n);\nwidth = 632;\n}\n);\nunicode = 103;\n},\n{\nglyphname = gbreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (172,0);\nref = brevecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (181,0);\nref = brevecomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (161,12);\nref = brevecomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 287;\n},\n{\nglyphname = gcircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (183,0);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (167,0);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (151,12);\nref = circumflexcomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 285;\n},\n{\nglyphname = gcommaaccent;\nlastChange = \"2025-01-01 09:21:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (234,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (216,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (214,12);\nref = commaturnedabovecomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 291;\n},\n{\nglyphname = gdotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (251,0);\nref = dotaccentcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (250,0);\nref = dotaccentcomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (234,12);\nref = dotaccentcomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 289;\n},\n{\nglyphname = gmacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (184,0);\nref = macroncomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (149,0);\nref = macroncomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (158,9);\nref = macroncomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 7713;\n},\n{\nglyphname = h;\nlastChange = \"2025-01-08 15:05:49 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(121,0,l),\n(154,270,ls),\n(166,366,o),\n(233,462,o),\n(332,462,cs),\n(413,462,o),\n(468,411,o),\n(455,310,cs),\n(417,0,l),\n(473,0,l),\n(513,322,ls),\n(528,442,o),\n(451,512,o),\n(354,512,cs),\n(235,512,o),\n(183,431,o),\n(170,396,c),\n(207,700,l),\n(151,700,l),\n(65,0,l)\n);\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(145,0,l),\n(178,270,ls),\n(190,366,o),\n(246,436,o),\n(338,436,cs),\n(405,436,o),\n(446,403,o),\n(435,316,cs),\n(396,0,l),\n(480,0,l),\n(521,328,ls),\n(535,448,o),\n(472,512,o),\n(375,512,cs),\n(263,512,o),\n(208,441,o),\n(195,406,c),\n(231,700,l),\n(147,700,l),\n(61,0,l)\n);\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,0,l),\n(218,239,ls),\n(231,347,o),\n(267,408,o),\n(350,408,cs),\n(407,408,o),\n(430,370,o),\n(421,296,cs),\n(385,0,l),\n(525,0,l),\n(563,315,ls),\n(578,435,o),\n(531,520,o),\n(397,520,cs),\n(329,520,o),\n(269,479,o),\n(242,430,c),\n(275,700,l),\n(135,700,l),\n(49,0,l)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 104;\n},\n{\nglyphname = hbar;\nlastChange = \"2025-01-01 09:20:25 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (46,0);\nref = h;\n},\n{\nclosed = 1;\nnodes = (\n(111,562,l),\n(377,562,l),\n(383,609,l),\n(117,609,l)\n);\n}\n);\nwidth = 669;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (58,0);\nref = h;\n},\n{\nclosed = 1;\nnodes = (\n(100,564,l),\n(409,564,l),\n(417,632,l),\n(108,632,l)\n);\n}\n);\nwidth = 686;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (53,0);\nref = h;\n},\n{\nclosed = 1;\nnodes = (\n(96,540,l),\n(439,540,l),\n(451,640,l),\n(108,640,l)\n);\n}\n);\nwidth = 712;\n}\n);\nunicode = 295;\n},\n{\nglyphname = hcircumflex;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = h;\n},\n{\npos = (167,0);\nref = circumflexcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = h;\n},\n{\npos = (176,0);\nref = circumflexcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = h;\n},\n{\npos = (236,22);\nref = circumflexcomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 293;\n},\n{\nglyphname = i;\nkernLeft = i;\nkernRight = i;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (-47,680);\n},\n{\npos = (-42,585);\n},\n{\npos = (-47,632);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(204,585,o),\n(228,607,o),\n(231,632,cs),\n(234,658,o),\n(216,680,o),\n(191,680,cs),\n(165,680,o),\n(140,658,o),\n(137,632,cs),\n(134,607,o),\n(153,585,o),\n(179,585,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(134,0,l),\n(196,500,l),\n(140,500,l),\n(78,0,l)\n);\n}\n);\nwidth = 274;\n},\n{\nguides = (\n{\npos = (-27,700);\n},\n{\npos = (-26,590);\n},\n{\npos = (-27,645);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(199,590,o),\n(226,615,o),\n(229,645,cs),\n(233,675,o),\n(212,700,o),\n(182,700,cs),\n(152,700,o),\n(124,675,o),\n(120,645,cs),\n(117,615,o),\n(139,590,o),\n(169,590,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(138,0,l),\n(200,500,l),\n(116,500,l),\n(54,0,l)\n);\n}\n);\nwidth = 253;\n},\n{\nguides = (\n{\npos = (15,559);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(219,559,o),\n(260,598,o),\n(266,644,cs),\n(272,690,o),\n(240,729,o),\n(192,729,cs),\n(147,729,o),\n(104,690,o),\n(98,644,cs),\n(92,598,o),\n(126,559,o),\n(171,559,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(173,0,l),\n(235,508,l),\n(95,508,l),\n(33,0,l)\n);\n}\n);\nwidth = 268;\n}\n);\nunicode = 105;\n},\n{\nglyphname = idotless;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (86,0);\n},\n{\nname = top;\npos = (149,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(115,0,l),\n(177,500,l),\n(121,500,l),\n(59,0,l)\n);\n}\n);\nwidth = 236;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (83,0);\n},\n{\nname = top;\npos = (144,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(125,0,l),\n(187,500,l),\n(103,500,l),\n(41,0,l)\n);\n}\n);\nwidth = 228;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (89,0);\n},\n{\nname = top;\npos = (150,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,0,l),\n(221,508,l),\n(81,508,l),\n(19,0,l)\n);\n}\n);\nwidth = 240;\n}\n);\nunicode = 305;\n},\n{\nglyphname = iacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (67,-12);\nref = acutecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (65,-12);\nref = acutecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (50,0);\nref = acutecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 237;\n},\n{\nglyphname = ibreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-28,-12);\nref = brevecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-31,-12);\nref = brevecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-50,0);\nref = brevecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 301;\n},\n{\nglyphname = icircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-17,-12);\nref = circumflexcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-45,-12);\nref = circumflexcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-60,0);\nref = circumflexcomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 238;\n},\n{\nglyphname = idieresis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-48,-12);\nref = dieresiscomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-53,-12);\nref = dieresiscomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-96,0);\nref = dieresiscomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 239;\n},\n{\nglyphname = idotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (51,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (38,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (23,0);\nref = dotaccentcomb;\n}\n);\nwidth = 240;\n}\n);\n},\n{\nglyphname = idotbelow;\nlastChange = \"2025-01-01 09:11:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = i;\n},\n{\npos = (66,0);\nref = dotbelowcomb;\n}\n);\nwidth = 274;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = i;\n},\n{\npos = (52,0);\nref = dotbelowcomb;\n}\n);\nwidth = 253;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = i;\n},\n{\npos = (43,0);\nref = dotbelowcomb;\n}\n);\nwidth = 268;\n}\n);\nunicode = 7883;\n},\n{\nglyphname = igrave;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-47,-12);\nref = gravecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-51,-12);\nref = gravecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-80,0);\nref = gravecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 236;\n},\n{\nglyphname = ihookabove;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (68,0);\nref = hookabovecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (44,0);\nref = hookabovecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (54,0);\nref = hookabovecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 7881;\n},\n{\nglyphname = imacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-16,-12);\nref = macroncomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-63,-12);\nref = macroncomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-53,-3);\nref = macroncomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 299;\n},\n{\nglyphname = iogonek;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (51,-12);\nref = dotaccentcomb;\n},\n{\npos = (-13,5);\nref = ogonekcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (38,-12);\nref = dotaccentcomb;\n},\n{\npos = (-7,1);\nref = ogonekcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (23,0);\nref = dotaccentcomb;\n},\n{\npos = (15,0);\nref = ogonekcomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 303;\n},\n{\nglyphname = itilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-44,-12);\nref = tildecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-42,-12);\nref = tildecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-80,0);\nref = tildecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 297;\n},\n{\nglyphname = ij;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = i;\n},\n{\npos = (254,0);\nref = j;\n}\n);\nwidth = 532;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = i;\n},\n{\npos = (223,0);\nref = j;\n}\n);\nwidth = 512;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = i;\n},\n{\npos = (268,0);\nref = j;\n}\n);\nwidth = 552;\n}\n);\nunicode = 307;\n},\n{\nglyphname = j;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (-37,680);\n},\n{\npos = (-32,585);\n},\n{\npos = (-37,632);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(81,-232,o),\n(125,-181,o),\n(136,-88,cs),\n(210,500,l),\n(154,500,l),\n(81,-87,ls),\n(70,-160,o),\n(41,-178,o),\n(-7,-178,cs),\n(-20,-178,o),\n(-36,-177,o),\n(-52,-174,c),\n(-58,-224,l),\n(-42,-229,o),\n(-20,-232,o),\n(-4,-232,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(214,585,o),\n(238,607,o),\n(241,632,cs),\n(244,658,o),\n(226,680,o),\n(201,680,cs),\n(175,680,o),\n(150,658,o),\n(147,632,cs),\n(144,607,o),\n(163,585,o),\n(189,585,cs)\n);\n}\n);\nwidth = 278;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(108,-230,o),\n(155,-179,o),\n(167,-86,cs),\n(240,500,l),\n(156,500,l),\n(84,-85,ls),\n(77,-139,o),\n(48,-158,o),\n(-1,-158,cs),\n(-14,-158,o),\n(-32,-157,o),\n(-48,-154,c),\n(-56,-222,l),\n(-40,-227,o),\n(-17,-230,o),\n(-1,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(237,590,o),\n(264,615,o),\n(267,645,cs),\n(271,675,o),\n(250,700,o),\n(220,700,cs),\n(190,700,o),\n(162,675,o),\n(158,645,cs),\n(155,615,o),\n(177,590,o),\n(207,590,cs)\n);\n}\n);\nwidth = 289;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(100,-230,o),\n(167,-169,o),\n(178,-76,cs),\n(251,508,l),\n(111,508,l),\n(45,-28,ls),\n(41,-66,o),\n(16,-90,o),\n(-20,-90,cs),\n(-33,-90,o),\n(-65,-89,o),\n(-81,-86,c),\n(-98,-222,l),\n(-82,-227,o),\n(-44,-230,o),\n(-28,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,559,o),\n(276,598,o),\n(282,644,cs),\n(288,690,o),\n(256,729,o),\n(208,729,cs),\n(163,729,o),\n(120,690,o),\n(114,644,cs),\n(108,598,o),\n(142,559,o),\n(187,559,cs)\n);\n}\n);\nwidth = 284;\n}\n);\nunicode = 106;\n},\n{\nglyphname = jdotless;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (181,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(81,-232,o),\n(125,-181,o),\n(136,-88,cs),\n(210,500,l),\n(154,500,l),\n(81,-87,ls),\n(70,-160,o),\n(41,-178,o),\n(-7,-178,cs),\n(-20,-178,o),\n(-36,-177,o),\n(-52,-174,c),\n(-58,-224,l),\n(-42,-229,o),\n(-20,-232,o),\n(-4,-232,cs)\n);\n}\n);\nwidth = 265;\n},\n{\nanchors = (\n{\nname = top;\npos = (197,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(108,-230,o),\n(155,-179,o),\n(167,-86,cs),\n(240,500,l),\n(156,500,l),\n(84,-85,ls),\n(77,-139,o),\n(48,-158,o),\n(-1,-158,cs),\n(-14,-158,o),\n(-32,-157,o),\n(-48,-154,c),\n(-56,-222,l),\n(-40,-227,o),\n(-17,-230,o),\n(-1,-230,cs)\n);\n}\n);\nwidth = 279;\n},\n{\nanchors = (\n{\nname = top;\npos = (181,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(100,-230,o),\n(167,-169,o),\n(178,-76,cs),\n(251,508,l),\n(111,508,l),\n(45,-28,ls),\n(41,-66,o),\n(16,-90,o),\n(-20,-90,cs),\n(-33,-90,o),\n(-65,-89,o),\n(-81,-86,c),\n(-98,-222,l),\n(-82,-227,o),\n(-44,-230,o),\n(-28,-230,cs)\n);\n}\n);\nwidth = 270;\n}\n);\nunicode = 567;\n},\n{\nglyphname = jacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (99,-12);\nref = acutecomb;\n}\n);\nwidth = 265;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (118,-12);\nref = acutecomb;\n}\n);\nwidth = 279;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (81,0);\nref = acutecomb;\n}\n);\nwidth = 270;\n}\n);\n},\n{\nglyphname = jcircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (15,-12);\nref = circumflexcomb;\n}\n);\nwidth = 265;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (8,-12);\nref = circumflexcomb;\n}\n);\nwidth = 279;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (-29,0);\nref = circumflexcomb;\n}\n);\nwidth = 270;\n}\n);\nunicode = 309;\n},\n{\nglyphname = k;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (230,0);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(248,291,l),\n(267,301,l),\n(483,500,l),\n(413,500,l),\n(103,219,l),\n(94,145,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(121,0,l),\n(207,700,l),\n(151,700,l),\n(65,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(437,0,l),\n(277,331,l),\n(234,294,l),\n(372,0,l)\n);\n}\n);\nwidth = 483;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (252,0);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(270,272,l),\n(296,288,l),\n(530,500,l),\n(426,500,l),\n(111,219,l),\n(99,120,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(145,0,l),\n(231,700,l),\n(147,700,l),\n(61,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(484,0,l),\n(320,322,l),\n(251,269,l),\n(382,0,l)\n);\n}\n);\nwidth = 525;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (284,0);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(309,241,l),\n(335,251,l),\n(601,508,l),\n(423,508,l),\n(97,210,l),\n(160,116,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(189,0,l),\n(276,712,l),\n(136,711,l),\n(49,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(557,0,l),\n(379,351,l),\n(248,280,l),\n(389,0,l)\n);\n}\n);\nwidth = 588;\n}\n);\nunicode = 107;\n},\n{\nglyphname = kcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = k;\n},\n{\npos = (201,12);\nref = commaaccentcomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = k;\n},\n{\npos = (207,12);\nref = commaaccentcomb;\n}\n);\nwidth = 525;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = k;\n},\n{\npos = (220,1);\nref = commaaccentcomb;\n}\n);\nwidth = 588;\n}\n);\nunicode = 311;\n},\n{\nglyphname = l;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (87,0);\n},\n{\nname = top;\npos = (174,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(115,0,l),\n(201,700,l),\n(145,700,l),\n(59,0,l)\n);\n}\n);\nwidth = 236;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (82,0);\n},\n{\nname = top;\npos = (168,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(125,0,l),\n(211,700,l),\n(127,700,l),\n(41,0,l)\n);\n}\n);\nwidth = 228;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (117,0);\n},\n{\nname = top;\npos = (204,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(187,0,l),\n(273,700,l),\n(133,700,l),\n(47,0,l)\n);\n}\n);\nwidth = 296;\n}\n);\nunicode = 108;\n},\n{\nglyphname = lacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (92,188);\nref = acutecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (89,188);\nref = acutecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (104,192);\nref = acutecomb;\n}\n);\nwidth = 296;\n}\n);\nunicode = 314;\n},\n{\nglyphname = lcaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(374,700,l),\n(281,700,l),\n(254,582,l),\n(304,582,l)\n);\n}\n);\nwidth = 319;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(398,700,l),\n(288,700,l),\n(260,563,l),\n(332,563,l)\n);\n}\n);\nwidth = 343;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(473,700,l),\n(343,700,l),\n(303,530,l),\n(398,530,l)\n);\n}\n);\nwidth = 418;\n}\n);\nunicode = 318;\n},\n{\nglyphname = lcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (58,12);\nref = commaaccentcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (37,12);\nref = commaaccentcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (53,1);\nref = commaaccentcomb;\n}\n);\nwidth = 296;\n}\n);\nunicode = 316;\n},\n{\nglyphname = ldot;\nlastChange = \"2025-01-01 08:52:59 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(329,303,o),\n(352,325,o),\n(355,349,cs),\n(358,375,o),\n(340,397,o),\n(316,397,cs),\n(290,397,o),\n(265,375,o),\n(262,349,cs),\n(259,325,o),\n(279,303,o),\n(305,303,cs)\n);\n}\n);\nwidth = 369;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(337,285,o),\n(370,315,o),\n(374,350,cs),\n(379,386,o),\n(353,416,o),\n(318,416,cs),\n(282,416,o),\n(249,386,o),\n(244,350,cs),\n(240,315,o),\n(266,285,o),\n(302,285,cs)\n);\n}\n);\nwidth = 382;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(423,262,o),\n(469,302,o),\n(475,352,cs),\n(481,400,o),\n(445,439,o),\n(397,439,cs),\n(348,439,o),\n(302,400,o),\n(296,352,cs),\n(290,302,o),\n(326,262,o),\n(375,262,cs)\n);\n}\n);\nwidth = 467;\n}\n);\nunicode = 320;\n},\n{\nglyphname = ldotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (54,1);\nref = dotbelowcomb;\n}\n);\nwidth = 296;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (55,0);\nref = dotbelowcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (38,0);\nref = dotbelowcomb;\n}\n);\nwidth = 228;\n}\n);\nunicode = 7735;\n},\n{\nglyphname = lmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (-32,1);\nref = macronbelowcomb;\n}\n);\nwidth = 296;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-23,12);\nref = macronbelowcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (-46,12);\nref = macronbelowcomb;\n}\n);\nwidth = 228;\n}\n);\nunicode = 7739;\n},\n{\nglyphname = lslash;\nlastChange = \"2025-01-01 09:14:27 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-18,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(273,423,l),\n(248,468,l),\n(-38,284,l),\n(-13,238,l)\n);\n}\n);\nwidth = 294;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (12,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(306,420,l),\n(270,480,l),\n(-32,286,l),\n(3,226,l)\n);\n}\n);\nwidth = 331;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (18,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(396,432,l),\n(338,518,l),\n(-42,278,l),\n(14,190,l)\n);\n}\n);\nwidth = 399;\n}\n);\nunicode = 322;\n},\n{\nglyphname = m;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(121,0,l),\n(154,270,ls),\n(166,366,o),\n(233,462,o),\n(332,462,cs),\n(413,462,o),\n(468,411,o),\n(455,310,cs),\n(417,0,l),\n(473,0,l),\n(513,322,ls),\n(528,442,o),\n(451,512,o),\n(354,512,cs),\n(235,512,o),\n(183,431,o),\n(170,396,c),\n(183,500,l),\n(127,500,l),\n(65,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(825,0,l),\n(865,322,ls),\n(880,442,o),\n(803,512,o),\n(706,512,cs),\n(587,512,o),\n(522,414,o),\n(509,379,c),\n(506,270,l),\n(519,373,o),\n(585,462,o),\n(684,462,cs),\n(765,462,o),\n(820,411,o),\n(807,310,cs),\n(769,0,l)\n);\n}\n);\nwidth = 944;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(145,0,l),\n(178,270,ls),\n(190,366,o),\n(246,436,o),\n(338,436,cs),\n(405,436,o),\n(446,403,o),\n(435,316,cs),\n(396,0,l),\n(480,0,l),\n(521,328,ls),\n(535,448,o),\n(472,512,o),\n(375,512,cs),\n(263,512,o),\n(208,441,o),\n(195,406,c),\n(207,500,l),\n(123,500,l),\n(61,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(815,0,l),\n(856,328,ls),\n(870,448,o),\n(807,512,o),\n(710,512,cs),\n(598,512,o),\n(532,432,o),\n(519,397,c),\n(513,270,l),\n(525,366,o),\n(581,436,o),\n(673,436,cs),\n(740,436,o),\n(781,403,o),\n(770,316,cs),\n(731,0,l)\n);\n}\n);\nwidth = 934;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,0,l),\n(218,239,ls),\n(231,347,o),\n(271,408,o),\n(354,408,cs),\n(411,408,o),\n(436,373,o),\n(426,296,cs),\n(390,0,l),\n(530,0,l),\n(568,315,ls),\n(583,435,o),\n(531,520,o),\n(402,520,cs),\n(334,520,o),\n(269,479,o),\n(242,430,c),\n(251,508,l),\n(111,508,l),\n(49,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(871,0,l),\n(909,315,ls),\n(924,435,o),\n(872,520,o),\n(743,520,cs),\n(679,520,o),\n(603,496,o),\n(564,410,c),\n(559,239,l),\n(572,347,o),\n(612,408,o),\n(695,408,cs),\n(752,408,o),\n(777,373,o),\n(767,296,cs),\n(731,0,l)\n);\n}\n);\nwidth = 974;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"9734DA5E-3835-4262-844E-572FF4DD55DE\";\nname = \"5 Apr 24 at 07:53\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(152,270,ls),\n(152,366,o),\n(200,458,o),\n(299,458,cs),\n(380,458,o),\n(448,411,o),\n(448,310,cs),\n(448,0,l),\n(504,0,l),\n(504,322,ls),\n(504,442,o),\n(424,512,o),\n(327,512,cs),\n(208,512,o),\n(161,431,o),\n(152,396,c),\n(152,500,l),\n(96,500,l),\n(96,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(504,270,l),\n(504,366,o),\n(552,458,o),\n(651,458,cs),\n(732,458,o),\n(800,411,o),\n(800,310,cs),\n(800,0,l),\n(856,0,l),\n(856,322,ls),\n(856,442,o),\n(776,512,o),\n(679,512,cs),\n(560,512,o),\n(513,431,o),\n(504,396,c)\n);\n}\n);\nwidth = 926;\n}\n);\nunicode = 109;\n},\n{\nglyphname = n;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (276,0);\n},\n{\nname = top;\npos = (339,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(121,0,l),\n(154,270,ls),\n(166,366,o),\n(233,462,o),\n(332,462,cs),\n(413,462,o),\n(468,411,o),\n(455,310,cs),\n(417,0,l),\n(473,0,l),\n(513,322,ls),\n(528,442,o),\n(451,512,o),\n(354,512,cs),\n(235,512,o),\n(183,431,o),\n(170,396,c),\n(183,500,l),\n(127,500,l),\n(65,0,l)\n);\n}\n);\nwidth = 592;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (276,0);\n},\n{\nname = top;\npos = (339,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(145,0,l),\n(178,270,ls),\n(190,366,o),\n(246,436,o),\n(338,436,cs),\n(405,436,o),\n(446,403,o),\n(435,316,cs),\n(396,0,l),\n(480,0,l),\n(521,328,ls),\n(535,448,o),\n(472,512,o),\n(375,512,cs),\n(263,512,o),\n(208,441,o),\n(195,406,c),\n(207,500,l),\n(123,500,l),\n(61,0,l)\n);\n}\n);\nwidth = 587;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (295,0);\n},\n{\nname = top;\npos = (364,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,0,l),\n(218,239,ls),\n(231,347,o),\n(267,408,o),\n(350,408,cs),\n(407,408,o),\n(430,370,o),\n(421,296,cs),\n(385,0,l),\n(525,0,l),\n(563,315,ls),\n(578,435,o),\n(531,520,o),\n(397,520,cs),\n(329,520,o),\n(269,479,o),\n(242,430,c),\n(251,508,l),\n(111,508,l),\n(49,0,l)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 110;\n},\n{\nglyphname = nacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (257,0);\nref = acutecomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (260,0);\nref = acutecomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (264,12);\nref = acutecomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 324;\n},\n{\nglyphname = ncaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (173,0);\nref = caroncomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (155,0);\nref = caroncomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (152,12);\nref = caroncomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 328;\n},\n{\nglyphname = ncommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (247,12);\nref = commaaccentcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (231,12);\nref = commaaccentcomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (231,1);\nref = commaaccentcomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 326;\n},\n{\nglyphname = ndotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (232,1);\nref = dotbelowcomb;\n}\n);\nwidth = 624;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (244,0);\nref = dotbelowcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (232,0);\nref = dotbelowcomb;\n}\n);\nwidth = 587;\n}\n);\nunicode = 7751;\n},\n{\ncolor = 3;\nglyphname = nhookleft;\nkernLeft = j;\nkernRight = n;\nlastChange = \"2025-01-01 10:14:12 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (205,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(138,-165,o),\n(205,-104,o),\n(215,-11,cs),\n(242,239,ls),\n(254,347,o),\n(288,408,o),\n(371,408,cs),\n(428,408,o),\n(452,370,o),\n(444,296,cs),\n(413,0,l),\n(553,0,l),\n(586,315,ls),\n(599,435,o),\n(550,520,o),\n(416,520,cs),\n(348,520,o),\n(289,479,o),\n(262,430,c),\n(271,508,l),\n(131,508,l),\n(80,37,ls),\n(76,-1,o),\n(52,-25,o),\n(16,-25,cs),\n(3,-25,o),\n(-29,-24,o),\n(-45,-21,c),\n(-60,-157,l),\n(-44,-162,o),\n(-6,-165,o),\n(10,-165,cs)\n);\n}\n);\nwidth = 646;\n},\n{\nguides = (\n{\npos = (579,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(81,-133,o),\n(124,-88,o),\n(134,5,cs),\n(162,270,ls),\n(172,366,o),\n(237,462,o),\n(336,462,cs),\n(417,462,o),\n(473,411,o),\n(462,310,cs),\n(430,0,l),\n(486,0,l),\n(520,322,ls),\n(532,442,o),\n(455,512,o),\n(358,512,cs),\n(239,512,o),\n(188,431,o),\n(175,396,c),\n(186,500,l),\n(130,500,l),\n(78,6,ls),\n(71,-67,o),\n(40,-79,o),\n(-8,-79,cs),\n(-21,-79,o),\n(-37,-78,o),\n(-53,-75,c),\n(-58,-125,l),\n(-42,-130,o),\n(-20,-133,o),\n(-4,-133,cs)\n);\n}\n);\nwidth = 598;\n},\n{\nguides = (\n{\npos = (330,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(107,-142,o),\n(154,-91,o),\n(164,2,cs),\n(192,270,ls),\n(202,366,o),\n(257,436,o),\n(349,436,cs),\n(416,436,o),\n(457,403,o),\n(448,316,cs),\n(415,0,l),\n(499,0,l),\n(533,328,ls),\n(546,448,o),\n(482,512,o),\n(385,512,cs),\n(273,512,o),\n(219,441,o),\n(206,406,c),\n(216,500,l),\n(132,500,l),\n(80,3,ls),\n(74,-51,o),\n(45,-70,o),\n(-4,-70,cs),\n(-17,-70,o),\n(-35,-69,o),\n(-50,-66,c),\n(-57,-134,l),\n(-41,-139,o),\n(-18,-142,o),\n(-2,-142,cs)\n);\n}\n);\nwidth = 599;\n}\n);\nunicode = 626;\n},\n{\ncolor = 3;\nglyphname = nhookretroflex;\nkernLeft = n;\nlastChange = \"2025-01-01 10:16:17 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (176,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(572,-165,o),\n(610,-162,o),\n(628,-157,c),\n(641,-21,l),\n(625,-24,o),\n(593,-25,o),\n(580,-25,cs),\n(544,-25,o),\n(524,1,o),\n(528,37,cs),\n(557,315,ls),\n(570,435,o),\n(521,520,o),\n(387,520,cs),\n(319,520,o),\n(260,479,o),\n(233,430,c),\n(242,508,l),\n(102,508,l),\n(48,0,l),\n(188,0,l),\n(213,239,ls),\n(225,347,o),\n(259,408,o),\n(342,408,cs),\n(399,408,o),\n(423,370,o),\n(415,296,cs),\n(384,-5,ls),\n(374,-98,o),\n(428,-165,o),\n(556,-165,cs)\n);\n}\n);\nwidth = 626;\n},\n{\nguides = (\n{\npos = (566,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(543,-133,o),\n(565,-130,o),\n(583,-125,c),\n(588,-75,l),\n(572,-78,o),\n(554,-79,o),\n(541,-79,cs),\n(493,-79,o),\n(466,-61,o),\n(474,12,cs),\n(507,322,ls),\n(520,442,o),\n(442,512,o),\n(345,512,cs),\n(226,512,o),\n(175,431,o),\n(162,396,c),\n(173,500,l),\n(117,500,l),\n(65,0,l),\n(121,0,l),\n(149,270,ls),\n(159,366,o),\n(224,462,o),\n(323,462,cs),\n(404,462,o),\n(459,411,o),\n(449,310,cs),\n(418,11,ls),\n(408,-82,o),\n(442,-133,o),\n(527,-133,cs)\n);\n}\n);\nwidth = 578;\n},\n{\nguides = (\n{\npos = (310,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(548,-142,o),\n(571,-139,o),\n(589,-134,c),\n(596,-66,l),\n(579,-69,o),\n(561,-70,o),\n(548,-70,cs),\n(499,-70,o),\n(474,-51,o),\n(480,3,cs),\n(513,328,ls),\n(525,448,o),\n(462,512,o),\n(365,512,cs),\n(253,512,o),\n(199,441,o),\n(186,406,c),\n(196,500,l),\n(112,500,l),\n(60,0,l),\n(144,0,l),\n(172,270,ls),\n(182,366,o),\n(237,436,o),\n(329,436,cs),\n(396,436,o),\n(437,403,o),\n(428,316,cs),\n(396,2,ls),\n(386,-91,o),\n(423,-142,o),\n(532,-142,cs)\n);\n}\n);\nwidth = 586;\n}\n);\nunicode = 627;\n},\n{\nglyphname = nmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (146,1);\nref = macronbelowcomb;\n}\n);\nwidth = 624;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (166,12);\nref = macronbelowcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (148,12);\nref = macronbelowcomb;\n}\n);\nwidth = 587;\n}\n);\nunicode = 7753;\n},\n{\nglyphname = ntilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (146,0);\nref = tildecomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (153,0);\nref = tildecomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (134,12);\nref = tildecomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 241;\n},\n{\ncolor = 3;\nglyphname = eng;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2025-01-01 10:16:27 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (295,0);\n},\n{\nname = top;\npos = (364,520);\n}\n);\nguides = (\n{\npos = (185,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(563,315,ls),\n(578,435,o),\n(531,520,o),\n(397,520,cs),\n(329,520,o),\n(269,479,o),\n(242,430,c),\n(251,508,l),\n(111,508,l),\n(49,0,l),\n(189,0,l),\n(218,239,ls),\n(231,347,o),\n(267,408,o),\n(350,408,cs),\n(407,408,o),\n(430,370,o),\n(421,296,cs),\n(390,37,ls),\n(386,-1,o),\n(361,-25,o),\n(325,-25,cs),\n(312,-25,o),\n(280,-24,o),\n(264,-21,c),\n(247,-157,l),\n(263,-162,o),\n(301,-165,o),\n(317,-165,cs),\n(445,-165,o),\n(511,-104,o),\n(523,-11,cs)\n);\n}\n);\nwidth = 624;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (276,0);\n},\n{\nname = top;\npos = (339,512);\n}\n);\nguides = (\n{\npos = (576,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(513,322,ls),\n(528,442,o),\n(451,512,o),\n(354,512,cs),\n(235,512,o),\n(183,431,o),\n(170,396,c),\n(183,500,l),\n(127,500,l),\n(65,0,l),\n(121,0,l),\n(154,270,ls),\n(166,366,o),\n(233,462,o),\n(332,462,cs),\n(413,462,o),\n(467,411,o),\n(455,310,cs),\n(419,10,ls),\n(410,-63,o),\n(380,-79,o),\n(332,-79,cs),\n(319,-79,o),\n(302,-78,o),\n(286,-75,c),\n(280,-125,l),\n(296,-130,o),\n(318,-133,o),\n(334,-133,cs),\n(419,-133,o),\n(462,-89,o),\n(474,4,cs)\n);\n}\n);\nwidth = 592;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (275,0);\n},\n{\nname = top;\npos = (338,512);\n}\n);\nguides = (\n{\npos = (320,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(520,328,ls),\n(535,448,o),\n(471,512,o),\n(374,512,cs),\n(262,512,o),\n(207,441,o),\n(194,406,c),\n(206,500,l),\n(122,500,l),\n(60,0,l),\n(144,0,l),\n(177,270,ls),\n(189,366,o),\n(245,436,o),\n(337,436,cs),\n(404,436,o),\n(445,403,o),\n(434,316,cs),\n(396,3,ls),\n(389,-51,o),\n(360,-70,o),\n(311,-70,cs),\n(298,-70,o),\n(280,-69,o),\n(264,-66,c),\n(256,-134,l),\n(272,-139,o),\n(295,-142,o),\n(311,-142,cs),\n(420,-142,o),\n(468,-91,o),\n(480,2,cs)\n);\n}\n);\nwidth = 590;\n}\n);\nunicode = 331;\n},\n{\nglyphname = o;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (252,-12);\n},\n{\nname = top;\npos = (316,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(376,-12,o),\n(491,78,o),\n(512,250,cs),\n(533,422,o),\n(440,512,o),\n(316,512,cs),\n(192,512,o),\n(77,422,o),\n(56,250,cs),\n(35,78,o),\n(128,-12,o),\n(252,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,38,o),\n(98,121,o),\n(114,250,cs),\n(130,379,o),\n(199,462,o),\n(310,462,cs),\n(421,462,o),\n(470,379,o),\n(454,250,cs),\n(438,121,o),\n(369,38,o),\n(258,38,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (258,-12);\n},\n{\nname = top;\npos = (322,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(382,-12,o),\n(503,78,o),\n(524,250,cs),\n(545,422,o),\n(452,512,o),\n(322,512,cs),\n(198,512,o),\n(77,422,o),\n(56,250,cs),\n(35,78,o),\n(128,-12,o),\n(258,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(169,64,o),\n(126,135,o),\n(140,250,cs),\n(154,365,o),\n(217,436,o),\n(313,436,cs),\n(411,436,o),\n(454,365,o),\n(440,250,cs),\n(426,135,o),\n(365,64,o),\n(267,64,cs)\n);\n}\n);\nwidth = 580;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (270,-12);\n},\n{\nname = top;\npos = (336,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(401,-12,o),\n(545,70,o),\n(568,254,cs),\n(591,440,o),\n(473,520,o),\n(336,520,cs),\n(207,520,o),\n(59,440,o),\n(36,254,cs),\n(13,70,o),\n(133,-12,o),\n(270,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(207,108,o),\n(171,164,o),\n(182,254,cs),\n(193,342,o),\n(244,400,o),\n(321,400,cs),\n(403,400,o),\n(433,342,o),\n(422,254,cs),\n(411,164,o),\n(366,108,o),\n(285,108,cs)\n);\n}\n);\nwidth = 604;\n}\n);\nunicode = 111;\n},\n{\nglyphname = oacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (234,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (243,0);\nref = acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (236,12);\nref = acutecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 243;\n},\n{\nglyphname = obreve;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (139,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (147,0);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (136,12);\nref = brevecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 335;\n},\n{\nglyphname = ocircumflex;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (150,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (133,0);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (126,12);\nref = circumflexcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 244;\n},\n{\nglyphname = ocircumflexacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (32,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (42,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (156,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7889;\n},\n{\nglyphname = ocircumflexdotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (220,-12);\nref = dotbelowcomb;\n},\n{\npos = (150,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (214,-12);\nref = dotbelowcomb;\n},\n{\npos = (133,0);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (207,-11);\nref = dotbelowcomb;\n},\n{\npos = (126,12);\nref = circumflexcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7897;\n},\n{\nglyphname = ocircumflexgrave;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (174,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (166,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (156,13);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7891;\n},\n{\nglyphname = ocircumflexhookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (177,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (169,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (155,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7893;\n},\n{\nglyphname = ocircumflextilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (182,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (173,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (131,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7895;\n},\n{\nglyphname = odieresis;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (119,0);\nref = dieresiscomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (125,0);\nref = dieresiscomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (90,12);\nref = dieresiscomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 246;\n},\n{\nglyphname = odotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (220,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (214,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (207,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7885;\n},\n{\nglyphname = ograve;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (120,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (127,0);\nref = gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (106,12);\nref = gravecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 242;\n},\n{\nglyphname = ohookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (235,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (222,12);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (240,12);\nref = hookabovecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7887;\n},\n{\nglyphname = ohorn;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2025-01-01 09:33:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(512,434,o),\n(605,512,o),\n(571,634,c),\n(508,615,l),\n(530,545,o),\n(495,483,o),\n(431,483,cs),\n(401,483,o),\n(371,498,o),\n(342,505,c),\n(337,462,l),\n(425,434,l)\n);\n},\n{\npos = (-31,0);\nref = o;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(546,430,o),\n(618,513,o),\n(584,635,c),\n(502,613,l),\n(523,554,o),\n(505,484,o),\n(437,484,cs),\n(414,484,o),\n(374,500,o),\n(351,504,c),\n(344,447,l),\n(412,430,l)\n);\n},\n{\npos = (-31,0);\nref = o;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(595,413,o),\n(693,522,o),\n(655,657,c),\n(538,626,l),\n(559,567,o),\n(546,494,o),\n(465,494,cs),\n(429,494,o),\n(408,508,o),\n(355,516,c),\n(345,433,l),\n(462,413,l)\n);\n},\n{\npos = (-31,0);\nref = o;\n}\n);\nwidth = 685;\n}\n);\nunicode = 417;\n},\n{\nglyphname = ohornacute;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (203,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (212,0);\nref = acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (205,12);\nref = acutecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7899;\n},\n{\nglyphname = ohorndotbelow;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (189,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (183,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (176,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7907;\n},\n{\nglyphname = ohorngrave;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (89,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (96,0);\nref = gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (75,12);\nref = gravecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7901;\n},\n{\nglyphname = ohornhookabove;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (204,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (191,12);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (209,12);\nref = hookabovecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7903;\n},\n{\nglyphname = ohorntilde;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (92,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (105,0);\nref = tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (75,12);\nref = tildecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7905;\n},\n{\nglyphname = ohungarumlaut;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (165,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (167,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (139,12);\nref = hungarumlautcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 337;\n},\n{\nglyphname = omacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (151,0);\nref = macroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (115,0);\nref = macroncomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (133,9);\nref = macroncomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 333;\n},\n{\nglyphname = oopen;\nlastChange = \"2025-01-01 09:15:19 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nangle = 180;\npos = (518,500);\nref = c;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nangle = 180;\npos = (536,500);\nref = c;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nangle = 180;\npos = (550,508);\nref = c;\n}\n);\nwidth = 550;\n}\n);\nunicode = 596;\n},\n{\nglyphname = oslash;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 09:34:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-24,0);\nref = o;\n},\n{\nclosed = 1;\nnodes = (\n(20,-27,l),\n(528,493,l),\n(495,523,l),\n(-11,6,l)\n);\n}\n);\nwidth = 576;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-18,0);\nref = o;\n},\n{\nclosed = 1;\nnodes = (\n(34,-34,l),\n(550,488,l),\n(502,532,l),\n(-12,13,l)\n);\n}\n);\nwidth = 595;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-25,0);\nref = o;\n},\n{\nclosed = 1;\nnodes = (\n(42,-51,l),\n(594,495,l),\n(522,556,l),\n(-28,13,l)\n);\n}\n);\nwidth = 613;\n}\n);\nunicode = 248;\n},\n{\nglyphname = oslashacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = oslash;\n},\n{\npos = (210,0);\nref = acutecomb;\n}\n);\nwidth = 576;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = oslash;\n},\n{\npos = (225,0);\nref = acutecomb;\n}\n);\nwidth = 595;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = oslash;\n},\n{\npos = (211,12);\nref = acutecomb;\n}\n);\nwidth = 613;\n}\n);\nunicode = 511;\n},\n{\nglyphname = otilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (123,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (136,0);\nref = tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (106,12);\nref = tildecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 245;\n},\n{\nglyphname = oe;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (830,-13);\n},\n{\nname = top;\npos = (890,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(376,-12,o),\n(482,78,o),\n(503,250,cs),\n(524,422,o),\n(440,512,o),\n(316,512,cs),\n(192,512,o),\n(77,422,o),\n(56,250,cs),\n(35,78,o),\n(128,-12,o),\n(252,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,38,o),\n(98,121,o),\n(114,250,cs),\n(130,379,o),\n(199,462,o),\n(310,462,cs),\n(421,462,o),\n(470,379,o),\n(454,250,cs),\n(438,121,o),\n(369,38,o),\n(258,38,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(791,-13,o),\n(867,62,o),\n(902,144,c),\n(850,154,l),\n(825,100,o),\n(768,37,o),\n(672,37,cs),\n(553,37,o),\n(501,118,o),\n(516,245,cs),\n(531,368,o),\n(591,462,o),\n(721,462,cs),\n(828,462,o),\n(871,368,o),\n(862,289,c),\n(511,289,l),\n(505,239,l),\n(916,239,l),\n(919,267,l),\n(938,422,o),\n(851,512,o),\n(723,512,cs),\n(586,512,o),\n(485,412,o),\n(465,248,cs),\n(445,87,o),\n(516,-13,o),\n(662,-13,cs)\n);\n}\n);\nwidth = 973;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (844,-13);\n},\n{\nname = top;\npos = (904,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(382,-12,o),\n(493,78,o),\n(514,250,cs),\n(535,422,o),\n(452,512,o),\n(322,512,cs),\n(198,512,o),\n(77,422,o),\n(56,250,cs),\n(35,78,o),\n(128,-12,o),\n(258,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(169,64,o),\n(126,135,o),\n(140,250,cs),\n(154,365,o),\n(217,436,o),\n(313,436,cs),\n(411,436,o),\n(454,365,o),\n(440,250,cs),\n(426,135,o),\n(365,64,o),\n(267,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(775,-13,o),\n(851,55,o),\n(886,137,c),\n(806,151,l),\n(780,97,o),\n(720,63,o),\n(663,63,cs),\n(538,63,o),\n(516,150,o),\n(527,245,cs),\n(542,367,o),\n(597,436,o),\n(706,436,cs),\n(800,436,o),\n(828,345,o),\n(823,304,c),\n(530,304,l),\n(521,234,l),\n(900,234,l),\n(903,261,l),\n(925,434,o),\n(835,512,o),\n(711,512,cs),\n(574,512,o),\n(472,412,o),\n(452,248,cs),\n(432,87,o),\n(510,-13,o),\n(650,-13,cs)\n);\n}\n);\nwidth = 958;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (301,-13);\n},\n{\nname = top;\npos = (365,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(401,-12,o),\n(529,70,o),\n(552,254,cs),\n(575,440,o),\n(473,520,o),\n(336,520,cs),\n(207,520,o),\n(59,440,o),\n(36,254,cs),\n(13,70,o),\n(133,-12,o),\n(270,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(207,108,o),\n(171,164,o),\n(182,254,cs),\n(193,342,o),\n(244,400,o),\n(321,400,cs),\n(403,400,o),\n(433,342,o),\n(422,254,cs),\n(411,164,o),\n(366,108,o),\n(285,108,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(745,-13,o),\n(846,23,o),\n(906,134,c),\n(779,173,l),\n(755,130,o),\n(705,107,o),\n(675,107,cs),\n(586,107,o),\n(554,164,o),\n(565,256,cs),\n(575,337,o),\n(622,400,o),\n(706,400,cs),\n(773,400,o),\n(803,336,o),\n(799,301,c),\n(538,301,l),\n(528,215,l),\n(931,215,l),\n(935,248,l),\n(956,418,o),\n(872,520,o),\n(722,520,cs),\n(591,520,o),\n(464,436,o),\n(442,256,cs),\n(421,82,o),\n(523,-13,o),\n(658,-13,cs)\n);\n}\n);\nwidth = 972;\n}\n);\nunicode = 339;\n},\n{\nglyphname = p;\nkernRight = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(147,43,o),\n(203,-12,o),\n(294,-12,cs),\n(411,-12,o),\n(518,86,o),\n(538,250,cs),\n(559,419,o),\n(489,512,o),\n(358,512,cs),\n(273,512,o),\n(197,457,o),\n(171,402,c),\n(183,500,l),\n(127,500,l),\n(37,-230,l),\n(93,-230,l),\n(133,98,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(209,38,o),\n(135,108,o),\n(151,250,c),\n(169,392,o),\n(261,462,o),\n(340,462,cs),\n(453,462,o),\n(495,377,o),\n(479,252,cs),\n(464,124,o),\n(387,38,o),\n(288,38,cs)\n);\n}\n);\nwidth = 594;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(170,24,o),\n(239,-12,o),\n(308,-12,cs),\n(442,-12,o),\n(541,86,o),\n(561,250,cs),\n(582,419,o),\n(506,512,o),\n(367,512,cs),\n(279,512,o),\n(220,457,o),\n(195,402,c),\n(207,500,l),\n(123,500,l),\n(33,-230,l),\n(117,-230,l),\n(157,93,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(208,64,o),\n(164,148,o),\n(177,250,cs),\n(191,360,o),\n(254,437,o),\n(353,437,cs),\n(451,437,o),\n(489,356,o),\n(476,252,cs),\n(463,148,o),\n(405,64,o),\n(304,64,cs)\n);\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,29,o),\n(234,-12,o),\n(317,-12,cs),\n(448,-12,o),\n(549,88,o),\n(569,253,cs),\n(590,421,o),\n(509,520,o),\n(378,520,cs),\n(300,520,o),\n(244,470,o),\n(211,415,c),\n(222,508,l),\n(81,508,l),\n(-8,-230,l),\n(132,-230,l),\n(170,83,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(218,97,o),\n(179,158,o),\n(191,253,cs),\n(202,341,o),\n(256,410,o),\n(324,410,cs),\n(396,410,o),\n(434,340,o),\n(423,253,cs),\n(411,157,o),\n(357,95,o),\n(286,96,cs)\n);\n}\n);\nwidth = 613;\n}\n);\nunicode = 112;\n},\n{\nglyphname = thorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(147,43,o),\n(203,-12,o),\n(294,-12,cs),\n(411,-12,o),\n(518,86,o),\n(538,250,cs),\n(559,419,o),\n(489,512,o),\n(358,512,cs),\n(273,512,o),\n(197,457,o),\n(171,402,c),\n(207,700,l),\n(151,700,l),\n(37,-230,l),\n(93,-230,l),\n(133,98,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(209,38,o),\n(135,108,o),\n(151,250,c),\n(169,392,o),\n(261,462,o),\n(340,462,cs),\n(453,462,o),\n(495,377,o),\n(479,252,cs),\n(464,124,o),\n(387,38,o),\n(288,38,cs)\n);\n}\n);\nwidth = 594;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(170,24,o),\n(239,-12,o),\n(308,-12,cs),\n(442,-12,o),\n(541,86,o),\n(561,250,cs),\n(582,419,o),\n(506,512,o),\n(367,512,cs),\n(279,512,o),\n(220,457,o),\n(195,402,c),\n(231,700,l),\n(147,700,l),\n(33,-230,l),\n(117,-230,l),\n(157,93,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(208,64,o),\n(164,148,o),\n(177,250,cs),\n(191,360,o),\n(254,437,o),\n(353,437,cs),\n(451,437,o),\n(489,356,o),\n(476,252,cs),\n(463,148,o),\n(405,64,o),\n(304,64,cs)\n);\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(191,29,o),\n(236,-12,o),\n(319,-12,cs),\n(450,-12,o),\n(551,88,o),\n(571,253,cs),\n(592,421,o),\n(511,520,o),\n(380,520,cs),\n(302,520,o),\n(246,470,o),\n(213,415,c),\n(248,700,l),\n(107,700,l),\n(-6,-230,l),\n(134,-230,l),\n(172,83,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(220,97,o),\n(181,158,o),\n(193,253,cs),\n(204,341,o),\n(258,410,o),\n(326,410,cs),\n(398,410,o),\n(436,340,o),\n(425,253,cs),\n(413,157,o),\n(359,95,o),\n(288,96,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 254;\n},\n{\nglyphname = q;\nkernLeft = o;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(488,-231,o),\n(499,-226,o),\n(514,-218,c),\n(519,-171,l),\n(476,-190,o),\n(447,-176,o),\n(453,-126,c),\n(529,500,l),\n(473,500,l),\n(461,402,l),\n(447,457,o),\n(385,512,o),\n(300,512,cs),\n(169,512,o),\n(77,419,o),\n(56,250,cs),\n(36,86,o),\n(119,-12,o),\n(236,-12,cs),\n(327,-12,o),\n(397,43,o),\n(423,98,c),\n(395,-141,ls),\n(386,-212,o),\n(424,-229,o),\n(463,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,38,o),\n(100,124,o),\n(115,252,cs),\n(131,377,o),\n(193,462,o),\n(306,462,cs),\n(385,462,o),\n(459,392,o),\n(443,250,c),\n(425,108,o),\n(333,38,o),\n(254,38,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(498,-230,o),\n(512,-226,o),\n(527,-218,c),\n(535,-150,l),\n(485,-161,o),\n(474,-143,o),\n(481,-103,cs),\n(555,500,l),\n(472,500,l),\n(460,402,l),\n(445,457,o),\n(400,512,o),\n(312,512,cs),\n(181,512,o),\n(75,419,o),\n(54,250,cs),\n(34,86,o),\n(112,-12,o),\n(243,-12,cs),\n(312,-12,o),\n(392,27,o),\n(421,96,c),\n(394,-124,ls),\n(384,-204,o),\n(421,-230,o),\n(473,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(163,64,o),\n(125,148,o),\n(138,252,cs),\n(151,356,o),\n(209,437,o),\n(307,437,cs),\n(406,437,o),\n(451,360,o),\n(437,250,cs),\n(424,148,o),\n(360,64,o),\n(264,64,cs)\n);\n}\n);\nwidth = 604;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(512,-229,o),\n(553,-222,o),\n(568,-214,c),\n(581,-104,l),\n(531,-115,o),\n(519,-100,o),\n(523,-60,cs),\n(594,508,l),\n(453,508,l),\n(442,415,l),\n(423,470,o),\n(379,520,o),\n(301,520,cs),\n(170,520,o),\n(65,421,o),\n(44,253,cs),\n(24,88,o),\n(99,-12,o),\n(230,-12,cs),\n(313,-12,o),\n(368,29,o),\n(401,83,c),\n(378,-100,ls),\n(366,-191,o),\n(410,-229,o),\n(485,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,95,o),\n(178,157,o),\n(190,253,cs),\n(201,340,o),\n(255,410,o),\n(327,410,cs),\n(395,410,o),\n(433,341,o),\n(422,253,cs),\n(410,158,o),\n(357,97,o),\n(289,96,cs)\n);\n}\n);\nwidth = 655;\n}\n);\nunicode = 113;\n},\n{\nglyphname = r;\nlastChange = \"2025-02-21 05:19:56 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (94,0);\n},\n{\nname = top;\npos = (247,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(121,0,l),\n(154,270,ls),\n(166,366,o),\n(232,456,o),\n(331,456,cs),\n(349,456,o),\n(367,454,o),\n(382,449,c),\n(390,509,l),\n(378,511,o),\n(366,512,o),\n(354,512,cs),\n(235,512,o),\n(183,431,o),\n(170,396,c),\n(183,500,l),\n(127,500,l),\n(65,0,l)\n);\n}\n);\nwidth = 375;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (105,0);\n},\n{\nname = top;\npos = (242,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(145,0,l),\n(178,270,ls),\n(190,366,o),\n(242,420,o),\n(325,436,cs),\n(350,441,o),\n(385,436,o),\n(404,430,c),\n(414,508,l),\n(405,510,o),\n(381,512,o),\n(371,512,cs),\n(268,512,o),\n(221,454,o),\n(195,401,c),\n(207,500,l),\n(123,500,l),\n(61,0,l)\n);\n}\n);\nwidth = 402;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (118,0);\n},\n{\nname = top;\npos = (263,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,0,l),\n(216,221,ls),\n(228,317,o),\n(257,375,o),\n(338,391,cs),\n(363,396,o),\n(398,391,o),\n(417,385,c),\n(433,516,l),\n(425,519,o),\n(401,520,o),\n(391,520,cs),\n(323,520,o),\n(267,477,o),\n(241,424,c),\n(251,508,l),\n(111,508,l),\n(49,0,l)\n);\n}\n);\nwidth = 419;\n}\n);\nunicode = 114;\n},\n{\nglyphname = racute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (165,-12);\nref = acutecomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (163,-12);\nref = acutecomb;\n}\n);\nwidth = 402;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (163,12);\nref = acutecomb;\n}\n);\nwidth = 419;\n}\n);\nunicode = 341;\n},\n{\nglyphname = rcaron;\nlastChange = \"2025-02-21 05:19:56 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (81,-12);\nref = caroncomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (58,-12);\nref = caroncomb;\n}\n);\nwidth = 402;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (51,12);\nref = caroncomb;\n}\n);\nwidth = 419;\n}\n);\nunicode = 345;\n},\n{\nglyphname = rcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (65,12);\nref = commaaccentcomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (60,12);\nref = commaaccentcomb;\n}\n);\nwidth = 402;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (54,1);\nref = commaaccentcomb;\n}\n);\nwidth = 419;\n}\n);\nunicode = 343;\n},\n{\nglyphname = rdotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (55,1);\nref = dotbelowcomb;\n}\n);\nwidth = 419;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (62,0);\nref = dotbelowcomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (61,0);\nref = dotbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7771;\n},\n{\nglyphname = rmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (-31,1);\nref = macronbelowcomb;\n}\n);\nwidth = 419;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-16,12);\nref = macronbelowcomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (-23,12);\nref = macronbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7775;\n},\n{\nglyphname = s;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (220,-12);\n},\n{\nname = top;\npos = (285,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(364,-12,o),\n(427,53,o),\n(437,134,cs),\n(461,331,o),\n(125,228,o),\n(143,371,cs),\n(150,432,o),\n(212,462,o),\n(278,462,cs),\n(354,462,o),\n(397,418,o),\n(390,367,c),\n(450,367,l),\n(458,429,o),\n(434,512,o),\n(285,512,cs),\n(162,512,o),\n(93,441,o),\n(84,368,cs),\n(60,168,o),\n(395,269,o),\n(379,134,cs),\n(371,70,o),\n(313,38,o),\n(228,38,cs),\n(163,38,o),\n(89,80,o),\n(98,156,c),\n(38,156,l),\n(26,57,o),\n(117,-12,o),\n(220,-12,cs)\n);\n}\n);\nwidth = 505;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (219,-12);\n},\n{\nname = top;\npos = (275,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(366,-12,o),\n(433,60,o),\n(443,141,cs),\n(467,338,o),\n(137,253,o),\n(151,365,cs),\n(156,407,o),\n(192,436,o),\n(265,436,cs),\n(345,436,o),\n(378,400,o),\n(374,367,c),\n(460,367,l),\n(468,429,o),\n(428,512,o),\n(275,512,cs),\n(145,512,o),\n(75,433,o),\n(67,360,cs),\n(42,161,o),\n(373,258,o),\n(358,137,cs),\n(352,87,o),\n(304,64,o),\n(230,64,cs),\n(172,64,o),\n(113,93,o),\n(120,156,c),\n(30,156,l),\n(18,57,o),\n(110,-12,o),\n(219,-12,c)\n);\n}\n);\nwidth = 503;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (242,-12);\n},\n{\nname = top;\npos = (305,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(396,-12,o),\n(489,53,o),\n(503,162,cs),\n(525,347,o),\n(199,287,o),\n(208,361,cs),\n(212,389,o),\n(235,406,o),\n(290,406,cs),\n(347,406,o),\n(379,380,o),\n(376,351,c),\n(512,351,l),\n(521,424,o),\n(477,520,o),\n(305,520,cs),\n(150,520,o),\n(80,447,o),\n(68,355,cs),\n(44,157,o),\n(371,224,o),\n(363,155,cs),\n(358,116,o),\n(320,102,o),\n(263,102,cs),\n(197,102,o),\n(156,126,o),\n(162,175,c),\n(26,176,l),\n(14,77,o),\n(84,-12,o),\n(242,-12,c)\n);\n}\n);\nwidth = 554;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"F69D4450-EE1F-4301-BB03-F9CA77403C17\";\nname = \"10 Aug 24 at 16:46\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(434,-12,o),\n(514,66,o),\n(514,145,cs),\n(514,351,o),\n(195,285,o),\n(195,361,cs),\n(195,389,o),\n(216,406,o),\n(271,406,cs),\n(328,406,o),\n(364,380,o),\n(364,351,c),\n(500,351,l),\n(500,424,o),\n(444,520,o),\n(272,520,cs),\n(117,520,o),\n(56,448,o),\n(56,364,cs),\n(56,156,o),\n(375,226,o),\n(375,155,cs),\n(375,116,o),\n(339,102,o),\n(282,102,cs),\n(216,102,o),\n(172,126,o),\n(172,175,c),\n(36,176,l),\n(36,77,o),\n(117,-12,o),\n(275,-12,c)\n);\n}\n);\nvisible = 1;\nwidth = 554;\n}\n);\nunicode = 115;\n},\n{\nglyphname = sacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (203,0);\nref = acutecomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (196,0);\nref = acutecomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (205,12);\nref = acutecomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 347;\n},\n{\nglyphname = scaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (119,0);\nref = caroncomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (91,0);\nref = caroncomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (93,12);\nref = caroncomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 353;\n},\n{\nglyphname = scedilla;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (143,-14);\nref = cedillacomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (132,-14);\nref = cedillacomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (145,-11);\nref = cedillacomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 351;\n},\n{\nglyphname = scircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (119,0);\nref = circumflexcomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (86,0);\nref = circumflexcomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (95,12);\nref = circumflexcomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 349;\n},\n{\nglyphname = scommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (191,0);\nref = commaaccentcomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (174,0);\nref = commaaccentcomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (178,-11);\nref = commaaccentcomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 537;\n},\n{\nglyphname = germandbls;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(191,122,l),\n(182,46,o),\n(238,-12,o),\n(335,-12,cs),\n(425,-12,o),\n(504,41,o),\n(516,140,cs),\n(537,303,o),\n(367,302,o),\n(377,379,cs),\n(383,431,o),\n(447,461,o),\n(459,557,cs),\n(470,646,o),\n(409,712,o),\n(313,712,cs),\n(204,712,o),\n(132,642,o),\n(115,506,cs),\n(53,0,l),\n(109,0,l),\n(171,506,ls),\n(183,598,o),\n(220,662,o),\n(310,662,cs),\n(372,662,o),\n(407,608,o),\n(401,557,cs),\n(390,473,o),\n(329,458,o),\n(319,379,cs),\n(304,260,o),\n(476,286,o),\n(458,138,cs),\n(450,74,o),\n(404,38,o),\n(342,38,cs),\n(274,38,o),\n(238,82,o),\n(243,122,c)\n);\n}\n);\nwidth = 570;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(201,140,l),\n(191,58,o),\n(236,-12,o),\n(358,-12,cs),\n(460,-12,o),\n(537,54,o),\n(550,157,cs),\n(569,316,o),\n(405,327,o),\n(414,393,cs),\n(420,445,o),\n(475,460,o),\n(486,552,cs),\n(497,642,o),\n(427,712,o),\n(329,712,cs),\n(206,712,o),\n(133,631,o),\n(117,506,cs),\n(55,0,l),\n(143,0,l),\n(205,506,ls),\n(215,583,o),\n(241,636,o),\n(322,636,cs),\n(374,636,o),\n(407,595,o),\n(402,552,cs),\n(393,480,o),\n(339,472,o),\n(330,393,cs),\n(314,268,o),\n(481,284,o),\n(465,155,cs),\n(458,97,o),\n(419,64,o),\n(367,64,cs),\n(305,64,o),\n(279,95,o),\n(284,140,c)\n);\n}\n);\nwidth = 596;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(236,163,l),\n(221,43,o),\n(297,-12,o),\n(412,-12,cs),\n(547,-12,o),\n(620,68,o),\n(633,170,cs),\n(653,334,o),\n(486,332,o),\n(493,392,cs),\n(499,443,o),\n(538,462,o),\n(547,537,cs),\n(558,626,o),\n(485,712,o),\n(358,712,cs),\n(185,712,o),\n(123,602,o),\n(106,463,cs),\n(49,0,l),\n(189,0,l),\n(245,457,ls),\n(257,554,o),\n(287,598,o),\n(345,598,cs),\n(384,598,o),\n(412,570,o),\n(408,537,cs),\n(399,465,o),\n(361,459,o),\n(353,392,cs),\n(336,256,o),\n(508,271,o),\n(496,171,cs),\n(490,126,o),\n(467,102,o),\n(427,102,cs),\n(385,102,o),\n(362,122,o),\n(367,163,c)\n);\n}\n);\nwidth = 673;\n}\n);\nunicode = 223;\n},\n{\nglyphname = t;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (165,-3);\n},\n{\nname = top;\npos = (206,629);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(237,-11,o),\n(259,-8,o),\n(277,-3,c),\n(283,47,l),\n(267,44,o),\n(250,43,o),\n(237,43,cs),\n(189,43,o),\n(163,61,o),\n(172,134,cs),\n(210,449,l),\n(339,449,l),\n(346,499,l),\n(217,499,l),\n(232,627,l),\n(180,627,l),\n(173,570,ls),\n(165,506,o),\n(155,500,o),\n(94,500,cs),\n(71,500,l),\n(64,449,l),\n(154,449,l),\n(116,133,ls),\n(104,40,o),\n(136,-11,o),\n(221,-11,cs)\n);\n}\n);\nwidth = 355;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (182,-8);\n},\n{\nname = top;\npos = (203,627);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(250,-12,o),\n(272,-9,o),\n(290,-4,c),\n(298,64,l),\n(282,61,o),\n(265,60,o),\n(252,60,cs),\n(203,60,o),\n(179,78,o),\n(186,132,cs),\n(221,423,l),\n(350,423,l),\n(360,499,l),\n(231,499,l),\n(246,627,l),\n(162,627,l),\n(155,570,ls),\n(148,512,o),\n(134,500,o),\n(80,500,cs),\n(57,500,l),\n(47,423,l),\n(137,423,l),\n(102,132,ls),\n(90,39,o),\n(125,-12,o),\n(234,-12,cs)\n);\n}\n);\nwidth = 366;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (198,-4);\n},\n{\nname = top;\npos = (233,628);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(284,-12,o),\n(314,-9,o),\n(331,-4,c),\n(346,126,l),\n(330,123,o),\n(307,122,o),\n(294,122,cs),\n(267,122,o),\n(240,137,o),\n(245,184,cs),\n(270,387,l),\n(386,387,l),\n(401,507,l),\n(285,507,l),\n(300,627,l),\n(166,627,l),\n(160,582,ls),\n(154,527,o),\n(131,508,o),\n(68,508,cs),\n(49,508,l),\n(34,387,l),\n(130,387,l),\n(101,149,ls),\n(88,42,o),\n(137,-12,o),\n(268,-12,cs)\n);\n}\n);\nwidth = 400;\n}\n);\nunicode = 116;\n},\n{\nglyphname = tcaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,582,l),\n(414,700,l),\n(321,700,l),\n(294,582,l)\n);\n},\n{\npos = (-31,0);\nref = t;\n}\n);\nwidth = 359;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,562,l),\n(437,699,l),\n(327,699,l),\n(299,562,l)\n);\n},\n{\npos = (-31,0);\nref = t;\n}\n);\nwidth = 382;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(438,562,l),\n(510,702,l),\n(380,702,l),\n(343,562,l)\n);\n},\n{\npos = (-31,0);\nref = t;\n}\n);\nwidth = 455;\n}\n);\nunicode = 357;\n},\n{\nglyphname = tcedilla;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (88,-5);\nref = cedillacomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (95,-10);\nref = cedillacomb;\n}\n);\nwidth = 366;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (101,-3);\nref = cedillacomb;\n}\n);\nwidth = 400;\n}\n);\nunicode = 355;\n},\n{\nglyphname = tcommaaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (136,9);\nref = commaaccentcomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (137,4);\nref = commaaccentcomb;\n}\n);\nwidth = 366;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (134,-3);\nref = commaaccentcomb;\n}\n);\nwidth = 400;\n}\n);\nunicode = 539;\n},\n{\nglyphname = tdotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (135,-3);\nref = dotbelowcomb;\n}\n);\nwidth = 400;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (133,-3);\nref = dotbelowcomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (138,-8);\nref = dotbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7789;\n},\n{\nglyphname = tmacronbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (49,-3);\nref = macronbelowcomb;\n}\n);\nwidth = 400;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (55,9);\nref = macronbelowcomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (54,4);\nref = macronbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7791;\n},\n{\nglyphname = u;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (253,-12);\n},\n{\nname = top;\npos = (316,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(469,500,l),\n(436,230,ls),\n(424,134,o),\n(357,38,o),\n(258,38,cs),\n(177,38,o),\n(122,89,o),\n(135,190,cs),\n(173,500,l),\n(117,500,l),\n(77,178,ls),\n(62,58,o),\n(139,-12,o),\n(236,-12,cs),\n(355,-12,o),\n(407,69,o),\n(420,104,c),\n(407,0,l),\n(463,0,l),\n(525,500,l)\n);\n}\n);\nwidth = 584;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (258,-12);\n},\n{\nname = top;\npos = (321,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(452,500,l),\n(419,230,ls),\n(407,134,o),\n(351,64,o),\n(259,64,cs),\n(192,64,o),\n(151,97,o),\n(162,184,cs),\n(201,500,l),\n(117,500,l),\n(76,172,ls),\n(62,52,o),\n(125,-12,o),\n(222,-12,cs),\n(334,-12,o),\n(389,59,o),\n(402,94,c),\n(390,0,l),\n(474,0,l),\n(536,500,l)\n);\n}\n);\nwidth = 597;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (254,-12);\n},\n{\nname = top;\npos = (325,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(427,508,l),\n(398,269,ls),\n(385,161,o),\n(349,100,o),\n(266,100,cs),\n(209,100,o),\n(186,138,o),\n(195,212,cs),\n(231,508,l),\n(91,508,l),\n(53,193,ls),\n(38,73,o),\n(85,-12,o),\n(219,-12,cs),\n(287,-12,o),\n(347,29,o),\n(374,78,c),\n(365,0,l),\n(505,0,l),\n(567,508,l)\n);\n}\n);\nwidth = 616;\n}\n);\nunicode = 117;\n},\n{\nglyphname = uacute;\nkernLeft = u;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (234,-12);\nref = acutecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (242,-12);\nref = acutecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (225,12);\nref = acutecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 250;\n},\n{\nglyphname = ubreve;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (139,-12);\nref = brevecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (146,-12);\nref = brevecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (125,12);\nref = brevecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 365;\n},\n{\nglyphname = ucircumflex;\nkernLeft = u;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (150,-12);\nref = circumflexcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (132,-12);\nref = circumflexcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (115,12);\nref = circumflexcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 251;\n},\n{\nglyphname = udieresis;\nkernLeft = u;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (119,-12);\nref = dieresiscomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (124,-12);\nref = dieresiscomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (79,12);\nref = dieresiscomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 252;\n},\n{\nglyphname = udotbelow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (221,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (214,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (191,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 7909;\n},\n{\nglyphname = ugrave;\nkernLeft = uhorn;\nkernRight = u;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (120,-12);\nref = gravecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (126,-12);\nref = gravecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (95,12);\nref = gravecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 249;\n},\n{\nglyphname = uhookabove;\nkernLeft = uhorn;\nkernRight = u;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (235,0);\nref = hookabovecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (221,0);\nref = hookabovecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (229,12);\nref = hookabovecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 7911;\n},\n{\nglyphname = uhorn;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2025-01-01 09:36:03 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = u;\n},\n{\nclosed = 1;\nnodes = (\n(574,451,o),\n(667,529,o),\n(633,651,c),\n(570,632,l),\n(592,562,o),\n(557,500,o),\n(493,500,c),\n(487,451,l)\n);\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = u;\n},\n{\nclosed = 1;\nnodes = (\n(621,446,o),\n(693,529,o),\n(659,651,c),\n(577,629,l),\n(598,570,o),\n(586,500,o),\n(505,500,c),\n(498,446,l)\n);\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = u;\n},\n{\nclosed = 1;\nnodes = (\n(658,427,o),\n(760,536,o),\n(722,671,c),\n(604,640,l),\n(626,581,o),\n(616,508,o),\n(535,508,c),\n(525,427,l)\n);\n}\n);\nwidth = 736;\n}\n);\nunicode = 432;\n},\n{\nglyphname = uhornacute;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (203,-12);\nref = acutecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (211,-12);\nref = acutecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (194,12);\nref = acutecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7913;\n},\n{\nglyphname = uhorndotbelow;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (190,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (183,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (160,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7921;\n},\n{\nglyphname = uhorngrave;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (89,-12);\nref = gravecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (95,-12);\nref = gravecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (64,12);\nref = gravecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7915;\n},\n{\nglyphname = uhornhookabove;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (204,0);\nref = hookabovecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (190,0);\nref = hookabovecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (198,12);\nref = hookabovecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7917;\n},\n{\nglyphname = uhorntilde;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (92,-12);\nref = tildecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (104,-12);\nref = tildecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (64,12);\nref = tildecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7919;\n},\n{\nglyphname = uhungarumlaut;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (165,-12);\nref = hungarumlautcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (166,-12);\nref = hungarumlautcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (128,12);\nref = hungarumlautcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 369;\n},\n{\nglyphname = umacron;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (151,-12);\nref = macroncomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (114,-12);\nref = macroncomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (122,9);\nref = macroncomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 363;\n},\n{\nglyphname = uogonek;\nlastChange = \"2025-01-01 09:09:03 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (335,5);\nref = ogonekcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (342,1);\nref = ogonekcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (361,0);\nref = ogonekcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 371;\n},\n{\nglyphname = uring;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (159,-12);\nref = ringcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (158,-12);\nref = ringcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (149,12);\nref = ringcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 367;\n},\n{\nglyphname = utilde;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (123,-12);\nref = tildecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (135,-12);\nref = tildecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (95,12);\nref = tildecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 361;\n},\n{\nglyphname = v;\nkernLeft = v;\nkernRight = v;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(243,0,l),\n(118,500,l),\n(46,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(430,500,l),\n(183,0,l),\n(243,0,l),\n(495,500,l)\n);\n}\n);\nwidth = 480;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(173,0,l),\n(256,0,l),\n(144,500,l),\n(45,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(422,500,l),\n(183,0,l),\n(264,0,l),\n(513,500,l)\n);\n}\n);\nwidth = 496;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(173,0,l),\n(298,0,l),\n(178,508,l),\n(34,508,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(438,508,l),\n(188,0,l),\n(307,0,l),\n(572,508,l)\n);\n}\n);\nwidth = 544;\n}\n);\nunicode = 118;\n},\n{\nglyphname = w;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2025-01-01 10:11:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (383,0);\n},\n{\nname = top;\npos = (445,500);\n}\n);\nguides = (\n{\nangle = 270;\npos = (414,596);\n},\n{\nangle = 270;\npos = (232,568);\n},\n{\nangle = 270;\npos = (601,594);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(237,0,l),\n(454,473,l),\n(430,473,l),\n(532,0,l),\n(592,0,l),\n(821,500,l),\n(758,500,l),\n(566,61,l),\n(579,61,l),\n(486,500,l),\n(408,500,l),\n(210,61,l),\n(224,61,l),\n(139,500,l),\n(71,500,l),\n(176,0,l)\n);\n}\n);\nwidth = 830;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (396,0);\n},\n{\nname = top;\npos = (458,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(264,0,l),\n(466,420,l),\n(430,420,l),\n(527,0,l),\n(617,0,l),\n(843,500,l),\n(756,500,l),\n(572,62,l),\n(593,62,l),\n(501,500,l),\n(418,500,l),\n(221,62,l),\n(240,62,l),\n(162,500,l),\n(67,500,l),\n(174,0,l)\n);\n}\n);\nwidth = 848;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (427,-12);\n},\n{\nname = top;\npos = (493,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(313,0,l),\n(493,408,l),\n(464,408,l),\n(541,0,l),\n(678,0,l),\n(917,508,l),\n(781,508,l),\n(606,95,l),\n(630,95,l),\n(568,508,l),\n(422,508,l),\n(251,95,l),\n(275,95,l),\n(209,508,l),\n(63,508,l),\n(176,0,l)\n);\n}\n);\nwidth = 918;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"30F2B960-0829-4076-A92C-CF2E7BC166CC\";\nname = m;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(68,0,l),\n(68,270,ls),\n(68,366,o),\n(115,436,o),\n(207,436,cs),\n(274,436,o),\n(319,403,o),\n(319,316,cs),\n(319,0,l),\n(403,0,l),\n(403,328,ls),\n(403,448,o),\n(332,512,o),\n(235,512,cs),\n(123,512,o),\n(77,441,o),\n(68,406,c),\n(68,500,l),\n(-16,500,l),\n(-16,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(738,0,l),\n(738,328,ls),\n(738,448,o),\n(667,512,o),\n(570,512,cs),\n(458,512,o),\n(402,432,o),\n(393,397,c),\n(403,270,l),\n(403,366,o),\n(450,436,o),\n(542,436,cs),\n(609,436,o),\n(654,403,o),\n(654,316,cs),\n(654,0,l)\n);\n}\n);\nwidth = 730;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"54EF5A92-DF5C-4F27-901D-AD1120EB6B99\";\nname = v;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(130,0,l),\n(213,0,l),\n(39,500,l),\n(-60,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(317,500,l),\n(140,0,l),\n(221,0,l),\n(408,500,l)\n);\n}\n);\nwidth = 730;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"6140675B-CD52-4F0B-8FAC-842A7E23690F\";\nname = \"29 Jul 24 at 14:44\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(332,0,l),\n(442,394,l),\n(395,394,l),\n(500,0,l),\n(673,0,l),\n(812,508,l),\n(671,508,l),\n(566,60,l),\n(609,60,l),\n(490,508,l),\n(345,508,l),\n(225,60,l),\n(270,60,l),\n(165,508,l),\n(25,508,l),\n(164,0,l)\n);\n}\n);\nwidth = 837;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"C266404C-C364-4E5A-B81C-638BAB07B38C\";\nname = \"29 Jul 24 at 14:44\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(142,0,l),\n(142,239,ls),\n(142,347,o),\n(174,408,o),\n(257,408,cs),\n(314,408,o),\n(343,373,o),\n(343,296,cs),\n(343,0,l),\n(483,0,l),\n(483,315,ls),\n(483,435,o),\n(420,520,o),\n(291,520,cs),\n(223,520,o),\n(163,479,o),\n(142,430,c),\n(142,508,l),\n(2,508,l),\n(2,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(483,239,l),\n(483,347,o),\n(515,408,o),\n(598,408,cs),\n(655,408,o),\n(684,373,o),\n(684,296,cs),\n(684,0,l),\n(824,0,l),\n(824,315,ls),\n(824,435,o),\n(761,520,o),\n(632,520,cs),\n(568,520,o),\n(490,490,o),\n(468,404,c)\n);\n}\n);\nwidth = 837;\n},\n{\nassociatedMasterId = m01;\nguides = (\n{\nangle = 270;\npos = (415,596);\n},\n{\nangle = 270;\npos = (233,568);\n},\n{\nangle = 270;\npos = (602,594);\n}\n);\nlayerId = \"CC5DFB62-56C2-4ABB-B478-555D61F8676C\";\nname = \"29 Jul 24 at 16:40\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(80,0,l),\n(80,270,ls),\n(80,366,o),\n(135,458,o),\n(234,458,cs),\n(315,458,o),\n(376,411,o),\n(376,310,cs),\n(376,0,l),\n(432,0,l),\n(432,322,ls),\n(432,442,o),\n(347,512,o),\n(250,512,cs),\n(131,512,o),\n(89,431,o),\n(80,396,c),\n(80,500,l),\n(24,500,l),\n(24,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(432,270,l),\n(432,373,o),\n(487,458,o),\n(586,458,cs),\n(667,458,o),\n(728,411,o),\n(728,310,cs),\n(728,0,l),\n(784,0,l),\n(784,322,ls),\n(784,442,o),\n(699,512,o),\n(602,512,cs),\n(483,512,o),\n(430,414,o),\n(421,379,c)\n);\n}\n);\nwidth = 830;\n}\n);\nunicode = 119;\n},\n{\nglyphname = wacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (363,-12);\nref = acutecomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (379,-12);\nref = acutecomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (393,12);\nref = acutecomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 7811;\n},\n{\nglyphname = wcircumflex;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (279,-12);\nref = circumflexcomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (269,-12);\nref = circumflexcomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (283,12);\nref = circumflexcomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 373;\n},\n{\nglyphname = wdieresis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (248,-12);\nref = dieresiscomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (261,-12);\nref = dieresiscomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (247,12);\nref = dieresiscomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 7813;\n},\n{\nglyphname = wgrave;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (249,-12);\nref = gravecomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (263,-12);\nref = gravecomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (263,12);\nref = gravecomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 7809;\n},\n{\nglyphname = x;\nlastChange = \"2025-01-01 10:11:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(434,0,l),\n(264,287,l),\n(259,296,l),\n(138,500,l),\n(67,500,l),\n(217,248,l),\n(224,235,l),\n(363,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(58,0,l),\n(248,227,l),\n(259,239,l),\n(478,500,l),\n(409,500,l),\n(233,290,l),\n(219,274,l),\n(-11,0,l)\n);\n}\n);\nwidth = 491;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,0,l),\n(272,283,l),\n(266,292,l),\n(143,500,l),\n(43,500,l),\n(201,233,l),\n(207,224,l),\n(339,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(71,0,l),\n(252,215,l),\n(263,229,l),\n(491,500,l),\n(396,500,l),\n(221,292,l),\n(207,275,l),\n(-24,0,l)\n);\n}\n);\nwidth = 477;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(518,0,l),\n(326,306,l),\n(317,313,l),\n(197,508,l),\n(43,508,l),\n(224,218,l),\n(232,212,l),\n(364,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(124,0,l),\n(309,213,l),\n(319,220,l),\n(569,508,l),\n(420,508,l),\n(249,310,l),\n(239,304,l),\n(-25,0,l)\n);\n}\n);\nwidth = 555;\n}\n);\nunicode = 120;\n},\n{\nglyphname = y;\nkernLeft = v;\nkernRight = v;\nlastChange = \"2025-01-01 10:15:53 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (297,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,-230,o),\n(183,-164,o),\n(250,-34,cs),\n(525,500,l),\n(461,500,l),\n(244,71,l),\n(117,500,l),\n(48,500,l),\n(206,0,l),\n(146,-126,o),\n(111,-170,o),\n(64,-170,c),\n(46,-170,o),\n(28,-169,o),\n(16,-166,c),\n(9,-222,l),\n(22,-226,o),\n(33,-230,o),\n(54,-230,cs)\n);\n}\n);\nwidth = 510;\n},\n{\nanchors = (\n{\nname = top;\npos = (296,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(157,-230,o),\n(194,-164,o),\n(259,-34,cs),\n(526,500,l),\n(431,500,l),\n(248,110,l),\n(136,500,l),\n(40,500,l),\n(191,3,l),\n(141,-126,o),\n(106,-152,o),\n(55,-152,c),\n(37,-152,o),\n(22,-151,o),\n(10,-148,c),\n(1,-222,l),\n(14,-226,o),\n(42,-230,o),\n(63,-230,cs)\n);\n}\n);\nwidth = 507;\n},\n{\nanchors = (\n{\nname = top;\npos = (307,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(163,-230,o),\n(234,-177,o),\n(305,-34,cs),\n(572,508,l),\n(431,508,l),\n(271,141,l),\n(175,508,l),\n(35,508,l),\n(181,3,l),\n(152,-78,o),\n(98,-104,o),\n(52,-104,c),\n(42,-104,o),\n(15,-103,o),\n(4,-100,c),\n(-12,-220,l),\n(0,-224,o),\n(33,-230,o),\n(73,-230,cs)\n);\n}\n);\nwidth = 543;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"D87BC176-5E8B-42A9-9E7C-690C4401C1BD\";\nname = \"14 Jul 24 at 12:20\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(209,0,l),\n(292,0,l),\n(118,500,l),\n(22,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(396,500,l),\n(219,0,l),\n(300,0,l),\n(484,500,l)\n);\n}\n);\nvisible = 1;\nwidth = 498;\n}\n);\nunicode = 121;\n},\n{\nglyphname = yacute;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (215,-12);\nref = acutecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (217,-12);\nref = acutecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (207,12);\nref = acutecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 253;\n},\n{\nglyphname = ycircumflex;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (131,-12);\nref = circumflexcomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (107,-12);\nref = circumflexcomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (97,12);\nref = circumflexcomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 375;\n},\n{\nglyphname = ydieresis;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (100,-12);\nref = dieresiscomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (99,-12);\nref = dieresiscomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (61,12);\nref = dieresiscomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 255;\n},\n{\nglyphname = ydotbelow;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-01 09:37:19 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (161,-158);\nref = dotbelowcomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (175,-164);\nref = dotbelowcomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (215,-177);\nref = dotbelowcomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7925;\n},\n{\nglyphname = ygrave;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (101,-12);\nref = gravecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (101,-12);\nref = gravecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (77,12);\nref = gravecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7923;\n},\n{\nglyphname = yhookabove;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (216,0);\nref = hookabovecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (196,0);\nref = hookabovecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (211,12);\nref = hookabovecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7927;\n},\n{\nglyphname = ytilde;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (104,-12);\nref = tildecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (110,-12);\nref = tildecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (77,12);\nref = tildecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7929;\n},\n{\nglyphname = z;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (208,0);\n},\n{\nname = top;\npos = (270,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(388,1,l),\n(395,51,l),\n(92,51,l),\n(442,454,l),\n(448,501,l),\n(81,501,l),\n(75,451,l),\n(373,451,l),\n(26,51,l),\n(19,1,l)\n);\n}\n);\nwidth = 475;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (215,0);\n},\n{\nname = top;\npos = (277,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(398,1,l),\n(408,77,l),\n(133,77,l),\n(449,428,l),\n(458,501,l),\n(85,501,l),\n(75,425,l),\n(348,425,l),\n(33,75,l),\n(23,1,l)\n);\n}\n);\nwidth = 483;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (221,0);\n},\n{\nname = top;\npos = (288,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(441,1,l),\n(456,121,l),\n(209,121,l),\n(488,396,l),\n(501,508,l),\n(71,508,l),\n(57,388,l),\n(303,388,l),\n(24,114,l),\n(9,1,l)\n);\n}\n);\nwidth = 516;\n}\n);\nunicode = 122;\n},\n{\nglyphname = zacute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = z;\n},\n{\npos = (188,-12);\nref = acutecomb;\n}\n);\nwidth = 475;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = z;\n},\n{\npos = (198,-12);\nref = acutecomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = z;\n},\n{\npos = (188,0);\nref = acutecomb;\n}\n);\nwidth = 516;\n}\n);\nunicode = 378;\n},\n{\nglyphname = zcaron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = z;\n},\n{\npos = (104,-12);\nref = caroncomb;\n}\n);\nwidth = 475;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = z;\n},\n{\npos = (93,-12);\nref = caroncomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = z;\n},\n{\npos = (76,0);\nref = caroncomb;\n}\n);\nwidth = 516;\n}\n);\nunicode = 382;\n},\n{\nglyphname = zdotaccent;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = z;\n},\n{\npos = (172,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 475;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = z;\n},\n{\npos = (171,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = z;\n},\n{\npos = (161,0);\nref = dotaccentcomb;\n}\n);\nwidth = 516;\n}\n);\nunicode = 380;\n},\n{\nglyphname = lcommaaccent.loclMAH;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (8,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (-13,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (13,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 296;\n}\n);\n},\n{\nglyphname = ncommaaccent.loclMAH;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (197,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (181,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (191,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 624;\n}\n);\n},\n{\nglyphname = a.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (247,-10);\n},\n{\nname = top;\npos = (311,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(336,-12,o),\n(394,97,o),\n(394,97,c),\n(386,30,o),\n(418,-1,o),\n(461,-1,cs),\n(486,-1,o),\n(497,3,o),\n(512,11,c),\n(518,59,l),\n(473,43,o),\n(446,63,o),\n(452,113,cs),\n(480,338,ls),\n(494,450,o),\n(437,512,o),\n(301,512,cs),\n(222,512,o),\n(146,476,o),\n(97,400,c),\n(146,373,l),\n(173,420,o),\n(226,460,o),\n(295,460,cs),\n(397,460,o),\n(433,409,o),\n(423,333,cs),\n(421,318,l),\n(193,318,o),\n(59,278,o),\n(42,135,cs),\n(31,43,o),\n(96,-12,o),\n(180,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(131,38,o),\n(93,81,o),\n(99,131,cs),\n(111,228,o),\n(190,268,o),\n(415,268,c),\n(411,233,ls),\n(399,132,o),\n(310,38,o),\n(194,38,cs)\n);\n}\n);\nwidth = 581;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (285,-10);\n},\n{\nname = top;\npos = (351,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(330,-12,o),\n(361,97,o),\n(361,97,c),\n(353,37,o),\n(389,0,o),\n(464,0,cs),\n(491,0,o),\n(532,6,o),\n(547,14,c),\n(560,124,l),\n(510,113,o),\n(498,128,o),\n(502,168,cs),\n(524,340,ls),\n(537,451,o),\n(468,520,o),\n(318,520,cs),\n(197,520,o),\n(114,459,o),\n(81,387,c),\n(181,342,l),\n(200,385,o),\n(241,412,o),\n(296,412,cs),\n(364,412,o),\n(396,383,o),\n(389,331,cs),\n(389,327,l),\n(172,327,o),\n(42,273,o),\n(26,144,cs),\n(15,51,o),\n(80,-12,o),\n(194,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(207,93,o),\n(162,109,o),\n(167,151,cs),\n(173,199,o),\n(206,239,o),\n(378,239,c),\n(374,206,ls),\n(364,124,o),\n(298,93,o),\n(228,93,cs)\n);\n}\n);\nwidth = 631;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (265,-10);\n},\n{\nname = top;\npos = (329,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,-12,o),\n(398,96,o),\n(398,96,c),\n(392,25,o),\n(428,0,o),\n(480,0,cs),\n(505,0,o),\n(519,4,o),\n(534,12,c),\n(543,80,l),\n(493,69,o),\n(481,87,o),\n(486,127,cs),\n(511,330,ls),\n(525,445,o),\n(459,512,o),\n(322,512,cs),\n(211,512,o),\n(143,462,o),\n(104,392,c),\n(169,356,l),\n(193,413,o),\n(255,442,o),\n(310,442,cs),\n(380,442,o),\n(437,414,o),\n(428,339,cs),\n(426,326,l),\n(170,326,o),\n(69,261,o),\n(55,141,cs),\n(43,49,o),\n(111,-12,o),\n(194,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(172,62,o),\n(131,96,o),\n(137,141,cs),\n(145,210,o),\n(194,260,o),\n(418,260,c),\n(414,225,ls),\n(401,120,o),\n(281,62,o),\n(219,62,cs)\n);\n}\n);\nwidth = 620;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"75EC2996-E87C-4405-B059-48FBE7BE3912\";\nname = \"6 May 24 at 07:51\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(198,190,o),\n(236,239,o),\n(423,239,c),\n(423,208,ls),\n(423,126,o),\n(351,93,o),\n(281,93,cs),\n(245,93,o),\n(198,109,o),\n(198,142,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(58,51,o),\n(131,-12,o),\n(245,-12,cs),\n(391,-12,o),\n(430,97,o),\n(430,97,c),\n(430,37,o),\n(469,0,o),\n(544,0,cs),\n(569,0,o),\n(613,4,o),\n(627,12,c),\n(627,107,l),\n(577,96,o),\n(563,114,o),\n(563,154,cs),\n(563,340,ls),\n(563,459,o),\n(444,520,o),\n(315,520,cs),\n(135,520,o),\n(71,393,o),\n(71,393,c),\n(175,339,l),\n(192,368,o),\n(237,405,o),\n(307,405,cs),\n(373,405,o),\n(423,366,o),\n(423,331,cs),\n(423,329,l),\n(187,329,o),\n(58,273,o),\n(58,144,cs)\n);\n}\n);\nwidth = 629;\n}\n);\n},\n{\nglyphname = aacute.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (176,0);\nref = acutecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (201,0);\nref = acutecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (166,12);\nref = acutecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = abreve.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (85,0);\nref = brevecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (112,0);\nref = brevecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (89,12);\nref = brevecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = abreveacute.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:16:21 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (177,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (111,0);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (128,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevedotbelow.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (222,-9);\nref = dotbelowcomb;\n},\n{\npos = (151,12);\nref = brevecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (215,-10);\nref = dotbelowcomb;\n},\n{\npos = (134,0);\nref = brevecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (221,-10);\nref = dotbelowcomb;\n},\n{\npos = (154,0);\nref = brevecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevegrave.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:17:44 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (178,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (95,0);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (118,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevehookabove.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (145,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (91,0);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (98,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevetilde.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:17:09 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (175,12);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (74,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (100,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflex.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (105,0);\nref = circumflexcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (109,0);\nref = circumflexcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (84,12);\nref = circumflexcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = acircumflexacute.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (171,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (27,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (49,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflexdotbelow.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (222,-9);\nref = dotbelowcomb;\n},\n{\npos = (141,12);\nref = circumflexcomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (215,-10);\nref = dotbelowcomb;\n},\n{\npos = (145,0);\nref = circumflexcomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (221,-10);\nref = dotbelowcomb;\n},\n{\npos = (140,0);\nref = circumflexcomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflexgrave.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (171,13);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (169,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (173,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflexhookabove.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (170,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (172,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (176,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflextilde.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (146,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (177,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (180,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = adieresis.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (81,0);\nref = dieresiscomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (71,0);\nref = dieresiscomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (60,12);\nref = dieresiscomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = adotbelow.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (222,-9);\nref = dotbelowcomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (215,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (221,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = agrave.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (97,0);\nref = gravecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (110,0);\nref = gravecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (77,12);\nref = gravecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = ahookabove.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-08 14:18:02 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (255,12);\nref = hookabovecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (230,12);\nref = hookabovecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (229,12);\nref = hookabovecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = amacron.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (99,0);\nref = macroncomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (82,0);\nref = macroncomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (89,12);\nref = macroncomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = aogonek.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 09:09:20 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (349,14);\nref = ogonekcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (371,13);\nref = ogonekcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (372,14);\nref = ogonekcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = aring.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (154,0);\nref = ringcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (144,0);\nref = ringcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (151,12);\nref = ringcomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = atilde.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (65,0);\nref = tildecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (89,0);\nref = tildecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (53,12);\nref = tildecomb;\n},\n{\npos = (-31,0);\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = g.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (222,-230);\n},\n{\nname = top;\npos = (301,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(389,-230,o),\n(477,-156,o),\n(490,-54,cs),\n(498,17,o),\n(440,77,o),\n(328,77,cs),\n(149,77,ls),\n(107,77,o),\n(97,109,o),\n(99,129,cs),\n(103,159,o),\n(134,182,o),\n(173,192,c),\n(130,218,l),\n(67,192,o),\n(46,157,o),\n(40,115,cs),\n(36,78,o),\n(59,44,o),\n(86,35,c),\n(19,16,o),\n(-5,-51,o),\n(-8,-74,cs),\n(-20,-173,o),\n(58,-230,o),\n(219,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(97,-180,o),\n(42,-140,o),\n(51,-69,cs),\n(56,-24,o),\n(103,27,o),\n(176,27,c),\n(315,27,l),\n(392,28,o),\n(438,-6,o),\n(431,-59,cs),\n(425,-110,o),\n(384,-180,o),\n(220,-180,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(377,176,o),\n(462,243,o),\n(475,345,cs),\n(487,445,o),\n(418,512,o),\n(301,512,cs),\n(187,512,o),\n(100,445,o),\n(88,345,cs),\n(75,243,o),\n(146,176,o),\n(260,176,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(177,226,o),\n(136,279,o),\n(144,345,cs),\n(152,409,o),\n(206,462,o),\n(295,462,cs),\n(385,462,o),\n(427,409,o),\n(419,345,cs),\n(411,279,o),\n(356,226,o),\n(266,226,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(463,484,o),\n(520,508,o),\n(567,495,c),\n(574,553,l),\n(483,569,o),\n(435,516,o),\n(420,475,c),\n(446,455,l)\n);\n}\n);\nwidth = 562;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (242,-230);\n},\n{\nname = top;\npos = (323,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(449,-230,o),\n(533,-137,o),\n(546,-35,cs),\n(555,41,o),\n(494,104,o),\n(373,104,cs),\n(205,104,ls),\n(171,104,o),\n(151,112,o),\n(154,137,cs),\n(156,154,o),\n(170,160,o),\n(185,166,c),\n(126,226,l),\n(59,198,o),\n(34,161,o),\n(27,110,cs),\n(21,61,o),\n(41,28,o),\n(84,7,c),\n(29,-10,o),\n(1,-50,o),\n(-4,-92,cs),\n(-14,-167,o),\n(51,-230,o),\n(235,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(154,-117,o),\n(129,-90,o),\n(133,-55,cs),\n(136,-33,o),\n(163,-6,o),\n(200,-6,c),\n(340,-6,l),\n(381,-6,o),\n(405,-21,o),\n(401,-56,cs),\n(397,-91,o),\n(339,-117,o),\n(243,-117,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(417,145,o),\n(515,226,o),\n(528,333,cs),\n(541,440,o),\n(463,520,o),\n(323,520,cs),\n(187,520,o),\n(87,440,o),\n(74,333,cs),\n(61,226,o),\n(141,145,o),\n(277,145,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,257,o),\n(206,293,o),\n(211,333,cs),\n(215,372,o),\n(251,410,o),\n(309,410,c),\n(371,410,o),\n(395,372,o),\n(391,333,cs),\n(386,293,o),\n(352,257,o),\n(290,257,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(511,471,o),\n(577,469,o),\n(605,456,c),\n(619,568,l),\n(528,584,o),\n(456,525,o),\n(447,480,c),\n(494,442,l)\n);\n}\n);\nwidth = 601;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (231,-230);\n},\n{\nname = top;\npos = (300,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(396,-230,o),\n(484,-156,o),\n(497,-54,cs),\n(506,22,o),\n(463,82,o),\n(333,82,cs),\n(157,82,ls),\n(115,82,o),\n(101,104,o),\n(104,129,cs),\n(108,159,o),\n(142,182,o),\n(181,192,c),\n(113,218,l),\n(50,192,o),\n(19,156,o),\n(14,114,cs),\n(10,77,o),\n(26,37,o),\n(67,16,c),\n(1,-3,o),\n(-24,-67,o),\n(-27,-93,cs),\n(-36,-167,o),\n(36,-230,o),\n(217,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(100,-154,o),\n(54,-114,o),\n(60,-69,cs),\n(65,-23,o),\n(111,6,o),\n(169,6,c),\n(319,6,l),\n(385,6,o),\n(417,-21,o),\n(411,-69,cs),\n(405,-114,o),\n(361,-154,o),\n(221,-154,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(378,162,o),\n(469,236,o),\n(482,338,cs),\n(494,438,o),\n(421,512,o),\n(300,512,cs),\n(182,512,o),\n(89,438,o),\n(77,338,cs),\n(64,236,o),\n(139,162,o),\n(257,162,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(184,238,o),\n(148,281,o),\n(155,338,cs),\n(162,393,o),\n(208,436,o),\n(291,436,cs),\n(376,436,o),\n(411,393,o),\n(404,338,cs),\n(397,281,o),\n(352,238,o),\n(267,238,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(474,471,o),\n(534,473,o),\n(572,467,c),\n(582,555,l),\n(491,571,o),\n(435,520,o),\n(426,475,c),\n(458,442,l)\n);\n}\n);\nwidth = 580;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"3EA75350-8DAD-4CD2-A32D-BF5A6E43F144\";\nname = \"10 Aug 24 at 16:59\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,-229,o),\n(522,-148,o),\n(522,-46,cs),\n(522,20,o),\n(479,87,o),\n(352,87,cs),\n(174,87,ls),\n(105,87,o),\n(113,176,o),\n(173,176,cs),\n(184,176,o),\n(255,176,o),\n(267,176,cs),\n(399,176,o),\n(469,247,o),\n(469,340,cs),\n(469,375,o),\n(457,419,o),\n(424,452,c),\n(437,481,o),\n(481,505,o),\n(530,492,c),\n(530,555,l),\n(437,571,o),\n(399,522,o),\n(395,477,c),\n(369,495,o),\n(335,512,o),\n(260,512,cs),\n(119,512,o),\n(56,420,o),\n(56,340,cs),\n(56,280,o),\n(86,222,o),\n(133,197,c),\n(97,193,o),\n(60,163,o),\n(60,126,cs),\n(60,85,o),\n(89,58,o),\n(122,49,c),\n(58,30,o),\n(37,-31,o),\n(37,-73,cs),\n(37,-172,o),\n(122,-229,o),\n(278,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,-179,o),\n(94,-137,o),\n(94,-66,cs),\n(94,-25,o),\n(116,22,o),\n(173,37,c),\n(345,37,l),\n(426,38,o),\n(464,-2,o),\n(464,-49,cs),\n(464,-100,o),\n(432,-179,o),\n(273,-179,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(154,225,o),\n(114,275,o),\n(114,344,cs),\n(114,408,o),\n(154,463,o),\n(259,463,cs),\n(368,463,o),\n(411,408,o),\n(411,345,cs),\n(411,275,o),\n(368,225,o),\n(259,225,cs)\n);\n}\n);\nwidth = 562;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"C08E6C22-B8C2-4688-8674-8526B1088BC5\";\nname = \"10 Aug 24 at 17:56\";\nshapes = (\n{\nclosed = 0;\nnodes = (\n(408,480,l),\n(390,494,o),\n(346,512,o),\n(262,512,cs),\n(116,512,o),\n(49,424,o),\n(49,337,cs),\n(49,280,o),\n(83,223,o),\n(130,198,c),\n(94,194,o),\n(55,160,o),\n(55,123,cs),\n(55,87,o),\n(79,60,o),\n(113,48,c),\n(54,27,o),\n(30,-31,o),\n(30,-73,cs),\n(30,-172,o),\n(117,-229,o),\n(275,-229,cs),\n(453,-229,o),\n(532,-148,o),\n(532,-46,cs),\n(532,20,o),\n(496,98,o),\n(367,98,cs),\n(192,98,ls),\n(130,98,o),\n(124,177,o),\n(200,177,cs),\n(211,177,o),\n(257,177,o),\n(269,177,cs),\n(404,177,o),\n(478,246,o),\n(479,340,cs),\n(479,375,o),\n(467,417,o),\n(444,447,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,-154,o),\n(108,-122,o),\n(108,-59,cs),\n(108,-22,o),\n(134,16,o),\n(177,26,c),\n(359,26,l),\n(431,26,o),\n(453,-2,o),\n(454,-49,cs),\n(455,-100,o),\n(416,-154,o),\n(275,-154,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(163,247,o),\n(127,289,o),\n(127,344,cs),\n(127,397,o),\n(163,442,o),\n(261,442,cs),\n(365,442,o),\n(401,398,o),\n(401,345,cs),\n(401,287,o),\n(365,247,o),\n(261,247,cs)\n);\n}\n);\nwidth = 580;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"F79AD273-4246-4744-B8B8-59AC46FF7D92\";\nname = \"10 Aug 24 at 19:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(475,-229,o),\n(587,-151,o),\n(587,-46,cs),\n(587,20,o),\n(551,111,o),\n(394,111,cs),\n(218,111,ls),\n(174,111,o),\n(175,166,o),\n(218,166,cs),\n(229,166,o),\n(286,166,o),\n(298,166,cs),\n(435,166,o),\n(534,242,o),\n(534,340,cs),\n(534,375,o),\n(529,414,o),\n(506,444,c),\n(519,473,o),\n(574,469,o),\n(603,456,c),\n(603,568,l),\n(510,584,o),\n(458,533,o),\n(454,488,c),\n(436,502,o),\n(373,520,o),\n(291,520,cs),\n(129,520,o),\n(51,432,o),\n(51,337,cs),\n(51,266,o),\n(89,220,o),\n(136,195,c),\n(100,191,o),\n(55,164,o),\n(55,116,cs),\n(55,75,o),\n(83,46,o),\n(116,37,c),\n(57,16,o),\n(32,-30,o),\n(32,-72,cs),\n(32,-171,o),\n(152,-229,o),\n(304,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(211,-119,o),\n(172,-96,o),\n(172,-59,cs),\n(172,-21,o),\n(200,1,o),\n(234,1,cs),\n(323,1,ls),\n(402,1,o),\n(446,-4,o),\n(446,-51,cs),\n(446,-94,o),\n(394,-119,o),\n(304,-119,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(230,275,o),\n(191,298,o),\n(191,343,cs),\n(191,387,o),\n(230,411,o),\n(290,411,cs),\n(357,411,o),\n(394,386,o),\n(394,343,cs),\n(394,297,o),\n(357,275,o),\n(290,275,cs)\n);\n}\n);\nwidth = 633;\n}\n);\n},\n{\nglyphname = gbreve.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (124,0);\nref = brevecomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (125,0);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (123,12);\nref = brevecomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = gcommaaccent.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (186,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (160,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (176,12);\nref = commaturnedabovecomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = gdotaccent.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (203,0);\nref = dotaccentcomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (194,0);\nref = dotaccentcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (196,12);\nref = dotaccentcomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = gmacron.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (136,0);\nref = macroncomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (93,0);\nref = macroncomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (120,9);\nref = macroncomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = ordfeminine;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (185,370);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(235,370,o),\n(268,441,o),\n(268,441,c),\n(265,395,o),\n(291,378,o),\n(324,378,cs),\n(340,378,o),\n(349,381,o),\n(359,386,c),\n(365,441,l),\n(333,433,o),\n(325,445,o),\n(328,471,cs),\n(343,594,ls),\n(352,668,o),\n(310,712,o),\n(221,712,cs),\n(148,712,o),\n(107,681,o),\n(76,637,c),\n(114,604,l),\n(134,634,o),\n(165,657,o),\n(212,657,cs),\n(255,657,o),\n(292,634,o),\n(288,599,cs),\n(287,591,l),\n(121,591,o),\n(57,549,o),\n(47,471,cs),\n(40,410,o),\n(83,370,o),\n(137,370,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(349,307,l),\n(29,308,l),\n(22,249,l),\n(342,248,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(123,426,o),\n(102,444,o),\n(105,471,cs),\n(110,514,o),\n(139,541,o),\n(281,541,c),\n(279,526,ls),\n(272,466,o),\n(198,426,o),\n(157,426,cs)\n);\n}\n);\nwidth = 362;\n},\n{\nguides = (\n{\npos = (182,354);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(244,353,o),\n(268,427,o),\n(268,427,c),\n(264,379,o),\n(292,361,o),\n(337,361,cs),\n(354,361,o),\n(364,364,o),\n(374,370,c),\n(382,435,l),\n(349,427,o),\n(339,440,o),\n(343,467,cs),\n(358,588,ls),\n(367,666,o),\n(323,712,o),\n(229,712,cs),\n(158,712,o),\n(110,684,o),\n(78,637,c),\n(120,595,l),\n(133,615,o),\n(170,644,o),\n(218,644,cs),\n(263,644,o),\n(291,620,o),\n(288,593,cs),\n(287,585,l),\n(113,585,o),\n(55,533,o),\n(46,459,cs),\n(38,395,o),\n(80,353,o),\n(141,353,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(366,307,l),\n(27,308,l),\n(18,232,l),\n(357,231,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(133,421,o),\n(114,434,o),\n(117,462,cs),\n(121,491,o),\n(144,523,o),\n(280,523,c),\n(278,508,ls),\n(271,454,o),\n(206,421,o),\n(163,421,cs)\n);\n}\n);\nwidth = 379;\n},\n{\nguides = (\n{\npos = (201,349);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(244,349,o),\n(277,420,o),\n(277,420,c),\n(272,380,o),\n(303,357,o),\n(355,357,cs),\n(375,357,o),\n(402,361,o),\n(413,367,c),\n(422,442,l),\n(387,434,o),\n(378,445,o),\n(382,472,cs),\n(396,589,ls),\n(405,665,o),\n(351,712,o),\n(252,712,cs),\n(189,712,o),\n(130,692,o),\n(86,637,c),\n(143,580,l),\n(157,600,o),\n(194,621,o),\n(236,621,cs),\n(276,621,o),\n(300,602,o),\n(297,581,cs),\n(297,578,l),\n(143,580,o),\n(67,537,o),\n(57,456,cs),\n(49,393,o),\n(81,349,o),\n(160,349,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(406,308,l),\n(37,308,l),\n(23,198,l),\n(392,198,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,439,o),\n(166,448,o),\n(168,467,cs),\n(171,487,o),\n(197,501,o),\n(286,501,c),\n(286,497,ls),\n(282,466,o),\n(252,439,o),\n(218,439,cs)\n);\n}\n);\nwidth = 429;\n}\n);\nunicode = 170;\n},\n{\nglyphname = ordmasculine;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (169,370);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(21,249,l),\n(317,248,l),\n(324,307,l),\n(28,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(267,370,o),\n(342,429,o),\n(356,541,cs),\n(369,653,o),\n(309,712,o),\n(226,712,cs),\n(143,712,o),\n(67,653,o),\n(54,541,cs),\n(40,429,o),\n(101,370,o),\n(184,370,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(133,427,o),\n(104,470,o),\n(113,540,cs),\n(121,610,o),\n(161,656,o),\n(219,656,cs),\n(277,656,o),\n(305,611,o),\n(297,541,cs),\n(288,471,o),\n(249,427,o),\n(191,427,cs)\n);\n}\n);\nwidth = 338;\n},\n{\nguides = (\n{\npos = (181,354);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(18,232,l),\n(340,231,l),\n(349,307,l),\n(27,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(284,354,o),\n(362,416,o),\n(377,533,cs),\n(391,650,o),\n(328,712,o),\n(238,712,cs),\n(148,712,o),\n(69,650,o),\n(55,533,cs),\n(40,416,o),\n(104,354,o),\n(194,354,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,428,o),\n(120,468,o),\n(128,532,cs),\n(135,596,o),\n(173,639,o),\n(229,639,cs),\n(285,639,o),\n(312,597,o),\n(304,533,cs),\n(296,469,o),\n(259,428,o),\n(203,428,c)\n);\n}\n);\nwidth = 362;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(18,198,l),\n(371,198,l),\n(385,308,l),\n(32,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(304,349,o),\n(402,405,o),\n(417,530,cs),\n(432,657,o),\n(352,712,o),\n(258,712,cs),\n(170,712,o),\n(69,657,o),\n(54,530,cs),\n(39,405,o),\n(121,349,o),\n(214,349,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(187,456,o),\n(169,485,o),\n(175,530,cs),\n(180,575,o),\n(206,605,o),\n(245,605,cs),\n(287,605,o),\n(301,575,o),\n(296,530,cs),\n(290,485,o),\n(269,456,o),\n(227,456,c)\n);\n}\n);\nwidth = 403;\n}\n);\nunicode = 186;\n},\n{\nglyphname = zero;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(475,-13,o),\n(560,171,o),\n(583,354,cs),\n(606,547,o),\n(562,712,o),\n(370,712,cs),\n(177,712,o),\n(90,547,o),\n(67,354,cs),\n(44,171,o),\n(86,-13,o),\n(281,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(149,42,o),\n(107,177,o),\n(129,355,cs),\n(151,536,o),\n(225,657,o),\n(364,657,cs),\n(497,657,o),\n(543,536,o),\n(521,355,cs),\n(499,177,o),\n(421,42,o),\n(287,42,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(189,68,l),\n(528,635,l),\n(463,635,l),\n(124,68,l)\n);\n}\n);\nwidth = 624;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(475,-13,o),\n(566,171,o),\n(589,354,cs),\n(612,547,o),\n(562,712,o),\n(370,712,cs),\n(176,712,o),\n(84,547,o),\n(61,354,cs),\n(38,171,o),\n(85,-13,o),\n(281,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(167,67,o),\n(133,197,o),\n(153,355,cs),\n(173,516,o),\n(236,632,o),\n(361,632,cs),\n(480,632,o),\n(517,516,o),\n(497,355,cs),\n(477,197,o),\n(411,67,o),\n(291,67,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(209,75,l),\n(534,625,l),\n(444,625,l),\n(119,75,l)\n);\n}\n);\nwidth = 624;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(505,-13,o),\n(614,161,o),\n(637,354,cs),\n(662,557,o),\n(592,712,o),\n(396,712,cs),\n(197,712,o),\n(89,557,o),\n(64,354,cs),\n(41,161,o),\n(106,-13,o),\n(307,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(219,117,o),\n(187,213,o),\n(204,355,cs),\n(222,500,o),\n(276,582,o),\n(381,582,cs),\n(480,582,o),\n(515,500,o),\n(497,355,cs),\n(480,213,o),\n(423,117,o),\n(323,117,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(261,86,l),\n(571,610,l),\n(441,610,l),\n(131,86,l)\n);\n}\n);\nwidth = 677;\n}\n);\nunicode = 48;\n},\n{\nglyphname = one;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(338,0,l),\n(345,57,l),\n(218,57,l),\n(297,699,l),\n(250,699,l),\n(236,586,o),\n(216,563,o),\n(98,563,c),\n(92,512,l),\n(214,512,l),\n(158,57,l),\n(31,57,l),\n(24,0,l)\n);\n}\n);\nwidth = 424;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(372,0,l),\n(382,80,l),\n(249,80,l),\n(325,699,l),\n(250,699,l),\n(239,606,o),\n(212,592,o),\n(102,592,c),\n(92,512,l),\n(214,512,l),\n(161,80,l),\n(34,80,l),\n(24,0,l)\n);\n}\n);\nwidth = 458;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,0,l),\n(443,126,l),\n(314,126,l),\n(385,699,l),\n(252,699,l),\n(240,606,o),\n(216,592,o),\n(99,592,c),\n(83,467,l),\n(210,467,l),\n(168,126,l),\n(37,126,l),\n(22,0,l)\n);\n}\n);\nwidth = 512;\n}\n);\nunicode = 49;\n},\n{\nglyphname = two;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(437,1,l),\n(444,57,l),\n(104,57,l),\n(133,290,o),\n(459,283,o),\n(489,528,cs),\n(504,647,o),\n(422,712,o),\n(307,712,cs),\n(247,712,o),\n(170,677,o),\n(127,615,cs),\n(109,589,o),\n(95,555,o),\n(91,519,c),\n(151,519,l),\n(158,576,o),\n(209,656,o),\n(302,656,cs),\n(418,656,o),\n(436,584,o),\n(429,528,cs),\n(406,337,o),\n(69,306,o),\n(40,73,cs),\n(31,1,l)\n);\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(455,1,l),\n(465,81,l),\n(132,81,l),\n(156,277,o),\n(479,284,o),\n(509,528,cs),\n(524,647,o),\n(441,712,o),\n(326,712,c),\n(246,712,o),\n(169,677,o),\n(126,615,c),\n(108,589,o),\n(94,555,o),\n(90,519,c),\n(178,519,l),\n(185,576,o),\n(237,632,o),\n(315,632,c),\n(393,632,o),\n(430,584,o),\n(423,528,cs),\n(399,335,o),\n(70,332,o),\n(39,81,cs),\n(29,1,l)\n);\n}\n);\nwidth = 546;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(488,1,l),\n(503,127,l),\n(199,127,l),\n(215,253,o),\n(511,276,o),\n(540,518,cs),\n(556,642,o),\n(456,712,o),\n(335,712,c),\n(228,712,o),\n(161,677,o),\n(117,615,c),\n(92,579,o),\n(82,523,o),\n(78,487,c),\n(224,487,l),\n(230,538,o),\n(256,582,o),\n(318,582,cs),\n(370,582,o),\n(389,542,o),\n(385,509,cs),\n(365,341,o),\n(66,332,o),\n(38,107,cs),\n(25,1,l)\n);\n}\n);\nwidth = 574;\n}\n);\nunicode = 50;\n},\n{\nglyphname = three;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(385,-12,o),\n(487,69,o),\n(504,208,cs),\n(518,324,o),\n(461,423,o),\n(314,423,c),\n(534,639,l),\n(541,700,l),\n(130,700,l),\n(123,644,l),\n(461,644,l),\n(233,423,l),\n(227,370,l),\n(277,370,ls),\n(399,370,o),\n(455,309,o),\n(443,212,cs),\n(433,128,o),\n(372,44,o),\n(247,44,cs),\n(154,44,o),\n(112,88,o),\n(103,167,cs),\n(101,179,o),\n(101,198,o),\n(102,210,c),\n(42,203,l),\n(40,182,o),\n(40,162,o),\n(43,144,cs),\n(58,44,o),\n(135,-12,o),\n(240,-12,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,-12,o),\n(500,71,o),\n(517,210,cs),\n(533,337,o),\n(465,423,o),\n(342,423,c),\n(541,615,l),\n(551,700,l),\n(124,700,l),\n(114,620,l),\n(435,620,l),\n(224,423,l),\n(216,355,l),\n(295,355,ls),\n(395,355,o),\n(436,299,o),\n(425,212,cs),\n(415,128,o),\n(349,68,o),\n(260,68,cs),\n(187,68,o),\n(131,94,o),\n(121,173,c),\n(119,185,o),\n(119,198,o),\n(120,210,c),\n(29,203,l),\n(27,182,o),\n(27,162,o),\n(29,144,c),\n(44,43,o),\n(134,-12,o),\n(243,-12,cs)\n);\n}\n);\nwidth = 575;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,-12,o),\n(530,79,o),\n(547,218,cs),\n(562,347,o),\n(488,414,o),\n(397,423,c),\n(558,574,l),\n(574,700,l),\n(128,700,l),\n(112,574,l),\n(401,574,l),\n(236,423,l),\n(223,318,l),\n(299,318,ls),\n(370,318,o),\n(410,288,o),\n(401,215,cs),\n(394,153,o),\n(336,118,o),\n(276,118,cs),\n(212,118,o),\n(180,144,o),\n(171,197,c),\n(169,209,o),\n(169,222,o),\n(171,234,c),\n(35,203,l),\n(32,182,o),\n(33,162,o),\n(34,144,c),\n(49,43,o),\n(141,-12,o),\n(264,-12,cs)\n);\n}\n);\nwidth = 598;\n}\n);\nunicode = 51;\n},\n{\nglyphname = four;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(406,1,l),\n(423,140,l),\n(540,140,l),\n(548,200,l),\n(431,200,l),\n(492,701,l),\n(427,701,l),\n(39,205,l),\n(31,140,l),\n(363,140,l),\n(346,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(420,602,l),\n(371,200,l),\n(109,200,l)\n);\n}\n);\nwidth = 599;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,1,l),\n(437,131,l),\n(557,131,l),\n(567,212,l),\n(447,212,l),\n(507,701,l),\n(416,701,l),\n(40,212,l),\n(31,132,l),\n(350,132,l),\n(333,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(402,559,l),\n(359,212,l),\n(135,212,l)\n);\n}\n);\nwidth = 612;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(484,1,l),\n(499,121,l),\n(606,121,l),\n(621,248,l),\n(514,248,l),\n(570,701,l),\n(406,701,l),\n(43,238,l),\n(29,121,l),\n(353,121,l),\n(338,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(400,504,l),\n(368,248,l),\n(201,248,l)\n);\n}\n);\nwidth = 661;\n}\n);\nunicode = 52;\n},\n{\nglyphname = five;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(392,-12,o),\n(503,77,o),\n(522,234,cs),\n(541,387,o),\n(456,469,o),\n(328,469,cs),\n(271,469,o),\n(203,445,o),\n(179,409,c),\n(239,640,l),\n(517,640,l),\n(524,700,l),\n(197,700,l),\n(111,366,l),\n(184,347,l),\n(211,386,o),\n(257,413,o),\n(309,413,cs),\n(424,413,o),\n(472,330,o),\n(460,234,cs),\n(447,126,o),\n(378,44,o),\n(265,44,cs),\n(177,44,o),\n(119,106,o),\n(116,187,c),\n(46,163,l),\n(59,49,o),\n(148,-12,o),\n(257,-12,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(398,-12,o),\n(521,77,o),\n(540,234,cs),\n(559,387,o),\n(462,469,o),\n(334,469,cs),\n(277,469,o),\n(220,448,o),\n(194,417,c),\n(243,620,l),\n(535,620,l),\n(545,700,l),\n(186,700,l),\n(97,343,l),\n(182,322,l),\n(209,361,o),\n(255,388,o),\n(307,388,cs),\n(398,388,o),\n(460,330,o),\n(448,234,cs),\n(435,126,o),\n(363,68,o),\n(274,68,cs),\n(200,68,o),\n(151,123,o),\n(146,195,c),\n(52,163,l),\n(65,49,o),\n(154,-12,o),\n(263,-12,cs)\n);\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,-12,o),\n(552,86,o),\n(572,243,cs),\n(590,396,o),\n(495,487,o),\n(357,487,cs),\n(306,487,o),\n(257,472,o),\n(243,461,c),\n(278,574,l),\n(557,574,l),\n(573,700,l),\n(184,700,l),\n(83,333,l),\n(208,302,l),\n(226,338,o),\n(266,367,o),\n(318,367,cs),\n(382,367,o),\n(432,325,o),\n(422,243,cs),\n(414,178,o),\n(359,118,o),\n(297,118,cs),\n(230,118,o),\n(195,155,o),\n(190,216,c),\n(47,172,l),\n(58,74,o),\n(134,-12,o),\n(284,-12,cs)\n);\n}\n);\nwidth = 616;\n}\n);\nunicode = 53;\n},\n{\nglyphname = six;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(399,-12,o),\n(502,90,o),\n(519,229,cs),\n(536,367,o),\n(457,462,o),\n(331,462,cs),\n(272,462,o),\n(236,444,o),\n(222,429,c),\n(383,700,l),\n(313,700,l),\n(142,420,ls),\n(111,370,o),\n(70,308,o),\n(60,226,cs),\n(43,87,o),\n(122,-12,o),\n(265,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(158,44,o),\n(109,116,o),\n(122,226,cs),\n(135,330,o),\n(202,406,o),\n(313,406,cs),\n(418,406,o),\n(469,324,o),\n(457,226,cs),\n(443,110,o),\n(374,44,o),\n(273,44,cs)\n);\n}\n);\nwidth = 567;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,-12,o),\n(503,97,o),\n(520,233,cs),\n(536,368,o),\n(458,474,o),\n(322,474,cs),\n(288,474,o),\n(242,464,o),\n(228,449,c),\n(378,700,l),\n(278,700,l),\n(120,426,ls),\n(90,376,o),\n(45,288,o),\n(38,231,cs),\n(21,92,o),\n(94,-12,o),\n(248,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(161,68,o),\n(119,147,o),\n(130,234,cs),\n(139,309,o),\n(201,393,o),\n(295,393,cs),\n(411,393,o),\n(437,310,o),\n(428,234,cs),\n(417,147,o),\n(364,68,o),\n(259,68,cs)\n);\n}\n);\nwidth = 561;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(426,-12,o),\n(543,94,o),\n(560,233,cs),\n(577,371,o),\n(506,477,o),\n(365,477,cs),\n(319,477,o),\n(290,460,o),\n(290,460,c),\n(431,700,l),\n(279,700,l),\n(121,434,ls),\n(82,367,o),\n(56,298,o),\n(48,233,cs),\n(31,94,o),\n(113,-12,o),\n(275,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(211,109,o),\n(186,170,o),\n(194,237,cs),\n(201,291,o),\n(242,356,o),\n(318,356,cs),\n(402,356,o),\n(423,291,o),\n(416,237,cs),\n(408,170,o),\n(371,109,o),\n(291,109,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 54;\n},\n{\nglyphname = seven;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,1,l),\n(507,646,l),\n(513,700,l),\n(100,700,l),\n(93,644,l),\n(441,644,l),\n(123,1,l)\n);\n}\n);\nwidth = 493;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(197,1,l),\n(519,622,l),\n(528,700,l),\n(90,700,l),\n(80,620,l),\n(419,620,l),\n(98,1,l)\n);\n}\n);\nwidth = 486;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(231,1,l),\n(531,574,l),\n(547,700,l),\n(90,700,l),\n(74,574,l),\n(393,574,l),\n(88,1,l)\n);\n}\n);\nwidth = 502;\n}\n);\nunicode = 55;\n},\n{\nglyphname = eight;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(408,-12,o),\n(524,64,o),\n(541,203,cs),\n(551,286,o),\n(504,348,o),\n(445,384,c),\n(491,416,o),\n(537,465,o),\n(545,530,cs),\n(560,649,o),\n(479,712,o),\n(358,712,cs),\n(239,712,o),\n(141,649,o),\n(126,530,cs),\n(118,465,o),\n(154,415,o),\n(190,384,c),\n(124,348,o),\n(62,286,o),\n(52,203,cs),\n(35,64,o),\n(131,-12,o),\n(270,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(154,44,o),\n(104,123,o),\n(114,203,cs),\n(123,278,o),\n(188,350,o),\n(313,350,cs),\n(438,350,o),\n(488,278,o),\n(479,203,cs),\n(469,123,o),\n(403,44,o),\n(278,44,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,401,o),\n(180,465,o),\n(188,530,cs),\n(195,586,o),\n(244,656,o),\n(350,656,cs),\n(456,656,o),\n(490,586,o),\n(483,530,cs),\n(475,465,o),\n(425,401,o),\n(321,401,cs)\n);\n}\n);\nwidth = 605;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(411,-12,o),\n(529,64,o),\n(546,203,cs),\n(556,286,o),\n(521,348,o),\n(462,384,c),\n(508,416,o),\n(542,465,o),\n(550,530,cs),\n(565,649,o),\n(484,712,o),\n(355,712,cs),\n(228,712,o),\n(130,649,o),\n(115,530,cs),\n(107,465,o),\n(131,415,o),\n(167,384,c),\n(101,348,o),\n(51,286,o),\n(41,203,cs),\n(24,64,o),\n(122,-12,o),\n(267,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(178,68,o),\n(123,123,o),\n(133,203,cs),\n(142,278,o),\n(206,340,o),\n(309,340,cs),\n(412,340,o),\n(463,278,o),\n(454,203,cs),\n(444,123,o),\n(379,68,o),\n(278,68,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(233,418,o),\n(195,465,o),\n(203,530,cs),\n(210,586,o),\n(256,636,o),\n(344,636,cs),\n(432,636,o),\n(469,586,o),\n(462,530,cs),\n(454,465,o),\n(406,418,o),\n(320,418,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(445,-12,o),\n(576,74,o),\n(592,203,cs),\n(602,286,o),\n(567,348,o),\n(508,384,c),\n(554,416,o),\n(588,465,o),\n(596,530,cs),\n(609,639,o),\n(529,712,o),\n(381,712,cs),\n(236,712,o),\n(136,639,o),\n(123,530,cs),\n(115,465,o),\n(139,415,o),\n(175,384,c),\n(109,348,o),\n(59,286,o),\n(49,203,cs),\n(33,74,o),\n(133,-12,o),\n(293,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(227,116,o),\n(197,157,o),\n(204,212,cs),\n(210,260,o),\n(250,306,o),\n(331,306,cs),\n(420,306,o),\n(445,260,o),\n(439,212,cs),\n(432,157,o),\n(397,116,o),\n(310,116,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(300,433,o),\n(264,458,o),\n(271,512,cs),\n(275,550,o),\n(316,584,o),\n(365,584,cs),\n(413,584,o),\n(448,550,o),\n(444,512,cs),\n(437,458,o),\n(394,433,o),\n(348,433,cs)\n);\n}\n);\nwidth = 653;\n}\n);\nunicode = 56;\n},\n{\nglyphname = nine;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(213,712,o),\n(109,610,o),\n(92,471,cs),\n(75,333,o),\n(155,238,o),\n(281,238,cs),\n(340,238,o),\n(376,256,o),\n(390,271,c),\n(228,0,l),\n(298,0,l),\n(470,280,ls),\n(501,330,o),\n(541,392,o),\n(552,474,cs),\n(569,613,o),\n(490,712,o),\n(347,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(454,656,o),\n(503,584,o),\n(490,474,cs),\n(477,370,o),\n(409,294,o),\n(298,294,cs),\n(193,294,o),\n(142,376,o),\n(155,474,cs),\n(169,590,o),\n(238,656,o),\n(339,656,cs)\n);\n}\n);\nwidth = 587;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(182,712,o),\n(82,603,o),\n(66,467,cs),\n(49,328,o),\n(128,222,o),\n(264,222,cs),\n(298,222,o),\n(343,232,o),\n(357,247,c),\n(207,0,l),\n(307,0,l),\n(465,270,ls),\n(495,320,o),\n(540,408,o),\n(548,469,cs),\n(565,608,o),\n(492,712,o),\n(338,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(425,632,o),\n(466,553,o),\n(456,466,cs),\n(446,386,o),\n(385,303,o),\n(291,303,cs),\n(175,303,o),\n(148,386,o),\n(158,466,cs),\n(168,553,o),\n(222,632,o),\n(327,632,cs)\n);\n}\n);\nwidth = 561;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,712,o),\n(98,606,o),\n(81,467,cs),\n(64,324,o),\n(135,223,o),\n(276,223,cs),\n(322,223,o),\n(351,240,o),\n(351,240,c),\n(211,0,l),\n(363,0,l),\n(521,271,ls),\n(560,338,o),\n(586,407,o),\n(593,467,cs),\n(610,606,o),\n(528,712,o),\n(366,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(430,591,o),\n(457,535,o),\n(448,468,cs),\n(442,414,o),\n(400,344,o),\n(324,344,cs),\n(240,344,o),\n(220,414,o),\n(226,468,cs),\n(235,535,o),\n(270,591,o),\n(350,591,cs)\n);\n}\n);\nwidth = 597;\n}\n);\nunicode = 57;\n},\n{\nglyphname = space;\nlastChange = \"2025-01-08 15:07:06 +0000\";\nlayers = (\n{\nlayerId = m01;\nwidth = 300;\n},\n{\nlayerId = m002;\nwidth = 300;\n},\n{\nlayerId = m003;\nwidth = 300;\n}\n);\nunicode = 32;\n},\n{\nglyphname = nbspace;\nlastChange = \"2025-01-08 15:07:17 +0000\";\nlayers = (\n{\nlayerId = m01;\nwidth = 300;\n},\n{\nlayerId = m002;\nwidth = 300;\n},\n{\nlayerId = m003;\nwidth = 300;\n}\n);\nmetricWidth = space;\nunicode = 160;\n},\n{\nglyphname = .notdef;\nlastChange = \"2025-01-08 15:06:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(476,-150,l),\n(584,730,l),\n(126,730,l),\n(18,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(177,678,l),\n(523,678,l),\n(425,-98,l),\n(79,-98,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(477,-150,l),\n(587,730,l),\n(129,730,l),\n(19,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(202,652,l),\n(490,652,l),\n(404,-72,l),\n(116,-72,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(492,-150,l),\n(595,730,l),\n(107,730,l),\n(4,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,602,l),\n(447,602,l),\n(370,-22,l),\n(152,-22,l)\n);\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = period;\nkernLeft = \".\";\nkernRight = \".\";\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,-12,o),\n(157,10,o),\n(160,37,cs),\n(163,66,o),\n(144,88,o),\n(116,88,cs),\n(88,88,o),\n(62,66,o),\n(59,37,cs),\n(56,10,o),\n(76,-12,o),\n(104,-12,cs)\n);\n}\n);\nwidth = 271;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"2626C257-C8D1-4BEC-A76B-04061BD798F2\";\nname = foreground;\nwidth = 309;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(149,-12,o),\n(182,18,o),\n(186,53,cs),\n(190,89,o),\n(165,119,o),\n(130,119,cs),\n(94,119,o),\n(60,89,o),\n(56,53,cs),\n(52,18,o),\n(78,-12,o),\n(114,-12,cs)\n);\n}\n);\nwidth = 290;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,-16,o),\n(231,24,o),\n(237,74,cs),\n(243,122,o),\n(207,161,o),\n(159,161,cs),\n(110,161,o),\n(64,122,o),\n(58,74,cs),\n(52,24,o),\n(88,-16,o),\n(137,-16,cs)\n);\n}\n);\nwidth = 328;\n}\n);\nunicode = 46;\n},\n{\nglyphname = comma;\nkernLeft = \".\";\nkernRight = \".\";\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(95,-92,o),\n(138,-35,o),\n(146,27,cs),\n(150,62,o),\n(136,88,o),\n(99,88,cs),\n(70,88,o),\n(48,63,o),\n(45,38,cs),\n(42,14,o),\n(60,-7,o),\n(85,-7,cs),\n(86,-7,o),\n(90,-7,o),\n(91,-7,c),\n(85,-58,o),\n(32,-69,o),\n(32,-69,c),\n(32,-69,o),\n(28,-92,o),\n(29,-92,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"7090993E-1050-418C-BDF4-9BE23E3E6164\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(103,-119,o),\n(150,-26,o),\n(159,38,c),\n(164,76,o),\n(150,119,o),\n(96,119,cs),\n(59,119,o),\n(30,86,o),\n(26,53,cs),\n(22,21,o),\n(47,-7,o),\n(78,-7,cs),\n(80,-7,o),\n(84,-7,o),\n(88,-6,c),\n(79,-74,o),\n(8,-89,o),\n(8,-89,c),\n(8,-89,o),\n(4,-119,o),\n(5,-119,cs)\n);\n}\n);\nwidth = 235;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,-144,o),\n(195,-21,o),\n(205,58,cs),\n(211,106,o),\n(191,160,o),\n(126,160,cs),\n(77,160,o),\n(41,118,o),\n(36,76,cs),\n(31,37,o),\n(60,2,o),\n(104,2,cs),\n(108,2,o),\n(113,2,o),\n(116,3,c),\n(106,-83,o),\n(14,-101,o),\n(14,-101,c),\n(14,-101,o),\n(8,-144,o),\n(9,-144,cs)\n);\n}\n);\nwidth = 293;\n}\n);\nunicode = 44;\n},\n{\nglyphname = colon;\nkernLeft = colon;\nkernRight = colon;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(151,-12,o),\n(176,10,o),\n(179,37,cs),\n(182,66,o),\n(163,88,o),\n(135,88,cs),\n(107,88,o),\n(81,66,o),\n(78,37,cs),\n(75,10,o),\n(95,-12,o),\n(123,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,354,o),\n(220,376,o),\n(224,403,cs),\n(227,432,o),\n(208,454,o),\n(180,454,cs),\n(152,454,o),\n(126,432,o),\n(123,403,cs),\n(119,376,o),\n(140,354,o),\n(168,354,cs)\n);\n}\n);\nwidth = 309;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"1129757A-F034-4623-96F5-2C126444C93D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,289,o),\n(229,324,o),\n(229,363,cs),\n(229,405,o),\n(196,440,o),\n(156,440,cs),\n(115,440,o),\n(80,405,o),\n(80,363,cs),\n(80,324,o),\n(115,289,o),\n(156,289,cs)\n);\n}\n);\nwidth = 309;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,-12,o),\n(192,18,o),\n(196,53,cs),\n(200,89,o),\n(175,119,o),\n(140,119,cs),\n(104,119,o),\n(70,89,o),\n(66,53,cs),\n(62,18,o),\n(88,-12,o),\n(124,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(203,349,o),\n(236,379,o),\n(240,414,cs),\n(245,450,o),\n(219,480,o),\n(184,480,cs),\n(148,480,o),\n(115,450,o),\n(110,414,cs),\n(106,379,o),\n(132,349,o),\n(168,349,cs)\n);\n}\n);\nwidth = 310;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(181,-12,o),\n(225,27,o),\n(231,75,cs),\n(237,122,o),\n(202,160,o),\n(155,160,cs),\n(107,160,o),\n(64,122,o),\n(58,75,cs),\n(52,27,o),\n(86,-12,o),\n(134,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(223,329,o),\n(267,368,o),\n(273,416,cs),\n(279,463,o),\n(244,501,o),\n(197,501,cs),\n(149,501,o),\n(106,463,o),\n(100,416,cs),\n(94,368,o),\n(128,329,o),\n(176,329,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 58;\n},\n{\nglyphname = semicolon;\nkernLeft = colon;\nkernRight = colon;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(108,-92,o),\n(151,-35,o),\n(159,27,cs),\n(163,62,o),\n(149,88,o),\n(112,88,cs),\n(83,88,o),\n(61,63,o),\n(58,38,cs),\n(55,14,o),\n(73,-7,o),\n(98,-7,cs),\n(99,-7,o),\n(103,-7,o),\n(104,-7,c),\n(98,-58,o),\n(45,-69,o),\n(45,-69,c),\n(45,-69,o),\n(41,-92,o),\n(42,-92,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(177,354,o),\n(201,376,o),\n(205,403,cs),\n(208,432,o),\n(189,454,o),\n(161,454,cs),\n(133,454,o),\n(107,432,o),\n(104,403,cs),\n(100,376,o),\n(121,354,o),\n(149,354,cs)\n);\n}\n);\nwidth = 270;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"7C7B3130-D28B-462C-85A7-59917ACED75E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,289,o),\n(213,324,o),\n(213,363,cs),\n(213,405,o),\n(180,440,o),\n(140,440,cs),\n(99,440,o),\n(64,405,o),\n(64,363,cs),\n(64,324,o),\n(99,289,o),\n(140,289,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(126,-119,o),\n(173,-26,o),\n(182,38,c),\n(187,76,o),\n(173,119,o),\n(119,119,cs),\n(82,119,o),\n(53,86,o),\n(49,53,cs),\n(45,21,o),\n(70,-7,o),\n(101,-7,cs),\n(103,-7,o),\n(107,-7,o),\n(111,-6,c),\n(102,-74,o),\n(31,-89,o),\n(31,-89,c),\n(31,-89,o),\n(27,-119,o),\n(28,-119,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(189,349,o),\n(222,379,o),\n(226,414,cs),\n(231,450,o),\n(205,480,o),\n(170,480,cs),\n(134,480,o),\n(101,450,o),\n(96,414,cs),\n(92,379,o),\n(118,349,o),\n(154,349,cs)\n);\n}\n);\nwidth = 265;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,-144,o),\n(218,-21,o),\n(228,58,cs),\n(234,106,o),\n(214,160,o),\n(149,160,cs),\n(100,160,o),\n(64,118,o),\n(59,76,cs),\n(54,37,o),\n(83,2,o),\n(127,2,cs),\n(131,2,o),\n(136,2,o),\n(139,3,c),\n(129,-83,o),\n(37,-101,o),\n(37,-101,c),\n(37,-101,o),\n(31,-144,o),\n(32,-144,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(223,329,o),\n(267,368,o),\n(273,416,cs),\n(279,463,o),\n(244,501,o),\n(197,501,cs),\n(149,501,o),\n(106,463,o),\n(100,416,cs),\n(94,368,o),\n(128,329,o),\n(176,329,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 59;\n},\n{\nglyphname = ellipsis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (199,0);\nref = period;\n},\n{\npos = (429,0);\nref = period;\n},\n{\npos = (-31,0);\nref = period;\n}\n);\nwidth = 770;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (199,0);\nref = period;\n},\n{\npos = (429,0);\nref = period;\n},\n{\npos = (-31,0);\nref = period;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (231,0);\nref = period;\n},\n{\npos = (506,0);\nref = period;\n},\n{\npos = (-46,0);\nref = period;\n}\n);\nwidth = 876;\n}\n);\nunicode = 8230;\n},\n{\nglyphname = exclam;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(167,162,l),\n(247,700,l),\n(172,700,l),\n(123,162,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(149,-12,o),\n(174,10,o),\n(177,36,cs),\n(180,64,o),\n(161,85,o),\n(134,85,cs),\n(107,85,o),\n(82,64,o),\n(79,36,cs),\n(76,10,o),\n(95,-12,o),\n(122,-12,cs)\n);\n}\n);\nwidth = 308;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"A93029F6-5A44-47E5-8EBB-60AEDDECB850\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,215,l),\n(218,720,l),\n(89,720,l),\n(105,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n}\n);\nwidth = 309;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(187,215,l),\n(259,700,l),\n(152,700,l),\n(109,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(153,-12,o),\n(184,17,o),\n(189,51,cs),\n(193,86,o),\n(168,115,o),\n(134,115,cs),\n(99,115,o),\n(67,86,o),\n(63,51,cs),\n(58,17,o),\n(84,-12,o),\n(119,-12,cs)\n);\n}\n);\nwidth = 300;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(239,231,l),\n(311,700,l),\n(160,700,l),\n(117,231,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,-12,o),\n(239,27,o),\n(245,75,cs),\n(251,122,o),\n(216,160,o),\n(169,160,cs),\n(121,160,o),\n(78,122,o),\n(72,75,cs),\n(66,27,o),\n(100,-12,o),\n(148,-12,cs)\n);\n}\n);\nwidth = 361;\n}\n);\nunicode = 33;\n},\n{\nglyphname = exclamdown;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(62,-200,l),\n(137,-200,l),\n(189,338,l),\n(145,338,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(159,512,o),\n(134,490,o),\n(131,464,cs),\n(128,436,o),\n(147,415,o),\n(174,415,cs),\n(201,415,o),\n(226,436,o),\n(229,464,cs),\n(232,490,o),\n(213,512,o),\n(186,512,cs)\n);\n}\n);\nwidth = 308;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(45,-200,l),\n(152,-200,l),\n(198,285,l),\n(120,285,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(151,512,o),\n(119,483,o),\n(114,449,cs),\n(110,414,o),\n(136,385,o),\n(171,385,cs),\n(205,385,o),\n(236,414,o),\n(240,449,cs),\n(245,483,o),\n(220,512,o),\n(186,512,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,-192,l),\n(201,-192,l),\n(245,277,l),\n(123,277,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(166,520,o),\n(122,481,o),\n(116,433,cs),\n(110,386,o),\n(145,348,o),\n(193,348,cs),\n(240,348,o),\n(283,386,o),\n(289,433,cs),\n(295,481,o),\n(261,520,o),\n(214,520,cs)\n);\n}\n);\nwidth = 361;\n}\n);\nunicode = 161;\n},\n{\nglyphname = question;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,16);\ntarget = (0,6);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (-43,231);\ntarget = (0,22);\ntype = Stem;\n},\n{\norigin = (0,12);\ntarget = (0,13);\ntype = Stem;\n},\n{\norigin = (0,22);\ntarget = (0,1);\ntype = Stem;\n},\n{\norigin = (0,19);\ntarget = (0,3);\ntype = Stem;\n},\n{\norigin = (0,22);\ntarget = (0,1);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(252,188,l),\n(277,392,o),\n(462,332,o),\n(487,537,cs),\n(501,649,o),\n(424,719,o),\n(311,719,cs),\n(238,719,o),\n(170,685,o),\n(127,623,c),\n(109,597,o),\n(96,566,o),\n(91,530,c),\n(153,530,l),\n(163,611,o),\n(232,663,o),\n(303,663,cs),\n(379,663,o),\n(435,616,o),\n(425,536,cs),\n(405,372,o),\n(220,426,o),\n(190,188,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(224,-12,o),\n(249,10,o),\n(252,36,cs),\n(255,64,o),\n(236,85,o),\n(209,85,cs),\n(182,85,o),\n(157,64,o),\n(154,36,cs),\n(151,10,o),\n(170,-12,o),\n(197,-12,cs)\n);\n}\n);\nwidth = 502;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"CB6FE323-AA22-456B-834C-E280C3EC3E3D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(312,380,o),\n(500,311,o),\n(500,530,cs),\n(500,649,o),\n(404,719,o),\n(289,719,c),\n(209,719,o),\n(137,685,o),\n(101,623,c),\n(86,597,o),\n(77,566,o),\n(77,530,c),\n(174,530,l),\n(174,587,o),\n(210,636,o),\n(288,636,c),\n(366,636,o),\n(405,592,o),\n(405,536,cs),\n(405,372,o),\n(208,437,o),\n(208,216,cs),\n(208,216,o),\n(312,216,o),\n(312,216,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(308,-12,o),\n(341,23,o),\n(341,62,cs),\n(341,104,o),\n(308,139,o),\n(268,139,cs),\n(227,139,o),\n(192,104,o),\n(192,62,cs),\n(192,23,o),\n(227,-12,o),\n(268,-12,cs)\n);\n}\n);\nwidth = 587;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(274,200,l),\n(295,371,o),\n(472,322,o),\n(498,536,cs),\n(511,645,o),\n(429,719,o),\n(314,719,cs),\n(238,719,o),\n(161,685,o),\n(118,623,c),\n(100,597,o),\n(87,566,o),\n(82,530,c),\n(164,530,l),\n(171,587,o),\n(229,639,o),\n(303,639,cs),\n(381,639,o),\n(415,592,o),\n(408,536,cs),\n(388,372,o),\n(209,421,o),\n(182,200,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(233,-12,o),\n(264,17,o),\n(269,51,cs),\n(273,86,o),\n(248,115,o),\n(214,115,cs),\n(179,115,o),\n(147,86,o),\n(143,51,cs),\n(138,17,o),\n(164,-12,o),\n(199,-12,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(311,209,l),\n(330,356,o),\n(497,325,o),\n(522,531,cs),\n(537,650,o),\n(455,720,o),\n(323,720,cs),\n(226,720,o),\n(155,686,o),\n(111,624,cs),\n(93,598,o),\n(78,544,o),\n(73,508,c),\n(225,508,l),\n(231,555,o),\n(252,590,o),\n(306,590,cs),\n(353,590,o),\n(372,560,o),\n(368,527,cs),\n(350,383,o),\n(186,427,o),\n(159,209,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(257,-16,o),\n(301,23,o),\n(307,71,cs),\n(312,118,o),\n(278,156,o),\n(231,156,cs),\n(183,156,o),\n(139,118,o),\n(134,71,cs),\n(128,23,o),\n(162,-16,o),\n(210,-16,cs)\n);\n}\n);\nwidth = 528;\n}\n);\nunicode = 63;\n},\n{\nglyphname = questiondown;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(271,-219,o),\n(339,-185,o),\n(382,-123,c),\n(400,-97,o),\n(413,-66,o),\n(418,-30,c),\n(356,-30,l),\n(346,-111,o),\n(277,-163,o),\n(206,-163,cs),\n(130,-163,o),\n(74,-116,o),\n(84,-36,cs),\n(104,128,o),\n(289,74,o),\n(319,312,c),\n(257,312,l),\n(232,108,o),\n(47,168,o),\n(22,-37,cs),\n(8,-149,o),\n(85,-219,o),\n(198,-219,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(327,415,o),\n(352,436,o),\n(355,464,cs),\n(358,490,o),\n(339,512,o),\n(312,512,cs),\n(285,512,o),\n(260,490,o),\n(257,464,cs),\n(254,436,o),\n(273,415,o),\n(300,415,cs)\n);\n}\n);\nwidth = 495;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(273,-219,o),\n(350,-185,o),\n(393,-123,c),\n(411,-97,o),\n(424,-66,o),\n(429,-30,c),\n(347,-30,l),\n(340,-87,o),\n(282,-139,o),\n(208,-139,cs),\n(130,-139,o),\n(96,-92,o),\n(103,-36,cs),\n(123,128,o),\n(302,79,o),\n(329,300,c),\n(237,300,l),\n(216,129,o),\n(39,178,o),\n(13,-36,cs),\n(0,-145,o),\n(82,-219,o),\n(197,-219,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(332,385,o),\n(364,414,o),\n(368,449,cs),\n(373,483,o),\n(347,512,o),\n(312,512,cs),\n(278,512,o),\n(247,483,o),\n(242,449,cs),\n(238,414,o),\n(263,385,o),\n(297,385,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(303,-216,o),\n(374,-182,o),\n(418,-120,cs),\n(436,-94,o),\n(452,-40,o),\n(456,-4,c),\n(304,-4,l),\n(299,-51,o),\n(277,-86,o),\n(223,-86,cs),\n(176,-86,o),\n(158,-56,o),\n(162,-23,cs),\n(180,121,o),\n(343,77,o),\n(370,295,c),\n(218,295,l),\n(200,148,o),\n(33,179,o),\n(7,-27,cs),\n(-7,-146,o),\n(74,-216,o),\n(206,-216,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(347,348,o),\n(390,386,o),\n(396,433,cs),\n(402,481,o),\n(368,520,o),\n(320,520,cs),\n(273,520,o),\n(229,481,o),\n(223,433,cs),\n(217,386,o),\n(252,348,o),\n(299,348,cs)\n);\n}\n);\nwidth = 528;\n}\n);\nunicode = 191;\n},\n{\nglyphname = periodcentered;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,255,o),\n(188,277,o),\n(192,304,cs),\n(195,333,o),\n(176,355,o),\n(148,355,cs),\n(120,355,o),\n(94,333,o),\n(91,304,cs),\n(87,277,o),\n(108,255,o),\n(136,255,cs)\n);\n}\n);\nwidth = 269;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,239,o),\n(220,268,o),\n(225,304,cs),\n(229,340,o),\n(204,369,o),\n(168,369,cs),\n(132,369,o),\n(99,340,o),\n(95,304,cs),\n(90,268,o),\n(116,239,o),\n(152,239,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,217,o),\n(256,257,o),\n(263,307,cs),\n(268,355,o),\n(232,394,o),\n(184,394,cs),\n(135,394,o),\n(89,355,o),\n(84,307,cs),\n(77,257,o),\n(113,217,o),\n(162,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 183;\n},\n{\nglyphname = bullet;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(172,247,o),\n(202,275,o),\n(206,306,cs),\n(210,339,o),\n(186,367,o),\n(155,367,cs),\n(122,367,o),\n(91,339,o),\n(87,306,cs),\n(83,275,o),\n(108,247,o),\n(141,247,cs)\n);\n}\n);\nwidth = 279;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(213,223,o),\n(255,262,o),\n(261,307,cs),\n(267,354,o),\n(234,393,o),\n(189,393,cs),\n(142,393,o),\n(98,354,o),\n(92,307,cs),\n(86,262,o),\n(121,223,o),\n(168,223,cs)\n);\n}\n);\nwidth = 339;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(233,197,o),\n(289,247,o),\n(297,309,cs),\n(304,370,o),\n(260,419,o),\n(199,419,cs),\n(137,419,o),\n(81,370,o),\n(74,309,cs),\n(66,247,o),\n(110,197,o),\n(172,197,cs)\n);\n}\n);\nwidth = 357;\n}\n);\nunicode = 8226;\n},\n{\nglyphname = asterisk;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(289,489,l),\n(247,489,l),\n(356,339,l),\n(404,374,l),\n(290,533,l),\n(280,488,l),\n(458,567,l),\n(442,616,l),\n(269,540,l),\n(301,522,l),\n(325,712,l),\n(269,712,l),\n(245,519,l),\n(282,536,l),\n(126,613,l),\n(99,567,l),\n(257,488,l),\n(258,533,l),\n(104,374,l),\n(143,339,l)\n);\n}\n);\nwidth = 479;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"52A87255-65B2-4E80-95F9-0AF50A018D84\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,321,l),\n(246,438,l),\n(344,320,l),\n(407,374,l),\n(310,489,l),\n(436,553,l),\n(400,624,l),\n(287,568,l),\n(287,714,l),\n(204,714,l),\n(204,568,l),\n(92,624,l),\n(55,553,l),\n(180,490,l),\n(83,374,l)\n);\n}\n);\nwidth = 491;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(302,489,l),\n(244,489,l),\n(360,330,l),\n(417,374,l),\n(303,533,l),\n(284,480,l),\n(469,562,l),\n(449,624,l),\n(275,548,l),\n(312,522,l),\n(336,712,l),\n(268,712,l),\n(244,519,l),\n(288,545,l),\n(132,622,l),\n(96,561,l),\n(260,480,l),\n(255,533,l),\n(101,374,l),\n(148,330,l)\n);\n}\n);\nwidth = 489;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(336,489,l),\n(236,489,l),\n(368,310,l),\n(452,374,l),\n(337,533,l),\n(295,459,l),\n(498,551,l),\n(466,646,l),\n(291,570,l),\n(348,522,l),\n(371,712,l),\n(261,712,l),\n(238,519,l),\n(305,568,l),\n(143,646,l),\n(86,548,l),\n(271,456,l),\n(248,533,l),\n(95,374,l),\n(166,311,l)\n);\n}\n);\nwidth = 512;\n}\n);\nunicode = 42;\n},\n{\nglyphname = numbersign;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,3);\ntarget = (1,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (3,3);\ntarget = (3,2);\ntype = Stem;\n},\n{\norigin = (1,3);\ntarget = (3,0);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(431,0,l),\n(693,720,l),\n(631,720,l),\n(369,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(641,183,l),\n(647,239,l),\n(73,239,l),\n(67,183,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(194,0,l),\n(456,720,l),\n(394,720,l),\n(132,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(741,482,l),\n(748,538,l),\n(174,538,l),\n(167,482,l)\n);\n}\n);\nwidth = 787;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"21C28542-C2BA-4EFE-9B17-DE8F14164D30\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(227,0,l),\n(400,720,l),\n(306,720,l),\n(133,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(462,0,l),\n(635,720,l),\n(541,720,l),\n(368,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(707,425,l),\n(707,523,l),\n(133,523,l),\n(133,425,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(644,199,l),\n(644,297,l),\n(70,297,l),\n(70,199,l)\n);\n}\n);\nwidth = 777;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,0,l),\n(691,720,l),\n(618,720,l),\n(356,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(638,187,l),\n(648,267,l),\n(74,267,l),\n(64,187,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(201,0,l),\n(463,720,l),\n(390,720,l),\n(128,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(735,457,l),\n(745,537,l),\n(171,537,l),\n(161,457,l)\n);\n}\n);\nwidth = 782;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(478,0,l),\n(739,720,l),\n(605,720,l),\n(344,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(675,152,l),\n(691,278,l),\n(68,278,l),\n(52,152,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(226,0,l),\n(487,720,l),\n(353,720,l),\n(92,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(755,416,l),\n(770,542,l),\n(153,542,l),\n(138,416,l)\n);\n}\n);\nwidth = 800;\n}\n);\nunicode = 35;\n},\n{\nglyphname = slash;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (208,-160);\n},\n{\npos = (177,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(32,-160,l),\n(494,775,l),\n(429,775,l),\n(-33,-160,l)\n);\n}\n);\nwidth = 438;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"B6C497E8-57DB-4813-80B4-1FC1C004D65A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,0,l),\n(390,720,l),\n(303,720,l),\n(10,0,l)\n);\n}\n);\nwidth = 385;\n},\n{\nguides = (\n{\npos = (-230,-160);\n},\n{\npos = (-230,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(56,-160,l),\n(524,776,l),\n(434,776,l),\n(-34,-160,l)\n);\n}\n);\nwidth = 460;\n},\n{\nguides = (\n{\npos = (-242,-159);\n},\n{\npos = (6,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,-161,l),\n(566,775,l),\n(426,775,l),\n(-43,-161,l)\n);\n}\n);\nwidth = 482;\n}\n);\nunicode = 47;\n},\n{\nglyphname = backslash;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,-160,l),\n(137,775,l),\n(72,775,l),\n(306,-160,l)\n);\n}\n);\nwidth = 438;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"343D6EAE-1DF2-4E0E-B6B5-032545DCA862\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(82,720,l),\n(-5,720,l),\n(288,0,l),\n(375,0,l)\n);\n}\n);\nwidth = 385;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(394,-160,l),\n(156,776,l),\n(66,776,l),\n(304,-160,l)\n);\n}\n);\nwidth = 460;\n},\n{\nguides = (\n{\npos = (-270,-159);\n},\n{\npos = (-22,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(423,-161,l),\n(184,775,l),\n(44,775,l),\n(283,-161,l)\n);\n}\n);\nwidth = 482;\n}\n);\nunicode = 92;\n},\n{\nglyphname = periodcentered.loclCAT;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(158,257,o),\n(182,279,o),\n(185,303,cs),\n(188,329,o),\n(169,351,o),\n(145,351,cs),\n(119,351,o),\n(95,329,o),\n(92,303,cs),\n(89,279,o),\n(108,257,o),\n(134,257,cs)\n);\n}\n);\nwidth = 263;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(178,239,o),\n(210,269,o),\n(215,304,cs),\n(219,340,o),\n(194,370,o),\n(159,370,cs),\n(123,370,o),\n(89,340,o),\n(85,304,cs),\n(80,269,o),\n(107,239,o),\n(143,239,cs)\n);\n}\n);\nwidth = 286;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,217,o),\n(256,257,o),\n(263,307,cs),\n(268,355,o),\n(232,394,o),\n(184,394,cs),\n(135,394,o),\n(89,355,o),\n(84,307,cs),\n(77,257,o),\n(113,217,o),\n(162,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\n},\n{\nglyphname = periodcentered.loclCAT.case;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(158,257,o),\n(182,279,o),\n(185,303,cs),\n(188,329,o),\n(169,351,o),\n(145,351,cs),\n(119,351,o),\n(95,329,o),\n(92,303,cs),\n(89,279,o),\n(108,257,o),\n(134,257,cs)\n);\n}\n);\nwidth = 263;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,239,o),\n(217,269,o),\n(222,304,cs),\n(226,340,o),\n(201,370,o),\n(166,370,cs),\n(130,370,o),\n(96,340,o),\n(92,304,cs),\n(87,269,o),\n(114,239,o),\n(150,239,cs)\n);\n}\n);\nwidth = 300;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,217,o),\n(256,257,o),\n(263,307,cs),\n(268,355,o),\n(232,394,o),\n(184,394,cs),\n(135,394,o),\n(89,355,o),\n(84,307,cs),\n(77,257,o),\n(113,217,o),\n(162,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\n},\n{\nglyphname = hyphen;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (259,296);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(420,268,l),\n(427,324,l),\n(79,324,l),\n(72,268,l)\n);\n}\n);\nwidth = 488;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"A4E3A6E5-E339-49A3-BA7C-5350A83F40F5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,247,l),\n(428,345,l),\n(80,345,l),\n(80,247,l)\n);\n}\n);\nwidth = 508;\n},\n{\nguides = (\n{\npos = (251,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(418,253,l),\n(429,337,l),\n(81,337,l),\n(70,253,l)\n);\n}\n);\nwidth = 488;\n},\n{\nguides = (\n{\npos = (251,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(458,230,l),\n(474,358,l),\n(78,358,l),\n(62,230,l)\n);\n}\n);\nwidth = 526;\n}\n);\nunicode = 45;\n},\n{\nglyphname = endash;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(486,270,l),\n(493,322,l),\n(79,322,l),\n(72,270,l)\n);\n}\n);\nwidth = 554;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(484,256,l),\n(493,334,l),\n(80,334,l),\n(71,256,l)\n);\n}\n);\nwidth = 553;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(515,236,l),\n(529,352,l),\n(77,352,l),\n(63,236,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 8211;\n},\n{\nglyphname = emdash;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(816,270,l),\n(823,322,l),\n(79,322,l),\n(72,270,l)\n);\n}\n);\nwidth = 884;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(816,254,l),\n(826,332,l),\n(81,332,l),\n(71,254,l)\n);\n}\n);\nwidth = 886;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(851,236,l),\n(865,352,l),\n(77,352,l),\n(63,236,l)\n);\n}\n);\nwidth = 918;\n}\n);\nunicode = 8212;\n},\n{\nglyphname = underscore;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(425,0,l),\n(432,52,l),\n(-27,52,l),\n(-34,0,l)\n);\n}\n);\nwidth = 453;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"1AB4D43C-2735-4A3F-815D-32BCD16357D5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(546,0,l),\n(546,98,l),\n(60,98,l),\n(60,0,l)\n);\n}\n);\nwidth = 606;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(452,0,l),\n(462,78,l),\n(-24,78,l),\n(-34,0,l)\n);\n}\n);\nwidth = 480;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(501,0,l),\n(515,116,l),\n(-20,116,l),\n(-34,0,l)\n);\n}\n);\nwidth = 529;\n}\n);\nunicode = 95;\n},\n{\nglyphname = parenleft;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (183,-160);\n},\n{\npos = (152,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(214,-160,l),\n(217,-158,o),\n(104,4,o),\n(141,308,c),\n(178,610,o),\n(331,773,o),\n(328,775,c),\n(266,775,l),\n(267,775,o),\n(110,579,o),\n(77,308,c),\n(44,35,o),\n(153,-160,o),\n(153,-160,c)\n);\n}\n);\nwidth = 299;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"A003329C-BEC9-4397-9AAD-9155A5EADE70\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(62,109,o),\n(172,-60,o),\n(172,-60,c),\n(280,-60,l),\n(283,-58,o),\n(163,82,o),\n(163,345,c),\n(163,607,o),\n(283,748,o),\n(280,750,c),\n(172,750,l),\n(172,750,o),\n(62,580,o),\n(62,345,c)\n);\n}\n);\nwidth = 313;\n},\n{\nguides = (\n{\npos = (-216,-160);\n},\n{\npos = (-216,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(228,-160,l),\n(231,-158,o),\n(128,5,o),\n(165,308,cs),\n(202,610,o),\n(345,774,o),\n(343,776,c),\n(259,776,l),\n(259,776,o),\n(111,580,o),\n(77,308,cs),\n(44,35,o),\n(143,-160,o),\n(143,-160,c)\n);\n}\n);\nwidth = 308;\n},\n{\nguides = (\n{\npos = (-314,-159);\n},\n{\npos = (-66,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(275,-159,l),\n(279,-157,o),\n(167,4,o),\n(205,309,c),\n(242,611,o),\n(392,773,o),\n(389,775,c),\n(250,775,l),\n(250,775,o),\n(88,579,o),\n(55,309,c),\n(21,36,o),\n(136,-159,o),\n(136,-159,c)\n);\n}\n);\nwidth = 394;\n}\n);\nunicode = 40;\n},\n{\nglyphname = parenright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(46,-160,o),\n(203,35,o),\n(236,308,c),\n(269,579,o),\n(160,775,o),\n(161,775,c),\n(99,775,l),\n(96,773,o),\n(209,610,o),\n(172,308,c),\n(135,4,o),\n(-18,-158,o),\n(-15,-160,c),\n(46,-160,l)\n);\n}\n);\nwidth = 299;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"FEA7CF8C-5847-4A35-8A6B-C76339FB953A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(243,580,o),\n(133,750,o),\n(133,750,c),\n(25,750,l),\n(22,748,o),\n(142,607,o),\n(142,345,c),\n(142,82,o),\n(22,-58,o),\n(25,-60,c),\n(133,-60,l),\n(133,-60,o),\n(243,109,o),\n(243,345,c)\n);\n}\n);\nwidth = 303;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(65,-160,o),\n(212,35,o),\n(245,308,cs),\n(279,580,o),\n(179,776,o),\n(179,776,c),\n(95,776,l),\n(91,774,o),\n(194,610,o),\n(157,308,cs),\n(120,5,o),\n(-23,-158,o),\n(-20,-160,c),\n(65,-160,l)\n);\n}\n);\nwidth = 308;\n},\n{\nguides = (\n{\npos = (-297,-159);\n},\n{\npos = (-49,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,-159,o),\n(319,36,o),\n(353,309,c),\n(386,579,o),\n(272,775,o),\n(272,775,c),\n(133,775,l),\n(130,773,o),\n(240,611,o),\n(203,309,c),\n(165,4,o),\n(15,-157,o),\n(17,-159,c),\n(156,-159,l)\n);\n}\n);\nwidth = 394;\n}\n);\nunicode = 41;\n},\n{\nglyphname = braceleft;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (238,-160);\n},\n{\npos = (207,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(287,-159,l),\n(293,-105,l),\n(234,-105,ls),\n(186,-105,o),\n(161,-77,o),\n(168,-18,cs),\n(195,205,ls),\n(203,270,o),\n(183,294,o),\n(150,303,c),\n(150,311,l),\n(187,321,o),\n(212,340,o),\n(221,416,cs),\n(248,634,ls),\n(255,693,o),\n(288,721,o),\n(336,721,cs),\n(395,721,l),\n(401,775,l),\n(335,775,ls),\n(235,775,o),\n(198,712,o),\n(188,632,cs),\n(161,416,ls),\n(157,378,o),\n(121,340,o),\n(76,340,c),\n(68,278,l),\n(114,278,o),\n(141,251,o),\n(135,205,cs),\n(108,-16,ls),\n(99,-96,o),\n(121,-159,o),\n(221,-159,cs)\n);\n}\n);\nwidth = 370;\n},\n{\nguides = (\n{\npos = (-216,-160);\n},\n{\npos = (-216,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(317,-159,l),\n(327,-79,l),\n(249,-79,ls),\n(206,-79,o),\n(183,-46,o),\n(188,0,cs),\n(214,209,ls),\n(221,267,o),\n(199,296,o),\n(154,305,c),\n(155,313,l),\n(202,323,o),\n(232,354,o),\n(239,414,cs),\n(264,616,ls),\n(271,673,o),\n(301,695,o),\n(344,695,cs),\n(422,695,l),\n(431,775,l),\n(336,775,ls),\n(255,775,o),\n(187,705,o),\n(177,624,cs),\n(155,444,ls),\n(148,389,o),\n(120,357,o),\n(68,357,c),\n(57,266,l),\n(109,266,o),\n(129,235,o),\n(122,180,cs),\n(99,-9,ls),\n(89,-90,o),\n(141,-159,o),\n(222,-159,cs)\n);\n}\n);\nwidth = 400;\n},\n{\nguides = (\n{\npos = (-253,-159);\n},\n{\npos = (-5,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(369,-159,l),\n(385,-33,l),\n(291,-33,ls),\n(256,-33,o),\n(241,0,o),\n(246,40,cs),\n(266,209,ls),\n(274,267,o),\n(246,296,o),\n(201,305,c),\n(202,313,l),\n(249,323,o),\n(284,354,o),\n(292,414,cs),\n(312,576,ls),\n(318,626,o),\n(339,649,o),\n(374,649,cs),\n(468,649,l),\n(484,775,l),\n(344,775,ls),\n(261,775,o),\n(187,703,o),\n(177,622,cs),\n(157,455,ls),\n(150,400,o),\n(123,376,o),\n(71,376,c),\n(55,246,l),\n(107,246,o),\n(128,223,o),\n(121,168,cs),\n(100,-6,ls),\n(90,-87,o),\n(146,-159,o),\n(229,-159,cs)\n);\n}\n);\nwidth = 442;\n}\n);\nunicode = 123;\n},\n{\nglyphname = braceright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(149,-159,o),\n(187,-96,o),\n(196,-16,cs),\n(223,205,ls),\n(229,251,o),\n(262,277,o),\n(308,277,c),\n(316,342,l),\n(271,342,o),\n(245,378,o),\n(249,416,cs),\n(276,632,ls),\n(286,712,o),\n(263,775,o),\n(163,775,cs),\n(97,775,l),\n(91,721,l),\n(150,721,ls),\n(198,721,o),\n(223,693,o),\n(216,634,cs),\n(189,416,ls),\n(180,340,o),\n(201,321,o),\n(234,311,c),\n(234,303,l),\n(197,294,o),\n(171,270,o),\n(163,205,cs),\n(136,-18,ls),\n(129,-77,o),\n(96,-105,o),\n(48,-105,cs),\n(-11,-105,l),\n(-17,-159,l),\n(49,-159,ls)\n);\n}\n);\nwidth = 370;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,-159,o),\n(227,-90,o),\n(237,-9,cs),\n(260,180,ls),\n(267,235,o),\n(295,266,o),\n(347,266,c),\n(358,357,l),\n(306,357,o),\n(286,389,o),\n(293,444,cs),\n(315,624,ls),\n(325,705,o),\n(273,775,o),\n(192,775,cs),\n(97,775,l),\n(88,695,l),\n(166,695,ls),\n(209,695,o),\n(233,673,o),\n(226,616,cs),\n(201,414,ls),\n(194,354,o),\n(213,323,o),\n(258,313,c),\n(257,305,l),\n(210,296,o),\n(183,267,o),\n(176,209,cs),\n(150,0,ls),\n(145,-46,o),\n(114,-79,o),\n(71,-79,cs),\n(-7,-79,l),\n(-17,-159,l),\n(78,-159,ls)\n);\n}\n);\nwidth = 400;\n},\n{\nguides = (\n{\npos = (-373,-159);\n},\n{\npos = (-125,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(194,-159,o),\n(268,-87,o),\n(278,-6,cs),\n(299,168,ls),\n(306,223,o),\n(333,246,o),\n(385,246,c),\n(401,376,l),\n(349,376,o),\n(328,400,o),\n(335,455,cs),\n(355,622,ls),\n(365,703,o),\n(309,775,o),\n(226,775,cs),\n(86,775,l),\n(70,649,l),\n(164,649,ls),\n(199,649,o),\n(216,626,o),\n(210,576,cs),\n(190,414,ls),\n(182,354,o),\n(209,323,o),\n(254,313,c),\n(253,305,l),\n(206,296,o),\n(172,267,o),\n(164,209,cs),\n(144,40,ls),\n(139,0,o),\n(116,-33,o),\n(81,-33,cs),\n(-13,-33,l),\n(-29,-159,l),\n(111,-159,ls)\n);\n}\n);\nwidth = 442;\n}\n);\nunicode = 125;\n},\n{\nglyphname = bracketleft;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (181,-160);\n},\n{\npos = (150,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(265,-160,l),\n(272,-104,l),\n(117,-104,l),\n(217,718,l),\n(373,718,l),\n(380,774,l),\n(164,774,l),\n(50,-160,l)\n);\n}\n);\nwidth = 356;\n},\n{\nguides = (\n{\npos = (-259,-160);\n},\n{\npos = (-259,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(294,-160,l),\n(303,-84,l),\n(134,-84,l),\n(230,700,l),\n(400,700,l),\n(409,775,l),\n(159,775,l),\n(45,-160,l)\n);\n}\n);\nwidth = 383;\n},\n{\nguides = (\n{\npos = (-305,-159);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(355,-158,l),\n(371,-32,l),\n(195,-32,l),\n(278,649,l),\n(455,649,l),\n(471,775,l),\n(154,775,l),\n(39,-158,l)\n);\n}\n);\nwidth = 439;\n}\n);\nunicode = 91;\n},\n{\nglyphname = bracketright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(320,774,l),\n(104,774,l),\n(97,718,l),\n(253,718,l),\n(153,-104,l),\n(-2,-104,l),\n(-9,-160,l),\n(206,-160,l)\n);\n}\n);\nwidth = 356;\n},\n{\nguides = (\n{\npos = (-259,-160);\n},\n{\npos = (-259,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(409,775,l),\n(159,775,l),\n(150,700,l),\n(320,700,l),\n(224,-84,l),\n(55,-84,l),\n(46,-160,l),\n(295,-160,l)\n);\n}\n);\nwidth = 383;\n},\n{\nguides = (\n{\npos = (-305,-159);\n},\n{\npos = (-57,750);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(472,775,l),\n(155,775,l),\n(139,649,l),\n(316,649,l),\n(233,-32,l),\n(57,-32,l),\n(41,-158,l),\n(357,-158,l)\n);\n}\n);\nwidth = 439;\n}\n);\nunicode = 93;\n},\n{\nglyphname = quotesinglbase;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-72,0);\nref = comma;\n}\n);\nwidth = 162;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-51,0);\nref = comma;\n}\n);\nwidth = 195;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-41,-15);\nref = comma;\n}\n);\nwidth = 271;\n}\n);\nunicode = 8218;\n},\n{\nglyphname = quotedblbase;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (66,0);\nref = comma;\n},\n{\npos = (-72,0);\nref = comma;\n}\n);\nwidth = 300;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (132,0);\nref = comma;\n},\n{\npos = (-51,0);\nref = comma;\n}\n);\nwidth = 378;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (167,-15);\nref = comma;\n},\n{\npos = (-41,-15);\nref = comma;\n}\n);\nwidth = 479;\n}\n);\nunicode = 8222;\n},\n{\nglyphname = quotedblleft;\nkernLeft = quoteleft;\nkernRight = quoteleft;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(153,712,o),\n(110,655,o),\n(102,593,cs),\n(98,558,o),\n(117,532,o),\n(151,532,cs),\n(176,532,o),\n(200,557,o),\n(203,582,c),\n(206,606,o),\n(187,627,o),\n(162,627,cs),\n(161,627,o),\n(157,627,o),\n(156,627,c),\n(163,678,o),\n(216,689,o),\n(216,689,c),\n(216,689,o),\n(220,712,o),\n(219,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(291,712,o),\n(248,655,o),\n(240,593,cs),\n(236,558,o),\n(255,532,o),\n(289,532,cs),\n(314,532,o),\n(338,557,o),\n(341,582,cs),\n(344,606,o),\n(325,627,o),\n(300,627,cs),\n(299,627,o),\n(295,627,o),\n(294,627,c),\n(301,678,o),\n(354,689,o),\n(354,689,c),\n(354,689,o),\n(358,712,o),\n(357,712,cs)\n);\n}\n);\nwidth = 361;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,720,o),\n(100,627,o),\n(91,563,c),\n(87,525,o),\n(102,482,o),\n(154,482,cs),\n(188,482,o),\n(221,515,o),\n(225,548,cs),\n(229,580,o),\n(203,608,o),\n(172,608,cs),\n(170,608,o),\n(166,608,o),\n(163,607,c),\n(171,675,o),\n(242,690,o),\n(242,690,c),\n(242,690,o),\n(247,720,o),\n(246,720,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(336,720,o),\n(288,627,o),\n(279,563,c),\n(275,525,o),\n(290,482,o),\n(342,482,cs),\n(376,482,o),\n(409,515,o),\n(413,548,cs),\n(417,580,o),\n(391,608,o),\n(360,608,cs),\n(358,608,o),\n(354,608,o),\n(351,607,c),\n(359,675,o),\n(430,690,o),\n(430,690,c),\n(430,690,o),\n(435,720,o),\n(434,720,cs)\n);\n}\n);\nwidth = 432;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(154,721,o),\n(92,598,o),\n(83,519,cs),\n(77,471,o),\n(96,417,o),\n(161,417,cs),\n(207,417,o),\n(246,459,o),\n(251,501,cs),\n(256,540,o),\n(224,575,o),\n(183,575,cs),\n(179,575,o),\n(174,575,o),\n(171,574,c),\n(182,660,o),\n(273,678,o),\n(273,678,c),\n(273,678,o),\n(279,721,o),\n(278,721,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(357,721,o),\n(295,598,o),\n(286,519,cs),\n(280,471,o),\n(299,417,o),\n(364,417,cs),\n(410,417,o),\n(449,459,o),\n(454,501,cs),\n(459,540,o),\n(427,575,o),\n(386,575,cs),\n(382,575,o),\n(377,575,o),\n(374,574,c),\n(385,660,o),\n(476,678,o),\n(476,678,c),\n(476,678,o),\n(482,721,o),\n(481,721,cs)\n);\n}\n);\nwidth = 467;\n}\n);\nunicode = 8220;\n},\n{\nglyphname = quotedblright;\nkernLeft = quoteright;\nkernRight = quoteright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(300,532,o),\n(343,589,o),\n(350,651,cs),\n(355,686,o),\n(336,712,o),\n(302,712,cs),\n(277,712,o),\n(253,687,o),\n(250,662,c),\n(247,638,o),\n(265,617,o),\n(290,617,cs),\n(291,617,o),\n(295,617,o),\n(296,617,c),\n(290,566,o),\n(236,555,o),\n(236,555,c),\n(236,555,o),\n(234,532,o),\n(234,532,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(166,532,o),\n(209,589,o),\n(216,651,cs),\n(221,686,o),\n(202,712,o),\n(168,712,cs),\n(143,712,o),\n(119,687,o),\n(116,662,cs),\n(113,638,o),\n(131,617,o),\n(156,617,cs),\n(157,617,o),\n(161,617,o),\n(162,617,c),\n(156,566,o),\n(102,555,o),\n(102,555,c),\n(102,555,o),\n(99,532,o),\n(100,532,cs)\n);\n}\n);\nwidth = 361;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(368,482,o),\n(416,575,o),\n(425,639,c),\n(429,677,o),\n(414,720,o),\n(362,720,cs),\n(328,720,o),\n(296,687,o),\n(292,654,cs),\n(288,622,o),\n(313,594,o),\n(344,594,cs),\n(346,594,o),\n(350,594,o),\n(353,595,c),\n(345,527,o),\n(274,512,o),\n(274,512,c),\n(274,512,o),\n(269,482,o),\n(270,482,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(180,482,o),\n(228,575,o),\n(237,639,c),\n(241,677,o),\n(226,720,o),\n(174,720,cs),\n(140,720,o),\n(108,687,o),\n(104,654,cs),\n(100,622,o),\n(125,594,o),\n(156,594,cs),\n(158,594,o),\n(162,594,o),\n(165,595,c),\n(157,527,o),\n(86,512,o),\n(86,512,c),\n(86,512,o),\n(81,482,o),\n(82,482,cs)\n);\n}\n);\nwidth = 432;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(392,417,o),\n(454,540,o),\n(464,619,cs),\n(470,667,o),\n(450,721,o),\n(385,721,cs),\n(339,721,o),\n(300,679,o),\n(295,637,cs),\n(290,598,o),\n(322,563,o),\n(363,563,cs),\n(367,563,o),\n(372,563,o),\n(375,564,c),\n(365,478,o),\n(273,460,o),\n(273,460,c),\n(273,460,o),\n(267,417,o),\n(268,417,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(189,417,o),\n(251,540,o),\n(261,619,cs),\n(267,667,o),\n(247,721,o),\n(182,721,cs),\n(136,721,o),\n(97,679,o),\n(92,637,cs),\n(87,598,o),\n(119,563,o),\n(160,563,cs),\n(164,563,o),\n(169,563,o),\n(172,564,c),\n(162,478,o),\n(70,460,o),\n(70,460,c),\n(70,460,o),\n(64,417,o),\n(65,417,cs)\n);\n}\n);\nwidth = 469;\n}\n);\nunicode = 8221;\n},\n{\nglyphname = quoteleft;\nkernLeft = quoteleft;\nkernRight = quoteleft;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(177,540,o),\n(201,565,o),\n(204,590,c),\n(207,614,o),\n(188,635,o),\n(163,635,cs),\n(162,635,o),\n(158,635,o),\n(157,635,c),\n(164,686,o),\n(217,697,o),\n(217,697,c),\n(217,697,o),\n(221,720,o),\n(220,720,cs),\n(154,720,o),\n(111,663,o),\n(103,601,cs),\n(99,566,o),\n(118,540,o),\n(152,540,cs)\n);\n}\n);\nwidth = 212;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,482,o),\n(213,515,o),\n(217,548,cs),\n(221,580,o),\n(195,608,o),\n(164,608,cs),\n(162,608,o),\n(158,608,o),\n(155,607,c),\n(163,675,o),\n(234,690,o),\n(234,690,c),\n(234,690,o),\n(239,720,o),\n(238,720,cs),\n(140,720,o),\n(92,627,o),\n(83,563,c),\n(79,525,o),\n(94,482,o),\n(146,482,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,416,o),\n(239,458,o),\n(244,500,cs),\n(249,539,o),\n(217,574,o),\n(176,574,cs),\n(172,574,o),\n(167,574,o),\n(164,573,c),\n(175,659,o),\n(266,677,o),\n(266,677,c),\n(266,677,o),\n(272,720,o),\n(271,720,cs),\n(147,720,o),\n(85,597,o),\n(75,518,cs),\n(70,470,o),\n(89,416,o),\n(154,416,cs)\n);\n}\n);\nwidth = 264;\n}\n);\nunicode = 8216;\n},\n{\nglyphname = quoteright;\nkernLeft = quoteright;\nkernRight = quoteright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(151,532,o),\n(194,589,o),\n(201,651,cs),\n(206,686,o),\n(187,712,o),\n(153,712,cs),\n(128,712,o),\n(104,687,o),\n(101,662,c),\n(98,638,o),\n(116,617,o),\n(141,617,cs),\n(142,617,o),\n(146,617,o),\n(147,617,c),\n(141,566,o),\n(87,555,o),\n(87,555,c),\n(87,555,o),\n(84,532,o),\n(85,532,cs)\n);\n}\n);\nwidth = 212;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,482,o),\n(232,575,o),\n(241,639,c),\n(245,677,o),\n(230,720,o),\n(178,720,cs),\n(144,720,o),\n(112,687,o),\n(108,654,cs),\n(104,622,o),\n(129,594,o),\n(160,594,cs),\n(162,594,o),\n(166,594,o),\n(169,595,c),\n(161,527,o),\n(90,512,o),\n(90,512,c),\n(90,512,o),\n(85,482,o),\n(86,482,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(194,417,o),\n(256,540,o),\n(266,619,cs),\n(272,667,o),\n(252,721,o),\n(187,721,cs),\n(141,721,o),\n(102,679,o),\n(97,637,cs),\n(92,598,o),\n(124,563,o),\n(165,563,cs),\n(169,563,o),\n(174,563,o),\n(177,564,c),\n(167,478,o),\n(75,460,o),\n(75,460,c),\n(75,460,o),\n(69,417,o),\n(70,417,cs)\n);\n}\n);\nwidth = 264;\n}\n);\nunicode = 8217;\n},\n{\nglyphname = guillemetleft;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(614,99,l),\n(352,291,l),\n(351,283,l),\n(661,475,l),\n(669,545,l),\n(315,326,l),\n(306,250,l),\n(606,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(358,99,l),\n(96,291,l),\n(95,283,l),\n(405,475,l),\n(413,545,l),\n(59,326,l),\n(50,250,l),\n(350,31,l)\n);\n}\n);\nwidth = 693;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(615,120,l),\n(353,312,l),\n(346,262,l),\n(656,454,l),\n(667,544,l),\n(313,325,l),\n(304,249,l),\n(604,30,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(359,121,l),\n(97,313,l),\n(91,263,l),\n(400,455,l),\n(411,545,l),\n(57,326,l),\n(48,250,l),\n(348,31,l)\n);\n}\n);\nwidth = 687;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(661,145,l),\n(398,337,l),\n(386,240,l),\n(696,432,l),\n(713,571,l),\n(359,352,l),\n(343,222,l),\n(643,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(359,145,l),\n(96,337,l),\n(84,240,l),\n(394,432,l),\n(411,571,l),\n(57,352,l),\n(41,222,l),\n(341,3,l)\n);\n}\n);\nwidth = 715;\n}\n);\nunicode = 171;\n},\n{\nglyphname = guillemetright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(643,250,l),\n(652,326,l),\n(352,545,l),\n(344,475,l),\n(606,283,l),\n(607,291,l),\n(297,99,l),\n(289,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(387,250,l),\n(396,326,l),\n(96,545,l),\n(88,475,l),\n(350,283,l),\n(351,291,l),\n(41,99,l),\n(33,31,l)\n);\n}\n);\nwidth = 693;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(639,250,l),\n(648,326,l),\n(348,545,l),\n(337,455,l),\n(600,263,l),\n(606,313,l),\n(296,121,l),\n(285,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(383,249,l),\n(392,325,l),\n(92,544,l),\n(81,454,l),\n(343,262,l),\n(350,312,l),\n(40,120,l),\n(29,30,l)\n);\n}\n);\nwidth = 687;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(670,222,l),\n(686,352,l),\n(386,571,l),\n(369,432,l),\n(631,240,l),\n(643,337,l),\n(334,145,l),\n(316,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(368,222,l),\n(384,352,l),\n(84,571,l),\n(67,432,l),\n(329,240,l),\n(341,337,l),\n(32,145,l),\n(14,3,l)\n);\n}\n);\nwidth = 715;\n}\n);\nunicode = 187;\n},\n{\nglyphname = guilsinglleft;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,100,l),\n(93,294,l),\n(92,281,l),\n(375,475,l),\n(383,545,l),\n(59,326,l),\n(50,250,l),\n(320,31,l)\n);\n}\n);\nwidth = 407;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,121,l),\n(94,315,l),\n(87,261,l),\n(370,455,l),\n(381,545,l),\n(57,326,l),\n(48,250,l),\n(318,31,l)\n);\n}\n);\nwidth = 401;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(358,145,l),\n(95,337,l),\n(83,240,l),\n(393,432,l),\n(410,571,l),\n(56,352,l),\n(40,222,l),\n(340,3,l)\n);\n}\n);\nwidth = 421;\n}\n);\nunicode = 8249;\n},\n{\nglyphname = guilsinglright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(357,250,l),\n(366,326,l),\n(96,545,l),\n(88,475,l),\n(323,281,l),\n(324,294,l),\n(42,100,l),\n(33,31,l)\n);\n}\n);\nwidth = 407;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,250,l),\n(362,326,l),\n(92,545,l),\n(81,455,l),\n(316,261,l),\n(323,315,l),\n(40,121,l),\n(29,31,l)\n);\n}\n);\nwidth = 401;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(367,222,l),\n(383,352,l),\n(83,571,l),\n(66,432,l),\n(328,240,l),\n(340,337,l),\n(31,145,l),\n(13,3,l)\n);\n}\n);\nwidth = 421;\n}\n);\nunicode = 8250;\n},\n{\nglyphname = quotedbl;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(327,490,l),\n(338,519,o),\n(383,635,o),\n(387,667,c),\n(391,699,o),\n(371,720,o),\n(344,720,cs),\n(315,720,o),\n(289,699,o),\n(285,667,c),\n(281,635,o),\n(299,519,o),\n(302,490,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(178,490,l),\n(189,519,o),\n(234,635,o),\n(238,667,c),\n(242,699,o),\n(222,720,o),\n(195,720,cs),\n(166,720,o),\n(140,699,o),\n(136,667,c),\n(132,635,o),\n(150,519,o),\n(153,490,c)\n);\n}\n);\nwidth = 421;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"24C34471-2878-49D9-AC64-055C689381E7\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(354,459,l),\n(387,579,o),\n(401,624,o),\n(401,651,cs),\n(401,689,o),\n(371,721,o),\n(335,721,cs),\n(298,721,o),\n(266,689,o),\n(266,651,cs),\n(266,625,o),\n(280,579,o),\n(314,459,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(153,459,l),\n(186,579,o),\n(200,624,o),\n(200,651,cs),\n(200,689,o),\n(170,721,o),\n(134,721,cs),\n(97,721,o),\n(65,689,o),\n(65,651,cs),\n(65,625,o),\n(79,579,o),\n(113,459,c)\n);\n}\n);\nwidth = 473;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(346,465,l),\n(359,499,o),\n(410,621,o),\n(414,658,c),\n(419,696,o),\n(395,720,o),\n(364,720,cs),\n(331,720,o),\n(301,696,o),\n(296,658,c),\n(292,621,o),\n(314,499,o),\n(317,465,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(180,465,l),\n(193,499,o),\n(244,621,o),\n(248,658,c),\n(253,696,o),\n(229,720,o),\n(198,720,cs),\n(165,720,o),\n(135,696,o),\n(130,658,c),\n(126,621,o),\n(148,499,o),\n(151,465,c)\n);\n}\n);\nwidth = 444;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(440,401,l),\n(458,449,o),\n(526,579,o),\n(532,632,c),\n(539,687,o),\n(504,721,o),\n(459,721,cs),\n(413,721,o),\n(370,687,o),\n(363,632,c),\n(357,579,o),\n(395,449,o),\n(399,401,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(204,401,l),\n(221,449,o),\n(289,579,o),\n(295,632,c),\n(302,687,o),\n(267,721,o),\n(224,721,cs),\n(176,721,o),\n(133,687,o),\n(126,632,c),\n(120,579,o),\n(158,449,o),\n(163,401,c)\n);\n}\n);\nwidth = 566;\n}\n);\nunicode = 34;\n},\n{\nglyphname = quotesingle;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(178,490,l),\n(189,519,o),\n(234,635,o),\n(238,667,c),\n(242,699,o),\n(222,720,o),\n(195,720,cs),\n(166,720,o),\n(140,699,o),\n(136,667,c),\n(132,635,o),\n(150,519,o),\n(153,490,c)\n);\n}\n);\nwidth = 272;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(158,459,l),\n(191,579,o),\n(205,624,o),\n(205,651,cs),\n(205,689,o),\n(175,721,o),\n(139,721,cs),\n(102,721,o),\n(70,689,o),\n(70,651,cs),\n(70,625,o),\n(84,579,o),\n(118,459,c)\n);\n}\n);\nwidth = 282;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,465,l),\n(193,499,o),\n(244,621,o),\n(248,658,c),\n(253,696,o),\n(229,720,o),\n(198,720,cs),\n(165,720,o),\n(135,696,o),\n(130,658,c),\n(126,621,o),\n(148,499,o),\n(151,465,c)\n);\n}\n);\nwidth = 278;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(204,401,l),\n(221,449,o),\n(289,579,o),\n(295,632,c),\n(302,687,o),\n(267,721,o),\n(224,721,cs),\n(176,721,o),\n(133,687,o),\n(126,632,c),\n(120,579,o),\n(158,449,o),\n(163,401,c)\n);\n}\n);\nwidth = 329;\n}\n);\nunicode = 39;\n},\n{\nglyphname = baht;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(299,0,ls),\n(451,0,o),\n(545,70,o),\n(560,197,cs),\n(571,283,o),\n(530,343,o),\n(439,365,c),\n(500,383,o),\n(551,437,o),\n(562,524,cs),\n(576,637,o),\n(510,701,o),\n(374,701,cs),\n(155,701,l),\n(69,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(295,-91,l),\n(403,791,l),\n(343,791,l),\n(235,-91,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(170,330,l),\n(170,330,o),\n(359,330,o),\n(359,330,cs),\n(448,330,o),\n(508,275,o),\n(498,197,cs),\n(488,108,o),\n(418,56,o),\n(316,56,cs),\n(136,56,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(208,645,l),\n(208,645,o),\n(362,645,o),\n(362,645,cs),\n(473,645,o),\n(508,596,o),\n(500,523,cs),\n(489,437,o),\n(429,386,o),\n(332,386,cs),\n(177,386,l)\n);\n}\n);\nwidth = 627;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(312,0,ls),\n(477,0,o),\n(565,73,o),\n(581,200,cs),\n(592,287,o),\n(551,344,o),\n(459,366,c),\n(520,384,o),\n(569,424,o),\n(581,521,cs),\n(596,637,o),\n(527,701,o),\n(390,701,cs),\n(165,701,l),\n(79,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(323,-91,l),\n(431,791,l),\n(351,791,l),\n(243,-91,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(206,319,l),\n(206,319,o),\n(361,319,o),\n(361,319,cs),\n(453,319,o),\n(497,267,o),\n(489,200,cs),\n(479,120,o),\n(419,80,o),\n(322,80,cs),\n(177,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(244,621,l),\n(244,621,o),\n(376,621,o),\n(376,621,cs),\n(449,621,o),\n(498,587,o),\n(490,520,cs),\n(480,435,o),\n(422,399,o),\n(349,399,cs),\n(216,399,l)\n);\n}\n);\nwidth = 645;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,0,ls),\n(542,0,o),\n(635,77,o),\n(651,204,cs),\n(661,283,o),\n(621,341,o),\n(545,363,c),\n(593,386,o),\n(640,434,o),\n(650,518,cs),\n(663,620,o),\n(597,701,o),\n(449,701,cs),\n(164,701,l),\n(78,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(368,-112,l),\n(482,812,l),\n(342,812,l),\n(228,-112,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(260,293,l),\n(260,293,o),\n(397,293,o),\n(397,293,c),\n(464,293,o),\n(504,264,o),\n(498,211,cs),\n(490,145,o),\n(443,126,o),\n(366,126,cs),\n(239,126,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(294,575,l),\n(294,575,o),\n(415,575,o),\n(415,575,cs),\n(471,575,o),\n(501,549,o),\n(496,504,cs),\n(488,441,o),\n(452,419,o),\n(397,419,cs),\n(275,419,l)\n);\n}\n);\nwidth = 679;\n},\n{\nassociatedMasterId = m003;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"146F865F-F0A7-457A-8702-6F6D77ADE7D3\";\nname = \"7 Nov 24 at 18:15\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,0,ls),\n(573,0,o),\n(657,77,o),\n(657,204,cs),\n(657,283,o),\n(610,341,o),\n(532,363,c),\n(577,386,o),\n(618,434,o),\n(618,518,cs),\n(618,620,o),\n(542,701,o),\n(394,701,cs),\n(109,701,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(413,653,l),\n(413,812,l),\n(273,812,l),\n(273,653,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,293,l),\n(255,293,o),\n(392,293,o),\n(392,293,c),\n(459,293,o),\n(503,264,o),\n(503,211,cs),\n(503,145,o),\n(459,126,o),\n(382,126,cs),\n(255,126,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,575,l),\n(255,575,o),\n(376,575,o),\n(376,575,cs),\n(432,575,o),\n(465,549,o),\n(465,504,cs),\n(465,441,o),\n(432,419,o),\n(377,419,cs),\n(255,419,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(273,25,l),\n(273,-112,l),\n(413,-112,l),\n(413,25,l)\n);\n}\n);\nwidth = 679;\n},\n{\nassociatedMasterId = m002;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"58BBDCE9-3238-4861-830D-775DCFB9C0AA\";\nname = \"7 Nov 24 at 18:15\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(343,0,ls),\n(508,0,o),\n(587,73,o),\n(587,200,cs),\n(587,287,o),\n(539,344,o),\n(445,366,c),\n(504,384,o),\n(548,424,o),\n(548,521,cs),\n(548,637,o),\n(472,701,o),\n(335,701,cs),\n(110,701,l),\n(110,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(365,649,l),\n(365,791,l),\n(285,791,l),\n(285,649,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(198,319,l),\n(198,319,o),\n(353,319,o),\n(353,319,cs),\n(445,319,o),\n(495,267,o),\n(495,200,cs),\n(495,120,o),\n(440,80,o),\n(343,80,cs),\n(198,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(198,621,l),\n(198,621,o),\n(330,621,o),\n(330,621,cs),\n(403,621,o),\n(457,587,o),\n(457,520,cs),\n(457,435,o),\n(404,399,o),\n(331,399,cs),\n(198,399,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(285,49,l),\n(285,-91,l),\n(365,-91,l),\n(365,49,l)\n);\n}\n);\nwidth = 645;\n},\n{\nassociatedMasterId = m01;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"D6CB5547-73D4-4B35-8ABC-68B8B3C69349\";\nname = \"7 Nov 24 at 18:15\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(330,0,ls),\n(482,0,o),\n(567,70,o),\n(567,197,cs),\n(567,283,o),\n(519,343,o),\n(425,365,c),\n(484,383,o),\n(528,437,o),\n(528,524,cs),\n(528,637,o),\n(455,701,o),\n(319,701,cs),\n(100,701,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(337,671,l),\n(337,791,l),\n(277,791,l),\n(277,671,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,330,l),\n(160,330,o),\n(349,330,o),\n(349,330,cs),\n(438,330,o),\n(505,275,o),\n(505,197,cs),\n(505,108,o),\n(442,56,o),\n(340,56,cs),\n(160,56,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,645,l),\n(160,645,o),\n(314,645,o),\n(314,645,cs),\n(425,645,o),\n(466,596,o),\n(466,523,cs),\n(466,437,o),\n(412,386,o),\n(315,386,cs),\n(160,386,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(277,31,l),\n(277,-91,l),\n(337,-91,l),\n(337,31,l)\n);\n}\n);\nwidth = 627;\n}\n);\nunicode = 3647;\n},\n{\nglyphname = at;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,129,o),\n(291,180,o),\n(315,287,cs),\n(332,373,o),\n(397,442,o),\n(470,442,cs),\n(517,442,o),\n(577,396,o),\n(551,285,cs),\n(527,176,o),\n(449,129,o),\n(387,129,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(765,80,o),\n(834,213,o),\n(851,348,cs),\n(873,529,o),\n(771,712,o),\n(513,712,cs),\n(250,712,o),\n(82,512,o),\n(54,279,cs),\n(26,57,o),\n(148,-141,o),\n(412,-141,cs),\n(553,-141,o),\n(654,-94,o),\n(738,-35,c),\n(714,17,l),\n(627,-45,o),\n(531,-85,o),\n(419,-85,cs),\n(218,-85,o),\n(90,67,o),\n(116,281,cs),\n(143,502,o),\n(309,656,o),\n(506,656,cs),\n(698,656,o),\n(811,530,o),\n(789,348,cs),\n(772,210,o),\n(713,134,o),\n(648,134,cs),\n(614,134,o),\n(579,155,o),\n(591,207,c),\n(663,481,l),\n(596,481,l),\n(579,406,l),\n(573,450,o),\n(532,492,o),\n(471,492,cs),\n(376,492,o),\n(285,418,o),\n(255,285,cs),\n(225,155,o),\n(289,79,o),\n(376,79,cs),\n(434,79,o),\n(505,114,o),\n(530,161,c),\n(536,116,o),\n(569,80,o),\n(633,80,cs)\n);\n}\n);\nwidth = 889;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,148,o),\n(334,214,o),\n(350,284,cs),\n(368,354,o),\n(416,416,o),\n(486,416,cs),\n(562,416,o),\n(583,350,o),\n(567,280,cs),\n(550,211,o),\n(499,148,o),\n(421,148,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(815,72,o),\n(884,249,o),\n(896,348,cs),\n(919,539,o),\n(792,712,o),\n(538,712,cs),\n(276,712,o),\n(92,512,o),\n(64,279,cs),\n(36,57,o),\n(152,-151,o),\n(432,-151,cs),\n(569,-151,o),\n(655,-118,o),\n(749,-56,c),\n(716,14,l),\n(634,-45,o),\n(548,-70,o),\n(442,-70,cs),\n(229,-70,o),\n(127,84,o),\n(151,281,cs),\n(175,478,o),\n(332,632,o),\n(528,632,cs),\n(712,632,o),\n(832,512,o),\n(812,348,cs),\n(802,264,o),\n(754,149,o),\n(670,149,cs),\n(646,149,o),\n(622,170,o),\n(628,204,c),\n(696,483,l),\n(622,483,l),\n(603,404,l),\n(594,461,o),\n(543,492,o),\n(493,492,cs),\n(373,492,o),\n(291,388,o),\n(265,293,cs),\n(234,175,o),\n(285,72,o),\n(390,72,cs),\n(445,72,o),\n(518,102,o),\n(547,144,c),\n(555,106,o),\n(586,72,o),\n(650,72,cs)\n);\n}\n);\nwidth = 944;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(413,162,o),\n(394,217,o),\n(410,280,cs),\n(425,335,o),\n(462,372,o),\n(511,372,cs),\n(573,372,o),\n(585,322,o),\n(572,270,cs),\n(555,201,o),\n(519,162,o),\n(468,162,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(794,55,o),\n(934,171,o),\n(955,340,cs),\n(980,550,o),\n(838,712,o),\n(560,712,cs),\n(285,712,o),\n(85,519,o),\n(53,264,cs),\n(24,23,o),\n(168,-183,o),\n(453,-183,cs),\n(595,-183,o),\n(702,-149,o),\n(797,-88,c),\n(752,14,l),\n(657,-39,o),\n(578,-61,o),\n(468,-61,cs),\n(281,-61,o),\n(167,70,o),\n(192,267,cs),\n(212,435,o),\n(364,590,o),\n(545,590,cs),\n(715,590,o),\n(839,519,o),\n(817,340,cs),\n(805,248,o),\n(758,176,o),\n(713,176,cs),\n(680,176,o),\n(681,207,o),\n(690,245,cs),\n(738,469,l),\n(619,469,l),\n(605,403,l),\n(594,445,o),\n(563,478,o),\n(504,478,cs),\n(412,478,o),\n(308,407,o),\n(278,276,cs),\n(249,150,o),\n(314,54,o),\n(418,54,cs),\n(516,54,o),\n(558,126,o),\n(579,167,c),\n(564,106,o),\n(627,55,o),\n(676,55,cs)\n);\n}\n);\nwidth = 996;\n}\n);\nunicode = 64;\n},\n{\nglyphname = ampersand;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(478,-13,o),\n(578,171,o),\n(599,336,c),\n(541,336,l),\n(522,187,o),\n(435,43,o),\n(285,43,cs),\n(179,43,o),\n(127,109,o),\n(135,173,cs),\n(145,255,o),\n(212,299,o),\n(316,364,cs),\n(431,435,o),\n(494,504,o),\n(502,570,cs),\n(512,653,o),\n(461,712,o),\n(365,712,cs),\n(264,712,o),\n(197,638,o),\n(187,556,cs),\n(175,465,o),\n(218,416,o),\n(247,376,c),\n(551,0,l),\n(600,40,l),\n(299,413,l),\n(267,453,o),\n(241,492,o),\n(249,556,cs),\n(254,602,o),\n(287,656,o),\n(357,656,cs),\n(415,656,o),\n(447,622,o),\n(440,570,cs),\n(435,525,o),\n(393,480,o),\n(285,411,cs),\n(143,321,o),\n(85,271,o),\n(73,173,cs),\n(59,62,o),\n(140,-13,o),\n(282,-13,cs)\n);\n}\n);\nwidth = 693;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(492,-12,o),\n(607,180,o),\n(630,347,c),\n(548,347,l),\n(530,214,o),\n(442,70,o),\n(294,70,cs),\n(198,70,o),\n(157,124,o),\n(164,188,cs),\n(174,270,o),\n(234,306,o),\n(327,343,cs),\n(439,387,o),\n(516,485,o),\n(525,556,cs),\n(536,650,o),\n(468,713,o),\n(371,713,cs),\n(255,713,o),\n(188,638,o),\n(176,544,cs),\n(166,460,o),\n(201,420,o),\n(230,380,c),\n(564,0,l),\n(630,56,l),\n(309,424,l),\n(281,463,o),\n(262,491,o),\n(268,540,cs),\n(273,585,o),\n(308,633,o),\n(360,633,cs),\n(400,633,o),\n(438,603,o),\n(433,556,cs),\n(427,510,o),\n(393,449,o),\n(298,412,cs),\n(152,355,o),\n(85,290,o),\n(72,184,cs),\n(58,73,o),\n(138,-12,o),\n(284,-12,cs)\n);\n}\n);\nwidth = 706;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(523,-12,o),\n(651,210,o),\n(671,375,c),\n(539,375,l),\n(522,238,o),\n(430,113,o),\n(315,113,cs),\n(234,113,o),\n(203,150,o),\n(209,194,cs),\n(215,243,o),\n(244,263,o),\n(344,317,cs),\n(474,388,o),\n(559,467,o),\n(568,542,cs),\n(582,656,o),\n(497,713,o),\n(384,713,cs),\n(261,713,o),\n(170,635,o),\n(158,542,cs),\n(148,457,o),\n(172,420,o),\n(201,380,c),\n(574,-12,l),\n(675,80,l),\n(353,426,l),\n(324,466,o),\n(301,488,o),\n(307,535,cs),\n(311,568,o),\n(338,592,o),\n(369,592,cs),\n(400,592,o),\n(422,568,o),\n(418,535,cs),\n(414,506,o),\n(370,462,o),\n(293,418,cs),\n(155,339,o),\n(70,290,o),\n(58,188,cs),\n(43,70,o),\n(121,-12,o),\n(299,-12,cs)\n);\n}\n);\nwidth = 732;\n}\n);\nunicode = 38;\n},\n{\nglyphname = paragraph;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(513,0,l),\n(520,56,l),\n(433,56,l),\n(505,644,l),\n(592,644,l),\n(599,700,l),\n(267,700,ls),\n(197,700,o),\n(108,637,o),\n(95,535,cs),\n(82,429,o),\n(157,371,o),\n(227,371,c),\n(181,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(320,644,l),\n(445,644,l),\n(373,54,l),\n(248,54,l)\n);\n}\n);\nwidth = 612;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(572,0,l),\n(582,80,l),\n(463,80,l),\n(529,620,l),\n(648,620,l),\n(658,700,l),\n(279,700,ls),\n(197,700,o),\n(108,637,o),\n(95,535,cs),\n(82,429,o),\n(157,371,o),\n(239,371,c),\n(193,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(357,620,l),\n(441,620,l),\n(375,78,l),\n(291,78,l)\n);\n}\n);\nwidth = 669;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(716,0,l),\n(731,126,l),\n(612,126,l),\n(667,574,l),\n(786,574,l),\n(802,700,l),\n(274,700,ls),\n(192,700,o),\n(100,628,o),\n(87,526,cs),\n(74,420,o),\n(149,352,o),\n(231,352,c),\n(188,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(404,574,l),\n(521,574,l),\n(466,124,l),\n(349,124,l)\n);\n}\n);\nwidth = 807;\n}\n);\nunicode = 182;\n},\n{\nglyphname = section;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(358,85,o),\n(435,170,o),\n(444,241,cs),\n(469,443,o),\n(146,445,o),\n(160,562,cs),\n(166,605,o),\n(203,657,o),\n(294,657,cs),\n(366,657,o),\n(413,614,o),\n(407,565,c),\n(466,565,l),\n(473,628,o),\n(429,712,o),\n(302,712,cs),\n(180,712,o),\n(109,649,o),\n(98,559,cs),\n(78,395,o),\n(401,400,o),\n(382,241,cs),\n(375,188,o),\n(296,131,o),\n(255,124,c),\n(267,76,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(307,-184,o),\n(374,-121,o),\n(385,-31,cs),\n(405,131,o),\n(91,129,o),\n(111,288,cs),\n(118,344,o),\n(190,400,o),\n(232,407,c),\n(226,452,l),\n(135,443,o),\n(58,360,o),\n(49,288,cs),\n(24,86,o),\n(337,83,o),\n(323,-34,cs),\n(318,-77,o),\n(283,-129,o),\n(192,-129,cs),\n(117,-129,o),\n(71,-86,o),\n(77,-37,c),\n(18,-37,l),\n(10,-100,o),\n(55,-184,o),\n(185,-184,cs)\n);\n}\n);\nwidth = 489;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(383,82,o),\n(461,156,o),\n(472,240,cs),\n(494,417,o),\n(184,439,o),\n(198,552,cs),\n(203,595,o),\n(240,635,o),\n(305,635,cs),\n(377,635,o),\n(411,599,o),\n(407,565,c),\n(493,565,l),\n(500,628,o),\n(461,712,o),\n(316,712,cs),\n(194,712,o),\n(123,623,o),\n(114,549,cs),\n(90,358,o),\n(402,363,o),\n(387,240,cs),\n(380,187,o),\n(322,146,o),\n(280,139,c),\n(292,73,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(332,-205,o),\n(403,-116,o),\n(412,-42,cs),\n(436,150,o),\n(125,150,o),\n(140,271,cs),\n(146,320,o),\n(187,356,o),\n(241,373,c),\n(234,434,l),\n(142,425,o),\n(64,351,o),\n(55,271,cs),\n(33,95,o),\n(342,69,o),\n(328,-45,cs),\n(323,-87,o),\n(286,-128,o),\n(221,-128,cs),\n(149,-128,o),\n(115,-92,o),\n(119,-58,c),\n(33,-58,l),\n(25,-121,o),\n(65,-205,o),\n(210,-205,cs)\n);\n}\n);\nwidth = 525;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(510,90,o),\n(581,146,o),\n(590,221,cs),\n(621,472,o),\n(226,428,o),\n(238,519,cs),\n(243,564,o),\n(292,583,o),\n(353,583,cs),\n(409,583,o),\n(458,554,o),\n(463,479,c),\n(619,479,l),\n(620,594,o),\n(563,713,o),\n(369,713,cs),\n(210,713,o),\n(100,651,o),\n(83,514,cs),\n(59,322,o),\n(461,340,o),\n(445,212,cs),\n(436,143,o),\n(341,124,o),\n(341,124,c),\n(463,72,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(415,-230,o),\n(525,-166,o),\n(542,-29,cs),\n(565,156,o),\n(167,150,o),\n(182,270,cs),\n(191,342,o),\n(284,359,o),\n(284,359,c),\n(162,411,l),\n(115,393,o),\n(46,336,o),\n(37,261,cs),\n(7,18,o),\n(397,43,o),\n(387,-41,cs),\n(381,-90,o),\n(333,-100,o),\n(272,-100,cs),\n(216,-100,o),\n(167,-71,o),\n(162,4,c),\n(6,4,l),\n(5,-111,o),\n(62,-230,o),\n(256,-230,cs)\n);\n}\n);\nwidth = 630;\n}\n);\nunicode = 167;\n},\n{\nglyphname = copyright;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(570,-12,o),\n(719,164,o),\n(743,353,cs),\n(766,544,o),\n(660,720,o),\n(438,720,cs),\n(216,720,o),\n(66,544,o),\n(43,353,cs),\n(19,164,o),\n(126,-12,o),\n(348,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(189,44,o),\n(82,170,o),\n(105,354,cs),\n(127,532,o),\n(264,664,o),\n(431,664,cs),\n(598,664,o),\n(703,532,o),\n(681,354,cs),\n(658,170,o),\n(521,44,o),\n(355,44,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(451,153,o),\n(502,191,o),\n(536,253,c),\n(485,274,l),\n(464,231,o),\n(426,206,o),\n(380,206,cs),\n(302,206,o),\n(266,269,o),\n(277,353,cs),\n(287,435,o),\n(336,498,o),\n(415,498,cs),\n(461,498,o),\n(494,474,o),\n(504,431,c),\n(561,451,l),\n(542,515,o),\n(491,551,o),\n(424,551,cs),\n(328,551,o),\n(235,484,o),\n(218,351,cs),\n(202,219,o),\n(279,153,o),\n(375,153,cs)\n);\n}\n);\nwidth = 760;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(618,-12,o),\n(767,164,o),\n(791,353,cs),\n(814,544,o),\n(708,720,o),\n(482,720,cs),\n(256,720,o),\n(106,544,o),\n(83,353,cs),\n(59,164,o),\n(166,-12,o),\n(392,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(246,69,o),\n(149,184,o),\n(170,353,cs),\n(190,518,o),\n(315,640,o),\n(472,640,cs),\n(629,640,o),\n(725,518,o),\n(705,353,cs),\n(684,184,o),\n(558,69,o),\n(402,69,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(484,151,o),\n(547,188,o),\n(581,252,c),\n(518,279,l),\n(499,242,o),\n(469,227,o),\n(426,227,cs),\n(365,227,o),\n(336,279,o),\n(345,353,cs),\n(353,423,o),\n(391,478,o),\n(457,478,cs),\n(496,478,o),\n(526,463,o),\n(535,425,c),\n(605,448,l),\n(587,512,o),\n(534,554,o),\n(466,554,cs),\n(370,554,o),\n(276,477,o),\n(260,351,cs),\n(245,228,o),\n(321,151,o),\n(417,151,cs)\n);\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(638,-13,o),\n(788,164,o),\n(811,353,cs),\n(835,544,o),\n(728,719,o),\n(487,720,cs),\n(245,721,o),\n(96,545,o),\n(72,354,cs),\n(49,165,o),\n(155,-11,o),\n(397,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,109,o),\n(178,211,o),\n(195,354,cs),\n(212,493,o),\n(325,601,o),\n(472,600,cs),\n(619,599,o),\n(705,492,o),\n(688,353,cs),\n(671,210,o),\n(558,107,o),\n(412,108,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(494,175,o),\n(559,214,o),\n(589,274,c),\n(506,314,l),\n(492,289,o),\n(467,279,o),\n(442,279,cs),\n(399,279,o),\n(381,312,o),\n(386,355,cs),\n(391,394,o),\n(417,428,o),\n(460,428,cs),\n(484,428,o),\n(505,420,o),\n(516,392,c),\n(608,433,l),\n(592,493,o),\n(539,532,o),\n(474,532,cs),\n(372,532,o),\n(290,466,o),\n(276,352,cs),\n(262,241,o),\n(326,175,o),\n(430,175,cs)\n);\n}\n);\nwidth = 859;\n}\n);\nunicode = 169;\n},\n{\nglyphname = registered;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(374,276,o),\n(466,382,o),\n(480,494,cs),\n(494,607,o),\n(428,712,o),\n(293,712,cs),\n(158,712,o),\n(66,607,o),\n(52,494,cs),\n(38,382,o),\n(104,276,o),\n(239,276,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,318,o),\n(83,387,o),\n(96,494,cs),\n(108,596,o),\n(191,670,o),\n(288,670,cs),\n(385,670,o),\n(447,596,o),\n(435,494,cs),\n(422,387,o),\n(341,318,o),\n(244,318,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(304,381,l),\n(348,381,l),\n(301,475,l),\n(261,471,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(211,381,l),\n(221,465,l),\n(269,465,ls),\n(317,465,o),\n(352,493,o),\n(357,537,cs),\n(363,585,o),\n(333,613,o),\n(289,613,cs),\n(201,613,l),\n(172,381,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,573,l),\n(287,573,ls),\n(307,573,o),\n(320,559,o),\n(317,538,cs),\n(315,515,o),\n(298,505,o),\n(278,505,cs),\n(226,505,l)\n);\n}\n);\nwidth = 472;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(374,276,o),\n(466,382,o),\n(480,494,cs),\n(494,607,o),\n(428,712,o),\n(293,712,cs),\n(158,712,o),\n(66,607,o),\n(52,494,cs),\n(38,382,o),\n(104,276,o),\n(239,276,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(152,326,o),\n(93,391,o),\n(106,494,cs),\n(118,592,o),\n(194,662,o),\n(287,662,cs),\n(380,662,o),\n(438,592,o),\n(426,494,cs),\n(413,391,o),\n(338,326,o),\n(245,326,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(301,381,l),\n(353,381,l),\n(306,475,l),\n(258,471,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,381,l),\n(226,464,l),\n(271,464,ls),\n(319,464,o),\n(354,494,o),\n(359,538,cs),\n(365,586,o),\n(333,613,o),\n(289,613,cs),\n(200,613,l),\n(171,381,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(239,568,l),\n(283,568,ls),\n(303,568,o),\n(314,555,o),\n(312,539,cs),\n(310,519,o),\n(296,508,o),\n(276,508,cs),\n(232,508,l)\n);\n}\n);\nwidth = 472;\n},\n{\nguides = (\n{\npos = (-293,319);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(377,262,o),\n(471,371,o),\n(486,490,cs),\n(500,604,o),\n(432,712,o),\n(292,712,cs),\n(152,712,o),\n(59,612,o),\n(44,490,cs),\n(30,379,o),\n(97,262,o),\n(237,262,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(156,325,o),\n(98,389,o),\n(110,490,cs),\n(121,582,o),\n(196,650,o),\n(285,650,cs),\n(374,650,o),\n(431,582,o),\n(420,490,cs),\n(408,389,o),\n(334,325,o),\n(245,325,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(293,374,l),\n(352,374,l),\n(304,466,l),\n(250,462,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(223,374,l),\n(232,452,l),\n(272,452,ls),\n(320,452,o),\n(351,485,o),\n(357,531,cs),\n(363,581,o),\n(332,606,o),\n(289,606,cs),\n(197,606,l),\n(169,374,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(244,555,l),\n(277,555,ls),\n(296,555,o),\n(304,543,o),\n(304,530,cs),\n(303,513,o),\n(291,503,o),\n(271,503,cs),\n(239,503,l)\n);\n}\n);\nwidth = 472;\n}\n);\nunicode = 174;\n},\n{\nglyphname = trademark;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(414,319,l),\n(450,609,l),\n(515,367,l),\n(551,367,l),\n(690,609,l),\n(654,319,l),\n(712,319,l),\n(759,700,l),\n(687,700,l),\n(546,453,l),\n(474,700,l),\n(403,700,l),\n(356,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(192,319,l),\n(233,648,l),\n(339,648,l),\n(345,700,l),\n(75,700,l),\n(69,648,l),\n(173,648,l),\n(132,319,l)\n);\n}\n);\nwidth = 724;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(454,319,l),\n(485,570,l),\n(553,351,l),\n(594,351,l),\n(716,570,l),\n(685,319,l),\n(761,319,l),\n(808,700,l),\n(718,700,l),\n(590,475,l),\n(516,700,l),\n(425,700,l),\n(378,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(220,319,l),\n(259,636,l),\n(366,636,l),\n(374,700,l),\n(85,700,l),\n(77,636,l),\n(181,636,l),\n(142,319,l)\n);\n}\n);\nwidth = 783;\n},\n{\nguides = (\n{\npos = (-112,319);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(516,319,l),\n(541,522,l),\n(600,349,l),\n(645,349,l),\n(746,522,l),\n(721,319,l),\n(827,319,l),\n(874,700,l),\n(765,700,l),\n(640,492,l),\n(566,700,l),\n(457,700,l),\n(410,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(248,319,l),\n(283,604,l),\n(388,604,l),\n(400,700,l),\n(85,700,l),\n(73,604,l),\n(175,604,l),\n(140,319,l)\n);\n}\n);\nwidth = 849;\n}\n);\nunicode = 8482;\n},\n{\nglyphname = degree;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(297,444,o),\n(354,511,o),\n(363,582,cs),\n(372,655,o),\n(331,720,o),\n(246,720,cs),\n(162,720,o),\n(105,655,o),\n(96,582,cs),\n(87,511,o),\n(128,444,o),\n(212,444,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(169,495,o),\n(139,531,o),\n(145,582,cs),\n(151,632,o),\n(191,670,o),\n(240,670,cs),\n(290,670,o),\n(320,632,o),\n(314,582,cs),\n(308,531,o),\n(268,495,o),\n(218,495,cs)\n);\n}\n);\nwidth = 377;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(297,434,o),\n(356,503,o),\n(365,576,cs),\n(374,652,o),\n(332,720,o),\n(244,720,cs),\n(157,720,o),\n(97,652,o),\n(88,576,cs),\n(79,503,o),\n(122,434,o),\n(209,434,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(171,496,o),\n(143,529,o),\n(149,576,cs),\n(155,624,o),\n(191,658,o),\n(236,658,cs),\n(282,658,o),\n(310,624,o),\n(304,576,cs),\n(298,529,o),\n(262,496,o),\n(216,496,cs)\n);\n}\n);\nwidth = 373;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(299,419,o),\n(361,492,o),\n(371,569,cs),\n(380,649,o),\n(336,720,o),\n(243,720,cs),\n(151,720,o),\n(89,649,o),\n(80,569,cs),\n(70,492,o),\n(114,419,o),\n(206,419,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(181,504,o),\n(157,532,o),\n(162,569,cs),\n(166,606,o),\n(197,634,o),\n(233,634,c),\n(270,634,o),\n(293,606,o),\n(289,569,c),\n(284,532,o),\n(254,504,o),\n(217,504,cs)\n);\n}\n);\nwidth = 373;\n}\n);\nunicode = 176;\n},\n{\nglyphname = bar;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (175,-160);\n},\n{\npos = (144,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(105,-160,l),\n(219,775,l),\n(164,775,l),\n(50,-160,l)\n);\n}\n);\nwidth = 255;\n},\n{\nguides = (\n{\npos = (-259,-160);\n},\n{\npos = (-259,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(127,-160,l),\n(242,776,l),\n(162,776,l),\n(47,-160,l)\n);\n}\n);\nwidth = 274;\n},\n{\nguides = (\n{\npos = (-305,-159);\n},\n{\npos = (-57,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(179,-159,l),\n(294,775,l),\n(164,775,l),\n(49,-159,l)\n);\n}\n);\nwidth = 330;\n}\n);\nunicode = 124;\n},\n{\nglyphname = numero;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(129,0,l),\n(210,656,l),\n(179,656,l),\n(475,0,l),\n(550,0,l),\n(636,700,l),\n(576,700,l),\n(496,44,l),\n(527,44,l),\n(231,700,l),\n(155,700,l),\n(69,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(683,249,l),\n(977,248,l),\n(984,307,l),\n(690,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(924,370,o),\n(999,429,o),\n(1013,541,cs),\n(1026,653,o),\n(966,712,o),\n(885,712,cs),\n(804,712,o),\n(728,653,o),\n(715,541,cs),\n(701,429,o),\n(762,370,o),\n(843,370,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(794,427,o),\n(765,470,o),\n(774,540,cs),\n(782,610,o),\n(822,656,o),\n(878,656,cs),\n(934,656,o),\n(962,611,o),\n(954,541,cs),\n(945,471,o),\n(906,427,o),\n(850,427,cs)\n);\n}\n);\nwidth = 1094;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(153,0,l),\n(230,623,l),\n(200,623,l),\n(463,0,l),\n(572,0,l),\n(658,700,l),\n(570,700,l),\n(494,77,l),\n(524,77,l),\n(273,700,l),\n(151,700,l),\n(65,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(698,232,l),\n(1020,231,l),\n(1029,307,l),\n(707,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(964,354,o),\n(1042,416,o),\n(1057,533,cs),\n(1071,650,o),\n(1008,712,o),\n(918,712,cs),\n(828,712,o),\n(749,650,o),\n(735,533,cs),\n(720,416,o),\n(784,354,o),\n(874,354,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(827,428,o),\n(800,468,o),\n(808,532,cs),\n(815,596,o),\n(853,639,o),\n(909,639,cs),\n(965,639,o),\n(992,597,o),\n(984,533,cs),\n(976,469,o),\n(939,428,o),\n(883,428,c)\n);\n}\n);\nwidth = 1124;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(199,0,l),\n(261,504,l),\n(229,504,l),\n(474,0,l),\n(618,0,l),\n(704,700,l),\n(558,700,l),\n(497,204,l),\n(529,204,l),\n(295,700,l),\n(139,700,l),\n(53,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(736,198,l),\n(1089,198,l),\n(1103,308,l),\n(750,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(1022,349,o),\n(1120,405,o),\n(1135,530,cs),\n(1150,657,o),\n(1070,712,o),\n(976,712,cs),\n(888,712,o),\n(787,657,o),\n(772,530,cs),\n(757,405,o),\n(839,349,o),\n(932,349,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(905,456,o),\n(887,485,o),\n(893,530,cs),\n(898,575,o),\n(924,605,o),\n(963,605,cs),\n(1005,605,o),\n(1019,575,o),\n(1014,530,cs),\n(1008,485,o),\n(987,456,o),\n(945,456,c)\n);\n}\n);\nwidth = 1208;\n}\n);\nunicode = 8470;\n},\n{\nglyphname = cent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(370,91,o),\n(428,138,o),\n(478,224,c),\n(428,245,l),\n(401,189,o),\n(348,141,o),\n(271,141,cs),\n(159,141,o),\n(110,224,o),\n(126,353,cs),\n(141,482,o),\n(211,565,o),\n(323,565,cs),\n(399,565,o),\n(444,516,o),\n(459,466,c),\n(513,486,l),\n(484,571,o),\n(418,615,o),\n(329,615,cs),\n(204,615,o),\n(89,525,o),\n(68,353,cs),\n(47,181,o),\n(139,91,o),\n(264,91,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(271,0,l),\n(357,700,l),\n(301,700,l),\n(215,0,l)\n);\n}\n);\nwidth = 538;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(365,95,o),\n(448,143,o),\n(493,226,c),\n(421,256,l),\n(393,205,o),\n(346,171,o),\n(286,171,cs),\n(185,171,o),\n(145,255,o),\n(157,359,cs),\n(170,463,o),\n(231,544,o),\n(332,544,cs),\n(392,544,o),\n(431,510,o),\n(446,459,c),\n(525,489,l),\n(501,572,o),\n(431,620,o),\n(343,620,cs),\n(217,620,o),\n(93,520,o),\n(73,356,cs),\n(53,195,o),\n(153,95,o),\n(279,95,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(297,0,l),\n(383,700,l),\n(303,700,l),\n(217,0,l)\n);\n}\n);\nwidth = 556;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,87,o),\n(474,134,o),\n(525,226,c),\n(414,272,l),\n(398,240,o),\n(358,207,o),\n(312,207,cs),\n(240,207,o),\n(201,262,o),\n(212,354,cs),\n(224,446,o),\n(276,499,o),\n(348,499,cs),\n(394,499,o),\n(426,466,o),\n(434,434,c),\n(556,480,l),\n(528,572,o),\n(456,619,o),\n(368,619,cs),\n(205,619,o),\n(87,519,o),\n(66,353,cs),\n(46,187,o),\n(139,87,o),\n(302,87,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(343,1,l),\n(429,700,l),\n(289,700,l),\n(203,1,l)\n);\n}\n);\nwidth = 582;\n},\n{\nassociatedMasterId = m003;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"280F69CE-47B6-4046-8CCF-B9C082780243\";\nname = \"7 Nov 24 at 18:17\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(411,87,o),\n(489,134,o),\n(528,226,c),\n(412,272,l),\n(400,240,o),\n(364,207,o),\n(318,207,cs),\n(246,207,o),\n(200,262,o),\n(200,354,cs),\n(200,446,o),\n(246,499,o),\n(318,499,cs),\n(364,499,o),\n(400,466,o),\n(412,434,c),\n(528,480,l),\n(489,572,o),\n(411,619,o),\n(323,619,cs),\n(160,619,o),\n(54,519,o),\n(54,353,cs),\n(54,187,o),\n(160,87,o),\n(323,87,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(374,601,l),\n(374,700,l),\n(234,700,l),\n(234,601,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(234,100,l),\n(234,1,l),\n(374,1,l),\n(374,100,l)\n);\n}\n);\nwidth = 582;\n},\n{\nassociatedMasterId = m002;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"3A6FAC1D-FADA-40F9-92A1-43A177BC82EB\";\nname = \"7 Nov 24 at 18:18\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(384,95,o),\n(461,143,o),\n(496,226,c),\n(420,256,l),\n(399,205,o),\n(356,171,o),\n(296,171,cs),\n(195,171,o),\n(144,255,o),\n(144,359,cs),\n(144,463,o),\n(195,544,o),\n(296,544,cs),\n(356,544,o),\n(399,510,o),\n(420,459,c),\n(496,489,l),\n(461,572,o),\n(386,620,o),\n(298,620,cs),\n(172,620,o),\n(60,520,o),\n(60,356,cs),\n(60,195,o),\n(172,95,o),\n(298,95,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(328,572,l),\n(328,700,l),\n(248,700,l),\n(248,572,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(248,152,l),\n(248,0,l),\n(328,0,l),\n(328,152,l)\n);\n}\n);\nwidth = 556;\n},\n{\nassociatedMasterId = m01;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"A3A43FF9-CB49-45E8-8740-D4BD55CCC712\";\nname = \"7 Nov 24 at 18:18\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,91,o),\n(442,138,o),\n(481,224,c),\n(429,245,l),\n(408,189,o),\n(361,141,o),\n(284,141,cs),\n(172,141,o),\n(113,224,o),\n(113,353,cs),\n(113,482,o),\n(172,565,o),\n(284,565,cs),\n(360,565,o),\n(411,516,o),\n(432,466,c),\n(484,486,l),\n(445,571,o),\n(373,615,o),\n(284,615,cs),\n(159,615,o),\n(55,525,o),\n(55,353,cs),\n(55,181,o),\n(159,91,o),\n(284,91,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(302,593,l),\n(302,700,l),\n(246,700,l),\n(246,593,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(246,123,l),\n(246,0,l),\n(302,0,l),\n(302,123,l)\n);\n}\n);\nwidth = 538;\n}\n);\nunicode = 162;\n},\n{\nglyphname = dollar;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(405,-12,o),\n(517,58,o),\n(534,195,cs),\n(564,437,o),\n(136,337,o),\n(158,521,cs),\n(167,591,o),\n(233,656,o),\n(340,656,cs),\n(458,656,o),\n(499,580,o),\n(499,513,c),\n(565,513,l),\n(571,603,o),\n(499,712,o),\n(354,712,cs),\n(197,712,o),\n(110,618,o),\n(98,516,cs),\n(66,259,o),\n(497,379,o),\n(473,186,cs),\n(464,114,o),\n(396,44,o),\n(275,44,cs),\n(149,44,o),\n(109,121,o),\n(105,214,c),\n(38,214,l),\n(36,99,o),\n(101,-12,o),\n(268,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(282,-91,l),\n(390,791,l),\n(330,791,l),\n(222,-91,l)\n);\n}\n);\nwidth = 594;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,-12,o),\n(535,58,o),\n(552,195,cs),\n(584,457,o),\n(177,344,o),\n(198,521,cs),\n(207,591,o),\n(280,632,o),\n(350,632,cs),\n(445,632,o),\n(486,572,o),\n(488,513,c),\n(581,513,l),\n(587,603,o),\n(520,712,o),\n(367,712,cs),\n(207,712,o),\n(118,618,o),\n(106,516,cs),\n(73,246,o),\n(482,371,o),\n(459,186,cs),\n(450,114,o),\n(374,68,o),\n(291,68,cs),\n(196,68,o),\n(148,129,o),\n(145,214,c),\n(48,214,l),\n(46,99,o),\n(111,-12,o),\n(281,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(306,-91,l),\n(414,791,l),\n(334,791,l),\n(226,-91,l)\n);\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,-12,o),\n(551,58,o),\n(568,195,c),\n(600,460,o),\n(228,385,o),\n(243,508,cs),\n(250,567,o),\n(310,582,o),\n(354,582,cs),\n(410,582,o),\n(444,554,o),\n(447,505,c),\n(600,505,l),\n(606,595,o),\n(548,712,o),\n(370,712,cs),\n(193,712,o),\n(104,618,o),\n(91,516,c),\n(56,226,o),\n(431,338,o),\n(413,186,c),\n(407,142,o),\n(357,118,o),\n(296,118,c),\n(240,118,o),\n(192,147,o),\n(187,222,c),\n(31,222,l),\n(30,107,o),\n(86,-12,o),\n(280,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(343,-112,l),\n(457,812,l),\n(317,812,l),\n(203,-112,l)\n);\n}\n);\nwidth = 639;\n},\n{\nassociatedMasterId = m003;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"A228A55F-5D4A-4BFE-9EA2-05026646E7A9\";\nname = \"7 Nov 24 at 18:19\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(472,-12,o),\n(575,58,o),\n(575,195,c),\n(575,460,o),\n(212,385,o),\n(212,508,cs),\n(212,567,o),\n(270,582,o),\n(314,582,cs),\n(370,582,o),\n(407,554,o),\n(416,505,c),\n(569,505,l),\n(564,595,o),\n(492,712,o),\n(314,712,cs),\n(137,712,o),\n(59,618,o),\n(59,516,c),\n(59,226,o),\n(421,338,o),\n(421,186,c),\n(421,142,o),\n(374,118,o),\n(313,118,c),\n(257,118,o),\n(205,147,o),\n(191,222,c),\n(35,222,l),\n(48,107,o),\n(119,-12,o),\n(313,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(388,653,l),\n(388,812,l),\n(248,812,l),\n(248,653,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(248,25,l),\n(248,-112,l),\n(388,-112,l),\n(388,25,l)\n);\n}\n);\nwidth = 639;\n},\n{\nassociatedMasterId = m002;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"977ED246-DC2B-4AB2-93BE-62ADE115E105\";\nname = \"7 Nov 24 at 18:19\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(453,-12,o),\n(559,58,o),\n(559,195,cs),\n(559,457,o),\n(165,344,o),\n(165,521,cs),\n(165,591,o),\n(233,632,o),\n(303,632,cs),\n(398,632,o),\n(446,572,o),\n(456,513,c),\n(549,513,l),\n(544,603,o),\n(463,712,o),\n(310,712,cs),\n(150,712,o),\n(73,618,o),\n(73,516,cs),\n(73,246,o),\n(467,371,o),\n(467,186,cs),\n(467,114,o),\n(396,68,o),\n(313,68,cs),\n(218,68,o),\n(163,129,o),\n(149,214,c),\n(52,214,l),\n(65,99,o),\n(143,-12,o),\n(313,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(348,660,l),\n(348,791,l),\n(268,791,l),\n(268,660,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(268,30,l),\n(268,-91,l),\n(348,-91,l),\n(348,30,l)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = m01;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"1E7D3510-5BD8-4C64-BDAD-4DBB14FDB730\";\nname = \"7 Nov 24 at 18:20\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(437,-12,o),\n(541,58,o),\n(541,195,cs),\n(541,437,o),\n(125,337,o),\n(125,521,cs),\n(125,591,o),\n(183,656,o),\n(290,656,cs),\n(408,656,o),\n(458,580,o),\n(467,513,c),\n(533,513,l),\n(528,603,o),\n(442,712,o),\n(297,712,cs),\n(140,712,o),\n(65,618,o),\n(65,516,cs),\n(65,259,o),\n(481,379,o),\n(481,186,cs),\n(481,114,o),\n(421,44,o),\n(300,44,cs),\n(174,44,o),\n(125,121,o),\n(109,214,c),\n(42,214,l),\n(55,99,o),\n(133,-12,o),\n(300,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(324,679,l),\n(324,791,l),\n(264,791,l),\n(264,679,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(264,19,l),\n(264,-91,l),\n(324,-91,l),\n(324,19,l)\n);\n}\n);\nwidth = 594;\n}\n);\nunicode = 36;\n},\n{\nglyphname = euro;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(424,396,l),\n(431,452,l),\n(59,452,l),\n(52,396,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(475,-13,o),\n(575,76,o),\n(618,199,c),\n(559,211,l),\n(523,117,o),\n(449,43,o),\n(360,43,cs),\n(233,43,o),\n(163,167,o),\n(186,357,cs),\n(209,542,o),\n(320,657,o),\n(431,657,cs),\n(514,657,o),\n(583,581,o),\n(589,488,c),\n(655,501,l),\n(642,624,o),\n(568,713,o),\n(438,713,cs),\n(255,713,o),\n(147,541,o),\n(124,355,cs),\n(100,163,o),\n(165,-13,o),\n(353,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(407,260,l),\n(414,316,l),\n(42,316,l),\n(35,260,l)\n);\n}\n);\nwidth = 668;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(433,385,l),\n(442,465,l),\n(46,465,l),\n(37,385,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(471,-13,o),\n(586,75,o),\n(629,198,c),\n(542,216,l),\n(508,130,o),\n(434,67,o),\n(364,67,cs),\n(247,67,o),\n(189,194,o),\n(209,357,cs),\n(228,512,o),\n(316,633,o),\n(433,633,cs),\n(503,633,o),\n(562,570,o),\n(575,484,c),\n(666,502,l),\n(653,625,o),\n(560,713,o),\n(443,713,cs),\n(251,713,o),\n(143,548,o),\n(119,355,cs),\n(96,171,o),\n(161,-13,o),\n(354,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(415,241,l),\n(425,321,l),\n(29,321,l),\n(19,241,l)\n);\n}\n);\nwidth = 660;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(444,376,l),\n(457,486,l),\n(54,486,l),\n(41,376,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(492,-12,o),\n(601,76,o),\n(644,199,c),\n(507,227,l),\n(485,161,o),\n(429,119,o),\n(379,119,cs),\n(280,119,o),\n(243,198,o),\n(263,357,cs),\n(280,499,o),\n(331,583,o),\n(430,583,cs),\n(486,583,o),\n(529,532,o),\n(537,474,c),\n(681,502,l),\n(669,625,o),\n(552,713,o),\n(446,713,cs),\n(244,713,o),\n(132,549,o),\n(108,355,cs),\n(86,171,o),\n(139,-12,o),\n(363,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(424,211,l),\n(437,321,l),\n(34,321,l),\n(21,211,l)\n);\n}\n);\nwidth = 677;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"7BD3C881-F3A6-4A11-830F-50E4BCAEA752\";\nname = \"5 Aug 24 at 14:37\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,-13,o),\n(575,171,o),\n(575,354,cs),\n(575,547,o),\n(504,712,o),\n(296,712,cs),\n(86,712,o),\n(15,547,o),\n(15,354,cs),\n(15,171,o),\n(84,-13,o),\n(296,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(156,67,o),\n(107,197,o),\n(107,355,cs),\n(107,516,o),\n(156,632,o),\n(297,632,cs),\n(432,632,o),\n(483,516,o),\n(483,355,cs),\n(483,197,o),\n(432,67,o),\n(296,67,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"EA768BBE-DB56-4D11-87BD-F07499E3EA9D\";\nname = \"5 Aug 24 at 14:41\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,-13,o),\n(-37,161,o),\n(-37,354,cs),\n(-37,557,o),\n(52,712,o),\n(267,712,cs),\n(479,712,o),\n(568,557,o),\n(568,354,cs),\n(568,161,o),\n(481,-13,o),\n(267,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,582,o),\n(103,500,o),\n(103,355,cs),\n(103,213,o),\n(147,117,o),\n(267,117,cs),\n(383,117,o),\n(428,213,o),\n(428,355,cs),\n(428,500,o),\n(383,582,o),\n(268,582,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"8C681B85-91CA-4D47-BC45-2B848EF584BC\";\nname = \"5 Aug 24 at 14:47\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(512,-13,o),\n(575,171,o),\n(575,354,cs),\n(575,547,o),\n(510,712,o),\n(296,712,cs),\n(81,712,o),\n(15,547,o),\n(15,354,cs),\n(15,171,o),\n(79,-13,o),\n(296,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(136,42,o),\n(77,177,o),\n(77,355,cs),\n(77,536,o),\n(136,657,o),\n(297,657,cs),\n(452,657,o),\n(513,536,o),\n(513,355,cs),\n(513,177,o),\n(452,42,o),\n(296,42,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8364;\n},\n{\nglyphname = rupeeIndian;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(449,0,l),\n(180,298,l),\n(247,298,ls),\n(388,297,o),\n(487,388,o),\n(501,500,cs),\n(518,643,o),\n(413,682,o),\n(294,682,cs),\n(143,682,l),\n(138,644,l),\n(285,644,ls),\n(389,644,o),\n(451,602,o),\n(439,500,cs),\n(428,413,o),\n(352,353,o),\n(254,353,cs),\n(103,353,l),\n(96,301,l),\n(368,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(564,468,l),\n(571,524,l),\n(124,524,l),\n(117,468,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(585,644,l),\n(592,700,l),\n(145,700,l),\n(138,644,l)\n);\n}\n);\nwidth = 591;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(463,0,l),\n(193,267,l),\n(261,267,ls),\n(396,266,o),\n(490,362,o),\n(505,485,cs),\n(517,585,o),\n(447,685,o),\n(271,685,cs),\n(135,685,l),\n(127,620,l),\n(287,620,ls),\n(376,620,o),\n(424,558,o),\n(415,485,cs),\n(403,389,o),\n(343,346,o),\n(253,346,cs),\n(88,346,l),\n(78,270,l),\n(349,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(569,443,l),\n(579,523,l),\n(111,523,l),\n(101,443,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(590,620,l),\n(600,700,l),\n(133,700,l),\n(123,620,l)\n);\n}\n);\nwidth = 578;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(500,0,l),\n(251,225,l),\n(257,225,l),\n(396,237,o),\n(490,322,o),\n(508,464,cs),\n(525,606,o),\n(408,679,o),\n(265,679,cs),\n(132,679,l),\n(120,578,l),\n(270,578,ls),\n(333,578,o),\n(368,531,o),\n(360,464,cs),\n(351,390,o),\n(306,350,o),\n(242,350,cs),\n(92,350,l),\n(76,225,l),\n(319,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(587,409,l),\n(601,519,l),\n(113,519,l),\n(99,409,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(609,591,l),\n(623,701,l),\n(135,701,l),\n(121,591,l)\n);\n}\n);\nwidth = 588;\n}\n);\nunicode = 8377;\n},\n{\nglyphname = sterling;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(457,0,l),\n(464,56,l),\n(105,56,l),\n(131,73,o),\n(217,161,o),\n(232,285,cs),\n(247,406,o),\n(152,440,o),\n(163,528,cs),\n(173,608,o),\n(237,656,o),\n(315,656,cs),\n(399,656,o),\n(459,600,o),\n(449,519,c),\n(509,519,l),\n(513,555,o),\n(509,589,o),\n(497,615,cs),\n(468,677,o),\n(401,712,o),\n(321,712,cs),\n(206,712,o),\n(118,647,o),\n(103,528,cs),\n(89,413,o),\n(182,377,o),\n(170,285,cs),\n(155,163,o),\n(82,95,o),\n(24,56,c),\n(17,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(373,276,l),\n(380,332,l),\n(46,332,l),\n(39,276,l)\n);\n}\n);\nwidth = 513;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(461,0,l),\n(471,80,l),\n(135,80,l),\n(161,97,o),\n(236,175,o),\n(248,274,cs),\n(263,395,o),\n(169,440,o),\n(180,528,cs),\n(187,584,o),\n(242,632,o),\n(320,632,c),\n(398,632,o),\n(436,576,o),\n(429,519,c),\n(517,519,l),\n(521,555,o),\n(517,589,o),\n(505,615,c),\n(476,677,o),\n(409,712,o),\n(329,712,c),\n(214,712,o),\n(109,647,o),\n(94,528,cs),\n(80,413,o),\n(173,377,o),\n(161,285,cs),\n(149,188,o),\n(82,119,o),\n(24,80,c),\n(14,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(394,266,l),\n(404,346,l),\n(49,346,l),\n(39,266,l)\n);\n}\n);\nwidth = 516;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(484,0,l),\n(499,126,l),\n(200,126,l),\n(226,143,o),\n(285,197,o),\n(297,296,cs),\n(312,417,o),\n(228,437,o),\n(238,513,cs),\n(239,519,o),\n(250,582,o),\n(328,582,cs),\n(390,582,o),\n(408,545,o),\n(401,494,c),\n(531,494,l),\n(536,530,o),\n(534,589,o),\n(522,615,cs),\n(494,677,o),\n(417,712,o),\n(343,712,cs),\n(205,712,o),\n(100,649,o),\n(86,528,cs),\n(72,413,o),\n(156,399,o),\n(145,307,cs),\n(133,210,o),\n(79,165,o),\n(21,126,c),\n(6,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(424,254,l),\n(438,364,l),\n(48,364,l),\n(34,254,l)\n);\n}\n);\nwidth = 533;\n}\n);\nunicode = 163;\n},\n{\nglyphname = yen;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(276,0,l),\n(309,294,l),\n(593,700,l),\n(526,700,l),\n(288,350,l),\n(135,700,l),\n(61,700,l),\n(252,294,l),\n(213,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(446,130,l),\n(453,186,l),\n(76,186,l),\n(69,130,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(463,266,l),\n(470,322,l),\n(93,322,l),\n(86,266,l)\n);\n}\n);\nwidth = 544;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(296,0,l),\n(331,309,l),\n(608,700,l),\n(515,700,l),\n(298,390,l),\n(160,700,l),\n(60,700,l),\n(249,309,l),\n(208,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(468,134,l),\n(478,214,l),\n(73,214,l),\n(63,134,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(485,278,l),\n(495,358,l),\n(90,358,l),\n(80,278,l)\n);\n}\n);\nwidth = 558;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(356,0,l),\n(388,289,l),\n(680,700,l),\n(522,700,l),\n(332,411,l),\n(216,700,l),\n(55,700,l),\n(247,289,l),\n(209,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(535,109,l),\n(549,219,l),\n(69,219,l),\n(55,109,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(555,274,l),\n(569,384,l),\n(89,384,l),\n(75,274,l)\n);\n}\n);\nwidth = 625;\n}\n);\nunicode = 165;\n},\n{\nglyphname = dotmath;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,239,o),\n(220,268,o),\n(225,304,cs),\n(229,340,o),\n(204,369,o),\n(168,369,cs),\n(132,369,o),\n(99,340,o),\n(95,304,cs),\n(90,268,o),\n(116,239,o),\n(152,239,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,255,o),\n(184,277,o),\n(188,304,cs),\n(191,333,o),\n(172,355,o),\n(144,355,cs),\n(116,355,o),\n(90,333,o),\n(87,304,cs),\n(83,277,o),\n(104,255,o),\n(132,255,cs)\n);\n}\n);\nwidth = 261;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,217,o),\n(256,257,o),\n(263,307,cs),\n(268,355,o),\n(232,394,o),\n(184,394,cs),\n(135,394,o),\n(89,355,o),\n(84,307,cs),\n(77,257,o),\n(113,217,o),\n(162,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 8901;\n},\n{\nglyphname = plus;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (266,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(300,47,l),\n(361,547,l),\n(305,547,l),\n(244,47,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(536,272,l),\n(542,322,l),\n(69,322,l),\n(63,272,l)\n);\n}\n);\nwidth = 593;\n},\n{\nguides = (\n{\npos = (308,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(326,45,l),\n(387,545,l),\n(299,545,l),\n(238,45,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(551,255,l),\n(560,335,l),\n(74,335,l),\n(65,255,l)\n);\n}\n);\nwidth = 614;\n},\n{\nguides = (\n{\npos = (273,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(356,41,l),\n(418,549,l),\n(283,549,l),\n(221,41,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(558,232,l),\n(574,358,l),\n(81,358,l),\n(65,232,l)\n);\n}\n);\nwidth = 629;\n}\n);\nunicode = 43;\n},\n{\nglyphname = minus;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (249,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(505,270,l),\n(512,320,l),\n(69,320,l),\n(62,270,l)\n);\n}\n);\nwidth = 563;\n},\n{\nguides = (\n{\npos = (249,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(510,255,l),\n(519,335,l),\n(74,335,l),\n(65,255,l)\n);\n}\n);\nwidth = 573;\n},\n{\nguides = (\n{\npos = (259,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(544,231,l),\n(560,357,l),\n(81,357,l),\n(65,231,l)\n);\n}\n);\nwidth = 615;\n}\n);\nunicode = 8722;\n},\n{\nglyphname = multiply;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (249,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(415,93,l),\n(455,130,l),\n(127,497,l),\n(86,461,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(463,497,l),\n(45,130,l),\n(77,93,l),\n(496,461,l)\n);\n}\n);\nwidth = 530;\n},\n{\nguides = (\n{\npos = (251,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(419,85,l),\n(477,139,l),\n(149,506,l),\n(90,453,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(469,506,l),\n(51,139,l),\n(97,85,l),\n(516,453,l)\n);\n}\n);\nwidth = 556;\n},\n{\nguides = (\n{\npos = (259,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(417,71,l),\n(501,146,l),\n(175,517,l),\n(91,442,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(471,517,l),\n(55,146,l),\n(121,71,l),\n(537,442,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 215;\n},\n{\nglyphname = divide;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (238,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(263,41,o),\n(288,63,o),\n(291,90,cs),\n(296,124,o),\n(277,141,o),\n(248,141,cs),\n(220,141,o),\n(194,119,o),\n(190,90,cs),\n(187,63,o),\n(207,41,o),\n(235,41,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(314,453,o),\n(339,475,o),\n(342,502,cs),\n(346,531,o),\n(326,553,o),\n(298,553,cs),\n(270,553,o),\n(245,531,o),\n(241,502,cs),\n(238,475,o),\n(258,453,o),\n(286,453,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(463,272,l),\n(469,322,l),\n(69,322,l),\n(63,272,l)\n);\n}\n);\nwidth = 520;\n},\n{\nguides = (\n{\npos = (262,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(294,26,o),\n(326,55,o),\n(330,89,cs),\n(335,124,o),\n(310,153,o),\n(276,153,cs),\n(241,153,o),\n(209,124,o),\n(204,89,cs),\n(200,55,o),\n(225,26,o),\n(260,26,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(345,436,o),\n(376,465,o),\n(381,499,cs),\n(385,534,o),\n(360,563,o),\n(326,563,cs),\n(291,563,o),\n(259,534,o),\n(255,499,cs),\n(250,465,o),\n(276,436,o),\n(311,436,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(510,256,l),\n(520,336,l),\n(75,336,l),\n(65,256,l)\n);\n}\n);\nwidth = 573;\n},\n{\nguides = (\n{\npos = (277,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,3,o),\n(373,42,o),\n(379,90,cs),\n(385,137,o),\n(350,175,o),\n(303,175,cs),\n(255,175,o),\n(212,137,o),\n(206,90,cs),\n(200,42,o),\n(234,3,o),\n(282,3,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(380,414,o),\n(423,453,o),\n(429,501,cs),\n(435,548,o),\n(401,586,o),\n(354,586,cs),\n(306,586,o),\n(262,548,o),\n(256,501,cs),\n(250,453,o),\n(285,414,o),\n(333,414,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(554,235,l),\n(569,361,l),\n(81,361,l),\n(66,235,l)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 247;\n},\n{\nglyphname = equal;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (246,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(536,349,l),\n(542,399,l),\n(78,399,l),\n(72,349,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(517,193,l),\n(523,243,l),\n(59,243,l),\n(53,193,l)\n);\n}\n);\nwidth = 584;\n},\n{\nguides = (\n{\npos = (271,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(561,336,l),\n(570,416,l),\n(85,416,l),\n(76,336,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(540,173,l),\n(549,253,l),\n(64,253,l),\n(55,173,l)\n);\n}\n);\nwidth = 614;\n},\n{\nguides = (\n{\npos = (245,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(569,347,l),\n(585,473,l),\n(95,473,l),\n(79,347,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(541,117,l),\n(557,243,l),\n(67,243,l),\n(51,117,l)\n);\n}\n);\nwidth = 626;\n}\n);\nunicode = 61;\n},\n{\nglyphname = greater;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (237,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(478,271,l),\n(483,316,l),\n(75,538,l),\n(67,468,l),\n(440,271,l),\n(445,315,l),\n(25,124,l),\n(16,55,l)\n);\n}\n);\nwidth = 535;\n},\n{\nguides = (\n{\npos = (245,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(490,267,l),\n(497,325,l),\n(80,544,l),\n(69,454,l),\n(433,262,l),\n(442,330,l),\n(30,138,l),\n(19,48,l)\n);\n}\n);\nwidth = 552;\n},\n{\nguides = (\n{\npos = (249,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(514,247,l),\n(526,344,l),\n(86,563,l),\n(70,432,l),\n(456,252,l),\n(467,342,l),\n(37,162,l),\n(20,28,l)\n);\n}\n);\nwidth = 583;\n}\n);\nunicode = 62;\n},\n{\nglyphname = less;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (263,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(479,123,l),\n(106,314,l),\n(100,270,l),\n(522,467,l),\n(530,537,l),\n(68,315,l),\n(62,270,l),\n(471,54,l)\n);\n}\n);\nwidth = 535;\n},\n{\nguides = (\n{\npos = (260,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(494,136,l),\n(130,328,l),\n(121,260,l),\n(533,452,l),\n(544,542,l),\n(73,323,l),\n(66,265,l),\n(483,46,l)\n);\n}\n);\nwidth = 552;\n},\n{\nguides = (\n{\npos = (274,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(524,162,l),\n(138,342,l),\n(127,252,l),\n(557,432,l),\n(573,563,l),\n(79,344,l),\n(67,247,l),\n(507,28,l)\n);\n}\n);\nwidth = 583;\n}\n);\nunicode = 60;\n},\n{\nglyphname = plusminus;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(300,171,l),\n(351,586,l),\n(295,586,l),\n(244,171,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(516,354,l),\n(522,404,l),\n(79,404,l),\n(73,354,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(472,0,l),\n(478,50,l),\n(35,50,l),\n(29,0,l)\n);\n}\n);\nwidth = 563;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(323,183,l),\n(373,594,l),\n(285,594,l),\n(235,183,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(521,349,l),\n(531,429,l),\n(86,429,l),\n(76,349,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(478,0,l),\n(488,80,l),\n(43,80,l),\n(33,0,l)\n);\n}\n);\nwidth = 573;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(368,194,l),\n(421,625,l),\n(286,625,l),\n(233,194,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(558,347,l),\n(574,473,l),\n(95,473,l),\n(79,347,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(516,0,l),\n(531,126,l),\n(52,126,l),\n(37,0,l)\n);\n}\n);\nwidth = 615;\n}\n);\nunicode = 177;\n},\n{\nglyphname = asciitilde;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (202,296);\n},\n{\npos = (202,239);\n},\n{\npos = (202,354);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(398,239,o),\n(438,281,o),\n(459,313,c),\n(425,345,l),\n(411,329,o),\n(388,291,o),\n(342,291,cs),\n(296,291,o),\n(255,354,o),\n(193,354,cs),\n(135,354,o),\n(83,308,o),\n(63,278,c),\n(95,247,l),\n(111,264,o),\n(137,302,o),\n(181,302,cs),\n(229,302,o),\n(263,239,o),\n(339,239,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nguides = (\n{\npos = (251,366);\n},\n{\npos = (162,223);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(407,223,o),\n(467,274,o),\n(488,306,c),\n(437,357,l),\n(421,341,o),\n(397,303,o),\n(351,303,cs),\n(307,303,o),\n(276,366,o),\n(199,366,cs),\n(136,366,o),\n(77,310,o),\n(58,280,c),\n(106,231,l),\n(122,248,o),\n(150,286,o),\n(194,286,cs),\n(236,286,o),\n(270,223,o),\n(348,223,cs)\n);\n}\n);\nwidth = 506;\n},\n{\nguides = (\n{\npos = (239,391);\n},\n{\npos = (239,198);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(511,195,o),\n(583,271,o),\n(605,303,c),\n(530,385,l),\n(517,369,o),\n(492,325,o),\n(432,325,cs),\n(387,325,o),\n(331,394,o),\n(260,394,cs),\n(154,394,o),\n(93,315,o),\n(72,283,c),\n(144,206,l),\n(157,221,o),\n(183,264,o),\n(243,264,cs),\n(287,264,o),\n(341,195,o),\n(423,195,cs)\n);\n}\n);\nwidth = 667;\n}\n);\nunicode = 126;\n},\n{\nglyphname = asciicircum;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(320,700,l),\n(282,700,l),\n(71,407,l),\n(151,408,l),\n(312,646,l),\n(277,645,l),\n(380,406,l),\n(458,406,l)\n);\n}\n);\nwidth = 547;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(372,700,l),\n(310,700,l),\n(99,407,l),\n(189,407,l),\n(347,645,l),\n(323,645,l),\n(426,406,l),\n(510,406,l)\n);\n}\n);\nwidth = 571;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(374,700,l),\n(291,700,l),\n(69,407,l),\n(206,407,l),\n(347,624,l),\n(297,624,l),\n(388,406,l),\n(524,406,l)\n);\n}\n);\nwidth = 555;\n}\n);\nunicode = 94;\n},\n{\nglyphname = percent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(217,0,l),\n(681,700,l),\n(616,700,l),\n(152,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(300,383,o),\n(381,439,o),\n(395,548,cs),\n(408,655,o),\n(345,712,o),\n(261,712,cs),\n(180,712,o),\n(100,655,o),\n(86,547,cs),\n(73,439,o),\n(136,383,o),\n(220,383,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(163,433,o),\n(136,487,o),\n(143,547,cs),\n(150,604,o),\n(192,662,o),\n(255,662,cs),\n(318,662,o),\n(345,606,o),\n(338,548,cs),\n(330,489,o),\n(286,433,o),\n(226,433,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(674,-12,o),\n(755,44,o),\n(768,153,cs),\n(781,260,o),\n(718,317,o),\n(634,317,cs),\n(553,317,o),\n(473,260,o),\n(460,152,cs),\n(447,44,o),\n(510,-12,o),\n(594,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(537,38,o),\n(510,92,o),\n(517,152,cs),\n(524,209,o),\n(565,267,o),\n(628,267,cs),\n(691,267,o),\n(718,211,o),\n(711,153,cs),\n(704,94,o),\n(660,38,o),\n(600,38,cs)\n);\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(244,0,l),\n(716,700,l),\n(625,700,l),\n(153,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(318,383,o),\n(400,442,o),\n(413,548,cs),\n(425,651,o),\n(363,712,o),\n(279,712,cs),\n(198,712,o),\n(117,650,o),\n(104,547,cs),\n(91,441,o),\n(154,383,o),\n(238,383,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(197,454,o),\n(175,498,o),\n(181,547,cs),\n(187,594,o),\n(220,641,o),\n(270,641,cs),\n(320,641,o),\n(341,595,o),\n(336,548,cs),\n(330,500,o),\n(294,454,o),\n(247,454,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(672,-13,o),\n(753,46,o),\n(766,152,cs),\n(779,255,o),\n(716,316,o),\n(632,316,cs),\n(551,316,o),\n(470,254,o),\n(458,151,cs),\n(445,45,o),\n(508,-13,o),\n(592,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(550,58,o),\n(529,102,o),\n(535,151,cs),\n(541,198,o),\n(573,245,o),\n(623,245,cs),\n(673,245,o),\n(695,199,o),\n(689,152,cs),\n(683,104,o),\n(647,58,o),\n(600,58,cs)\n);\n}\n);\nwidth = 846;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(321,0,l),\n(791,700,l),\n(654,700,l),\n(184,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(332,353,o),\n(422,417,o),\n(436,533,cs),\n(450,645,o),\n(381,712,o),\n(289,712,cs),\n(201,712,o),\n(112,644,o),\n(98,533,cs),\n(84,416,o),\n(153,353,o),\n(245,353,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(215,455,o),\n(196,492,o),\n(201,533,cs),\n(206,573,o),\n(234,610,o),\n(277,610,cs),\n(320,610,o),\n(338,574,o),\n(333,533,cs),\n(328,494,o),\n(299,455,o),\n(258,455,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(771,-12,o),\n(861,52,o),\n(875,168,cs),\n(889,280,o),\n(820,347,o),\n(728,347,cs),\n(640,347,o),\n(551,279,o),\n(537,168,cs),\n(523,51,o),\n(592,-12,o),\n(684,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(654,89,o),\n(635,127,o),\n(640,168,cs),\n(645,208,o),\n(673,246,o),\n(716,246,cs),\n(759,246,o),\n(777,209,o),\n(772,168,cs),\n(768,129,o),\n(738,89,o),\n(697,89,cs)\n);\n}\n);\nwidth = 950;\n}\n);\nunicode = 37;\n},\n{\nglyphname = upArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(662,337,l),\n(709,379,l),\n(427,700,l),\n(380,658,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(427,700,l),\n(66,378,l),\n(104,336,l),\n(464,658,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(371,0,l),\n(451,653,l),\n(391,653,l),\n(311,0,l)\n);\n}\n);\nwidth = 743;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(642,321,l),\n(708,380,l),\n(426,700,l),\n(361,641,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(426,700,l),\n(66,378,l),\n(117,320,l),\n(477,642,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(380,0,l),\n(453,592,l),\n(370,591,l),\n(297,0,l)\n);\n}\n);\nwidth = 742;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(609,288,l),\n(709,377,l),\n(428,698,l),\n(328,609,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(426,700,l),\n(65,379,l),\n(143,290,l),\n(504,611,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(408,0,l),\n(483,611,l),\n(343,610,l),\n(268,0,l)\n);\n}\n);\nwidth = 744;\n}\n);\nunicode = 8593;\n},\n{\nglyphname = northEastArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(468,47,l),\n(528,47,l),\n(584,500,l),\n(524,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(129,500,l),\n(121,440,l),\n(576,441,l),\n(584,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(61,0,l),\n(565,446,l),\n(527,488,l),\n(24,42,l)\n);\n}\n);\nwidth = 603;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(452,47,l),\n(535,47,l),\n(590,500,l),\n(508,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(136,500,l),\n(126,418,l),\n(580,418,l),\n(590,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(78,0,l),\n(529,396,l),\n(477,454,l),\n(27,59,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,54,l),\n(528,54,l),\n(584,508,l),\n(458,508,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(127,508,l),\n(112,382,l),\n(566,382,l),\n(581,508,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(102,0,l),\n(557,394,l),\n(471,493,l),\n(15,99,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8599;\n},\n{\nglyphname = rightArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(763,359,l),\n(481,681,l),\n(434,638,l),\n(716,317,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(713,329,l),\n(720,389,l),\n(67,389,l),\n(60,329,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(763,359,l),\n(727,401,l),\n(366,80,l),\n(403,38,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(763,357,l),\n(481,678,l),\n(415,620,l),\n(698,299,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(650,317,l),\n(659,400,l),\n(68,400,l),\n(58,317,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(763,357,l),\n(711,415,l),\n(352,95,l),\n(404,36,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(763,361,l),\n(482,682,l),\n(382,593,l),\n(663,272,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(666,293,l),\n(682,433,l),\n(72,433,l),\n(55,293,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(761,359,l),\n(683,448,l),\n(322,127,l),\n(400,38,l)\n);\n}\n);\nwidth = 800;\n}\n);\nunicode = 8594;\n},\n{\nglyphname = southEastArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(76,458,l),\n(467,12,l),\n(514,55,l),\n(123,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(519,0,l),\n(575,455,l),\n(515,455,l),\n(460,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(74,60,l),\n(66,0,l),\n(519,0,l),\n(527,60,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(73,441,l),\n(427,46,l),\n(493,104,l),\n(140,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(528,0,l),\n(585,453,l),\n(502,453,l),\n(446,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(84,82,l),\n(74,0,l),\n(528,0,l),\n(538,82,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(69,410,l),\n(408,13,l),\n(519,111,l),\n(180,509,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(521,3,l),\n(577,457,l),\n(451,457,l),\n(395,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(82,126,l),\n(67,0,l),\n(521,0,l),\n(536,126,l)\n);\n}\n);\nwidth = 602;\n}\n);\nunicode = 8600;\n},\n{\nglyphname = downArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(396,700,l),\n(316,47,l),\n(376,47,l),\n(456,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(340,0,l),\n(702,322,l),\n(664,364,l),\n(303,42,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(106,363,l),\n(59,321,l),\n(340,0,l),\n(387,42,l)\n);\n}\n);\nwidth = 743;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(383,700,l),\n(311,109,l),\n(394,108,l),\n(466,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(340,0,l),\n(701,320,l),\n(649,379,l),\n(290,59,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(124,380,l),\n(59,322,l),\n(340,0,l),\n(405,58,l)\n);\n}\n);\nwidth = 742;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(354,700,l),\n(279,90,l),\n(419,89,l),\n(494,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(342,2,l),\n(702,323,l),\n(624,412,l),\n(264,91,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(158,410,l),\n(58,321,l),\n(340,0,l),\n(440,89,l)\n);\n}\n);\nwidth = 744;\n}\n);\nunicode = 8595;\n},\n{\nglyphname = southWestArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(38,55,l),\n(75,12,l),\n(576,458,l),\n(539,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(135,455,l),\n(75,455,l),\n(19,0,l),\n(78,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(19,0,l),\n(472,0,l),\n(480,60,l),\n(27,60,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(81,104,l),\n(133,46,l),\n(583,441,l),\n(532,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(158,453,l),\n(75,453,l),\n(20,0,l),\n(102,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(20,0,l),\n(474,0,l),\n(484,82,l),\n(30,82,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(47,111,l),\n(134,13,l),\n(571,410,l),\n(484,509,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(201,457,l),\n(75,457,l),\n(19,3,l),\n(145,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(19,0,l),\n(473,0,l),\n(488,126,l),\n(34,126,l)\n);\n}\n);\nwidth = 602;\n}\n);\nunicode = 8601;\n},\n{\nglyphname = leftArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(114,389,l),\n(107,329,l),\n(760,329,l),\n(767,389,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(63,359,l),\n(345,38,l),\n(392,80,l),\n(111,401,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(462,638,l),\n(425,681,l),\n(63,359,l),\n(100,317,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(177,400,l),\n(166,317,l),\n(758,317,l),\n(768,400,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(63,357,l),\n(344,36,l),\n(410,95,l),\n(129,415,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(475,620,l),\n(425,678,l),\n(63,357,l),\n(114,299,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(162,433,l),\n(144,293,l),\n(755,293,l),\n(772,433,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(65,359,l),\n(346,38,l),\n(446,127,l),\n(165,448,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(502,593,l),\n(424,682,l),\n(63,361,l),\n(141,272,l)\n);\n}\n);\nwidth = 800;\n}\n);\nunicode = 8592;\n},\n{\nglyphname = northWestArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(524,42,l),\n(133,488,l),\n(86,445,l),\n(477,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(534,500,l),\n(81,500,l),\n(73,440,l),\n(526,440,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(140,500,l),\n(81,500,l),\n(25,45,l),\n(85,45,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(537,59,l),\n(183,454,l),\n(117,396,l),\n(470,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(536,500,l),\n(82,500,l),\n(72,418,l),\n(526,418,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,500,l),\n(82,500,l),\n(25,47,l),\n(108,47,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(550,99,l),\n(190,493,l),\n(80,394,l),\n(439,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(538,508,l),\n(84,508,l),\n(69,382,l),\n(523,382,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(207,508,l),\n(81,508,l),\n(25,54,l),\n(151,54,l)\n);\n}\n);\nwidth = 619;\n}\n);\nunicode = 8598;\n},\n{\nglyphname = leftRightArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(105,388,l),\n(98,328,l),\n(938,328,l),\n(945,388,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(710,591,l),\n(951,316,l),\n(999,358,l),\n(758,633,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(652,124,l),\n(689,82,l),\n(999,358,l),\n(961,399,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(372,633,l),\n(63,358,l),\n(101,316,l),\n(410,591,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(305,82,l),\n(354,124,l),\n(111,399,l),\n(63,358,l)\n);\n}\n);\nwidth = 1036;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,400,l),\n(166,317,l),\n(886,317,l),\n(895,400,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(687,575,l),\n(934,299,l),\n(999,357,l),\n(752,633,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(633,133,l),\n(684,74,l),\n(999,357,l),\n(947,415,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(378,633,l),\n(63,357,l),\n(114,299,l),\n(429,575,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(308,74,l),\n(375,133,l),\n(129,415,l),\n(63,357,l)\n);\n}\n);\nwidth = 1036;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(231,428,l),\n(214,288,l),\n(933,288,l),\n(950,428,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(675,564,l),\n(929,270,l),\n(1029,359,l),\n(775,653,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(625,154,l),\n(703,65,l),\n(1029,359,l),\n(951,448,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(389,653,l),\n(63,359,l),\n(141,270,l),\n(467,564,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(317,65,l),\n(417,154,l),\n(163,448,l),\n(63,359,l)\n);\n}\n);\nwidth = 1066;\n}\n);\nunicode = 8596;\n},\n{\nglyphname = upDownArrow;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(345,654,l),\n(241,-186,l),\n(301,-186,l),\n(405,654,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(418,669,l),\n(382,712,l),\n(73,437,l),\n(110,394,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(382,712,l),\n(335,669,l),\n(577,393,l),\n(624,436,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(26,51,l),\n(267,-224,l),\n(314,-181,l),\n(73,94,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(577,52,l),\n(540,95,l),\n(231,-181,l),\n(267,-224,l)\n);\n}\n);\nwidth = 651;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(336,604,l),\n(248,-116,l),\n(331,-115,l),\n(419,604,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(440,653,l),\n(390,712,l),\n(72,432,l),\n(124,373,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(390,712,l),\n(325,654,l),\n(566,373,l),\n(631,431,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(26,56,l),\n(275,-224,l),\n(340,-165,l),\n(92,115,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(585,57,l),\n(534,115,l),\n(224,-166,l),\n(275,-224,l)\n);\n}\n);\nwidth = 659;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(276,613,l),\n(194,-57,l),\n(334,-57,l),\n(416,613,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(434,611,l),\n(356,700,l),\n(26,410,l),\n(104,321,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(356,700,l),\n(256,611,l),\n(514,321,l),\n(614,410,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(-17,60,l),\n(242,-230,l),\n(342,-141,l),\n(83,149,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(571,60,l),\n(493,149,l),\n(164,-141,l),\n(242,-230,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8597;\n},\n{\nglyphname = dieresiscomb;\nlastChange = \"2025-01-01 09:01:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (197,512);\n}\n);\nguides = (\n{\npos = (-33,679);\n},\n{\npos = (-28,584);\n},\n{\npos = (-33,631);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(297,584,o),\n(321,606,o),\n(324,631,cs),\n(327,657,o),\n(309,679,o),\n(284,679,cs),\n(258,679,o),\n(233,657,o),\n(230,631,cs),\n(227,606,o),\n(246,584,o),\n(272,584,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(148,584,o),\n(172,606,o),\n(175,631,cs),\n(178,657,o),\n(160,679,o),\n(135,679,cs),\n(109,679,o),\n(84,657,o),\n(81,631,cs),\n(78,606,o),\n(97,584,o),\n(123,584,cs)\n);\n}\n);\nwidth = 312;\n},\n{\nanchors = (\n{\nname = _top;\npos = (197,512);\n}\n);\nguides = (\n{\npos = (-27,700);\n},\n{\npos = (-26,590);\n},\n{\npos = (-27,645);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(322,590,o),\n(349,615,o),\n(352,645,cs),\n(356,675,o),\n(335,700,o),\n(305,700,cs),\n(275,700,o),\n(247,675,o),\n(243,645,cs),\n(240,615,o),\n(262,590,o),\n(292,590,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,590,o),\n(174,615,o),\n(177,645,cs),\n(181,675,o),\n(160,700,o),\n(130,700,cs),\n(100,700,o),\n(72,675,o),\n(68,645,cs),\n(65,615,o),\n(87,590,o),\n(117,590,cs)\n);\n}\n);\nwidth = 324;\n},\n{\nanchors = (\n{\nname = _top;\npos = (246,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(408,559,o),\n(449,598,o),\n(455,644,cs),\n(461,690,o),\n(429,729,o),\n(381,729,cs),\n(336,729,o),\n(293,690,o),\n(287,644,cs),\n(281,598,o),\n(315,559,o),\n(360,559,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(181,559,o),\n(222,598,o),\n(228,644,cs),\n(234,690,o),\n(202,729,o),\n(154,729,cs),\n(109,729,o),\n(66,690,o),\n(60,644,cs),\n(54,598,o),\n(88,559,o),\n(133,559,cs)\n);\n}\n);\nwidth = 419;\n}\n);\nunicode = 776;\n},\n{\nglyphname = dotaccentcomb;\nlastChange = \"2025-01-08 14:19:43 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (98,512);\n}\n);\nguides = (\n{\npos = (-47,680);\n},\n{\npos = (-42,585);\n},\n{\npos = (-47,632);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(135,595,o),\n(159,617,o),\n(162,642,cs),\n(165,668,o),\n(147,690,o),\n(122,690,cs),\n(96,690,o),\n(71,668,o),\n(68,642,cs),\n(65,617,o),\n(84,595,o),\n(110,595,cs)\n);\n}\n);\nwidth = 137;\n},\n{\nanchors = (\n{\nname = _top;\npos = (106,512);\n}\n);\nguides = (\n{\npos = (-27,700);\n},\n{\npos = (-26,590);\n},\n{\npos = (-27,645);\n},\n{\npos = (-27,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(147,590,o),\n(174,615,o),\n(177,645,cs),\n(181,675,o),\n(160,700,o),\n(130,700,cs),\n(100,700,o),\n(72,675,o),\n(68,645,cs),\n(65,615,o),\n(87,590,o),\n(117,590,cs)\n);\n}\n);\nwidth = 147;\n},\n{\nanchors = (\n{\nname = _top;\npos = (127,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(181,559,o),\n(222,598,o),\n(228,644,cs),\n(234,690,o),\n(202,729,o),\n(154,729,cs),\n(109,729,o),\n(66,690,o),\n(60,644,cs),\n(54,598,o),\n(88,559,o),\n(133,559,cs)\n);\n}\n);\nwidth = 192;\n}\n);\nunicode = 775;\n},\n{\nglyphname = gravecomb;\nlastChange = \"2025-01-01 09:02:42 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (196,512);\n}\n);\nguides = (\n{\npos = (-42,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,681);\n},\n{\npos = (-47,704);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,586,l),\n(179,704,l),\n(86,704,l),\n(165,586,l)\n);\n}\n);\nwidth = 208;\n},\n{\nanchors = (\n{\nname = _top;\npos = (195,512);\n}\n);\nguides = (\n{\npos = (-49,700);\n},\n{\npos = (-48,590);\n},\n{\npos = (-49,645);\n},\n{\npos = (-49,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(223,590,l),\n(179,727,l),\n(69,727,l),\n(151,590,l)\n);\n}\n);\nwidth = 191;\n},\n{\nanchors = (\n{\nname = _top;\npos = (230,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(274,559,l),\n(225,729,l),\n(71,729,l),\n(171,559,l)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 768;\n},\n{\nglyphname = acutecomb;\nlastChange = \"2025-01-01 09:00:47 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (82,512);\n}\n);\nguides = (\n{\npos = (-42,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,681);\n},\n{\npos = (-47,704);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(230,704,l),\n(137,704,l),\n(71,586,l),\n(121,586,l)\n);\n}\n);\nwidth = 208;\n},\n{\nanchors = (\n{\nname = _top;\npos = (79,512);\n}\n);\nguides = (\n{\npos = (-49,700);\n},\n{\npos = (-48,590);\n},\n{\npos = (-49,645);\n},\n{\npos = (-49,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(240,727,l),\n(130,727,l),\n(52,590,l),\n(124,590,l)\n);\n}\n);\nwidth = 191;\n},\n{\nanchors = (\n{\nname = _top;\npos = (100,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(295,729,l),\n(141,729,l),\n(50,559,l),\n(153,559,l)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 769;\n},\n{\nglyphname = hungarumlautcomb;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (151,512);\n}\n);\nguides = (\n{\npos = (-42,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,704);\n},\n{\npos = (-47,681);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(230,704,l),\n(137,704,l),\n(71,586,l),\n(121,586,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(363,704,l),\n(270,704,l),\n(204,586,l),\n(254,586,l)\n);\n}\n);\nwidth = 374;\n},\n{\nanchors = (\n{\nname = _top;\npos = (155,512);\n}\n);\nguides = (\n{\npos = (-68,700);\n},\n{\npos = (-67,590);\n},\n{\npos = (-68,645);\n},\n{\npos = (-68,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(240,727,l),\n(130,727,l),\n(52,590,l),\n(124,590,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(396,727,l),\n(286,727,l),\n(208,590,l),\n(280,590,l)\n);\n}\n);\nwidth = 347;\n},\n{\nanchors = (\n{\nname = _top;\npos = (197,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(300,729,l),\n(146,729,l),\n(55,559,l),\n(158,559,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(499,729,l),\n(345,729,l),\n(254,559,l),\n(357,559,l)\n);\n}\n);\nwidth = 440;\n}\n);\nunicode = 779;\n},\n{\nglyphname = caroncomb.alt;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (84,508);\n}\n);\nguides = (\n{\npos = (-46,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,681);\n},\n{\npos = (-47,704);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,586,l),\n(203,704,l),\n(110,704,l),\n(82,586,l)\n);\n}\n);\nwidth = 155;\n},\n{\nanchors = (\n{\nname = _top;\npos = (84,508);\n}\n);\nguides = (\n{\npos = (-60,700);\n},\n{\npos = (-59,590);\n},\n{\npos = (-60,645);\n},\n{\npos = (-60,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(124,590,l),\n(190,727,l),\n(80,727,l),\n(52,590,l)\n);\n}\n);\nwidth = 141;\n},\n{\nanchors = (\n{\nname = _top;\npos = (83,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,559,l),\n(239,729,l),\n(109,729,l),\n(69,559,l)\n);\n}\n);\nwidth = 196;\n}\n);\n},\n{\nglyphname = circumflexcomb;\nlastChange = \"2025-01-08 14:16:38 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (166,512);\n}\n);\nguides = (\n{\npos = (-86,591);\n},\n{\npos = (-87,638);\n},\n{\npos = (-87,686);\n},\n{\npos = (-87,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(124,591,l),\n(216,694,l),\n(161,694,l),\n(229,591,l),\n(300,591,l),\n(217,709,l),\n(163,709,l),\n(52,591,l)\n);\n}\n);\nwidth = 268;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"20458CA3-7F03-4177-ABD8-708FA8DF63BB\";\nname = \"3 Aug 21, 16:24\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n}\n);\nwidth = 600;\n},\n{\nanchors = (\n{\nname = _top;\npos = (189,512);\n}\n);\nguides = (\n{\npos = (-88,700);\n},\n{\npos = (-87,590);\n},\n{\npos = (-88,645);\n},\n{\npos = (-88,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(135,590,l),\n(232,695,l),\n(176,695,l),\n(247,590,l),\n(330,590,l),\n(232,727,l),\n(185,727,l),\n(52,590,l)\n);\n}\n);\nwidth = 298;\n},\n{\nanchors = (\n{\nname = _top;\npos = (210,508);\n}\n);\nguides = (\n{\npos = (-9,729);\n},\n{\npos = (-4,559);\n},\n{\npos = (-7,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(167,559,l),\n(270,690,l),\n(201,690,l),\n(268,559,l),\n(389,559,l),\n(287,729,l),\n(190,729,l),\n(47,559,l)\n);\n}\n);\nwidth = 362;\n}\n);\nunicode = 770;\n},\n{\nglyphname = caroncomb;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (166,512);\n}\n);\nguides = (\n{\npos = (-86,591);\n},\n{\npos = (-87,638);\n},\n{\npos = (-87,686);\n},\n{\npos = (-87,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(203,591,l),\n(314,709,l),\n(243,709,l),\n(150,606,l),\n(205,605,l),\n(138,709,l),\n(66,709,l),\n(149,591,l)\n);\n}\n);\nwidth = 268;\n},\n{\nanchors = (\n{\nname = _top;\npos = (184,512);\n}\n);\nguides = (\n{\npos = (-88,700);\n},\n{\npos = (-87,590);\n},\n{\npos = (-88,645);\n},\n{\npos = (-88,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,590,l),\n(347,727,l),\n(264,727,l),\n(167,622,l),\n(223,622,l),\n(152,727,l),\n(69,727,l),\n(168,590,l)\n);\n}\n);\nwidth = 298;\n},\n{\nanchors = (\n{\nname = _top;\npos = (212,508);\n}\n);\nguides = (\n{\npos = (-5,729);\n},\n{\npos = (0,559);\n},\n{\npos = (-3,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(266,559,l),\n(410,729,l),\n(289,729,l),\n(189,598,l),\n(258,598,l),\n(188,729,l),\n(68,729,l),\n(169,559,l)\n);\n}\n);\nwidth = 362;\n}\n);\nunicode = 780;\n},\n{\nglyphname = brevecomb;\nlastChange = \"2025-01-08 14:16:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (177,512);\n}\n);\nguides = (\n{\npos = (-2,592);\n},\n{\npos = (-3,639);\n},\n{\npos = (-3,687);\n},\n{\npos = (-3,710);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(261,590,o),\n(306,645,o),\n(314,709,c),\n(257,709,l),\n(252,663,o),\n(224,641,o),\n(194,641,cs),\n(165,641,o),\n(142,663,o),\n(147,709,c),\n(90,709,l),\n(82,645,o),\n(115,590,o),\n(188,590,cs)\n);\n}\n);\nwidth = 298;\n},\n{\nanchors = (\n{\nname = _top;\npos = (175,512);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(270,588,o),\n(327,655,o),\n(336,727,c),\n(263,727,l),\n(258,688,o),\n(234,651,o),\n(192,651,cs),\n(152,651,o),\n(137,688,o),\n(142,727,c),\n(69,727,l),\n(60,655,o),\n(101,588,o),\n(185,588,cs)\n);\n}\n);\nwidth = 287;\n},\n{\nanchors = (\n{\nname = _top;\npos = (200,508);\n}\n);\nguides = (\n{\npos = (20,729);\n},\n{\npos = (25,559);\n},\n{\npos = (22,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(315,556,o),\n(384,639,o),\n(395,729,c),\n(296,729,l),\n(291,683,o),\n(271,643,o),\n(223,643,cs),\n(177,643,o),\n(164,683,o),\n(169,729,c),\n(70,729,l),\n(59,639,o),\n(110,556,o),\n(212,556,cs)\n);\n}\n);\nwidth = 349;\n}\n);\nunicode = 774;\n},\n{\nglyphname = ringcomb;\nlastChange = \"2025-01-01 09:04:46 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (157,512);\n}\n);\nguides = (\n{\npos = (2,592);\n},\n{\npos = (1,639);\n},\n{\npos = (1,687);\n},\n{\npos = (1,710);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(231,588,o),\n(283,645,o),\n(291,705,cs),\n(299,768,o),\n(259,822,o),\n(188,822,cs),\n(118,822,o),\n(66,768,o),\n(58,705,cs),\n(50,645,o),\n(90,588,o),\n(160,588,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(132,641,o),\n(106,667,o),\n(111,705,cs),\n(115,741,o),\n(148,770,o),\n(182,770,cs),\n(217,770,o),\n(242,741,o),\n(238,705,cs),\n(233,667,o),\n(201,641,o),\n(166,641,cs)\n);\n}\n);\nwidth = 237;\n},\n{\nanchors = (\n{\nname = _top;\npos = (163,512);\n}\n);\nguides = (\n{\npos = (-246,700);\n},\n{\npos = (-245,590);\n},\n{\npos = (-246,645);\n},\n{\npos = (-246,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(242,589,o),\n(296,649,o),\n(304,712,cs),\n(312,776,o),\n(272,834,o),\n(197,834,cs),\n(123,834,o),\n(69,776,o),\n(61,712,cs),\n(53,649,o),\n(93,589,o),\n(167,589,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(142,651,o),\n(117,675,o),\n(122,712,cs),\n(126,746,o),\n(157,772,o),\n(189,772,cs),\n(222,772,o),\n(247,746,o),\n(243,712,cs),\n(238,675,o),\n(207,651,o),\n(174,651,cs)\n);\n}\n);\nwidth = 251;\n},\n{\nanchors = (\n{\nname = _top;\npos = (176,508);\n}\n);\nguides = (\n{\npos = (27,729);\n},\n{\npos = (32,559);\n},\n{\npos = (29,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(258,556,o),\n(315,619,o),\n(323,686,cs),\n(331,753,o),\n(290,814,o),\n(211,814,cs),\n(133,814,o),\n(76,753,o),\n(68,686,cs),\n(60,619,o),\n(101,556,o),\n(179,556,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(166,640,o),\n(148,658,o),\n(151,686,cs),\n(154,710,o),\n(177,730,o),\n(200,730,cs),\n(224,730,o),\n(243,710,o),\n(240,686,cs),\n(237,658,o),\n(213,640,o),\n(189,640,cs)\n);\n}\n);\nwidth = 285;\n}\n);\nunicode = 778;\n},\n{\nglyphname = tildecomb;\nlastChange = \"2025-01-08 14:43:46 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (193,512);\n}\n);\nguides = (\n{\npos = (-17,591);\n},\n{\npos = (-18,638);\n},\n{\npos = (-18,686);\n},\n{\npos = (-18,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,628,o),\n(214,591,o),\n(252,591,cs),\n(302,591,o),\n(334,623,o),\n(341,682,c),\n(284,682,l),\n(282,660,o),\n(277,646,o),\n(251,646,cs),\n(231,646,o),\n(205,682,o),\n(168,682,cs),\n(118,682,o),\n(86,652,o),\n(79,591,c),\n(136,591,l),\n(139,614,o),\n(146,628,o),\n(169,628,cs)\n);\n}\n);\nwidth = 351;\n},\n{\nanchors = (\n{\nname = _top;\npos = (186,512);\n}\n);\nguides = (\n{\npos = (-387,700);\n},\n{\npos = (-386,590);\n},\n{\npos = (-387,645);\n},\n{\npos = (-387,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,628,o),\n(216,590,o),\n(260,590,cs),\n(317,590,o),\n(355,632,o),\n(363,700,c),\n(293,700,l),\n(290,677,o),\n(282,663,o),\n(256,663,cs),\n(233,663,o),\n(205,700,o),\n(162,700,cs),\n(105,700,o),\n(68,663,o),\n(59,590,c),\n(130,590,l),\n(133,614,o),\n(143,628,o),\n(166,628,cs)\n);\n}\n);\nwidth = 325;\n},\n{\nanchors = (\n{\nname = _top;\npos = (230,508);\n}\n);\nguides = (\n{\npos = (22,729);\n},\n{\npos = (27,559);\n},\n{\npos = (24,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(225,620,o),\n(250,556,o),\n(320,556,cs),\n(406,556,o),\n(450,619,o),\n(461,714,c),\n(362,714,l),\n(358,676,o),\n(342,662,o),\n(318,662,cs),\n(287,662,o),\n(257,717,o),\n(189,717,cs),\n(104,717,o),\n(60,660,o),\n(47,559,c),\n(146,559,l),\n(151,596,o),\n(163,620,o),\n(192,620,cs)\n);\n}\n);\nwidth = 415;\n},\n{\nanchors = (\n{\nname = _top;\npos = (209,508);\n}\n);\nassociatedMasterId = m003;\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = \"BBFD4248-F8E1-451A-B1D3-0F4A06B581F3\";\nname = \"12 Sep 24 at 16:05\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(212,579,o),\n(271,579,cs),\n(365,579,o),\n(384,675,o),\n(384,708,c),\n(290,708,l),\n(290,687,o),\n(277,671,o),\n(254,671,cs),\n(206,671,o),\n(198,708,o),\n(122,708,cs),\n(29,708,o),\n(8,612,o),\n(8,579,c),\n(103,579,l),\n(103,602,o),\n(121,619,o),\n(143,619,cs),\n(180,619,o)\n);\n},\n{\nclosed = 1;\nnodes = (\n(605,1725,l),\n(605,1757,o),\n(621,1778,o),\n(645,1778,cs),\n(663,1778,o),\n(677,1768,o),\n(692,1756,cs),\n(712,1742,o),\n(734,1725,o),\n(773,1726,cs),\n(835,1726,o),\n(884,1775,o),\n(885,1862,c),\n(804,1865,l),\n(804,1833,o),\n(790,1812,o),\n(763,1811,cs),\n(746,1811,o),\n(731,1821,o),\n(715,1833,cs),\n(695,1847,o),\n(671,1863,o),\n(635,1863,cs),\n(573,1863,o),\n(523,1814,o),\n(523,1726,c)\n);\n}\n);\nwidth = 389;\n},\n{\nanchors = (\n{\nname = _top;\npos = (194,508);\n}\n);\nassociatedMasterId = m003;\nguides = (\n{\npos = (8,729);\n},\n{\npos = (13,559);\n},\n{\npos = (10,644);\n}\n);\nlayerId = \"45818B1E-5F7D-4BC1-B8BA-26BE04D49AE9\";\nname = \"23 Sep 24 at 16:04\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(168,619,o),\n(215,559,o),\n(273,559,cs),\n(353,559,o),\n(386,625,o),\n(386,720,c),\n(292,720,l),\n(292,685,o),\n(284,660,o),\n(250,660,cs),\n(219,660,o),\n(171,720,o),\n(115,720,cs),\n(36,720,o),\n(2,660,o),\n(2,559,c),\n(96,559,l),\n(96,594,o),\n(106,619,o),\n(138,619,cs)\n);\n}\n);\nwidth = 387;\n}\n);\nunicode = 771;\n},\n{\nglyphname = macroncomb;\nlastChange = \"2025-01-08 14:20:46 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (165,512);\n}\n);\nguides = (\n{\npos = (-27,592);\n},\n{\npos = (-28,639);\n},\n{\npos = (-28,687);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(318,612,l),\n(325,666,l),\n(61,666,l),\n(54,612,l)\n);\n}\n);\nwidth = 284;\n},\n{\nanchors = (\n{\nname = _top;\npos = (207,512);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(373,612,l),\n(382,680,l),\n(83,680,l),\n(74,612,l)\n);\n}\n);\nwidth = 359;\n},\n{\nanchors = (\n{\nname = _top;\npos = (203,511);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(377,579,l),\n(388,671,l),\n(62,671,l),\n(51,579,l)\n);\n}\n);\nwidth = 346;\n}\n);\nunicode = 772;\n},\n{\nglyphname = hookabovecomb;\nlastChange = \"2025-01-08 14:18:11 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (81,500);\n}\n);\nguides = (\n{\npos = (-17,591);\n},\n{\npos = (-18,638);\n},\n{\npos = (-18,686);\n},\n{\npos = (-18,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(106,561,l),\n(109,587,l),\n(154,593,o),\n(182,619,o),\n(187,658,cs),\n(194,717,o),\n(147,738,o),\n(73,733,c),\n(67,687,l),\n(120,692,o),\n(142,676,o),\n(140,658,cs),\n(138,641,o),\n(117,627,o),\n(66,627,c),\n(58,561,l)\n);\n}\n);\nwidth = 143;\n},\n{\nanchors = (\n{\nname = _top;\npos = (100,500);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(136,560,l),\n(139,588,l),\n(182,593,o),\n(227,624,o),\n(232,668,cs),\n(241,739,o),\n(173,760,o),\n(96,755,c),\n(88,696,l),\n(132,700,o),\n(167,688,o),\n(165,668,cs),\n(162,646,o),\n(124,635,o),\n(81,635,c),\n(72,560,l)\n);\n}\n);\nwidth = 194;\n},\n{\nanchors = (\n{\nname = _top;\npos = (96,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(137,559,l),\n(142,593,l),\n(186,597,o),\n(229,630,o),\n(235,677,cs),\n(245,762,o),\n(162,780,o),\n(80,775,c),\n(71,702,l),\n(123,706,o),\n(156,698,o),\n(153,677,cs),\n(150,656,o),\n(117,646,o),\n(64,646,c),\n(53,559,l)\n);\n}\n);\nwidth = 193;\n}\n);\nunicode = 777;\n},\n{\nglyphname = commaturnedabovecomb;\nlastChange = \"2025-01-01 09:21:45 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (115,512);\n}\n);\nguides = (\n{\npos = (-102,592);\n},\n{\npos = (-103,639);\n},\n{\npos = (-103,687);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(107,772,o),\n(64,715,o),\n(56,653,cs),\n(52,618,o),\n(71,592,o),\n(105,592,cs),\n(130,592,o),\n(154,617,o),\n(157,642,c),\n(160,666,o),\n(142,687,o),\n(117,687,cs),\n(116,687,o),\n(112,687,o),\n(111,687,c),\n(117,738,o),\n(170,749,o),\n(170,749,c),\n(170,749,o),\n(174,772,o),\n(173,772,cs)\n);\n}\n);\nwidth = 122;\n},\n{\nanchors = (\n{\nname = _top;\npos = (140,512);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,788,o),\n(82,742,o),\n(73,662,cs),\n(68,624,o),\n(89,590,o),\n(129,590,cs),\n(166,590,o),\n(186,619,o),\n(190,647,cs),\n(193,673,o),\n(170,699,o),\n(143,699,cs),\n(142,699,o),\n(137,699,o),\n(135,698,c),\n(142,756,o),\n(203,761,o),\n(203,761,c),\n(203,761,o),\n(207,788,o),\n(206,788,cs)\n);\n}\n);\nwidth = 162;\n},\n{\nanchors = (\n{\nname = _top;\npos = (147,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(116,802,o),\n(66,709,o),\n(58,644,cs),\n(53,604,o),\n(71,559,o),\n(127,559,cs),\n(167,559,o),\n(200,587,o),\n(205,628,cs),\n(209,661,o),\n(182,690,o),\n(146,690,cs),\n(142,690,o),\n(138,690,o),\n(134,689,c),\n(142,752,o),\n(220,766,o),\n(220,766,c),\n(220,766,o),\n(225,802,o),\n(224,802,cs)\n);\n}\n);\nwidth = 169;\n}\n);\nunicode = 786;\n},\n{\nglyphname = horncomb;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(122,451,o),\n(215,529,o),\n(181,651,c),\n(118,632,l),\n(140,562,o),\n(105,500,o),\n(41,500,c),\n(35,451,l)\n);\n}\n);\nwidth = 156;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(157,446,o),\n(229,529,o),\n(195,651,c),\n(113,629,l),\n(134,570,o),\n(122,500,o),\n(41,500,c),\n(34,446,l)\n);\n}\n);\nwidth = 173;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(170,434,o),\n(271,543,o),\n(234,678,c),\n(116,647,l),\n(138,588,o),\n(128,515,o),\n(47,515,c),\n(37,434,l)\n);\n}\n);\nwidth = 208;\n}\n);\nunicode = 795;\n},\n{\nglyphname = dotbelowcomb;\nlastChange = \"2025-01-01 09:19:42 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (32,0);\n}\n);\nguides = (\n{\npos = (-58,-119);\n},\n{\npos = (-58,-71);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(45,-166,o),\n(69,-144,o),\n(72,-119,cs),\n(75,-93,o),\n(57,-71,o),\n(32,-71,cs),\n(6,-71,o),\n(-19,-93,o),\n(-22,-119,cs),\n(-25,-144,o),\n(-6,-166,o),\n(20,-166,cs)\n);\n}\n);\nwidth = 141;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (44,0);\n}\n);\nguides = (\n{\npos = (75,-119);\n},\n{\npos = (75,-64);\n},\n{\npos = (75,-174);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(53,-174,o),\n(80,-149,o),\n(84,-119,cs),\n(87,-89,o),\n(66,-64,o),\n(36,-64,cs),\n(6,-64,o),\n(-22,-89,o),\n(-25,-119,cs),\n(-29,-149,o),\n(-7,-174,o),\n(23,-174,cs)\n);\n}\n);\nwidth = 149;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (63,-1);\n}\n);\nguides = (\n{\npos = (-261,-137);\n},\n{\npos = (-261,-52);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(84,-222,o),\n(124,-183,o),\n(130,-137,cs),\n(136,-91,o),\n(104,-52,o),\n(56,-52,cs),\n(11,-52,o),\n(-32,-91,o),\n(-38,-137,cs),\n(-44,-183,o),\n(-9,-222,o),\n(36,-222,cs)\n);\n}\n);\nwidth = 188;\n}\n);\nunicode = 803;\n},\n{\nglyphname = commaaccentcomb;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (29,-12);\n}\n);\nguides = (\n{\npos = (-121,-120);\n},\n{\npos = (-119,-120);\n},\n{\npos = (-119,-71);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(15,-248,o),\n(58,-191,o),\n(65,-129,cs),\n(70,-94,o),\n(56,-68,o),\n(19,-68,cs),\n(-10,-68,o),\n(-32,-93,o),\n(-35,-118,cs),\n(-38,-142,o),\n(-20,-163,o),\n(5,-163,cs),\n(6,-163,o),\n(10,-163,o),\n(11,-163,c),\n(5,-214,o),\n(-48,-225,o),\n(-48,-225,c),\n(-48,-225,o),\n(-52,-248,o),\n(-51,-248,cs)\n);\n}\n);\nwidth = 122;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (45,-12);\n}\n);\nguides = (\n{\npos = (75,-119);\n},\n{\npos = (75,-64);\n},\n{\npos = (75,-174);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(26,-269,o),\n(82,-214,o),\n(92,-134,cs),\n(97,-96,o),\n(72,-64,o),\n(35,-64,cs),\n(6,-64,o),\n(-21,-93,o),\n(-25,-121,cs),\n(-28,-147,o),\n(-6,-173,o),\n(21,-173,cs),\n(22,-173,o),\n(27,-173,o),\n(29,-172,c),\n(22,-230,o),\n(-39,-242,o),\n(-39,-242,c),\n(-39,-242,o),\n(-44,-269,o),\n(-43,-269,cs)\n);\n}\n);\nwidth = 158;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (64,-1);\n}\n);\nguides = (\n{\npos = (-309,-137);\n},\n{\npos = (-309,-52);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(59,-354,o),\n(121,-231,o),\n(131,-152,cs),\n(137,-104,o),\n(118,-50,o),\n(53,-50,cs),\n(4,-50,o),\n(-32,-92,o),\n(-38,-134,cs),\n(-42,-173,o),\n(-14,-208,o),\n(30,-208,cs),\n(34,-208,o),\n(39,-208,o),\n(42,-207,c),\n(32,-293,o),\n(-59,-311,o),\n(-59,-311,c),\n(-59,-311,o),\n(-66,-354,o),\n(-65,-354,cs)\n);\n}\n);\nwidth = 191;\n}\n);\nunicode = 806;\n},\n{\nglyphname = commaaccentcomb.loclMAH;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (79,2);\n}\n);\nguides = (\n{\npos = (-73,-204);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(105,-204,o),\n(156,-169,o),\n(161,-122,cs),\n(168,-65,o),\n(121,-40,o),\n(74,-40,cs),\n(60,-40,o),\n(48,-42,o),\n(37,-45,c),\n(41,-91,l),\n(41,-91,o),\n(55,-87,o),\n(70,-87,c),\n(94,-87,o),\n(111,-100,o),\n(108,-121,cs),\n(106,-139,o),\n(90,-157,o),\n(58,-157,cs),\n(28,-157,o),\n(6,-135,o),\n(-3,-122,c),\n(-38,-158,l),\n(-21,-186,o),\n(11,-204,o),\n(55,-204,cs)\n);\n}\n);\nwidth = 215;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (95,2);\n}\n);\nguides = (\n{\npos = (63,-119);\n},\n{\npos = (63,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(112,-207,o),\n(161,-172,o),\n(168,-119,cs),\n(174,-66,o),\n(133,-41,o),\n(87,-41,cs),\n(68,-41,o),\n(56,-43,o),\n(45,-46,c),\n(52,-95,l),\n(58,-93,o),\n(66,-91,o),\n(74,-91,cs),\n(102,-91,o),\n(114,-101,o),\n(112,-118,cs),\n(110,-136,o),\n(91,-146,o),\n(66,-146,cs),\n(30,-146,o),\n(11,-124,o),\n(3,-111,c),\n(-40,-157,l),\n(-22,-185,o),\n(15,-207,o),\n(60,-207,cs)\n);\n}\n);\nwidth = 223;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (104,-1);\n}\n);\nguides = (\n{\npos = (-309,-137);\n},\n{\npos = (-309,-52);\n},\n{\npos = (-309,-227);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(139,-227,o),\n(196,-188,o),\n(203,-127,cs),\n(211,-67,o),\n(163,-39,o),\n(108,-39,cs),\n(87,-39,o),\n(65,-44,o),\n(53,-48,c),\n(62,-112,l),\n(67,-109,o),\n(79,-105,o),\n(93,-105,cs),\n(124,-105,o),\n(132,-119,o),\n(131,-129,cs),\n(128,-151,o),\n(108,-159,o),\n(84,-159,cs),\n(44,-159,o),\n(23,-134,o),\n(14,-120,c),\n(-33,-172,l),\n(-14,-203,o),\n(27,-227,o),\n(78,-227,cs)\n);\n}\n);\nwidth = 263;\n}\n);\n},\n{\nglyphname = cedillacomb;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (77,2);\n}\n);\nguides = (\n{\npos = (-69,-120);\n},\n{\npos = (-73,-204);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(109,-208,o),\n(158,-174,o),\n(164,-123,cs),\n(171,-66,o),\n(123,-31,o),\n(75,-45,c),\n(106,9,l),\n(52,9,l),\n(2,-77,l),\n(36,-102,l),\n(40,-97,o),\n(52,-88,o),\n(72,-88,cs),\n(90,-88,o),\n(107,-103,o),\n(104,-122,cs),\n(102,-142,o),\n(84,-157,o),\n(58,-157,cs),\n(28,-157,o),\n(6,-136,o),\n(-3,-123,c),\n(-39,-162,l),\n(-21,-190,o),\n(11,-208,o),\n(55,-208,cs)\n);\n}\n);\nwidth = 215;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (87,2);\n}\n);\nguides = (\n{\npos = (75,-119);\n},\n{\npos = (75,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(135,-214,o),\n(181,-180,o),\n(188,-124,cs),\n(196,-61,o),\n(145,-33,o),\n(91,-46,c),\n(124,8,l),\n(58,8,l),\n(7,-73,l),\n(48,-104,l),\n(52,-99,o),\n(68,-90,o),\n(86,-90,cs),\n(104,-90,o),\n(121,-102,o),\n(118,-121,cs),\n(116,-145,o),\n(97,-153,o),\n(76,-153,cs),\n(45,-153,o),\n(22,-131,o),\n(14,-118,c),\n(-29,-164,l),\n(-11,-192,o),\n(26,-214,o),\n(71,-214,cs)\n);\n}\n);\nwidth = 247;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (97,-1);\n}\n);\nguides = (\n{\npos = (-305,-237);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(163,-239,o),\n(217,-197,o),\n(224,-135,cs),\n(232,-69,o),\n(180,-25,o),\n(115,-37,c),\n(147,13,l),\n(61,13,l),\n(5,-74,l),\n(54,-118,l),\n(61,-114,o),\n(74,-104,o),\n(95,-104,cs),\n(115,-104,o),\n(129,-116,o),\n(127,-132,cs),\n(124,-150,o),\n(107,-160,o),\n(88,-160,cs),\n(53,-160,o),\n(26,-134,o),\n(17,-123,c),\n(-38,-184,l),\n(-19,-216,o),\n(33,-239,o),\n(84,-239,cs)\n);\n}\n);\nwidth = 288;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"D7FDC5D9-E24B-404A-97F7-033D7CD42960\";\nname = \"2 Sep 24 at 17:10\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(359,-216,o),\n(409,-177,o),\n(409,-118,cs),\n(409,-60,o),\n(360,-32,o),\n(305,-32,cs),\n(284,-32,o),\n(263,-37,o),\n(251,-41,c),\n(268,-103,l),\n(273,-100,o),\n(284,-96,o),\n(298,-96,cs),\n(329,-96,o),\n(339,-110,o),\n(339,-120,cs),\n(339,-142,o),\n(320,-150,o),\n(296,-150,cs),\n(256,-150,o),\n(232,-125,o),\n(221,-111,c),\n(180,-161,l),\n(203,-192,o),\n(247,-216,o),\n(298,-216,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 807;\n},\n{\nglyphname = ogonekcomb;\nlastChange = \"2025-01-01 09:04:23 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _ogonek;\npos = (105,24);\n}\n);\nguides = (\n{\npos = (-73,-204);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(96,-204,o),\n(122,-195,o),\n(138,-182,c),\n(120,-131,l),\n(89,-153,o),\n(43,-139,o),\n(48,-101,cs),\n(52,-65,o),\n(78,-36,o),\n(128,-5,c),\n(104,25,l),\n(26,-12,o),\n(-10,-61,o),\n(-17,-116,cs),\n(-24,-171,o),\n(16,-204,o),\n(70,-204,cs)\n);\n}\n);\nwidth = 185;\n},\n{\nanchors = (\n{\nname = _ogonek;\npos = (105,33);\n}\n);\nguides = (\n{\npos = (77,-119);\n},\n{\npos = (77,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(93,-206,o),\n(125,-194,o),\n(141,-181,c),\n(126,-118,l),\n(81,-145,o),\n(40,-133,o),\n(45,-93,cs),\n(49,-63,o),\n(75,-29,o),\n(132,-1,c),\n(105,34,l),\n(15,-1,o),\n(-24,-58,o),\n(-31,-113,cs),\n(-38,-170,o),\n(4,-206,o),\n(57,-206,cs)\n);\n}\n);\nwidth = 192;\n},\n{\nanchors = (\n{\nname = _ogonek;\npos = (106,41);\n}\n);\nguides = (\n{\npos = (-309,-237);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(111,-237,o),\n(143,-219,o),\n(166,-199,c),\n(138,-124,l),\n(97,-155,o),\n(56,-132,o),\n(61,-89,cs),\n(65,-56,o),\n(89,-26,o),\n(144,0,c),\n(107,42,l),\n(4,-4,o),\n(-36,-51,o),\n(-47,-128,cs),\n(-56,-193,o),\n(-4,-237,o),\n(63,-237,cs)\n);\n}\n);\nwidth = 214;\n}\n);\nunicode = 808;\n},\n{\nglyphname = macronbelowcomb;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (110,-12);\n}\n);\nguides = (\n{\npos = (-102,-120);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(225,-147,l),\n(232,-93,l),\n(-32,-93,l),\n(-39,-147,l)\n);\n}\n);\nwidth = 284;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (128,-12);\n}\n);\nguides = (\n{\npos = (41,-119);\n},\n{\npos = (41,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(260,-153,l),\n(268,-85,l),\n(-31,-85,l),\n(-39,-153,l)\n);\n}\n);\nwidth = 319;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (149,-1);\n}\n);\nguides = (\n{\npos = (-261,-137);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(289,-182,l),\n(301,-90,l),\n(-25,-90,l),\n(-37,-182,l)\n);\n}\n);\nwidth = 359;\n}\n);\nunicode = 817;\n},\n{\nglyphname = brevecomb_acutecomb;\nlastChange = \"2025-01-08 14:16:21 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (200,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (20,0);\nref = brevecomb;\n},\n{\npos = (127,138);\nref = acutecomb;\n}\n);\nwidth = 408;\n},\n{\nanchors = (\n{\nname = _top;\npos = (201,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (24,0);\nref = brevecomb;\n},\n{\npos = (134,160);\nref = acutecomb;\n}\n);\nwidth = 410;\n},\n{\nanchors = (\n{\nname = _top;\npos = (174,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = brevecomb;\n},\n{\npos = (97,201);\nref = acutecomb;\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = brevecomb_gravecomb;\nlastChange = \"2025-01-08 14:17:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (216,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (30,0);\nref = brevecomb;\n},\n{\npos = (50,134);\nref = gravecomb;\n}\n);\nwidth = 410;\n},\n{\nanchors = (\n{\nname = _top;\npos = (211,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (33,0);\nref = brevecomb;\n},\n{\npos = (52,161);\nref = gravecomb;\n}\n);\nwidth = 410;\n},\n{\nanchors = (\n{\nname = _top;\npos = (173,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = brevecomb;\n},\n{\npos = (-15,201);\nref = gravecomb;\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = brevecomb_hookabovecomb;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (220,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(303,590,o),\n(348,645,o),\n(356,709,c),\n(299,709,l),\n(294,663,o),\n(266,641,o),\n(236,641,cs),\n(207,641,o),\n(184,663,o),\n(189,709,c),\n(132,709,l),\n(124,645,o),\n(157,590,o),\n(230,590,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(280,739,l),\n(283,767,l),\n(326,772,o),\n(366,802,o),\n(371,847,cs),\n(380,918,o),\n(314,939,o),\n(236,934,c),\n(229,881,l),\n(273,885,o),\n(315,874,o),\n(311,847,cs),\n(307,816,o),\n(269,805,o),\n(226,805,c),\n(218,739,l)\n);\n}\n);\nwidth = 376;\n},\n{\nanchors = (\n{\nname = _top;\npos = (231,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(326,588,o),\n(383,655,o),\n(392,727,c),\n(319,727,l),\n(314,688,o),\n(290,651,o),\n(248,651,cs),\n(208,651,o),\n(193,688,o),\n(198,727,c),\n(125,727,l),\n(116,655,o),\n(157,588,o),\n(241,588,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(289,739,l),\n(292,767,l),\n(335,772,o),\n(375,802,o),\n(380,847,cs),\n(389,918,o),\n(323,939,o),\n(245,934,c),\n(238,881,l),\n(282,885,o),\n(324,874,o),\n(320,847,cs),\n(316,816,o),\n(278,805,o),\n(235,805,c),\n(227,739,l)\n);\n}\n);\nwidth = 401;\n},\n{\nanchors = (\n{\nname = _top;\npos = (206,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(315,556,o),\n(384,639,o),\n(395,729,c),\n(296,729,l),\n(291,683,o),\n(271,643,o),\n(223,643,cs),\n(177,643,o),\n(164,683,o),\n(169,729,c),\n(70,729,l),\n(59,639,o),\n(110,556,o),\n(212,556,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,736,l),\n(279,770,l),\n(324,774,o),\n(367,807,o),\n(373,854,cs),\n(383,939,o),\n(299,957,o),\n(218,952,c),\n(209,879,l),\n(261,883,o),\n(293,875,o),\n(291,854,cs),\n(288,833,o),\n(255,823,o),\n(202,823,c),\n(191,736,l)\n);\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = brevecomb_tildecomb;\nlastChange = \"2025-01-08 14:17:09 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (237,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (53,0);\nref = brevecomb;\n},\n{\npos = (57,161);\nref = tildecomb;\n}\n);\nwidth = 441;\n},\n{\nanchors = (\n{\nname = _top;\npos = (229,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (55,12);\nref = brevecomb;\n},\n{\npos = (56,173);\nref = tildecomb;\n}\n);\nwidth = 441;\n},\n{\nanchors = (\n{\nname = _top;\npos = (176,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = brevecomb;\n},\n{\npos = (-39,208);\nref = tildecomb;\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = circumflexcomb_acutecomb;\nlastChange = \"2025-01-08 14:16:50 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (284,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (116,0);\nref = circumflexcomb;\n},\n{\npos = (313,98);\nref = acutecomb;\n}\n);\nwidth = 585;\n},\n{\nanchors = (\n{\nname = _top;\npos = (280,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (101,0);\nref = circumflexcomb;\n},\n{\npos = (329,98);\nref = acutecomb;\n}\n);\nwidth = 585;\n},\n{\nanchors = (\n{\nname = _top;\npos = (180,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = circumflexcomb;\n},\n{\npos = (252,134);\nref = acutecomb;\n}\n);\nwidth = 396;\n}\n);\n},\n{\nglyphname = circumflexcomb_gravecomb;\nlastChange = \"2025-01-08 14:17:48 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (142,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = circumflexcomb;\n},\n{\npos = (80,99);\nref = gravecomb;\n}\n);\nwidth = 283;\n},\n{\nanchors = (\n{\nname = _top;\npos = (156,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = circumflexcomb;\n},\n{\npos = (129,99);\nref = gravecomb;\n}\n);\nwidth = 339;\n},\n{\nanchors = (\n{\nname = _top;\npos = (180,507);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = circumflexcomb;\n},\n{\npos = (164,136);\nref = gravecomb;\n}\n);\nwidth = 425;\n}\n);\n},\n{\nglyphname = circumflexcomb_hookabovecomb;\nlastChange = \"2025-01-08 14:24:33 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (139,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (-31,0);\nref = circumflexcomb;\n},\n{\npos = (196,111);\nref = hookabovecomb;\n}\n);\nwidth = 342;\n},\n{\nanchors = (\n{\nname = _top;\npos = (153,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = circumflexcomb;\n},\n{\npos = (195,117);\nref = hookabovecomb;\n}\n);\nwidth = 401;\n},\n{\nanchors = (\n{\nname = _top;\npos = (181,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (-31,0);\nref = circumflexcomb;\n},\n{\npos = (264,119);\nref = hookabovecomb;\n}\n);\nwidth = 474;\n}\n);\n},\n{\nglyphname = circumflexcomb_tildecomb;\nlastChange = \"2025-01-08 14:34:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (134,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (-29,0);\nref = circumflexcomb;\n},\n{\npos = (-39,153);\nref = tildecomb;\n}\n);\nwidth = 271;\n},\n{\nanchors = (\n{\nname = _top;\npos = (149,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (-24,0);\nref = circumflexcomb;\n},\n{\npos = (-17,168);\nref = tildecomb;\n}\n);\nwidth = 311;\n},\n{\nanchors = (\n{\nname = _top;\npos = (205,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (-4,0);\nref = circumflexcomb;\n},\n{\npos = (-7,200);\nref = tildecomb;\n}\n);\nwidth = 415;\n}\n);\n},\n{\nglyphname = dieresis;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-15,0);\nref = dieresiscomb;\n}\n);\nwidth = 343;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = dieresiscomb;\n}\n);\nwidth = 324;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-74,0);\nref = dieresiscomb;\n}\n);\nwidth = 332;\n}\n);\nunicode = 168;\n},\n{\nglyphname = dotaccent;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-1,0);\nref = dotaccentcomb;\n}\n);\nwidth = 194;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-32,0);\nref = dotaccentcomb;\n}\n);\nwidth = 147;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-47,0);\nref = dotaccentcomb;\n}\n);\nwidth = 159;\n}\n);\nunicode = 729;\n},\n{\nglyphname = grave;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-11,0);\nref = gravecomb;\n}\n);\nwidth = 244;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-7,0);\nref = gravecomb;\n}\n);\nwidth = 238;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-34,0);\nref = gravecomb;\n}\n);\nwidth = 244;\n}\n);\nunicode = 96;\n},\n{\nglyphname = acute;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-11,0);\nref = acutecomb;\n}\n);\nwidth = 244;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-5,0);\nref = acutecomb;\n}\n);\nwidth = 242;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-34,0);\nref = acutecomb;\n}\n);\nwidth = 244;\n}\n);\nunicode = 180;\n},\n{\nglyphname = hungarumlaut;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-11,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 377;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (16,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 440;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-40,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 440;\n}\n);\nunicode = 733;\n},\n{\nglyphname = circumflex;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (9,0);\nref = circumflexcomb;\n}\n);\nwidth = 348;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (31,0);\nref = circumflexcomb;\n}\n);\nwidth = 421;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-14,0);\nref = circumflexcomb;\n}\n);\nwidth = 396;\n}\n);\nunicode = 710;\n},\n{\nglyphname = caron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (9,0);\nref = caroncomb;\n}\n);\nwidth = 348;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (31,0);\nref = caroncomb;\n}\n);\nwidth = 421;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-14,0);\nref = caroncomb;\n}\n);\nwidth = 396;\n}\n);\nunicode = 711;\n},\n{\nglyphname = breve;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-15,0);\nref = brevecomb;\n}\n);\nwidth = 324;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (126,0);\nref = brevecomb;\n}\n);\nwidth = 600;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-41,0);\nref = brevecomb;\n}\n);\nwidth = 329;\n}\n);\nunicode = 728;\n},\n{\nglyphname = ring;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (17,0);\nref = ringcomb;\n}\n);\nwidth = 333;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-38,0);\nref = ringcomb;\n}\n);\nwidth = 237;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-55,0);\nref = ringcomb;\n}\n);\nwidth = 237;\n}\n);\nunicode = 730;\n},\n{\nglyphname = tilde;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-18,0);\nref = tildecomb;\n}\n);\nwidth = 351;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (107,0);\nref = tildecomb;\n}\n);\nwidth = 601;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-44,0);\nref = tildecomb;\n}\n);\nwidth = 389;\n}\n);\nunicode = 732;\n},\n{\nglyphname = macron;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (9,0);\nref = macroncomb;\n}\n);\nwidth = 364;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-31,0);\nref = macroncomb;\n}\n);\nwidth = 359;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-32,0);\nref = macroncomb;\n}\n);\nwidth = 346;\n}\n);\nunicode = 175;\n},\n{\nglyphname = cedilla;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (7,0);\nref = cedillacomb;\n}\n);\nwidth = 298;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-35,0);\nref = cedillacomb;\n}\n);\nwidth = 247;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-44,0);\nref = cedillacomb;\n}\n);\nwidth = 262;\n}\n);\nunicode = 184;\n},\n{\nglyphname = ogonek;\nlastChange = \"2025-01-01 08:47:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-9,0);\nref = ogonekcomb;\n}\n);\nwidth = 263;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-27,0);\nref = ogonekcomb;\n}\n);\nwidth = 215;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-46,0);\nref = ogonekcomb;\n}\n);\nwidth = 191;\n}\n);\nunicode = 731;\n}\n);\ninstances = (\n{\naxesValues = (\n300\n);\ninstanceInterpolations = {\nm01 = 1;\n};\nisItalic = 1;\nname = \"Light Italic\";\nweightClass = 300;\n},\n{\naxesValues = (\n400\n);\ninstanceInterpolations = {\nm002 = 1;\n};\nisItalic = 1;\nname = Italic;\n},\n{\naxesValues = (\n500\n);\ninstanceInterpolations = {\nm002 = 0.66667;\nm003 = 0.33333;\n};\nisItalic = 1;\nname = \"Medium Italic\";\nweightClass = 500;\n},\n{\naxesValues = (\n600\n);\ninstanceInterpolations = {\nm002 = 0.33333;\nm003 = 0.66667;\n};\nisItalic = 1;\nname = \"SemiBold Italic\";\nweightClass = 600;\n},\n{\naxesValues = (\n700\n);\ninstanceInterpolations = {\nm003 = 1;\n};\nisBold = 1;\nisItalic = 1;\nname = \"Bold Italic\";\nweightClass = 700;\n}\n);\nkerningLTR = {\nm01 = {\n\"@MMK_L_A\" = {\n\"@MMK_R_A\" = 50;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = -20;\n\"@MMK_R_o\" = -10;\nJ = 20;\nT = -30;\nX = 30;\nY = -30;\nZ = 40;\nquestion = -10;\nquotedblright = -80;\nquoteright = -80;\nv = -23;\nw = -29;\nx = 10;\ny = -17;\n};\n\"@MMK_L_B\" = {\n\"@MMK_R_O\" = 10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\nN = 10;\nb = -10;\nh = -10;\ni = -10;\nj = -10;\nk = -10;\nl = -10;\np = -10;\nperiod = -20;\nquotedblright = -10;\nr = -6;\nu = -13;\nw = -10;\nx = -10;\n};\n\"@MMK_L_E\" = {\n\"@MMK_R_A\" = 0;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -57;\nJ = 10;\nZ = 10;\naacute = -47;\nacircumflex = -56;\nadieresis = -72;\nagrave = -34;\naring = -49;\natilde = -58;\nbraceright = 20;\nbracketright = 20;\neacute = -58;\necircumflex = -58;\nedieresis = -58;\negrave = -58;\nf = -20;\niacute = -50;\nicircumflex = -50;\nigrave = -50;\noacute = -58;\nocircumflex = -58;\nodieresis = -61;\nograve = -58;\notilde = -58;\nparenright = 10;\nperiod = 0;\nr = -48;\nu = -40;\nuacute = -58;\nucircumflex = -58;\nudieresis = -58;\nugrave = -58;\nv = -20;\nw = -20;\ny = -34;\nydieresis = -58;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_A\" = -90;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -80;\nD = -10;\nH = -20;\nJ = -80;\nL = -20;\nS = -30;\nb = -20;\nbackslash = 20;\nbraceright = 20;\ncomma = -100;\nf = -20;\nh = -10;\ni = -30;\nj = -30;\nk = -10;\nm = -40;\nn = -40;\np = -50;\nparenright = 10;\nperiod = -120;\nr = -50;\ns = -50;\nt = -20;\nu = -50;\nw = -20;\nx = -30;\ny = -30;\nz = -30;\n};\n\"@MMK_L_G\" = {\n\"@MMK_R_A\" = 40;\nLslash = 10;\nX = 10;\nbraceright = 20;\nbracketright = 20;\nparenright = 30;\n};\n\"@MMK_L_O\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_B\" = 10;\n\"@MMK_R_E\" = 10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_a\" = -10;\nI = -30;\nJ = 10;\nM = 0;\nS = 10;\nX = -10;\nY = -20;\nbraceright = 20;\ncomma = -50;\ni = -10;\nj = -20;\nk = -10;\nm = -10;\nn = -10;\np = -20;\nperiod = -40;\nquotedblright = -10;\nquoteright = -30;\nu = -10;\nx = -10;\n};\n\"@MMK_L_Q\" = {\nparenright = 20;\nperiod = -30;\nquotedblright = -30;\nquoteright = -30;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a2\" = -80;\nI = 10;\nJ = -40;\nL = 10;\nY = 20;\nZ = 20;\nbackslash = 50;\nbraceright = 30;\nbracketright = 30;\ncolon = -20;\ncomma = -100;\nhyphen = -50;\nicircumflex = 20;\nigrave = 50;\nimacron = 50;\nitilde = 30;\nm = -40;\nn = -30;\np = -20;\nparenright = 20;\nperiod = -80;\nquoteright = 40;\nsemicolon = -20;\nubreve = -30;\nv = -30;\nx = -20;\n};\n\"@MMK_L_Uhorn\" = {\n\"@MMK_R_O\" = 0;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_A\" = -30;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -59;\n\"@MMK_R_a2\" = -30;\n\"@MMK_R_o\" = -65;\nJ = -40;\naacute = -20;\nabreve = -40;\nacircumflex = -30;\nadieresis = -20;\nagrave = -30;\naring = -20;\natilde = -30;\nbackslash = 50;\nbraceright = 30;\nbracketright = 30;\ncolon = -60;\ncomma = -60;\neacute = -30;\necircumflex = -30;\nedieresis = -20;\negrave = -20;\nhyphen = -20;\ni = -20;\nicircumflex = 48;\nidieresis = 48;\nigrave = 48;\nm = -30;\nn = -30;\noacute = -30;\nocircumflex = -30;\nodieresis = -30;\nograve = -30;\nohornacute = -50;\notilde = -30;\np = -30;\nparenright = 30;\nperiod = -60;\nquoteright = 50;\nr = -45;\ns = -40;\nu = -40;\nv = -16;\ny = -17;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_T\" = -60;\n\"@MMK_R_V\" = -20;\nY = -40;\nbracketright = -20;\ncomma = -30;\nemdash = 20;\nendash = 20;\nf = -10;\ni = -10;\nj = -20;\nl = -10;\nlslash = 30;\nparenright = 10;\nperiod = -30;\nquestion = -10;\nquotedblright = -80;\nquoteright = -30;\ns = 10;\nslash = 10;\nw = -10;\nx = -10;\n};\n\"@MMK_L_w\" = {\nnhookretroflex = -10;\n};\nC = {\nJ = 10;\nbraceright = 20;\nparenright = 10;\nquotedblright = 20;\nquoteright = 20;\n};\nH = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nD = -10;\ni = -10;\nj = -10;\nm = -10;\nn = -10;\np = -20;\nperiod = -50;\n};\nI = {\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = 10;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nJ = -10;\nbackslash = 50;\nf = -30;\nquoteright = 10;\nu = -20;\nv = -20;\nw = -20;\ny = -30;\nz = 10;\n};\nJ = {\n\"@MMK_R_V\" = 20;\nL = 0;\nX = 10;\nY = 20;\nZ = 10;\nbackslash = 50;\nbraceright = 30;\nperiod = -30;\nquotedblright = 20;\nquoteright = 20;\n};\nK = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nP = 10;\nZ = 20;\nbackslash = 50;\nbraceright = 20;\nidieresis = 23;\nigrave = 25;\nsemicolon = 20;\nv = -23;\nw = -19;\ny = -21;\n};\nL = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = -50;\n\"@MMK_R_V\" = -30;\nU = -20;\nX = 10;\nY = -80;\nZ = 20;\nbraceright = 20;\nbracketright = 20;\ncolon = 20;\nemdash = -40;\nendash = -30;\nhyphen = -40;\nparenright = 20;\nquotedblright = -60;\nquoteright = -100;\nsemicolon = 20;\nv = -20;\nw = -30;\nx = 20;\ny = -40;\n};\nLslash = {\n\"@MMK_R_A\" = 50;\n\"@MMK_R_O\" = -40;\nU = -20;\nY = -80;\n};\nM = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nD = -10;\n};\nN = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\np = -10;\n};\nP = {\n\"@MMK_R_A\" = -45;\n\"@MMK_R_a\" = -27;\n\"@MMK_R_a2\" = -20;\n\"@MMK_R_o\" = -24;\nJ = -50;\nbraceright = 10;\ncomma = -150;\nperiod = -120;\nquotedblright = 20;\n};\nR = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nD = -10;\nf = -10;\nquotedblright = -10;\nu = -20;\nw = -20;\ny = -10;\n};\nS = {\nL = 10;\nquoteright = 30;\nw = -10;\n};\nT = {\n\"@MMK_R_A\" = -40;\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -80;\naacute = -60;\nacircumflex = -60;\nadieresis = -60;\nagrave = -60;\naring = -60;\natilde = -60;\neacute = -60;\necircumflex = -60;\nedieresis = -60;\negrave = -60;\ni = -12;\nidieresis = 30;\nidotless = -14;\noacute = -60;\nocircumflex = -60;\nodieresis = -60;\nograve = -60;\notilde = -60;\nr = -60;\ns = -68;\nu = -60;\nuacute = -60;\nucircumflex = -60;\nudieresis = -60;\nugrave = -60;\nuhorn = -60;\nw = -60;\ny = -60;\n};\nU = {\n\"@MMK_R_A\" = -14;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nD = -10;\nX = -10;\nbackslash = 40;\ncolon = -20;\ncomma = -50;\nperiod = -30;\n};\nX = {\n\"@MMK_R_A\" = 30;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nperiod = 20;\nquoteright = 20;\nsemicolon = 20;\nu = -20;\nv = -20;\nw = -20;\n};\nY = {\n\"@MMK_R_A\" = -30;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = 40;\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -70;\nJ = -80;\naacute = -60;\nacircumflex = -30;\nadieresis = -30;\nagrave = -30;\naring = -30;\natilde = -30;\nbackslash = 50;\nbraceright = 30;\nbracketright = 30;\ncolon = -30;\ncomma = -120;\neacute = -30;\necircumflex = -30;\nedieresis = -30;\negrave = -30;\nhyphen = -50;\nicircumflex = 50;\nidieresis = 50;\nidotless = -6;\nigrave = 50;\nm = -30;\nn = -30;\noacute = -60;\nocircumflex = -60;\nodieresis = -60;\nograve = -60;\notilde = -60;\np = -60;\nparenright = 30;\nperiod = -150;\nquotedblbase = -70;\nquoteright = 60;\nr = -40;\ns = -40;\nsemicolon = -20;\nu = -40;\nuacute = -60;\nw = -50;\nx = -30;\nz = -20;\n};\nZ = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_E\" = -20;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nY = 20;\nbackslash = 50;\nbraceright = 20;\nbracketright = 20;\nparenright = 20;\nquoteright = 30;\n};\na = {\nbraceright = 20;\nbracketright = 20;\nj = -10;\nl = 10;\nparenright = 30;\ns = 20;\nslash = 20;\nz = 20;\n};\nadieresis = {\ngermandbls = 20;\n};\nb = {\nf = -20;\nj = -10;\nperiod = -20;\nw = -20;\ny = -10;\n};\nbackslash = {\n\"@MMK_R_A\" = 30;\n\"@MMK_R_a\" = 40;\nj = 50;\np = 40;\ny = 50;\nz = 20;\n};\nbraceleft = {\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_o\" = -30;\nY = 30;\nZ = 20;\nf = -20;\nj = 20;\nm = -10;\nn = -10;\nw = -20;\n};\nbracketleft = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -30;\nY = 30;\nZ = 20;\nj = 30;\nu = -20;\n};\nc = {\nparenright = 20;\nquoteright = -20;\ny = 10;\n};\ncaroncomb = {\n\"@MMK_R_a\" = -60;\n\"@MMK_R_a2\" = -100;\nu = -60;\n};\ncomma = {\nX = 20;\nx = 20;\n};\nd = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_a\" = -20;\nbraceright = 30;\nbracketright = 20;\nhyphen = -20;\nparenright = 30;\nslash = 20;\nw = -10;\nx = 20;\nz = 20;\n};\ndcaron = {\n\"@MMK_R_a\" = -50;\n\"@MMK_R_o\" = -50;\na.ss01 = -40;\nn = -50;\ns = -40;\nu = -40;\n};\ndegree = {\n\"@MMK_R_O\" = -40;\n\"@MMK_R_o\" = -60;\n};\neight = {\ndegree = -30;\neight = -20;\nfive = -30;\nfour = -20;\nnine = -40;\none = -20;\npercent = -20;\nseven = -70;\nsix = -50;\nthree = -30;\ntwo = -20;\nzero = -20;\n};\nendash = {\nspace = -150;\n};\nf = {\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nI = 20;\nY = 30;\nb = 30;\nbackslash = 60;\nbraceright = 50;\nbracketright = 60;\nexclam = 20;\nh = 20;\nk = 10;\nl = 10;\nm = 10;\nparenright = 50;\nperiod = -30;\nquotedblright = 50;\nquoteright = 70;\nt = 20;\nv = 20;\nx = 20;\ny = 20;\nz = 20;\n};\nfive = {\ndegree = -10;\nnine = -30;\n};\nfour = {\ndegree = -50;\nnine = -30;\nordfeminine = -30;\npercent = -40;\nseven = -20;\nzero = -20;\n};\ng = {\n\"@MMK_R_o\" = 10;\nparenright = 10;\nquoteright = -10;\n};\ng.ss01 = {\nj = 40;\n};\nh = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\nh = -10;\nj = -20;\nk = -10;\nquotedblright = -80;\nquoteright = -50;\nu = -20;\nw = -10;\n};\nhyphen = {\nf = -20;\n};\ni = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -30;\nD = -20;\nj = -20;\np = -10;\nquoteright = 20;\nspace = 0;\n};\niacute = {\nl = 20;\n};\nicircumflex = {\nl = 20;\n};\nidieresis = {\nl = 20;\n};\nj = {\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -20;\nD = -20;\nb = 10;\nbraceright = 20;\ni = -20;\nquoteright = 20;\ny = 10;\n};\nk = {\nb = 10;\nk = 10;\nl = 10;\nparenright = 10;\nr = 10;\n};\nl = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\ni = -10;\nicircumflex = 20;\nidieresis = 20;\nquoteright = 10;\nv = 10;\n};\nlcaron = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -60;\na.ss01 = -50;\nn = -60;\ns = -60;\nu = -60;\n};\nlslash = {\nw = 20;\ny = 20;\n};\nm = {\n\"@MMK_R_o\" = -10;\nf = -20;\nquotedblright = -80;\nquoteright = -70;\nw = -20;\ny = -20;\n};\nn = {\n\"@MMK_R_a\" = -10;\nf = -20;\nperiod = -20;\nquotedblright = -80;\nquoteright = -40;\nw = -10;\n};\nnhookretroflex = {\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\nj = 20;\np = 30;\nx = 20;\n};\nnine = {\ncomma = -100;\neight = -20;\nfive = -50;\nfour = -50;\nnine = -20;\none = -20;\nperiod = -90;\nseven = -50;\nsix = -50;\nthree = -30;\ntwo = -30;\nzero = -10;\n};\nohorn = {\ni = 20;\n};\nohornacute = {\ni = 20;\n};\none = {\ndegree = -90;\neight = -50;\nfive = -30;\nfour = -50;\nnine = -50;\nordfeminine = -80;\nordmasculine = -50;\npercent = -60;\nseven = -50;\nsix = -30;\nthree = -30;\nzero = -50;\n};\nparenleft = {\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_o\" = -20;\nY = 30;\nZ = 20;\neight = -10;\nj = 30;\n};\nperiod = {\nX = 50;\nx = 20;\n};\nq = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\nbraceright = 30;\nj = 10;\nk = -10;\nm = -10;\nn = -10;\nperiod = -20;\nquotedblright = -20;\nslash = 20;\nu = -10;\nw = -10;\n};\nquestiondown = {\n\"@MMK_R_o\" = -30;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -90;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -40;\nJ = -70;\nm = -20;\n};\nquoteleft = {\n\"@MMK_R_A\" = -80;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nJ = -50;\nY = 40;\nZ = 30;\ns = -10;\n};\nquoteright = {\n\"@MMK_R_O\" = -50;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -60;\n\"@MMK_R_o\" = -60;\nJ = -80;\nY = 20;\nj = 20;\nk = 20;\nn = -30;\np = -20;\ns = -80;\nu = -30;\nw = -30;\nz = -30;\n};\nr = {\nb = 10;\nbraceright = 20;\ncomma = -80;\nf = 20;\nl = 10;\nperiod = -80;\nquoteright = 40;\nt = 20;\n};\ns = {\nbraceright = 10;\nslash = 10;\n};\nseven = {\ncomma = -120;\neight = -30;\nfive = -40;\nfour = -60;\nnine = -30;\none = -10;\nordfeminine = 10;\nparenright = 20;\nperiod = -120;\nsix = -60;\ntwo = -20;\n};\nsix = {\ndegree = -40;\nfive = -30;\nfour = -20;\nnine = -50;\none = -20;\npercent = -30;\nseven = -80;\nsix = -30;\ntwo = -30;\nzero = 10;\n};\nslash = {\n\"@MMK_R_T\" = 40;\n\"@MMK_R_V\" = 50;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\nU = 30;\nY = 50;\nZ = 50;\nb = 20;\n};\nspace = {\n\"@MMK_R_A\" = -2;\n\"@MMK_R_V\" = -30;\n};\nt = {\n\"@MMK_R_a\" = 10;\nslash = 20;\n};\ntcaron = {\n\"@MMK_R_o\" = -20;\nn = -20;\n};\nthree = {\ndegree = -10;\nordfeminine = -10;\n};\ntwo = {\neight = -50;\nfive = -30;\nfour = -50;\nnine = -30;\nordfeminine = -20;\npercent = -10;\nseven = -50;\nsix = -50;\nthree = -20;\nzero = -20;\n};\nu = {\n\"@MMK_R_a\" = -20;\nbraceright = 10;\nbracketright = -20;\nf = -20;\nperiod = -20;\nquoteright = -30;\n};\nuhorn = {\nohorn = -30;\nohorndotbelow = -20;\n};\nv = {\n\"@MMK_R_o\" = -10;\ncomma = -60;\nperiod = -60;\nquoteright = 20;\n};\nw = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\ncomma = -70;\nf = -10;\nhyphen = -20;\nj = -10;\nlslash = 20;\np = -10;\nperiod = -70;\nquotedblright = -10;\ns = -10;\nspace = -11;\nu = -10;\n};\nx = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nexclam = 20;\nnhookretroflex = -10;\nslash = 20;\n};\ny = {\n\"@MMK_R_T\" = -50;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\ncomma = -100;\nlslash = 20;\nperiod = -100;\nquoteright = 30;\n};\nz = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\nperiod = -20;\n};\n};\nm002 = {\n\"@MMK_L_A\" = {\n\"@MMK_R_A\" = 50;\n\"@MMK_R_E\" = 10;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -20;\nJ = 10;\nX = 20;\nY = -50;\nZ = 10;\nbracketright = -30;\ncomma = 20;\nquestion = -10;\nquotedblright = -50;\nquoteright = -70;\ns = 10;\nslash = 50;\nv = -10;\nw = -20;\nx = 30;\nz = 10;\n};\n\"@MMK_L_B\" = {\n\"@MMK_R_T\" = -60;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\nY = -20;\nZ = 10;\nbackslash = 20;\nbraceright = -10;\nbracketright = -40;\ncomma = -20;\nh = -10;\nicircumflex = 10;\nigrave = 10;\nj = -10;\nn = -10;\np = -10;\nperiod = -30;\nquestion = -10;\nquotedblright = -10;\nw = -20;\n};\n\"@MMK_L_E\" = {\n\"@MMK_R_A\" = 0;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -30;\nP = 10;\nX = 20;\nb = -10;\nbackslash = 40;\nicircumflex = 50;\nidieresis = 50;\nigrave = 50;\nm = -10;\nperiod = -20;\nquotedblright = 10;\nslash = 40;\nu = -30;\nudieresis = -20;\nv = -20;\nw = -30;\nx = 10;\ny = -20;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_A\" = -70;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_a\" = -60;\n\"@MMK_R_o\" = -60;\nJ = -80;\nbackslash = 50;\ncomma = -100;\ni = -20;\nj = -30;\nk = -10;\nm = -30;\nn = -40;\np = -40;\nperiod = -100;\nr = -40;\ns = -50;\nu = -40;\nv = -30;\nw = -30;\nx = -20;\ny = 0;\nz = -20;\n};\n\"@MMK_L_G\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_T\" = -70;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\nK = 10;\nY = -20;\nbracketright = -60;\nl = 20;\nx = 10;\n};\n\"@MMK_L_K\" = {\n\"@MMK_R_quoteright\" = -20;\nbackslash = 30;\nslash = 30;\n};\n\"@MMK_L_O\" = {\n\"@MMK_R_A\" = -10;\n\"@MMK_R_T\" = -70;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -30;\nI = -20;\nY = -40;\nbackslash = 10;\nbraceright = -20;\nbracketright = -60;\ncomma = -30;\nemdash = 20;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nj = -20;\nk = -20;\nn = -10;\np = -10;\nperiod = -60;\nquotedblright = -10;\nu = -20;\n};\n\"@MMK_L_Q\" = {\n\"@MMK_R_T\" = -80;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -30;\nY = -20;\nquestion = -10;\nquotedblright = -20;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_a2\" = -80;\n\"@MMK_R_colon\" = -40;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_u\" = -70;\n\"@MMK_R_v\" = -40;\nJ = -80;\nS = -10;\ncomma = -100;\nemdash = -20;\nfour = -50;\nh = -10;\nhyphen = -70;\ni = -30;\niacute = -10;\nimacron = 40;\nitilde = 40;\nj = -40;\nn = -50;\np = -60;\nperiod = -100;\nslash = -40;\nubreve = -70;\nx = -30;\nz = -30;\n};\n\"@MMK_L_Uhorn\" = {\n\"@MMK_R_O\" = -40;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_.\" = -100;\n\"@MMK_R_A\" = -30;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_a2\" = -60;\n\"@MMK_R_colon\" = -20;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_w\" = -20;\nD = 10;\nJ = -50;\nLslash = -10;\nX = 30;\nY = 10;\nabreve = -50;\nbackslash = 100;\nbracketright = -20;\ncolon = -30;\nhyphen = -30;\nicircumflex = 50;\nidieresis = 50;\nigrave = 50;\np = -20;\nperiod = -100;\nr = -20;\ns = -20;\nslash = -40;\nu = -20;\n};\n\"@MMK_L_i\" = {\n\"@MMK_R_quoteright\" = 10;\nbracketright = -50;\n};\n\"@MMK_L_n\" = {\n\"@MMK_R_quoteright\" = -40;\nbracketright = -80;\nquestion = -20;\nquotedblright = -50;\nslash = 20;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_T\" = -100;\n\"@MMK_R_V\" = -30;\n\"@MMK_R_quoteright\" = -60;\nY = -50;\nb = -10;\nbraceright = -20;\nbracketright = -60;\ncomma = -30;\nf = -10;\nh = -10;\nj = -30;\nlslash = 20;\nm = -10;\nperiod = -40;\nquestion = -20;\nquotedblright = -40;\nr = -10;\nw = -30;\n};\n\"@MMK_L_quoteleft\" = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_o\" = -60;\nD = -10;\nJ = -100;\np = -20;\nr = -20;\ns = -20;\nu = -30;\n};\n\"@MMK_L_quoteright\" = {\n\"@MMK_R_A\" = -70;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_n\" = -50;\n\"@MMK_R_o\" = -80;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\ns = -80;\nu = -50;\nz = -10;\n};\n\"@MMK_L_u\" = {\n\"@MMK_R_o\" = -50;\n};\n\"@MMK_L_uhorn\" = {\n\"@MMK_R_o\" = -50;\n};\n\"@MMK_L_v\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = 10;\n\"@MMK_R_v\" = -30;\nX = 20;\nY = 20;\nZ = 20;\nbraceright = -30;\nbracketright = -40;\nperiod = -20;\nslash = 0;\n};\n\"@MMK_L_w\" = {\n\"@MMK_R_quoteright\" = 0;\nbraceright = -60;\nbracketright = -80;\ncomma = -70;\nendash = -10;\nperiod = -60;\nslash = -20;\n};\nAE = {\n\"@MMK_R_A\" = 10;\n};\nC = {\n\"@MMK_R_T\" = -40;\n\"@MMK_R_o\" = -10;\nbackslash = 30;\nbraceright = -20;\nbracketright = -30;\ncomma = -30;\nj = -20;\nperiod = -40;\nquotedblright = 10;\nx = 10;\ny = 20;\n};\nH = {\n\"@MMK_R_T\" = -30;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -20;\nbackslash = 30;\nbracketright = -50;\nj = -20;\nperiod = -30;\nu = -20;\n};\nI = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nbackslash = 50;\nbracketright = -20;\np = -20;\nperiod = -20;\nr = -20;\nslash = 20;\nu = -30;\nv = -20;\nw = -30;\ny = -30;\n};\nJ = {\n\"@MMK_R_T\" = -30;\n\"@MMK_R_o\" = -10;\nY = 20;\nbackslash = 30;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nm = -10;\np = -10;\nperiod = -50;\nslash = 20;\nu = -10;\nv = 10;\ny = 10;\n};\nK = {\n\"@MMK_R_a\" = -25;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_w\" = -20;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nj = -10;\nu = -15;\nv = -30;\nw = -30;\nx = 20;\n};\nL = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -30;\n\"@MMK_R_quoteright\" = -100;\n\"@MMK_R_v\" = -10;\nY = -60;\nZ = 30;\nendash = -50;\nhyphen = -50;\nquestion = -20;\nquotedblright = -100;\nslash = 40;\nw = -30;\nx = 30;\ny = -10;\nz = 10;\n};\nLslash = {\n\"@MMK_R_A\" = 40;\n\"@MMK_R_O\" = -30;\nOacute = -20;\nU = -20;\nY = -70;\n};\nM = {\n\"@MMK_R_T\" = -40;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -20;\nbraceright = -10;\nbracketright = -40;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nperiod = -30;\nslash = 10;\n};\nN = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -40;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_w\" = -10;\nb = -10;\nbracketright = -30;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nj = -10;\nperiod = -40;\n};\nP = {\n\"@MMK_R_A\" = -40;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_v\" = 20;\nJ = -50;\nbracketright = -40;\ncomma = -120;\nfour = -20;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nj = -20;\nperiod = -150;\nslash = -40;\nt = 10;\nx = 10;\n};\nR = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -70;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -30;\nLslash = -20;\nbraceright = -20;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nquestion = -20;\nquotedblright = -10;\nu = -10;\nx = 10;\n};\nS = {\n\"@MMK_R_O\" = 10;\n\"@MMK_R_T\" = -30;\nJ = 30;\nN = 20;\nP = 10;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nparenright = 20;\nperiod = -10;\nquotedblright = -10;\n};\nT = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -100;\nicircumflex = 40;\nidieresis = 60;\nigrave = 40;\nr = -70;\ns = -80;\nu = -70;\nuhorn = -100;\nw = -70;\ny = -40;\n};\nThorn = {\nY = -20;\n};\nU = {\n\"@MMK_R_A\" = -20;\n\"@MMK_R_T\" = -40;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_quoteright\" = -20;\nbracketright = -40;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nk = -10;\np = -10;\nperiod = -50;\nv = 20;\n};\nX = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -30;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -10;\nJ = 20;\nZ = 30;\nbackslash = 50;\nbracketright = -50;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nx = 10;\n};\nY = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_T\" = -10;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_a\" = -60;\n\"@MMK_R_colon\" = -30;\n\"@MMK_R_n\" = -40;\n\"@MMK_R_o\" = -80;\nJ = -80;\nbackslash = 80;\nbracketright = -30;\ncomma = -100;\nf = -10;\nhyphen = -70;\ni = -10;\nicircumflex = 60;\nidieresis = 60;\nigrave = 70;\nj = -20;\nn = -40;\np = -50;\nperiod = -130;\nquotedblbase = -100;\nr = -50;\ns = -60;\nslash = -50;\nu = -60;\nw = -50;\n};\nZ = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_o\" = -20;\nbackslash = 60;\nicircumflex = 60;\nidieresis = 60;\nigrave = 60;\n};\na = {\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_quoteright\" = -10;\nbracketright = -40;\nj = -10;\np = -10;\nperiod = -20;\nquestion = -10;\nw = -10;\nx = 10;\nz = 10;\n};\naogonek = {\nlslash = 10;\n};\nbackslash = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = -20;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nY = -40;\nZ = 20;\nj = 50;\n};\nbraceleft = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_T\" = -10;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -60;\nD = -10;\nL = -10;\nM = -10;\nR = -20;\nS = -20;\nf = -50;\nj = 20;\nu = -50;\n};\nbracketleft = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_n\" = -50;\n\"@MMK_R_o\" = -50;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nj = 20;\nk = -20;\ns = -30;\nu = -40;\n};\nc = {\nbracketright = -50;\nw = -10;\n};\ncaroncomb = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_a2\" = -120;\nu = -70;\n};\ncomma = {\nx = 40;\n};\nd = {\ncaroncomb = -10;\nhyphen = -20;\nslash = 20;\nw = -20;\nz = 10;\n};\ndcaron = {\n\"@MMK_R_a\" = -60;\n\"@MMK_R_o\" = -60;\na.ss01 = -60;\nn = -50;\ns = -50;\nu = -50;\n};\neight = {\n\"@MMK_R_.\" = -60;\nfive = -30;\nfour = -30;\npercent = -30;\nseven = -40;\nthree = -10;\ntwo = -20;\n};\nemdash = {\n\"@MMK_R_E\" = 20;\n\"@MMK_R_T\" = -100;\n};\nendash = {\n\"@MMK_R_T\" = -70;\nspace = -100;\n};\nequal = {\nseven = -20;\n};\nf = {\n\"@MMK_R_E\" = 30;\n\"@MMK_R_V\" = 50;\nI = 10;\nY = 40;\nbackslash = 70;\nbraceright = 50;\nbracketright = 50;\ncomma = -30;\nl = 20;\np = 10;\nparenright = 50;\nperiod = -40;\nquotedblright = 50;\nquoteright = 40;\nt = 30;\nv = 40;\nx = 30;\ny = 30;\nz = 20;\n};\nfive = {\n\"@MMK_R_.\" = -80;\ndegree = -20;\nfive = -20;\nfour = -30;\ngreater = 10;\nnine = -30;\none = -20;\npercent = -40;\nseven = -20;\nthree = -20;\ntwo = -20;\n};\nfour = {\n\"@MMK_R_.\" = -50;\n\"@MMK_R_T\" = -50;\ncent = -30;\ndegree = -30;\nequal = 20;\npercent = -50;\n};\ng = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -50;\nbracketright = -90;\ncomma = -10;\np = -10;\nperiod = -40;\nw = -10;\n};\nh = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = -80;\nbracketright = -60;\nperiod = -20;\nquotedblright = -50;\nw = -25;\n};\nhyphen = {\n\"@MMK_R_T\" = -100;\n};\ni = {\nj = -30;\n};\niacute = {\nl = 50;\n};\nicircumflex = {\nl = 40;\n};\nidieresis = {\nl = 60;\n};\nigrave = {\nspace = 0;\n};\nj = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_o\" = -10;\nbracketright = -30;\nslash = 20;\nx = 20;\ny = 20;\n};\nk = {\nbracketright = -60;\nn = 10;\nslash = 20;\nv = 10;\nx = 20;\ny = 20;\nz = 10;\n};\nl = {\n\"@MMK_R_O\" = 10;\n\"@MMK_R_V\" = 30;\nbackslash = 40;\nbracketright = -40;\nicircumflex = 50;\nidieresis = 40;\nquotedblright = 10;\nt = 10;\n};\nlcaron = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -70;\na.ss01 = -70;\nn = -60;\ns = -60;\nu = -60;\n};\nlslash = {\n\"@MMK_R_o\" = 10;\nw = 20;\ny = 20;\n};\nm = {\n\"@MMK_R_o\" = -10;\nh = -10;\nt = -10;\nv = -10;\nw = -20;\n};\nn = {\n\"@MMK_R_o\" = -10;\nperiod = -20;\nw = -10;\n};\nnhookretroflex = {\n\"@MMK_R_o\" = -10;\n};\nnine = {\ncent = -20;\ncomma = -70;\nfive = -30;\nfour = -40;\nnine = -10;\nperiod = -100;\nseven = -40;\nsix = -20;\nthree = -20;\n};\none = {\n\"@MMK_R_.\" = -30;\ncent = -50;\ndegree = -80;\neight = -50;\nfive = -50;\nfour = -50;\nnine = -50;\nordfeminine = -90;\nordmasculine = -50;\npercent = -80;\nseven = -50;\nsix = -30;\nthree = -30;\nzero = -20;\n};\nparenleft = {\n\"@MMK_R_a\" = -20;\neight = -10;\nj = 20;\n};\nq = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -30;\nj = 30;\nslash = 40;\nx = 10;\ny = 20;\n};\nquestiondown = {\n\"@MMK_R_o\" = -50;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -80;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -60;\nJ = -80;\nS = -20;\np = -10;\ns = -30;\nt = 10;\nu = -10;\n};\nquoteleft = {\n\"@MMK_R_A\" = -80;\n};\nr = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = 20;\nbackslash = 30;\ncomma = -80;\nf = 20;\nperiod = -100;\nquotedblright = 20;\nt = 30;\nv = 20;\nw = 20;\nx = 20;\ny = 40;\nz = 10;\n};\nrupeeIndian = {\nnine = 20;\nseven = 20;\n};\ns = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -40;\nJ = 20;\nbracketright = -60;\nj = -30;\nlslash = 10;\nquestion = -10;\n};\nseven = {\ncent = -30;\ncomma = -80;\ndegree = 30;\nfour = -50;\nordfeminine = 20;\nparenright = 20;\nperiod = -120;\nsix = -30;\nthree = 20;\n};\nsix = {\n\"@MMK_R_.\" = -30;\ndegree = -40;\nfive = -30;\nfour = -30;\nnine = -30;\none = -20;\npercent = -60;\nseven = -50;\ntwo = -20;\n};\nslash = {\n\"@MMK_R_E\" = 10;\n\"@MMK_R_T\" = 40;\n\"@MMK_R_V\" = 50;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -50;\n\"@MMK_R_w\" = -20;\nI = 20;\nJ = -50;\nK = 20;\nM = 20;\nP = 20;\nX = 70;\nY = 70;\nZ = 40;\n};\nt = {\n\"@MMK_R_o\" = -10;\nf = 0;\nl = 10;\nquotedblright = 10;\nv = 10;\nx = 20;\ny = 10;\n};\ntcaron = {\n\"@MMK_R_a\" = -20;\na.ss01 = -20;\nh = 20;\n};\nthree = {\n\"@MMK_R_.\" = -50;\ncent = -30;\ndegree = -10;\npercent = -10;\n};\ntwo = {\n\"@MMK_R_.\" = -30;\ncent = -30;\ndegree = -10;\neight = -20;\nfive = -30;\nfour = -50;\nnine = -10;\npercent = -20;\nseven = -50;\nsix = -30;\nthree = -30;\nx = 20;\nzero = -10;\n};\nu = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -50;\nD = -20;\nbraceright = -20;\nbracketright = -60;\nj = -20;\nperiod = -20;\nquotedblright = -20;\n};\nuhorn = {\nn = -30;\nohorn = -50;\n};\nuhorntilde = {\nn = -30;\n};\nv = {\nf = 20;\nj = -20;\nt = 20;\nv = 30;\nw = 10;\nx = 20;\ny = 30;\n};\nw = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -30;\nj = -10;\nlslash = 10;\np = -10;\nr = -10;\nt = 10;\nx = 10;\n};\nx = {\n\"@MMK_R_A\" = 40;\n\"@MMK_R_o\" = -10;\nJ = 20;\nbracketright = -30;\nl = 20;\np = 10;\nt = 20;\nv = 20;\ny = 10;\n};\ny = {\n\"@MMK_R_T\" = -60;\n\"@MMK_R_o\" = -10;\ncomma = -80;\nk = -10;\nlslash = 20;\nperiod = -100;\nr = -10;\nt = 20;\nv = 30;\n};\nz = {\n\"@MMK_R_o\" = -10;\n};\nzero = {\n\"@MMK_R_.\" = -80;\ndegree = -10;\npercent = -20;\n};\n};\nm003 = {\n\"@MMK_L_.\" = {\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -60;\nX = 30;\nY = -80;\nZ = 50;\n};\n\"@MMK_L_0\" = {\nicircumflex = 50;\nidieresis = 50;\nigrave = 30;\n};\n\"@MMK_L_A\" = {\n\"@MMK_R_A\" = 80;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -40;\n\"@MMK_R_o\" = -10;\nJ = 40;\nLslash = -10;\nX = 20;\nY = -50;\nZ = 20;\nbackslash = -20;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nquestion = -10;\nquestiondown = 20;\nquotedblright = -50;\nquoteright = -60;\nslash = 30;\nt = -10;\nw = -30;\nx = 10;\n};\n\"@MMK_L_B\" = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_T\" = -10;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_w\" = -10;\nJ = 30;\nY = -20;\nZ = 10;\nbackslash = 20;\nicircumflex = 30;\nidieresis = 30;\nigrave = 40;\n};\n\"@MMK_L_E\" = {\n\"@MMK_R_A\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\nJ = 30;\nX = 20;\nZ = 20;\nZdotaccent = 20;\nbackslash = 50;\nicircumflex = 70;\nidieresis = 100;\nigrave = 70;\nparenright = 20;\nperiod = 0;\nr = -30;\nslash = 20;\nu = -30;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_.\" = -100;\n\"@MMK_R_A\" = -70;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_T\" = 10;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_w\" = -20;\nJ = -70;\nY = 20;\nZ = 30;\nbackslash = 60;\nparenright = 10;\nr = -20;\ns = -20;\nu = -20;\n};\n\"@MMK_L_G\" = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_w\" = -20;\nY = -20;\nbackslash = 20;\n};\n\"@MMK_L_K\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_v\" = -20;\nbackslash = 60;\nx = 20;\nz = 10;\n};\n\"@MMK_L_O\" = {\n\"@MMK_R_.\" = -40;\n\"@MMK_R_A\" = -10;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_w\" = -20;\nI = -10;\nJ = 10;\nX = -10;\nY = -40;\nbackslash = 30;\nicircumflex = 40;\nidieresis = 40;\nigrave = 20;\nquestion = -10;\nquestiondown = -20;\nslash = -20;\n};\n\"@MMK_L_Q\" = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_O\" = 10;\nJ = 20;\nLslash = 10;\nM = 10;\nY = -10;\nZ = 30;\nslash = 30;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_.\" = -80;\n\"@MMK_R_A\" = -50;\n\"@MMK_R_E\" = -20;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_a2\" = -70;\n\"@MMK_R_n\" = -50;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_v\" = -40;\nJ = -80;\nLslash = -30;\nbackslash = 60;\nbraceright = 30;\nbracketright = -20;\ncomma = -100;\nfour = -40;\nhyphen = -40;\nimacron = 80;\nitilde = 80;\nn = -50;\np = -50;\nslash = -40;\nubreve = -30;\nx = -20;\ny = -20;\nz = -20;\n};\n\"@MMK_L_Uhorn\" = {\n\"@MMK_R_O\" = -50;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_.\" = -50;\n\"@MMK_R_A\" = -40;\n\"@MMK_R_E\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 50;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_a2\" = -50;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -60;\n\"@MMK_R_quoteright\" = 30;\n\"@MMK_R_w\" = -30;\nJ = -40;\nLslash = -20;\nU = 20;\nX = 50;\nY = 40;\nZ = 20;\nabreve = -30;\nbackslash = 100;\nbraceright = 40;\nbracketright = -20;\ncolon = -20;\nicircumflex = 70;\nidieresis = 100;\nigrave = 70;\np = -10;\nquestiondown = -70;\nr = -30;\ns = -50;\nslash = -20;\nu = -30;\nx = -10;\nz = -20;\n};\n\"@MMK_L_i\" = {\n\"@MMK_R_o\" = -5;\n\"@MMK_R_quoteright\" = 20;\nbackslash = 40;\nbracketright = -10;\nslash = 10;\n};\n\"@MMK_L_n\" = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -40;\n\"@MMK_R_w\" = -40;\nbracketright = -30;\nf = -20;\nk = -10;\nparenright = -10;\nquestion = -30;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_V\" = -30;\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_i\" = -10;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nH = -20;\nJ = 20;\nY = -80;\nb = -20;\nbracketright = -30;\nf = -20;\nh = -10;\nk = -20;\nl = -10;\nlslash = 40;\nparenright = -20;\nquestion = -30;\nr = -20;\ns = -10;\nx = -20;\n};\n\"@MMK_L_quoteleft\" = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_o\" = -20;\n};\n\"@MMK_L_quoteright\" = {\n\"@MMK_R_A\" = -70;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_o\" = -60;\n\"@MMK_R_w\" = -20;\nJ = -80;\nr = -30;\ns = -80;\nu = -20;\n};\n\"@MMK_L_uhorn\" = {\n\"@MMK_R_o\" = -60;\n};\n\"@MMK_L_v\" = {\n\"@MMK_R_.\" = -80;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = 20;\nI = -30;\nbackslash = 20;\nbracketright = -50;\nf = 20;\nk = -20;\nparenright = -10;\nr = -10;\ns = -20;\nslash = -10;\nx = 20;\n};\n\"@MMK_L_w\" = {\n\"@MMK_R_.\" = -80;\n\"@MMK_R_colon\" = -30;\n\"@MMK_R_n\" = -30;\nI = -30;\nJ = -20;\nb = -20;\nbracketright = -70;\nh = -20;\nk = -40;\nl = -20;\nparenright = -10;\nr = -20;\ns = -30;\nu = -10;\n};\nAE = {\n\"@MMK_R_A\" = 30;\n};\nC = {\nJ = 20;\nZ = 10;\nbackslash = 20;\nicircumflex = 50;\nidieresis = 50;\nigrave = 30;\nslash = 10;\n};\nH = {\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = -10;\n\"@MMK_R_w\" = -20;\nbackslash = 20;\nicircumflex = 30;\nidieresis = 50;\nigrave = 30;\nperiod = -20;\ns = -10;\nu = -20;\n};\nI = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_v\" = -30;\n\"@MMK_R_w\" = -30;\nLslash = -30;\nb = -10;\nbackslash = 40;\nbraceright = 10;\nf = -20;\nicircumflex = 40;\nidieresis = 50;\nigrave = 40;\nr = -20;\ns = -30;\nt = -10;\nu = -30;\ny = -20;\n};\nJ = {\n\"@MMK_R_.\" = -40;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_w\" = -10;\nX = 20;\nZ = 20;\nbackslash = 50;\nicircumflex = 30;\nidieresis = 50;\nigrave = 30;\n};\nK = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\nicircumflex = 30;\nidieresis = 70;\nigrave = 50;\nv = -30;\nw = -40;\n};\nL = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = -90;\n\"@MMK_R_V\" = -50;\n\"@MMK_R_quoteright\" = -40;\n\"@MMK_R_v\" = -30;\nI = 20;\nJ = 40;\nX = 30;\nY = -60;\nZ = 40;\nw = -40;\nx = 30;\n};\nLslash = {\n\"@MMK_R_A\" = 40;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -50;\n\"@MMK_R_V\" = -30;\nJ = 40;\nX = 40;\nY = -70;\nZ = 30;\n};\nM = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\nLslash = -10;\nb = -10;\nbackslash = 20;\nh = -10;\nicircumflex = 30;\nidieresis = 60;\nigrave = 30;\ns = -20;\nu = -10;\n};\nN = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_w\" = -20;\nLslash = -10;\nbackslash = 30;\nicircumflex = 20;\nidieresis = 50;\nigrave = 20;\ns = -20;\n};\nP = {\n\"@MMK_R_.\" = -120;\n\"@MMK_R_A\" = -40;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_v\" = 10;\nJ = -40;\nLslash = -10;\nbackslash = 30;\ncomma = -120;\nfour = -10;\nicircumflex = 50;\nidieresis = 60;\nigrave = 20;\ns = -10;\nslash = -30;\ny = 20;\n};\nR = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -30;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_v\" = -20;\nLslash = -20;\nU = -20;\nY = -30;\nZ = 20;\nbracketright = -50;\nicircumflex = 20;\nidieresis = 20;\nu = -20;\n};\nS = {\nJ = 10;\nLslash = 10;\nbackslash = 30;\nbracketright = -40;\nicircumflex = 30;\nidieresis = 50;\nigrave = 20;\n};\nT = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -100;\n\"@MMK_R_u\" = -50;\nicircumflex = 60;\nidieresis = 100;\nigrave = 80;\nr = -50;\ns = -70;\nu = -50;\nuhorn = -50;\nw = -60;\n};\nU = {\n\"@MMK_R_.\" = -10;\n\"@MMK_R_A\" = -10;\n\"@MMK_R_B\" = -10;\nJ = 10;\nbackslash = 40;\nbracketright = -30;\nicircumflex = 50;\nidieresis = 60;\nigrave = 40;\nslash = -30;\n};\nX = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_w\" = -50;\nJ = 20;\nLslash = -10;\nX = 40;\nY = 40;\nZ = 50;\nbackslash = 50;\nbraceright = 40;\nbracketright = -30;\nidieresis = 90;\nigrave = 50;\n};\nY = {\n\"@MMK_R_A\" = -60;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -100;\nJ = -80;\nX = 40;\nbackslash = 100;\nbraceright = 40;\nbracketright = -20;\ncomma = -130;\nhyphen = -100;\nicircumflex = 50;\nidieresis = 100;\nigrave = 60;\nn = -30;\np = -20;\nperiod = -100;\nquestiondown = -70;\nquotedblbase = -100;\nr = -50;\ns = -80;\nslash = -60;\nu = -40;\nw = -50;\n};\nZ = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_V\" = 30;\nJ = 20;\nY = 20;\nbackslash = 80;\nbraceright = 40;\nbracketright = -20;\nicircumflex = 60;\nidieresis = 90;\nigrave = 60;\n};\na = {\n\"@MMK_R_i\" = 10;\n\"@MMK_R_quoteright\" = 20;\nJ = 20;\nbracketright = -10;\nslash = 40;\nx = 20;\ny = 20;\n};\nbackslash = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_V\" = -20;\n\"@MMK_R_v\" = 40;\n\"@MMK_R_w\" = -30;\nU = -20;\nX = 10;\nY = -40;\nZ = 20;\nf = -20;\nj = 100;\np = 20;\n};\nbraceleft = {\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -20;\nX = 40;\nY = 40;\nZ = 40;\nf = -20;\nj = 80;\np = 20;\ns = -10;\n};\nbracketleft = {\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_i\" = 20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_w\" = -20;\nX = 20;\nY = 20;\nZ = 10;\nj = 80;\np = 30;\nx = 10;\n};\nc = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = 10;\n\"@MMK_R_w\" = -30;\nH = -30;\nb = -10;\nbracketright = -20;\nk = -20;\nquestion = -20;\n};\ncaroncomb = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_a2\" = -100;\nu = -70;\n};\nccaron = {\nr = -10;\n};\nd = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nbackslash = 30;\nbraceright = 20;\nslash = 20;\nx = 10;\n};\ndcaron = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -60;\na.ss01 = -70;\nn = -50;\ns = -50;\nu = -20;\n};\neight = {\ndegree = -20;\neight = -30;\nfive = -20;\nfour = -20;\nnine = -50;\none = -10;\nordfeminine = -10;\npercent = -30;\nperiod = -40;\nseven = -50;\nsix = -30;\nthree = -20;\ntwo = -10;\nzero = -10;\n};\nendash = {\nspace = -150;\n};\nf = {\n\"@MMK_R_.\" = -50;\n\"@MMK_R_v\" = 30;\n\"@MMK_R_w\" = 10;\nN = 10;\nbackslash = 60;\nbraceright = 70;\nbracketright = 60;\ni = 10;\nj = 10;\nl = 10;\np = 30;\nparenright = 60;\nquotedblright = 40;\nquoteright = 50;\nt = 30;\nu = 20;\nx = 10;\n};\nfive = {\n\"@MMK_R_.\" = -40;\nfive = -10;\nnine = -30;\npercent = -30;\nseven = -10;\n};\nfour = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_T\" = -40;\nequal = 20;\npercent = -40;\n};\ng = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_w\" = -20;\nH = -10;\nj = 40;\nr = -20;\ns = -20;\nslash = 20;\n};\ngreater = {\ntwo = -20;\n};\nguillemetright = {\nfour = 30;\n};\nh = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -40;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -20;\nb = -10;\nbracketright = -20;\nr = -10;\n};\nhyphen = {\n\"@MMK_R_O\" = 20;\n};\niacute = {\nb = 10;\nl = 40;\n};\nicircumflex = {\nl = 60;\n};\nidieresis = {\nl = 90;\n};\nj = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = 20;\nbracketright = -20;\nl = -20;\nlslash = 20;\nslash = 30;\n};\nk = {\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = 10;\nendash = -40;\nhyphen = -30;\nv = 20;\nx = 20;\nz = 10;\n};\nl = {\n\"@MMK_R_.\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_w\" = -20;\nbackslash = 30;\nbracketright = -20;\nh = -20;\nicircumflex = 60;\nidieresis = 70;\ns = -20;\n};\nlcaron = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -80;\na.ss01 = -80;\nn = -50;\ns = -60;\nu = -30;\n};\nlslash = {\n\"@MMK_R_o\" = -10;\np = 10;\nw = 20;\ny = 40;\n};\nn = {\nperiod = -20;\n};\nnhookretroflex = {\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -30;\np = 50;\n};\nnine = {\ncomma = -80;\neight = -10;\nfive = -20;\nfour = -30;\nperiod = -80;\nseven = -10;\nsix = -20;\nthree = -20;\n};\nohorn = {\nn = -50;\n};\none = {\ndegree = -80;\neight = -50;\nfive = -30;\nfour = -30;\nnine = -80;\nordfeminine = -80;\nordmasculine = -70;\npercent = -80;\nseven = -50;\nthree = -30;\nzero = -30;\n};\nparenleft = {\n\"@MMK_R_E\" = -20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -30;\nM = -10;\neight = -40;\nf = -20;\nj = 30;\nu = -20;\nx = -10;\n};\nperiod = {\nzero = -20;\n};\nq = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_i\" = -10;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = -30;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -40;\nH = -10;\nb = -20;\nf = -20;\nh = -20;\nj = 50;\nk = -20;\nl = -20;\nr = -20;\ns = -20;\nslash = 20;\nu = -10;\n};\nquestion = {\n\"@MMK_R_A\" = -40;\n};\nquestiondown = {\n\"@MMK_R_o\" = -30;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -70;\nJ = -80;\n};\nquoteleft = {\n\"@MMK_R_A\" = -50;\n};\nr = {\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = 30;\n\"@MMK_R_v\" = 30;\n\"@MMK_R_w\" = 20;\nbackslash = 30;\nbraceright = 20;\ncomma = -80;\nf = 20;\np = 10;\nperiod = -90;\nt = 30;\nx = 20;\nz = 20;\n};\ns = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -30;\nbracketright = -60;\nf = -10;\nlslash = 20;\nr = -10;\nx = -10;\n};\nseven = {\ncomma = -80;\ndegree = 30;\nfour = -40;\nordfeminine = 20;\npercent = 20;\nperiod = -90;\nseven = 30;\nsix = -20;\n};\nsix = {\n\"@MMK_R_.\" = -40;\ndegree = -40;\nfive = -20;\nnine = -50;\npercent = -50;\nseven = -30;\nsix = -10;\n};\nslash = {\n\"@MMK_R_A\" = -20;\n\"@MMK_R_E\" = 10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 60;\n\"@MMK_R_i\" = 20;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -30;\nX = 40;\nY = 50;\nZ = 40;\nb = 20;\nh = 20;\nj = 20;\ns = -20;\nu = -20;\nx = -20;\n};\nt = {\n\"@MMK_R_quoteright\" = 20;\nI = 20;\nbackslash = 20;\nbraceright = 20;\n};\ntcaron = {\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -10;\na.ss01 = -30;\ns = -20;\n};\nthree = {\n\"@MMK_R_.\" = -40;\npercent = -30;\n};\ntwo = {\ndegree = -10;\neight = -20;\nfive = -20;\nfour = -30;\nnine = -40;\nordfeminine = -10;\npercent = -40;\nseven = -20;\nsix = -20;\nthree = -20;\nx = 30;\nzero = -20;\n};\nu = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_w\" = -10;\nb = -10;\nbracketright = -20;\nf = -20;\nh = -10;\nparenright = -10;\ns = -20;\n};\nuhorn = {\nn = -50;\nohorn = -100;\n};\nuhorntilde = {\nn = -50;\n};\nv = {\n\"@MMK_R_o\" = -30;\nn = 10;\nquestiondown = -50;\nw = 20;\n};\nw = {\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nat = -10;\nx = 10;\n};\nx = {\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = 20;\nbracketright = -40;\nk = -20;\nminus = -30;\ns = -10;\nx = 20;\ny = 20;\n};\ny = {\n\"@MMK_R_T\" = -70;\ncomma = -100;\nlslash = 20;\nperiod = -110;\nquestiondown = -50;\nz = 20;\n};\nz = {\n\"@MMK_R_o\" = -20;\nk = -20;\n};\nzero = {\n\"@MMK_R_.\" = -50;\npercent = -40;\nzero = -10;\n};\n};\n};\nmetrics = (\n{\ntype = ascender;\n},\n{\ntype = \"cap height\";\n},\n{\ntype = \"x-height\";\n},\n{\ntype = baseline;\n},\n{\ntype = descender;\n},\n{\nname = \"Overshoot X\";\n},\n{\nname = \"Overshoot Base\";\n},\n{\nname = \"Overshoot Cap\";\n},\n{\ntype = \"italic angle\";\n}\n);\nproperties = (\n{\nkey = copyrights;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Copyright 2024 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)\";\n}\n);\n},\n{\nkey = designers;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Olivia King\";\n}\n);\n},\n{\nkey = designerURL;\nvalue = \"https://www.oliviaking.com\";\n},\n{\nkey = licenses;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://openfontlicense.org\";\n}\n);\n},\n{\nkey = licenseURL;\nvalue = \"https://openfontlicense.org\";\n},\n{\nkey = manufacturers;\nvalues = (\n{\nlanguage = dflt;\nvalue = \"Olivia King\";\n}\n);\n},\n{\nkey = manufacturerURL;\nvalue = \"https://www.oliviaking.com\";\n}\n);\nunitsPerEm = 1000;\nuserData = {\nGSDimensionPlugin.Dimensions = {\nm002 = {\nHH = \"80\";\nHV = \"88\";\nOH = \"80\";\nOV = \"92\";\nnV = \"84\";\nnd = \"63\";\noH = \"76\";\noV = \"84\";\ntH = \"76\";\n};\nm003 = {\nHH = \"126\";\nHV = \"146\";\nOH = \"130\";\nOV = \"154\";\nnV = \"140\";\nnd = \"100\";\noH = \"120\";\noV = \"146\";\ntH = \"120\";\n};\nm01 = {\nHH = \"56\";\nHV = \"60\";\nOH = \"56\";\nOV = \"62\";\nnV = \"56\";\nnd = \"48\";\noH = \"50\";\noV = \"58\";\ntH = \"50\";\n};\n};\n};\nversionMajor = 2;\nversionMinor = 5;\n}\n"
  },
  {
    "path": "sources/InclusiveSans.glyphs",
    "content": "{\n.appVersion = \"3260\";\n.formatVersion = 3;\nDisplayStrings = (\n\"rř\"\n);\naxes = (\n{\nname = Weight;\ntag = wght;\n}\n);\ncustomParameters = (\n{\ndisabled = 1;\nname = glyphOrder;\nvalue = (\nspace,\nexclam,\nquotesingle,\nquotedbl,\nnumbersign,\ndollar,\npercent,\nampersand,\nparenleft,\nparenright,\nasterisk,\nplus,\ncomma,\nhyphen,\nperiod,\nslash,\nzero,\none,\ntwo,\nthree,\nfour,\nfive,\nsix,\nseven,\neight,\nnine,\ncolon,\nsemicolon,\nless,\nequal,\ngreater,\nquestion,\nat,\nA,\nB,\nC,\nD,\nE,\nF,\nG,\nH,\nI,\nJ,\nK,\nL,\nM,\nN,\nO,\nP,\nQ,\nR,\nS,\nT,\nU,\nV,\nW,\nX,\nY,\nZ,\nbracketleft,\nbackslash,\nbracketright,\nasciicircum,\nunderscore,\ngrave,\na,\nb,\nc,\nd,\ne,\nf,\ng,\nh,\ni,\nj,\nk,\nl,\nm,\nn,\no,\np,\nq,\nr,\ns,\nt,\nu,\nv,\nw,\nx,\ny,\nz,\nbraceleft,\nbar,\nbraceright,\nasciitilde,\nexclamdown,\ncent,\nsterling,\ncurrency,\nyen,\nbrokenbar,\nsection,\ndieresis,\ncopyright,\nordfeminine,\nguillemetleft,\nlogicalnot,\nregistered,\nmacron,\ndegree,\nplusminus,\ntwosuperior,\nthreesuperior,\nacute,\nmu,\nparagraph,\nperiodcentered,\ncedilla,\nonesuperior,\nordmasculine,\nguillemetright,\nonequarter,\nonehalf,\nthreequarters,\nquestiondown,\nAgrave,\nAacute,\nAcircumflex,\nAtilde,\nAdieresis,\nAring,\nAE,\nCcedilla,\nEgrave,\nEacute,\nEcircumflex,\nEdieresis,\nIgrave,\nIacute,\nIcircumflex,\nIdieresis,\nEth,\nNtilde,\nOgrave,\nOacute,\nOcircumflex,\nOtilde,\nOdieresis,\nmultiply,\nOslash,\nUgrave,\nUacute,\nUcircumflex,\nUdieresis,\nYacute,\nThorn,\ngermandbls,\nagrave,\naacute,\nacircumflex,\natilde,\nadieresis,\naring,\nae,\nccedilla,\negrave,\neacute,\necircumflex,\nedieresis,\nigrave,\niacute,\nicircumflex,\nidieresis,\neth,\nntilde,\nograve,\noacute,\nocircumflex,\notilde,\nodieresis,\ndivide,\noslash,\nugrave,\nuacute,\nucircumflex,\nudieresis,\nyacute,\nthorn,\nydieresis,\ndotlessi,\ncircumflex,\ncaron,\nbreve,\ndotaccent,\nring,\nogonek,\ntilde,\nhungarumlaut,\nquoteleft,\nquoteright,\nminus,\ng.ss01,\na.ss01\n);\n},\n{\nname = \"Use Typo Metrics\";\nvalue = 1;\n},\n{\nname = fsType;\nvalue = (\n);\n},\n{\nname = \"Variable Font Origin\";\nvalue = m002;\n}\n);\ndate = \"2024-11-02 04:16:01 +0000\";\nfamilyName = \"Inclusive Sans\";\nfeaturePrefixes = (\n{\nautomatic = 1;\ncode = \"languagesystem DFLT dflt;\n\nlanguagesystem latn dflt;\nlanguagesystem latn AZE;\nlanguagesystem latn CRT;\nlanguagesystem latn KAZ;\nlanguagesystem latn TAT;\nlanguagesystem latn TRK;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn MAH;\nlanguagesystem latn CAT;\nlanguagesystem latn NLD;\n\";\nname = Languagesystems;\n}\n);\nfeatures = (\n{\nautomatic = 1;\ncode = \"feature locl;\nfeature case;\nfeature ss01;\nfeature ordn;\n\";\ntag = aalt;\n},\n{\nautomatic = 1;\ncode = \"lookup ccmp_DFLT_1 {\n\t@CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb];\n\tlookupflag UseMarkFilteringSet @CombiningTopAccents;\n\tsub i' @CombiningTopAccents by idotless;\n\tsub j' @CombiningTopAccents by jdotless;\n} ccmp_DFLT_1;\n\nlookup ccmp_DFLT_2 {\n\tlookupflag 0;\n\tsub brevecomb acutecomb by brevecomb_acutecomb;\n\tsub brevecomb gravecomb by brevecomb_gravecomb;\n\tsub brevecomb hookabovecomb by brevecomb_hookabovecomb;\n\tsub brevecomb tildecomb by brevecomb_tildecomb;\n\tsub circumflexcomb acutecomb by circumflexcomb_acutecomb;\n\tsub circumflexcomb gravecomb by circumflexcomb_gravecomb;\n\tsub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb;\n\tsub circumflexcomb tildecomb by circumflexcomb_tildecomb;\n} ccmp_DFLT_2;\n\";\ntag = ccmp;\n},\n{\nautomatic = 1;\ncode = \"script latn;\nlanguage AZE;\nlookup locl_latn_0 {\n\tsub i by idotaccent;\n} locl_latn_0;\nlanguage CRT;\nlookup locl_latn_0;\nlanguage KAZ;\nlookup locl_latn_0;\nlanguage TAT;\nlookup locl_latn_0;\nlanguage TRK;\nlookup locl_latn_0;\n\nscript latn;\nlanguage ROM;\nlookup locl_latn_1 {\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_1;\nlanguage MOL;\nlookup locl_latn_1;\n\nscript latn;\nlanguage MAH;\nlookup locl_latn_2 {\n\tsub Lcommaaccent by Lcommaaccent.loclMAH;\n\tsub Ncommaaccent by Ncommaaccent.loclMAH;\n\tsub lcommaaccent by lcommaaccent.loclMAH;\n\tsub ncommaaccent by ncommaaccent.loclMAH;\n\tsub commaaccentcomb by commaaccentcomb.loclMAH;\n} locl_latn_2;\n\nscript latn;\nlanguage CAT;\nlookup locl_latn_3 {\n\tsub l periodcentered' l by periodcentered.loclCAT;\n\tsub L periodcentered' L by periodcentered.loclCAT.case;\n} locl_latn_3;\n\nscript latn;\nlanguage NLD;\nlookup locl_latn_4 {\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_4;\n\";\ntag = locl;\n},\n{\nautomatic = 1;\ncode = \"sub periodcentered.loclCAT by periodcentered.loclCAT.case;\n\";\ntag = case;\n},\n{\ncode = \"sub a by a.ss01;\nsub aacute by aacute.ss01;\nsub abreve by abreve.ss01;\nsub abreveacute by abreveacute.ss01;\nsub abrevedotbelow by abrevedotbelow.ss01;\nsub abrevegrave by abrevegrave.ss01;\nsub abrevehookabove by abrevehookabove.ss01;\nsub abrevetilde by abrevetilde.ss01;\nsub acircumflex by acircumflex.ss01;\nsub acircumflexacute by acircumflexacute.ss01;\nsub acircumflexdotbelow by acircumflexdotbelow.ss01;\nsub acircumflexgrave by acircumflexgrave.ss01;\nsub acircumflexhookabove by acircumflexhookabove.ss01;\nsub acircumflextilde by acircumflextilde.ss01;\nsub adieresis by adieresis.ss01;\nsub adotbelow by adotbelow.ss01;\nsub agrave by agrave.ss01;\nsub ahookabove by ahookabove.ss01;\nsub amacron by amacron.ss01;\nsub aogonek by aogonek.ss01;\nsub aring by aring.ss01;\nsub atilde by atilde.ss01;\nsub g by g.ss01;\nsub gbreve by gbreve.ss01;\nsub gcommaaccent by gcommaaccent.ss01;\nsub gdotaccent by gdotaccent.ss01;\nsub gmacron by gmacron.ss01;\n\";\nlabels = (\n{\nlanguage = dflt;\nvalue = ss01;\n}\n);\ntag = ss01;\n},\n{\nautomatic = 1;\ncode = \"sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\nsub N o period by numero;\n\";\ntag = ordn;\n}\n);\nfontMaster = (\n{\naxesValues = (\n300\n);\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1150;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\niconName = Light;\nid = m01;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 500;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 512;\n},\n{\npos = -12;\n},\n{\npos = 712;\n},\n{\n}\n);\nname = Light;\nvisible = 1;\n},\n{\naxesValues = (\n400\n);\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1150;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\nid = m002;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 500;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 512;\n},\n{\npos = -12;\n},\n{\npos = 712;\n},\n{\n}\n);\nname = Regular;\nvisible = 1;\n},\n{\naxesValues = (\n700\n);\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1150;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\niconName = Bold;\nid = m003;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 508;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 520;\n},\n{\npos = -12;\n},\n{\npos = 712;\n},\n{\n}\n);\nname = Bold;\n}\n);\nglyphs = (\n{\nglyphname = A;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-01 08:35:06 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = ogonek;\npos = (543,29);\n},\n{\nname = top;\npos = (291,712);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(81,0,l),\n(321,700,l),\n(259,700,l),\n(10,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(449,206,l),\n(449,262,l),\n(128,262,l),\n(128,206,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(570,0,l),\n(321,700,l),\n(263,700,l),\n(506,0,l)\n);\n}\n);\nwidth = 580;\n},\n{\nanchors = (\n{\nname = ogonek;\npos = (552,34);\n},\n{\nname = top;\npos = (298,712);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(104,0,l),\n(339,700,l),\n(253,700,l),\n(8,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(455,195,l),\n(455,275,l),\n(134,275,l),\n(134,195,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(583,0,l),\n(339,700,l),\n(259,700,l),\n(495,0,l)\n);\n}\n);\nwidth = 591;\n},\n{\nanchors = (\n{\nname = ogonek;\npos = (621,41);\n},\n{\nname = top;\npos = (336,712);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(163,0,l),\n(400,700,l),\n(250,700,l),\n(5,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(501,161,l),\n(501,287,l),\n(179,287,l),\n(179,161,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(664,0,l),\n(420,700,l),\n(282,700,l),\n(512,0,l)\n);\n}\n);\nwidth = 669;\n}\n);\nunicode = 65;\n},\n{\nglyphname = Aacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (241,200);\nref = acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (264,200);\nref = acutecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (275,204);\nref = acutecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 193;\n},\n{\nglyphname = Abreve;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (145,200);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (154,200);\nref = brevecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (162,204);\nref = brevecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 258;\n},\n{\nglyphname = Abreveacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (94,200);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (98,212);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (161,204);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7854;\n},\n{\nglyphname = Abrevedotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-25 04:29:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (220,0);\nref = dotbelowcomb;\n},\n{\npos = (145,200);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (221,0);\nref = dotbelowcomb;\n},\n{\npos = (154,200);\nref = brevecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (241,0);\nref = dotbelowcomb;\n},\n{\npos = (162,204);\nref = brevecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7862;\n},\n{\nglyphname = Abrevegrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (84,200);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (90,212);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (161,204);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7856;\n},\n{\nglyphname = Abrevehookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (103,200);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (98,212);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (161,204);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7858;\n},\n{\nglyphname = Abrevetilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (61,200);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (71,200);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (161,204);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7860;\n},\n{\nglyphname = Acircumflex;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (157,200);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (148,200);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (155,204);\nref = circumflexcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 194;\n},\n{\nglyphname = Acircumflexacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (10,200);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (17,212);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (155,204);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7844;\n},\n{\nglyphname = Acircumflexdotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\nref = dotbelowcomb;\n},\n{\npos = (157,200);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\nref = dotbelowcomb;\n},\n{\npos = (148,200);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\nref = dotbelowcomb;\n},\n{\npos = (155,204);\nref = circumflexcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7852;\n},\n{\nglyphname = Acircumflexgrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (157,200);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (149,212);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (155,204);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7846;\n},\n{\nglyphname = Acircumflexhookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (157,200);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (149,212);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (155,204);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7848;\n},\n{\nglyphname = Acircumflextilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (155,200);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (142,212);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (128,204);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7850;\n},\n{\nglyphname = Adieresis;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (137,200);\nref = dieresiscomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (137,200);\nref = dieresiscomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (132,204);\nref = dieresiscomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 196;\n},\n{\nglyphname = Adotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (220,0);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (221,0);\nref = dotbelowcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (241,0);\nref = dotbelowcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7840;\n},\n{\nglyphname = Agrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (141,200);\nref = gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (141,200);\nref = gravecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (149,204);\nref = gravecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 192;\n},\n{\nglyphname = Ahookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (254,212);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (242,212);\nref = hookabovecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (276,204);\nref = hookabovecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 7842;\n},\n{\nglyphname = Amacron;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (149,200);\nref = macroncomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (119,200);\nref = macroncomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (160,204);\nref = macroncomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 256;\n},\n{\nglyphname = Aogonek;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (411,4);\nref = ogonekcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (420,0);\nref = ogonekcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (488,0);\nref = ogonekcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 260;\n},\n{\nglyphname = Aring;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (172,200);\nref = ringcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (175,200);\nref = ringcomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (200,204);\nref = ringcomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 197;\n},\n{\nglyphname = Atilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2024-11-01 03:05:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = A;\n},\n{\npos = (128,200);\nref = tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = A;\n},\n{\npos = (135,200);\nref = tildecomb;\n}\n);\nwidth = 591;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = A;\n},\n{\npos = (128,204);\nref = tildecomb;\n}\n);\nwidth = 669;\n}\n);\nunicode = 195;\n},\n{\nglyphname = AE;\nkernLeft = A;\nlastChange = \"2024-11-22 03:56:55 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (594,701);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(66,0,l),\n(437,700,l),\n(375,700,l),\n(-5,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(415,190,l),\n(415,246,l),\n(161,246,l),\n(161,190,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(807,0,l),\n(807,56,l),\n(473,56,l),\n(473,332,l),\n(745,332,l),\n(745,388,l),\n(473,388,l),\n(473,644,l),\n(807,644,l),\n(807,700,l),\n(409,700,l),\n(409,0,l)\n);\n}\n);\nwidth = 867;\n},\n{\nanchors = (\n{\nname = top;\npos = (614,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(104,0,l),\n(470,700,l),\n(384,700,l),\n(8,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(469,169,l),\n(469,249,l),\n(185,249,l),\n(185,169,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(838,0,l),\n(838,80,l),\n(515,80,l),\n(515,320,l),\n(777,320,l),\n(777,398,l),\n(515,398,l),\n(515,620,l),\n(838,620,l),\n(838,700,l),\n(427,700,l),\n(427,0,l)\n);\n}\n);\nwidth = 896;\n},\n{\nanchors = (\n{\nname = top;\npos = (660,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(163,0,l),\n(534,700,l),\n(384,700,l),\n(5,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(474,142,l),\n(474,268,l),\n(183,268,l),\n(183,142,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(925,0,l),\n(925,126,l),\n(614,126,l),\n(614,297,l),\n(874,297,l),\n(874,423,l),\n(614,423,l),\n(614,574,l),\n(925,574,l),\n(925,700,l),\n(468,700,l),\n(468,0,l)\n);\n}\n);\nwidth = 967;\n}\n);\nunicode = 198;\n},\n{\nglyphname = AEacute;\nkernLeft = A;\nlastChange = \"2024-11-01 03:05:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = AE;\n},\n{\npos = (544,189);\nref = acutecomb;\n}\n);\nwidth = 867;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = AE;\n},\n{\npos = (580,188);\nref = acutecomb;\n}\n);\nwidth = 896;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = AE;\n},\n{\npos = (599,192);\nref = acutecomb;\n}\n);\nwidth = 967;\n}\n);\nunicode = 508;\n},\n{\nglyphname = B;\nkernLeft = B;\nkernRight = B;\nlastChange = \"2025-01-01 03:25:00 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(330,0,ls),\n(490,0,o),\n(567,72,o),\n(567,202,cs),\n(567,288,o),\n(519,343,o),\n(425,365,c),\n(484,385,o),\n(528,438,o),\n(528,526,cs),\n(528,642,o),\n(451,701,o),\n(319,701,cs),\n(100,701,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,330,l),\n(160,330,o),\n(349,330,o),\n(349,330,cs),\n(447,330,o),\n(505,277,o),\n(505,202,cs),\n(505,122,o),\n(451,56,o),\n(340,56,cs),\n(160,56,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,645,l),\n(160,645,o),\n(314,645,o),\n(314,645,cs),\n(421,645,o),\n(466,595,o),\n(466,525,cs),\n(466,439,o),\n(412,386,o),\n(315,386,cs),\n(160,386,l)\n);\n}\n);\nwidth = 618;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,0,ls),\n(518,0,o),\n(597,73,o),\n(597,200,cs),\n(597,287,o),\n(549,344,o),\n(455,366,c),\n(514,384,o),\n(558,424,o),\n(558,521,cs),\n(558,637,o),\n(482,701,o),\n(345,701,cs),\n(109,701,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(197,319,l),\n(197,319,o),\n(363,319,o),\n(363,319,cs),\n(455,319,o),\n(505,267,o),\n(505,200,cs),\n(505,120,o),\n(450,80,o),\n(353,80,cs),\n(197,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(197,621,l),\n(197,621,o),\n(340,621,o),\n(340,621,cs),\n(413,621,o),\n(467,587,o),\n(467,520,cs),\n(467,435,o),\n(414,399,o),\n(341,399,cs),\n(197,399,l)\n);\n}\n);\nwidth = 655;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,0,ls),\n(573,0,o),\n(657,77,o),\n(657,204,cs),\n(657,283,o),\n(610,341,o),\n(532,363,c),\n(577,386,o),\n(618,434,o),\n(618,518,cs),\n(618,620,o),\n(542,701,o),\n(394,701,cs),\n(109,701,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,293,l),\n(255,293,o),\n(392,293,o),\n(392,293,c),\n(459,293,o),\n(503,264,o),\n(503,211,cs),\n(503,145,o),\n(459,126,o),\n(382,126,cs),\n(255,126,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,575,l),\n(255,575,o),\n(376,575,o),\n(376,575,cs),\n(432,575,o),\n(465,549,o),\n(465,504,cs),\n(465,441,o),\n(432,419,o),\n(377,419,cs),\n(255,419,l)\n);\n}\n);\nwidth = 701;\n}\n);\nunicode = 66;\n},\n{\nglyphname = C;\nkernLeft = O;\nlastChange = \"2025-01-07 17:11:59 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (338,-6);\n},\n{\nname = top;\npos = (354,713);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(499,-13,o),\n(588,76,o),\n(616,199,c),\n(556,211,l),\n(531,117,o),\n(466,43,o),\n(354,43,cs),\n(207,43,o),\n(122,167,o),\n(122,357,cs),\n(122,542,o),\n(223,657,o),\n(354,657,cs),\n(452,657,o),\n(534,581,o),\n(552,488,c),\n(616,501,l),\n(588,624,o),\n(499,713,o),\n(354,713,cs),\n(151,713,o),\n(60,541,o),\n(60,355,cs),\n(60,163,o),\n(146,-13,o),\n(354,-13,cs)\n);\n}\n);\nwidth = 663;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (350,-13);\n},\n{\nname = top;\npos = (360,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,-13,o),\n(608,75,o),\n(636,198,c),\n(547,216,l),\n(524,130,o),\n(452,67,o),\n(360,67,cs),\n(229,67,o),\n(154,194,o),\n(154,357,cs),\n(154,512,o),\n(229,633,o),\n(360,633,cs),\n(452,633,o),\n(524,570,o),\n(547,484,c),\n(636,502,l),\n(608,625,o),\n(506,713,o),\n(360,713,cs),\n(154,713,o),\n(64,548,o),\n(64,355,cs),\n(64,171,o),\n(153,-13,o),\n(360,-13,cs)\n);\n}\n);\nwidth = 689;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (365,-12);\n},\n{\nname = top;\npos = (381,713);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(535,-12,o),\n(623,76,o),\n(651,199,c),\n(510,227,l),\n(496,161,o),\n(439,119,o),\n(383,119,cs),\n(262,119,o),\n(205,198,o),\n(205,357,cs),\n(205,499,o),\n(258,583,o),\n(379,583,cs),\n(439,583,o),\n(495,532,o),\n(510,474,c),\n(651,502,l),\n(623,625,o),\n(510,713,o),\n(381,713,cs),\n(157,713,o),\n(51,549,o),\n(51,355,cs),\n(51,171,o),\n(137,-12,o),\n(383,-12,cs)\n);\n}\n);\nwidth = 684;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"09577142-2BA9-4939-A4E9-BA986ECE9950\";\nname = \"27 Mar 24 at 12:02\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(596,-12,o),\n(684,157,o),\n(684,349,cs),\n(684,543,o),\n(596,712,o),\n(372,712,cs),\n(148,712,o),\n(60,543,o),\n(60,349,cs),\n(60,157,o),\n(148,-12,o),\n(372,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(217,44,o),\n(122,154,o),\n(122,349,cs),\n(122,540,o),\n(217,656,o),\n(372,656,cs),\n(527,656,o),\n(622,540,o),\n(622,349,cs),\n(622,154,o),\n(527,44,o),\n(372,44,cs)\n);\n}\n);\nwidth = 693;\n}\n);\nunicode = 67;\n},\n{\nglyphname = Cacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-07 17:11:59 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (304,201);\nref = acutecomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (326,201);\nref = acutecomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (320,205);\nref = acutecomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 262;\n},\n{\nglyphname = Ccaron;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-07 17:11:59 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (220,201);\nref = caroncomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (208,201);\nref = caroncomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (200,205);\nref = caroncomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 268;\n},\n{\nglyphname = Ccedilla;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2024-11-01 03:06:01 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (231,-8);\nref = cedillacomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (233,-15);\nref = cedillacomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (237,-11);\nref = cedillacomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 199;\n},\n{\nglyphname = Ccircumflex;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-07 17:11:59 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (220,201);\nref = circumflexcomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (210,201);\nref = circumflexcomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (200,205);\nref = circumflexcomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 264;\n},\n{\nglyphname = Cdotaccent;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-07 17:11:59 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = C;\n},\n{\npos = (286,201);\nref = dotaccentcomb;\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = C;\n},\n{\npos = (286,201);\nref = dotaccentcomb;\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = C;\n},\n{\npos = (285,205);\nref = dotaccentcomb;\n}\n);\nwidth = 684;\n}\n);\nunicode = 266;\n},\n{\nglyphname = D;\nkernRight = O;\nlastChange = \"2025-01-01 03:28:29 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (314,0);\n},\n{\nname = top;\npos = (314,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(291,0,ls),\n(517,0,o),\n(624,141,o),\n(624,349,cs),\n(624,560,o),\n(517,700,o),\n(291,700,cs),\n(104,700,l),\n(104,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(168,644,l),\n(294,644,ls),\n(488,644,o),\n(562,507,o),\n(562,350,cs),\n(562,192,o),\n(488,56,o),\n(294,56,cs),\n(168,56,l)\n);\n}\n);\nwidth = 681;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (320,0);\n},\n{\nname = top;\npos = (320,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(291,0,ls),\n(523,0,o),\n(630,141,o),\n(630,349,cs),\n(630,560,o),\n(523,700,o),\n(291,700,cs),\n(96,700,l),\n(96,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(184,620,l),\n(294,620,ls),\n(457,620,o),\n(538,507,o),\n(538,350,cs),\n(538,192,o),\n(457,80,o),\n(294,80,cs),\n(184,80,l)\n);\n}\n);\nwidth = 680;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (351,0);\n},\n{\nname = top;\npos = (351,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(338,0,ls),\n(568,0,o),\n(675,141,o),\n(675,349,cs),\n(675,560,o),\n(568,700,o),\n(338,700,cs),\n(90,700,l),\n(90,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,574,l),\n(341,574,ls),\n(459,574,o),\n(521,507,o),\n(521,350,cs),\n(521,192,o),\n(459,126,o),\n(341,126,cs),\n(236,126,l)\n);\n}\n);\nwidth = 723;\n}\n);\nunicode = 68;\n},\n{\nglyphname = Dcaron;\nlastChange = \"2024-09-13 00:20:08 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = D;\n},\n{\npos = (180,188);\nref = caroncomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = D;\n},\n{\npos = (168,188);\nref = caroncomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = D;\n},\n{\npos = (170,192);\nref = caroncomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 270;\n},\n{\nglyphname = Dcroat;\nlastChange = \"2024-09-05 10:12:56 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 723;\n}\n);\nunicode = 272;\n},\n{\nglyphname = Ddotbelow;\nlastChange = \"2024-09-09 02:08:17 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = D;\n},\n{\npos = (257,1);\nref = dotbelowcomb;\n}\n);\nwidth = 723;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = D;\n},\n{\npos = (244,0);\nref = dotbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = D;\n},\n{\npos = (245,0);\nref = dotbelowcomb;\n}\n);\nwidth = 680;\n}\n);\nunicode = 7692;\n},\n{\nglyphname = Dmacronbelow;\nlastChange = \"2024-09-09 02:08:17 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = D;\n},\n{\npos = (171,1);\nref = macronbelowcomb;\n}\n);\nwidth = 723;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = D;\n},\n{\npos = (172,12);\nref = macronbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = D;\n},\n{\npos = (160,12);\nref = macronbelowcomb;\n}\n);\nwidth = 680;\n}\n);\nunicode = 7694;\n},\n{\nglyphname = Eth;\nlastChange = \"2024-11-01 01:06:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = D;\n},\n{\nclosed = 1;\nnodes = (\n(344,329,l),\n(344,385,l),\n(22,385,l),\n(22,329,l)\n);\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = D;\n},\n{\nclosed = 1;\nnodes = (\n(364,315,l),\n(364,385,l),\n(27,385,l),\n(27,315,l)\n);\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = D;\n},\n{\nclosed = 1;\nnodes = (\n(383,291,l),\n(383,401,l),\n(0,401,l),\n(0,291,l)\n);\n}\n);\nwidth = 723;\n}\n);\nunicode = 208;\n},\n{\nglyphname = E;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2025-01-01 08:34:52 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (299,0);\n},\n{\nname = top;\npos = (299,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(498,0,l),\n(498,56,l),\n(164,56,l),\n(164,332,l),\n(436,332,l),\n(436,388,l),\n(164,388,l),\n(164,644,l),\n(498,644,l),\n(498,700,l),\n(100,700,l),\n(100,0,l)\n);\n}\n);\nwidth = 558;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (302,0);\n},\n{\nname = top;\npos = (302,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(507,0,l),\n(507,80,l),\n(184,80,l),\n(184,320,l),\n(446,320,l),\n(446,398,l),\n(184,398,l),\n(184,620,l),\n(507,620,l),\n(507,700,l),\n(96,700,l),\n(96,0,l)\n);\n}\n);\nwidth = 564;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (319,0);\n},\n{\nname = top;\npos = (319,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(547,0,l),\n(547,126,l),\n(236,126,l),\n(236,297,l),\n(496,297,l),\n(496,423,l),\n(236,423,l),\n(236,574,l),\n(547,574,l),\n(547,700,l),\n(90,700,l),\n(90,0,l)\n);\n}\n);\nwidth = 589;\n}\n);\nunicode = 69;\n},\n{\nglyphname = Eacute;\nlastChange = \"2024-09-03 02:07:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (249,188);\nref = acutecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (268,188);\nref = acutecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (258,192);\nref = acutecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 201;\n},\n{\nglyphname = Ebreve;\nlastChange = \"2024-09-08 00:59:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (153,188);\nref = brevecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (158,188);\nref = brevecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (145,192);\nref = brevecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 276;\n},\n{\nglyphname = Ecaron;\nlastChange = \"2024-09-02 07:38:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (165,188);\nref = caroncomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (150,188);\nref = caroncomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (138,192);\nref = caroncomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 282;\n},\n{\nglyphname = Ecircumflex;\nlastChange = \"2024-09-02 07:38:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (165,188);\nref = circumflexcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (152,188);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (138,192);\nref = circumflexcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 202;\n},\n{\nglyphname = Ecircumflexacute;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (18,188);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (21,200);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (138,192);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7870;\n},\n{\nglyphname = Ecircumflexdotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (229,0);\nref = dotbelowcomb;\n},\n{\npos = (165,188);\nref = circumflexcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n},\n{\npos = (152,188);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (225,1);\nref = dotbelowcomb;\n},\n{\npos = (138,192);\nref = circumflexcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7878;\n},\n{\nglyphname = Ecircumflexgrave;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (165,188);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (153,200);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (138,192);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7872;\n},\n{\nglyphname = Ecircumflexhookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (165,188);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (153,200);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (138,192);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7874;\n},\n{\nglyphname = Ecircumflextilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (163,188);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (146,200);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (111,192);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7876;\n},\n{\nglyphname = Edieresis;\nlastChange = \"2024-09-02 07:38:47 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (145,188);\nref = dieresiscomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (141,188);\nref = dieresiscomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (115,192);\nref = dieresiscomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 203;\n},\n{\nglyphname = Edotaccent;\nlastChange = \"2024-09-02 07:38:47 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (231,188);\nref = dotaccentcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (228,188);\nref = dotaccentcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (223,192);\nref = dotaccentcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 278;\n},\n{\nglyphname = Edotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (229,0);\nref = dotbelowcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (225,1);\nref = dotbelowcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7864;\n},\n{\nglyphname = Egrave;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (149,188);\nref = gravecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (145,188);\nref = gravecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (132,192);\nref = gravecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 200;\n},\n{\nglyphname = Ehookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (262,200);\nref = hookabovecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (246,200);\nref = hookabovecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (259,192);\nref = hookabovecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7866;\n},\n{\nglyphname = Emacron;\nlastChange = \"2024-09-02 07:38:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (157,188);\nref = macroncomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (123,188);\nref = macroncomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (143,192);\nref = macroncomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 274;\n},\n{\nglyphname = Eogonek;\nlastChange = \"2024-09-13 00:56:57 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (339,4);\nref = ogonekcomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (344,0);\nref = ogonekcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (372,0);\nref = ogonekcomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 280;\n},\n{\nglyphname = Eopen;\nlastChange = \"2024-11-07 17:11:47 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (298,0);\n},\n{\nname = top;\npos = (298,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,-12,o),\n(536,61,o),\n(549,195,c),\n(487,199,l),\n(476,120,o),\n(428,44,o),\n(305,44,cs),\n(181,44,o),\n(122,123,o),\n(122,203,cs),\n(122,278,o),\n(178,350,o),\n(303,350,cs),\n(316,350,o),\n(329,349,o),\n(341,348,c),\n(341,404,l),\n(330,402,o),\n(317,401,o),\n(304,401,cs),\n(199,401,o),\n(156,465,o),\n(156,530,cs),\n(156,586,o),\n(196,656,o),\n(302,656,cs),\n(387,656,o),\n(432,611,o),\n(446,564,c),\n(506,584,l),\n(483,668,o),\n(404,712,o),\n(303,712,cs),\n(184,712,o),\n(94,649,o),\n(94,530,cs),\n(94,465,o),\n(136,415,o),\n(176,384,c),\n(114,348,o),\n(60,286,o),\n(60,203,cs),\n(60,64,o),\n(165,-12,o),\n(304,-12,cs)\n);\n}\n);\nwidth = 596;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (330,0);\n},\n{\nname = top;\npos = (330,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(502,-12,o),\n(597,63,o),\n(612,200,c),\n(520,207,l),\n(502,93,o),\n(434,68,o),\n(360,68,cs),\n(260,68,o),\n(199,123,o),\n(199,203,cs),\n(199,278,o),\n(255,340,o),\n(358,340,cs),\n(373,340,o),\n(387,340,o),\n(402,340,c),\n(402,418,l),\n(388,418,o),\n(373,418,o),\n(359,418,cs),\n(272,418,o),\n(229,465,o),\n(229,530,cs),\n(229,586,o),\n(269,636,o),\n(357,636,cs),\n(435,636,o),\n(478,597,o),\n(486,549,c),\n(571,576,l),\n(551,665,o),\n(469,712,o),\n(358,712,cs),\n(231,712,o),\n(141,649,o),\n(141,530,cs),\n(141,465,o),\n(171,415,o),\n(211,384,c),\n(149,348,o),\n(107,286,o),\n(107,203,cs),\n(107,64,o),\n(214,-12,o),\n(359,-12,cs)\n);\n}\n);\nwidth = 660;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (344,0);\n},\n{\nname = top;\npos = (344,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(554,-12,o),\n(639,81,o),\n(654,207,c),\n(507,216,l),\n(499,161,o),\n(468,116,o),\n(381,116,cs),\n(298,116,o),\n(263,157,o),\n(263,212,cs),\n(263,260,o),\n(298,306,o),\n(379,306,cs),\n(394,306,o),\n(410,307,o),\n(425,307,c),\n(426,434,l),\n(411,434,o),\n(395,433,o),\n(380,433,cs),\n(332,433,o),\n(293,458,o),\n(293,512,cs),\n(293,550,o),\n(329,584,o),\n(378,584,cs),\n(419,584,o),\n(455,559,o),\n(464,527,c),\n(612,569,l),\n(593,656,o),\n(509,712,o),\n(379,712,cs),\n(234,712,o),\n(143,639,o),\n(143,530,cs),\n(143,465,o),\n(173,415,o),\n(213,384,c),\n(151,348,o),\n(109,286,o),\n(109,203,cs),\n(109,74,o),\n(220,-12,o),\n(380,-12,cs)\n);\n}\n);\nwidth = 687;\n}\n);\nunicode = 400;\n},\n{\nglyphname = Etilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = E;\n},\n{\npos = (136,188);\nref = tildecomb;\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = E;\n},\n{\npos = (139,188);\nref = tildecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = E;\n},\n{\npos = (111,192);\nref = tildecomb;\n}\n);\nwidth = 589;\n}\n);\nunicode = 7868;\n},\n{\nglyphname = Schwa;\nlastChange = \"2024-11-07 17:11:50 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (352,0);\n},\n{\nname = top;\npos = (352,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(535,-12,o),\n(658,126,o),\n(658,352,cs),\n(658,575,o),\n(544,712,o),\n(353,712,cs),\n(188,712,o),\n(98,608,o),\n(65,496,c),\n(129,482,l),\n(153,559,o),\n(218,656,o),\n(347,656,cs),\n(502,656,o),\n(596,531,o),\n(596,356,cs),\n(596,186,o),\n(521,44,o),\n(352,44,cs),\n(204,44,o),\n(123,174,o),\n(123,310,c),\n(616,310,l),\n(616,365,l),\n(60,365,l),\n(60,326,l),\n(60,112,o),\n(191,-12,o),\n(357,-12,cs)\n);\n}\n);\nwidth = 704;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (363,0);\n},\n{\nname = top;\npos = (363,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(550,-12,o),\n(673,126,o),\n(673,353,cs),\n(673,574,o),\n(550,712,o),\n(356,712,cs),\n(183,712,o),\n(101,618,o),\n(67,506,c),\n(153,485,l),\n(171,569,o),\n(254,632,o),\n(347,632,c),\n(519,632,o),\n(581,487,o),\n(581,357,cs),\n(581,187,o),\n(505,68,o),\n(355,68,cs),\n(223,68,o),\n(156,163,o),\n(156,287,c),\n(602,287,l),\n(602,367,l),\n(64,367,l),\n(64,334,l),\n(64,96,o),\n(187,-12,o),\n(360,-12,cs)\n);\n}\n);\nwidth = 726;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (375,0);\n},\n{\nname = top;\npos = (375,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(540,-12,o),\n(716,103,o),\n(716,347,cs),\n(716,583,o),\n(543,712,o),\n(372,712,cs),\n(265,712,o),\n(135,663,o),\n(71,512,c),\n(215,469,l),\n(234,538,o),\n(302,582,o),\n(369,582,cs),\n(487,582,o),\n(562,504,o),\n(562,347,cs),\n(562,204,o),\n(487,118,o),\n(376,118,cs),\n(275,118,o),\n(210,205,o),\n(210,286,c),\n(593,286,l),\n(592,402,l),\n(51,402,l),\n(51,357,l),\n(51,126,o),\n(182,-12,o),\n(374,-12,cs)\n);\n}\n);\nwidth = 749;\n}\n);\nunicode = 399;\n},\n{\nglyphname = F;\nkernLeft = E;\nkernRight = F;\nlastChange = \"2025-01-01 06:23:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(164,335,l),\n(436,335,l),\n(436,391,l),\n(164,391,l),\n(164,644,l),\n(498,644,l),\n(498,700,l),\n(100,700,l),\n(100,0,l)\n);\n}\n);\nwidth = 558;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,0,l),\n(184,320,l),\n(446,320,l),\n(446,400,l),\n(184,400,l),\n(184,620,l),\n(507,620,l),\n(507,700,l),\n(96,700,l),\n(96,0,l)\n);\n}\n);\nwidth = 541;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(236,0,l),\n(236,297,l),\n(496,297,l),\n(496,423,l),\n(236,423,l),\n(236,574,l),\n(547,574,l),\n(547,700,l),\n(90,700,l),\n(90,0,l)\n);\n}\n);\nwidth = 577;\n}\n);\nunicode = 70;\n},\n{\nglyphname = G;\nkernLeft = O;\nkernRight = G;\nlastChange = \"2025-01-07 17:12:12 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (348,-13);\n},\n{\nname = top;\npos = (358,713);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(470,-13,o),\n(554,49,o),\n(578,127,c),\n(578,127,o),\n(585,0,o),\n(585,0,c),\n(637,0,l),\n(637,368,l),\n(358,368,l),\n(358,312,l),\n(575,312,l),\n(575,159,o),\n(484,43,o),\n(359,43,cs),\n(205,43,o),\n(120,167,o),\n(120,357,cs),\n(120,542,o),\n(221,657,o),\n(359,657,cs),\n(465,657,o),\n(547,581,o),\n(565,488,c),\n(629,501,l),\n(601,624,o),\n(512,713,o),\n(359,713,cs),\n(149,713,o),\n(58,541,o),\n(58,355,cs),\n(58,163,o),\n(144,-13,o),\n(359,-13,cs)\n);\n}\n);\nwidth = 701;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (361,-12);\n},\n{\nname = top;\npos = (369,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(461,-12,o),\n(538,30,o),\n(578,107,c),\n(578,107,o),\n(591,0,o),\n(591,0,c),\n(660,0,l),\n(660,368,l),\n(380,368,l),\n(380,284,l),\n(571,284,l),\n(571,158,o),\n(469,67,o),\n(366,67,cs),\n(224,67,o),\n(152,194,o),\n(152,357,cs),\n(152,512,o),\n(227,633,o),\n(369,633,cs),\n(472,633,o),\n(544,570,o),\n(567,484,c),\n(656,502,l),\n(628,625,o),\n(526,713,o),\n(369,713,cs),\n(152,713,o),\n(62,548,o),\n(62,355,cs),\n(62,158,o),\n(154,-12,o),\n(379,-12,c)\n);\n}\n);\nwidth = 740;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (356,-12);\n},\n{\nname = top;\npos = (386,712);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(444,-12,o),\n(515,13,o),\n(554,80,c),\n(554,80,o),\n(566,0,o),\n(566,0,c),\n(664,0,l),\n(664,380,l),\n(379,380,l),\n(379,260,l),\n(529,260,l),\n(522,170,o),\n(449,119,o),\n(386,119,cs),\n(259,119,o),\n(202,198,o),\n(202,357,cs),\n(202,499,o),\n(259,583,o),\n(386,583,cs),\n(450,583,o),\n(505,532,o),\n(520,474,c),\n(661,502,l),\n(633,625,o),\n(522,712,o),\n(386,712,cs),\n(156,712,o),\n(48,549,o),\n(48,355,cs),\n(48,171,o),\n(134,-12,o),\n(386,-12,cs)\n);\n}\n);\nwidth = 726;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"60D9B074-3643-47F8-BA45-851CCB9418B6\";\nname = \"6 Jul 24 at 15:54\";\nshapes = (\n{\nclosed = 0;\nnodes = (\n(514,106,l)\n);\n},\n{\nclosed = 0;\nnodes = (\n(531,106,l),\n(533,94,o),\n(544,0,o),\n(544,0,c),\n(596,0,l),\n(596,368,l),\n(349,368,l),\n(349,312,l),\n(516,312,l),\n(516,158,o),\n(420,43,o),\n(299,43,cs),\n(142,43,o),\n(57,167,o),\n(57,357,cs),\n(57,542,o),\n(158,657,o),\n(299,657,cs),\n(406,657,o),\n(488,581,o),\n(506,488,c),\n(570,501,l),\n(542,624,o),\n(453,713,o),\n(299,713,cs),\n(86,713,o),\n(-5,541,o),\n(-5,355,cs),\n(-5,163,o),\n(81,-13,o),\n(299,-13,cs),\n(453,-13,o),\n(542,76,o),\n(570,199,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(453,-13,o),\n(542,76,o),\n(570,199,c),\n(510,211,l),\n(485,117,o),\n(420,43,o),\n(299,43,cs),\n(142,43,o),\n(57,167,o),\n(57,357,cs),\n(57,542,o),\n(158,657,o),\n(299,657,cs),\n(406,657,o),\n(488,581,o),\n(506,488,c),\n(570,501,l),\n(542,624,o),\n(453,713,o),\n(299,713,cs),\n(86,713,o),\n(-5,541,o),\n(-5,355,cs),\n(-5,163,o),\n(81,-13,o),\n(299,-13,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 71;\n},\n{\nglyphname = Gbreve;\nlastChange = \"2025-01-07 17:12:10 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (212,201);\nref = brevecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (225,201);\nref = brevecomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (212,204);\nref = brevecomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 286;\n},\n{\nglyphname = Gcircumflex;\nlastChange = \"2025-01-07 17:12:10 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (224,201);\nref = circumflexcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (219,201);\nref = circumflexcomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (205,204);\nref = circumflexcomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 284;\n},\n{\nglyphname = Gcommaaccent;\nlastChange = \"2024-09-02 07:39:53 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (287,-1);\nref = commaaccentcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (284,0);\nref = commaaccentcomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (261,-11);\nref = commaaccentcomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 290;\n},\n{\nglyphname = Gdotaccent;\nlastChange = \"2025-01-07 17:12:10 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (290,201);\nref = dotaccentcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (295,201);\nref = dotaccentcomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (290,204);\nref = dotaccentcomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 288;\n},\n{\nglyphname = Gmacron;\nlastChange = \"2025-01-07 17:12:10 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = G;\n},\n{\npos = (216,201);\nref = macroncomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = G;\n},\n{\npos = (190,201);\nref = macroncomb;\n}\n);\nwidth = 740;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = G;\n},\n{\npos = (210,204);\nref = macroncomb;\n}\n);\nwidth = 726;\n}\n);\nunicode = 7712;\n},\n{\nglyphname = H;\nlastChange = \"2025-01-01 03:29:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(164,336,l),\n(526,336,l),\n(526,0,l),\n(590,0,l),\n(590,700,l),\n(526,700,l),\n(526,392,l),\n(164,392,l),\n(164,700,l),\n(100,700,l),\n(100,0,l)\n);\n}\n);\nwidth = 690;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(182,0,l),\n(182,324,l),\n(518,324,l),\n(518,0,l),\n(606,0,l),\n(606,700,l),\n(518,700,l),\n(518,404,l),\n(182,404,l),\n(182,700,l),\n(94,700,l),\n(94,0,l)\n);\n}\n);\nwidth = 700;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(236,0,l),\n(236,301,l),\n(518,301,l),\n(518,0,l),\n(664,0,l),\n(664,700,l),\n(518,700,l),\n(518,427,l),\n(236,427,l),\n(236,700,l),\n(90,700,l),\n(90,0,l)\n);\n}\n);\nwidth = 754;\n}\n);\nunicode = 72;\n},\n{\nglyphname = Hbar;\nlastChange = \"2024-11-09 06:52:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(164,336,l),\n(526,336,l),\n(526,0,l),\n(590,0,l),\n(590,700,l),\n(526,700,l),\n(526,392,l),\n(164,392,l),\n(164,700,l),\n(100,700,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(669,494,l),\n(669,550,l),\n(25,550,l),\n(25,494,l)\n);\n}\n);\nwidth = 690;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(179,0,l),\n(179,318,l),\n(515,318,l),\n(515,0,l),\n(603,0,l),\n(603,700,l),\n(515,700,l),\n(515,398,l),\n(179,398,l),\n(179,700,l),\n(91,700,l),\n(91,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(669,498,l),\n(669,568,l),\n(25,568,l),\n(25,498,l)\n);\n}\n);\nwidth = 700;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(236,0,l),\n(236,290,l),\n(518,290,l),\n(518,0,l),\n(664,0,l),\n(664,700,l),\n(518,700,l),\n(518,416,l),\n(236,416,l),\n(236,700,l),\n(90,700,l),\n(90,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(750,497,l),\n(750,607,l),\n(8,607,l),\n(8,497,l)\n);\n}\n);\nwidth = 754;\n}\n);\nunicode = 294;\n},\n{\nglyphname = Hcircumflex;\nlastChange = \"2024-10-20 23:47:17 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = H;\n},\n{\npos = (211,201);\nref = circumflexcomb;\n}\n);\nwidth = 690;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = H;\n},\n{\npos = (201,201);\nref = circumflexcomb;\n}\n);\nwidth = 700;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = H;\n},\n{\npos = (196,204);\nref = circumflexcomb;\n}\n);\nwidth = 754;\n}\n);\nunicode = 292;\n},\n{\nglyphname = I;\nlastChange = \"2025-01-01 08:40:14 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (238,0);\n},\n{\nname = top;\npos = (238,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(401,0,l),\n(401,56,l),\n(270,56,l),\n(270,644,l),\n(401,644,l),\n(401,700,l),\n(75,700,l),\n(75,644,l),\n(206,644,l),\n(206,56,l),\n(75,56,l),\n(75,0,l)\n);\n}\n);\nwidth = 476;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (238,0);\n},\n{\nname = top;\npos = (238,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(400,0,l),\n(400,76,l),\n(282,76,l),\n(282,624,l),\n(400,624,l),\n(400,700,l),\n(76,700,l),\n(76,624,l),\n(194,624,l),\n(194,76,l),\n(76,76,l),\n(76,0,l)\n);\n}\n);\nwidth = 476;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (267,0);\n},\n{\nname = top;\npos = (267,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(453,0,l),\n(453,122,l),\n(340,122,l),\n(340,578,l),\n(453,578,l),\n(453,700,l),\n(80,700,l),\n(80,578,l),\n(194,578,l),\n(194,122,l),\n(80,122,l),\n(80,0,l)\n);\n}\n);\nwidth = 533;\n}\n);\nunicode = 73;\n},\n{\nglyphname = IJ;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (466,0);\nref = J;\n}\n);\nwidth = 982;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (476,0);\nref = J;\n}\n);\nwidth = 1003;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (533,0);\nref = J;\n}\n);\nwidth = 1108;\n}\n);\nunicode = 306;\n},\n{\nglyphname = Iacute;\nlastChange = \"2024-09-02 07:40:20 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (188,188);\nref = acutecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (204,188);\nref = acutecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (206,192);\nref = acutecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 205;\n},\n{\nglyphname = Ibreve;\nlastChange = \"2024-09-08 01:05:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (92,188);\nref = brevecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (94,188);\nref = brevecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (93,192);\nref = brevecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 300;\n},\n{\nglyphname = Icircumflex;\nlastChange = \"2024-09-02 07:40:20 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (104,188);\nref = circumflexcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (88,188);\nref = circumflexcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (86,192);\nref = circumflexcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 206;\n},\n{\nglyphname = Idieresis;\nlastChange = \"2024-09-02 07:40:21 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (84,188);\nref = dieresiscomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (77,188);\nref = dieresiscomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (63,192);\nref = dieresiscomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 207;\n},\n{\nglyphname = Idotaccent;\nlastChange = \"2024-09-02 07:40:21 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (170,188);\nref = dotaccentcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (164,188);\nref = dotaccentcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (171,192);\nref = dotaccentcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 304;\n},\n{\nglyphname = Idotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (168,0);\nref = dotbelowcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (163,0);\nref = dotbelowcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (173,1);\nref = dotbelowcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 7882;\n},\n{\nglyphname = Igrave;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (88,188);\nref = gravecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (81,188);\nref = gravecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (80,192);\nref = gravecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 204;\n},\n{\nglyphname = Ihookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (201,200);\nref = hookabovecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (182,200);\nref = hookabovecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (207,192);\nref = hookabovecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 7880;\n},\n{\nglyphname = Imacron;\nlastChange = \"2024-09-02 07:40:22 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (96,188);\nref = macroncomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (59,188);\nref = macroncomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (91,192);\nref = macroncomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 298;\n},\n{\nglyphname = Iogonek;\nlastChange = \"2025-01-07 17:10:25 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (242,5);\nref = ogonekcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (237,0);\nref = ogonekcomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (278,0);\nref = ogonekcomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 302;\n},\n{\nglyphname = Itilde;\nlastChange = \"2024-09-02 07:40:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = I;\n},\n{\npos = (75,188);\nref = tildecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = I;\n},\n{\npos = (75,188);\nref = tildecomb;\n}\n);\nwidth = 476;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = I;\n},\n{\npos = (59,192);\nref = tildecomb;\n}\n);\nwidth = 533;\n}\n);\nunicode = 296;\n},\n{\nglyphname = J;\nlastChange = \"2025-01-01 03:25:59 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (398,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(361,-12,o),\n(428,65,o),\n(428,253,cs),\n(428,700,l),\n(368,700,l),\n(368,252,ls),\n(368,111,o),\n(329,44,o),\n(219,44,cs),\n(133,44,o),\n(87,107,o),\n(73,192,c),\n(15,173,l),\n(33,56,o),\n(106,-12,o),\n(223,-12,cs)\n);\n}\n);\nwidth = 516;\n},\n{\nanchors = (\n{\nname = top;\npos = (399,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(380,-12,o),\n(445,85,o),\n(445,256,cs),\n(445,700,l),\n(357,700,l),\n(357,255,ls),\n(357,148,o),\n(321,68,o),\n(230,68,cs),\n(157,68,o),\n(109,120,o),\n(95,200,c),\n(11,173,l),\n(29,56,o),\n(112,-12,o),\n(234,-12,cs)\n);\n}\n);\nwidth = 527;\n},\n{\nanchors = (\n{\nname = top;\npos = (426,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,-12,o),\n(501,90,o),\n(501,261,cs),\n(501,700,l),\n(355,700,l),\n(355,260,ls),\n(355,185,o),\n(328,118,o),\n(255,118,cs),\n(179,118,o),\n(140,170,o),\n(129,227,c),\n(2,183,l),\n(20,66,o),\n(116,-12,o),\n(256,-12,cs)\n);\n}\n);\nwidth = 575;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"F0224C38-C702-4CDE-838B-2E373CDF467B\";\nname = \"5 Aug 24 at 10:34\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(314,-12,o),\n(407,94,o),\n(407,275,cs),\n(407,701,l),\n(347,701,l),\n(347,275,l),\n(347,121,o),\n(270,44,o),\n(164,44,cs),\n(60,44,o),\n(-19,121,o),\n(-19,275,cs),\n(-19,701,l),\n(-79,701,l),\n(-79,275,ls),\n(-79,94,o),\n(15,-12,o),\n(168,-12,cs)\n);\n}\n);\nwidth = 496;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"D039DF4E-49D3-4032-B6A6-5E0752F96B5B\";\nname = \"5 Aug 24 at 10:37\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(328,-12,o),\n(413,98,o),\n(413,275,cs),\n(413,701,l),\n(325,701,l),\n(325,275,ls),\n(325,139,o),\n(251,73,o),\n(162,73,cs),\n(69,73,o),\n(-1,139,o),\n(-1,275,cs),\n(-1,701,l),\n(-89,701,l),\n(-89,275,ls),\n(-89,98,o),\n(7,-12,o),\n(166,-12,cs)\n);\n}\n);\nwidth = 495;\n}\n);\nunicode = 74;\n},\n{\nglyphname = Jacute;\nlastChange = \"2024-09-13 00:25:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = J;\n},\n{\npos = (348,188);\nref = acutecomb;\n}\n);\nwidth = 516;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = J;\n},\n{\npos = (365,188);\nref = acutecomb;\n}\n);\nwidth = 527;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = J;\n},\n{\npos = (365,192);\nref = acutecomb;\n}\n);\nwidth = 575;\n}\n);\n},\n{\nglyphname = Jcircumflex;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = J;\n},\n{\npos = (264,188);\nref = circumflexcomb;\n}\n);\nwidth = 516;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = J;\n},\n{\npos = (249,188);\nref = circumflexcomb;\n}\n);\nwidth = 527;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = J;\n},\n{\npos = (245,192);\nref = circumflexcomb;\n}\n);\nwidth = 575;\n}\n);\nunicode = 308;\n},\n{\nglyphname = K;\nkernRight = K;\nlastChange = \"2025-01-01 03:26:04 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (316,0);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,0,l),\n(160,244,l),\n(561,700,l),\n(484,700,l),\n(160,330,l),\n(160,700,l),\n(100,700,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(576,0,l),\n(316,429,l),\n(274,382,l),\n(498,0,l)\n);\n}\n);\nwidth = 592;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (352,0);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,0,l),\n(180,242,l),\n(587,700,l),\n(480,700,l),\n(180,358,l),\n(180,700,l),\n(92,700,l),\n(92,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(605,0,l),\n(340,435,l),\n(279,373,l),\n(500,0,l)\n);\n}\n);\nwidth = 615;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (340,0);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(236,0,l),\n(236,224,l),\n(651,700,l),\n(491,700,l),\n(236,404,l),\n(236,700,l),\n(90,700,l),\n(90,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(661,0,l),\n(415,450,l),\n(313,340,l),\n(491,0,l)\n);\n}\n);\nwidth = 665;\n}\n);\nunicode = 75;\n},\n{\nglyphname = Kcommaaccent;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = K;\n},\n{\npos = (255,12);\nref = commaaccentcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = K;\n},\n{\npos = (275,12);\nref = commaaccentcomb;\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = K;\n},\n{\npos = (245,1);\nref = commaaccentcomb;\n}\n);\nwidth = 665;\n}\n);\nunicode = 310;\n},\n{\nglyphname = L;\nlastChange = \"2025-01-07 17:13:16 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (302,0);\n},\n{\nname = center;\npos = (133,350);\n},\n{\nname = top;\npos = (133,700);\n},\n{\nname = topright;\npos = (509,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(509,0,l),\n(509,56,l),\n(162,56,l),\n(162,700,l),\n(98,700,l),\n(98,0,l)\n);\n}\n);\nwidth = 529;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (297,0);\n},\n{\nname = center;\npos = (139,350);\n},\n{\nname = top;\npos = (139,700);\n},\n{\nname = topright;\npos = (504,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,0,l),\n(506,80,l),\n(182,80,l),\n(182,700,l),\n(94,700,l),\n(94,0,l)\n);\n}\n);\nwidth = 524;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (328,0);\n},\n{\nname = center;\npos = (290,350);\n},\n{\nname = top;\npos = (162,700);\n},\n{\nname = topright;\npos = (559,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(565,0,l),\n(565,126,l),\n(236,126,l),\n(236,700,l),\n(90,700,l),\n(90,0,l)\n);\n}\n);\nwidth = 579;\n}\n);\nunicode = 76;\n},\n{\nglyphname = Lacute;\nlastChange = \"2025-01-07 17:13:16 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (83,188);\nref = acutecomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (105,188);\nref = acutecomb;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (101,192);\nref = acutecomb;\n}\n);\nwidth = 579;\n}\n);\nunicode = 313;\n},\n{\nglyphname = Lcaron;\nlastChange = \"2025-01-07 17:13:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\nalignment = -1;\npos = (285,-7);\nref = caroncomb.alt;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\nalignment = -1;\npos = (310,-29);\nref = caroncomb.alt;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nalignment = -1;\nref = L;\n},\n{\nalignment = -1;\npos = (307,-30);\nref = caroncomb.alt;\n}\n);\nwidth = 579;\n}\n);\nunicode = 317;\n},\n{\nglyphname = Lcommaaccent;\nlastChange = \"2025-01-07 17:13:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (241,12);\nref = commaaccentcomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (220,12);\nref = commaaccentcomb;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (233,1);\nref = commaaccentcomb;\n}\n);\nwidth = 579;\n}\n);\nunicode = 315;\n},\n{\nglyphname = Ldot;\nlastChange = \"2025-01-01 08:48:37 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (263,46);\nref = periodcentered.loclCAT.case;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (249,46);\nref = periodcentered.loclCAT.case;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (290,45);\nref = periodcentered.loclCAT.case;\n}\n);\nwidth = 579;\n}\n);\nunicode = 319;\n},\n{\nglyphname = Ldotbelow;\nlastChange = \"2025-01-07 17:13:14 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (234,1);\nref = dotbelowcomb;\n}\n);\nwidth = 579;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (232,0);\nref = dotbelowcomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (222,0);\nref = dotbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7734;\n},\n{\nglyphname = Lmacronbelow;\nlastChange = \"2025-01-07 17:13:14 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (148,1);\nref = macronbelowcomb;\n}\n);\nwidth = 579;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (160,12);\nref = macronbelowcomb;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (137,12);\nref = macronbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7738;\n},\n{\nglyphname = Lslash;\nlastChange = \"2025-01-01 08:42:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(161,302,l),\n(180,310,l),\n(375,392,l),\n(354,444,l),\n(172,369,l),\n(147,358,l),\n(20,305,l),\n(40,252,l)\n);\n},\n{\npos = (42,0);\nref = L;\n}\n);\nwidth = 571;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(175,293,l),\n(200,304,l),\n(414,395,l),\n(387,459,l),\n(203,381,l),\n(171,368,l),\n(30,308,l),\n(59,243,l)\n);\n},\n{\npos = (56,0);\nref = L;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,283,l),\n(296,315,l),\n(481,394,l),\n(442,494,l),\n(299,431,l),\n(191,395,l),\n(20,320,l),\n(58,223,l)\n);\n},\n{\npos = (74,0);\nref = L;\n}\n);\nwidth = 653;\n}\n);\nunicode = 321;\n},\n{\nglyphname = M;\nlastChange = \"2025-01-01 08:40:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,700,l),\n(98,700,l),\n(98,0,l),\n(158,0,l),\n(158,613,l),\n(385,80,l),\n(455,80,l),\n(682,613,l),\n(682,0,l),\n(742,0,l),\n(742,700,l),\n(655,700,l),\n(421,139,l)\n);\n}\n);\nwidth = 840;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(217,700,l),\n(95,700,l),\n(95,0,l),\n(183,0,l),\n(183,562,l),\n(389,62,l),\n(484,62,l),\n(685,562,l),\n(685,0,l),\n(773,0,l),\n(773,700,l),\n(651,700,l),\n(434,164,l)\n);\n}\n);\nwidth = 868;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(262,700,l),\n(90,700,l),\n(90,0,l),\n(236,0,l),\n(236,429,l),\n(388,62,l),\n(523,62,l),\n(669,430,l),\n(669,0,l),\n(815,0,l),\n(815,700,l),\n(644,700,l),\n(453,244,l)\n);\n}\n);\nwidth = 905;\n}\n);\nunicode = 77;\n},\n{\nglyphname = N;\nlastChange = \"2025-01-01 08:40:46 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (340,0);\n},\n{\nname = top;\npos = (340,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,0,l),\n(160,656,l),\n(129,656,l),\n(506,0,l),\n(581,0,l),\n(581,700,l),\n(521,700,l),\n(521,44,l),\n(552,44,l),\n(176,700,l),\n(100,700,l),\n(100,0,l)\n);\n}\n);\nwidth = 681;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (352,0);\n},\n{\nname = top;\npos = (352,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,0,l),\n(184,623,l),\n(154,623,l),\n(494,0,l),\n(603,0,l),\n(603,700,l),\n(515,700,l),\n(515,77,l),\n(545,77,l),\n(218,700,l),\n(96,700,l),\n(96,0,l)\n);\n}\n);\nwidth = 699;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (373,0);\n},\n{\nname = top;\npos = (370,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(230,0,l),\n(230,504,l),\n(198,504,l),\n(505,0,l),\n(649,0,l),\n(649,700,l),\n(503,700,l),\n(503,204,l),\n(535,204,l),\n(240,700,l),\n(84,700,l),\n(84,0,l)\n);\n}\n);\nwidth = 732;\n}\n);\nunicode = 78;\n},\n{\nglyphname = Nacute;\nlastChange = \"2024-09-02 07:41:37 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (290,188);\nref = acutecomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (318,188);\nref = acutecomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (309,192);\nref = acutecomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 323;\n},\n{\nglyphname = Ncaron;\nlastChange = \"2024-09-02 07:41:36 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (206,188);\nref = caroncomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (200,188);\nref = caroncomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (189,192);\nref = caroncomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 327;\n},\n{\nglyphname = Ncommaaccent;\nlastChange = \"2024-09-02 07:41:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (279,12);\nref = commaaccentcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (275,12);\nref = commaaccentcomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (278,1);\nref = commaaccentcomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 325;\n},\n{\nglyphname = Ndotbelow;\nlastChange = \"2024-09-09 02:08:38 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (279,1);\nref = dotbelowcomb;\n}\n);\nwidth = 732;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (270,0);\nref = dotbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (277,0);\nref = dotbelowcomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 7750;\n},\n{\nglyphname = Nhookleft;\nlastChange = \"2024-11-09 00:37:11 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (257,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(283,-230,o),\n(343,-169,o),\n(343,-76,c),\n(343,451,l),\n(618,0,l),\n(761,0,l),\n(761,700,l),\n(616,700,l),\n(616,258,l),\n(353,700,l),\n(197,700,l),\n(197,-28,l),\n(197,-66,o),\n(175,-90,o),\n(139,-90,cs),\n(126,-90,o),\n(101,-89,o),\n(85,-86,c),\n(84,-222,l),\n(101,-227,o),\n(139,-230,o),\n(155,-230,cs)\n);\n}\n);\nwidth = 845;\n},\n{\nguides = (\n{\npos = (680,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(240,-230,o),\n(278,-179,o),\n(278,-86,c),\n(278,604,l),\n(636,0,l),\n(691,0,l),\n(691,700,l),\n(632,700,l),\n(632,128,l),\n(294,700,l),\n(218,700,l),\n(217,-85,l),\n(216,-158,o),\n(194,-176,o),\n(146,-176,cs),\n(133,-176,o),\n(116,-175,o),\n(100,-172,c),\n(100,-222,l),\n(117,-227,o),\n(139,-230,o),\n(155,-230,cs)\n);\n}\n);\nwidth = 791;\n},\n{\nguides = (\n{\npos = (429,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(261,-230,o),\n(302,-179,o),\n(302,-86,c),\n(302,571,l),\n(619,0,l),\n(706,0,l),\n(706,700,l),\n(618,700,l),\n(618,176,l),\n(343,700,l),\n(214,700,l),\n(216,-85,l),\n(217,-139,o),\n(190,-158,o),\n(143,-158,cs),\n(130,-158,o),\n(112,-157,o),\n(96,-154,c),\n(96,-222,l),\n(113,-227,o),\n(136,-230,o),\n(152,-230,cs)\n);\n}\n);\nwidth = 802;\n}\n);\nunicode = 413;\n},\n{\nglyphname = Nmacronbelow;\nlastChange = \"2024-09-09 02:08:38 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (193,1);\nref = macronbelowcomb;\n}\n);\nwidth = 732;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (198,12);\nref = macronbelowcomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (192,12);\nref = macronbelowcomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 7752;\n},\n{\nglyphname = Ntilde;\nlastChange = \"2024-09-02 07:41:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (177,188);\nref = tildecomb;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (189,188);\nref = tildecomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (162,192);\nref = tildecomb;\n}\n);\nwidth = 732;\n}\n);\nunicode = 209;\n},\n{\nglyphname = Eng;\nlastChange = \"2024-11-07 17:12:44 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (373,0);\n},\n{\nname = top;\npos = (370,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(588,-230,o),\n(648,-169,o),\n(648,-76,cs),\n(648,700,l),\n(503,700,l),\n(503,258,l),\n(240,700,l),\n(84,700,l),\n(84,0,l),\n(230,0,l),\n(230,451,l),\n(505,0,l),\n(505,-28,ls),\n(505,-66,o),\n(483,-90,o),\n(447,-90,cs),\n(434,-90,o),\n(406,-89,o),\n(390,-86,c),\n(389,-222,l),\n(406,-227,o),\n(444,-230,o),\n(460,-230,cs)\n);\n}\n);\nwidth = 733;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (333,0);\n},\n{\nname = top;\npos = (333,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(535,-232,o),\n(573,-181,o),\n(573,-88,cs),\n(573,700,l),\n(514,700,l),\n(514,130,l),\n(176,700,l),\n(100,700,l),\n(100,0,l),\n(160,0,l),\n(160,604,l),\n(518,2,l),\n(517,-87,ls),\n(516,-160,o),\n(489,-178,o),\n(441,-178,cs),\n(428,-178,o),\n(411,-177,o),\n(395,-174,c),\n(395,-224,l),\n(412,-229,o),\n(434,-232,o),\n(450,-232,cs)\n);\n}\n);\nwidth = 674;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (337,0);\n},\n{\nname = top;\npos = (337,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(547,-230,o),\n(588,-179,o),\n(588,-86,cs),\n(588,700,l),\n(500,700,l),\n(500,176,l),\n(225,700,l),\n(96,700,l),\n(96,0,l),\n(184,0,l),\n(184,571,l),\n(501,0,l),\n(502,-85,ls),\n(503,-139,o),\n(476,-158,o),\n(429,-158,cs),\n(416,-158,o),\n(398,-157,o),\n(382,-154,c),\n(382,-222,l),\n(399,-227,o),\n(422,-230,o),\n(438,-230,cs)\n);\n}\n);\nwidth = 684;\n}\n);\nunicode = 330;\n},\n{\nglyphname = O;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (363,-11);\n},\n{\nname = top;\npos = (368,712);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(584,-12,o),\n(672,157,o),\n(672,349,cs),\n(672,543,o),\n(584,712,o),\n(368,712,cs),\n(152,712,o),\n(64,543,o),\n(64,349,cs),\n(64,157,o),\n(152,-12,o),\n(368,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(221,44,o),\n(126,154,o),\n(126,349,cs),\n(126,540,o),\n(221,656,o),\n(368,656,cs),\n(515,656,o),\n(610,540,o),\n(610,349,cs),\n(610,154,o),\n(515,44,o),\n(368,44,cs)\n);\n}\n);\nwidth = 736;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (368,-11);\n},\n{\nname = top;\npos = (372,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(592,-11,o),\n(685,158,o),\n(685,351,cs),\n(685,544,o),\n(592,713,o),\n(372,713,cs),\n(152,713,o),\n(59,544,o),\n(59,351,cs),\n(59,158,o),\n(152,-11,o),\n(372,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,69,o),\n(151,196,o),\n(151,351,cs),\n(151,506,o),\n(229,633,o),\n(372,633,cs),\n(525,633,o),\n(593,506,o),\n(593,351,cs),\n(593,196,o),\n(525,69,o),\n(372,69,cs)\n);\n}\n);\nwidth = 744;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (375,-11);\n},\n{\nname = top;\npos = (380,713);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(604,-11,o),\n(710,148,o),\n(710,351,cs),\n(710,554,o),\n(604,713,o),\n(380,713,cs),\n(156,713,o),\n(48,554,o),\n(48,351,cs),\n(48,148,o),\n(156,-11,o),\n(380,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(266,115,o),\n(202,196,o),\n(202,351,cs),\n(202,506,o),\n(266,587,o),\n(380,587,cs),\n(502,587,o),\n(556,506,o),\n(556,351,cs),\n(556,196,o),\n(502,115,o),\n(380,115,cs)\n);\n}\n);\nwidth = 758;\n}\n);\nunicode = 79;\n},\n{\nglyphname = Oacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (318,200);\nref = acutecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (338,201);\nref = acutecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (319,205);\nref = acutecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 211;\n},\n{\nglyphname = Obreve;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (222,200);\nref = brevecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (228,201);\nref = brevecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (206,205);\nref = brevecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 334;\n},\n{\nglyphname = Ocircumflex;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (234,200);\nref = circumflexcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (222,201);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (199,205);\nref = circumflexcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 212;\n},\n{\nglyphname = Ocircumflexacute;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (87,200);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (91,213);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (199,205);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7888;\n},\n{\nglyphname = Ocircumflexdotbelow;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (293,-11);\nref = dotbelowcomb;\n},\n{\npos = (234,200);\nref = circumflexcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (293,-11);\nref = dotbelowcomb;\n},\n{\npos = (222,201);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (281,-10);\nref = dotbelowcomb;\n},\n{\npos = (199,205);\nref = circumflexcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7896;\n},\n{\nglyphname = Ocircumflexgrave;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (234,200);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (223,213);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (199,205);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7890;\n},\n{\nglyphname = Ocircumflexhookabove;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (234,200);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (223,213);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (199,205);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7892;\n},\n{\nglyphname = Ocircumflextilde;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (232,200);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (216,213);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (172,205);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7894;\n},\n{\nglyphname = Odieresis;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (214,200);\nref = dieresiscomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (211,201);\nref = dieresiscomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (176,205);\nref = dieresiscomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 214;\n},\n{\nglyphname = Odotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (293,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (293,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (281,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7884;\n},\n{\nglyphname = Ograve;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (218,200);\nref = gravecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (215,201);\nref = gravecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (193,205);\nref = gravecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 210;\n},\n{\nglyphname = Ohookabove;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (331,212);\nref = hookabovecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (316,213);\nref = hookabovecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (320,205);\nref = hookabovecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 7886;\n},\n{\nglyphname = Ohorn;\nkernLeft = O;\nlastChange = \"2024-11-21 10:10:34 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(644,627,o),\n(728,705,o),\n(679,827,c),\n(618,808,l),\n(649,738,o),\n(621,676,o),\n(557,676,cs),\n(527,676,o),\n(496,691,o),\n(466,698,c),\n(466,641,l),\n(557,627,l)\n);\n},\n{\nref = O;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(675,612,o),\n(737,708,o),\n(688,830,c),\n(608,808,l),\n(637,749,o),\n(627,679,o),\n(559,679,cs),\n(523,679,o),\n(494,695,o),\n(471,699,c),\n(471,625,l),\n(541,612,l)\n);\n},\n{\nref = O;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(713,601,o),\n(798,710,o),\n(744,845,c),\n(630,814,l),\n(659,755,o),\n(655,682,o),\n(574,682,cs),\n(538,682,o),\n(515,696,o),\n(461,704,c),\n(461,621,l),\n(580,601,l)\n);\n},\n{\nref = O;\n}\n);\nwidth = 775;\n}\n);\nunicode = 416;\n},\n{\nglyphname = Ohornacute;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (318,200);\nref = acutecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (338,201);\nref = acutecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (319,205);\nref = acutecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7898;\n},\n{\nglyphname = Ohorndotbelow;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2024-11-01 03:04:57 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (293,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (293,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (281,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7906;\n},\n{\nglyphname = Ohorngrave;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (218,200);\nref = gravecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (215,201);\nref = gravecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (193,205);\nref = gravecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7900;\n},\n{\nglyphname = Ohornhookabove;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (331,212);\nref = hookabovecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (316,213);\nref = hookabovecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (320,205);\nref = hookabovecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7902;\n},\n{\nglyphname = Ohorntilde;\nkernLeft = O;\nkernRight = Ohorn;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (205,200);\nref = tildecomb;\n}\n);\nwidth = 757;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (209,201);\nref = tildecomb;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (172,205);\nref = tildecomb;\n}\n);\nwidth = 775;\n}\n);\nunicode = 7904;\n},\n{\nglyphname = Ohungarumlaut;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (249,200);\nref = hungarumlautcomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (249,201);\nref = hungarumlautcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (214,205);\nref = hungarumlautcomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 336;\n},\n{\nglyphname = Omacron;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (226,200);\nref = macroncomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (193,201);\nref = macroncomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (204,205);\nref = macroncomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 332;\n},\n{\nglyphname = Oopen;\nlastChange = \"2024-09-20 10:26:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (663,0);\nref = C;\nscale = (-1,1);\n}\n);\nwidth = 663;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (689,0);\nref = C;\nscale = (-1,1);\n}\n);\nwidth = 689;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (684,0);\nref = C;\nscale = (-1,1);\n}\n);\nwidth = 684;\n}\n);\nunicode = 390;\n},\n{\nglyphname = Oslash;\nlastChange = \"2024-11-01 01:05:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (52,0);\nref = O;\n},\n{\nclosed = 1;\nnodes = (\n(109,-12,l),\n(763,682,l),\n(717,720,l),\n(66,31,l)\n);\n}\n);\nwidth = 827;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (62,0);\nref = O;\n},\n{\nclosed = 1;\nnodes = (\n(115,-12,l),\n(796,656,l),\n(736,712,l),\n(59,47,l)\n);\n}\n);\nwidth = 855;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (64,0);\nref = O;\n},\n{\nclosed = 1;\nnodes = (\n(137,-12,l),\n(826,619,l),\n(733,712,l),\n(48,85,l)\n);\n}\n);\nwidth = 874;\n}\n);\nunicode = 216;\n},\n{\nglyphname = Oslashacute;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Oslash;\n},\n{\npos = (370,200);\nref = acutecomb;\n}\n);\nwidth = 827;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Oslash;\n},\n{\npos = (400,201);\nref = acutecomb;\n}\n);\nwidth = 855;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Oslash;\n},\n{\npos = (383,205);\nref = acutecomb;\n}\n);\nwidth = 874;\n}\n);\nunicode = 510;\n},\n{\nglyphname = Otilde;\nlastChange = \"2025-01-07 17:14:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = O;\n},\n{\npos = (205,200);\nref = tildecomb;\n}\n);\nwidth = 736;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = O;\n},\n{\npos = (209,201);\nref = tildecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = O;\n},\n{\npos = (172,205);\nref = tildecomb;\n}\n);\nwidth = 758;\n}\n);\nunicode = 213;\n},\n{\nglyphname = OE;\nlastChange = \"2024-11-07 17:13:03 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (490,0);\n},\n{\nname = top;\npos = (490,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(919,0,l),\n(919,56,l),\n(585,56,l),\n(585,332,l),\n(857,332,l),\n(857,388,l),\n(585,388,l),\n(585,644,l),\n(919,644,l),\n(919,700,l),\n(397,700,ls),\n(171,700,o),\n(64,560,o),\n(64,349,cs),\n(64,141,o),\n(171,0,o),\n(397,0,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(200,56,o),\n(126,192,o),\n(126,350,cs),\n(126,507,o),\n(200,644,o),\n(394,644,cs),\n(520,644,l),\n(520,56,l),\n(394,56,ls)\n);\n}\n);\nwidth = 979;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (491,0);\n},\n{\nname = top;\npos = (491,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(924,0,l),\n(924,80,l),\n(601,80,l),\n(601,320,l),\n(863,320,l),\n(863,398,l),\n(601,398,l),\n(601,620,l),\n(924,620,l),\n(924,700,l),\n(398,700,ls),\n(166,700,o),\n(59,560,o),\n(59,349,cs),\n(59,141,o),\n(166,0,o),\n(398,0,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(232,80,o),\n(151,192,o),\n(151,350,cs),\n(151,507,o),\n(232,620,o),\n(395,620,cs),\n(505,620,l),\n(505,80,l),\n(395,80,ls)\n);\n}\n);\nwidth = 981;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (487,0);\n},\n{\nname = top;\npos = (487,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(932,0,l),\n(932,126,l),\n(621,126,l),\n(621,297,l),\n(881,297,l),\n(881,423,l),\n(621,423,l),\n(621,574,l),\n(932,574,l),\n(932,700,l),\n(385,700,ls),\n(155,700,o),\n(48,554,o),\n(48,349,cs),\n(48,147,o),\n(155,0,o),\n(385,0,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(273,126,o),\n(202,198,o),\n(202,350,cs),\n(202,501,o),\n(273,574,o),\n(382,574,cs),\n(487,574,l),\n(487,126,l),\n(382,126,ls)\n);\n}\n);\nwidth = 974;\n}\n);\nunicode = 338;\n},\n{\nglyphname = P;\nlastChange = \"2025-01-01 08:35:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(164,262,l),\n(332,262,ls),\n(470,262,o),\n(547,350,o),\n(547,472,cs),\n(547,615,o),\n(461,700,o),\n(334,700,cs),\n(98,700,l),\n(98,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(162,644,l),\n(332,644,ls),\n(426,644,o),\n(485,578,o),\n(485,472,cs),\n(485,375,o),\n(428,318,o),\n(331,318,cs),\n(162,318,l)\n);\n}\n);\nwidth = 585;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(183,252,l),\n(344,252,l),\n(485,252,o),\n(567,342,o),\n(567,472,cs),\n(567,615,o),\n(476,700,o),\n(346,700,cs),\n(95,700,l),\n(95,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,621,l),\n(344,621,ls),\n(417,621,o),\n(477,573,o),\n(477,472,cs),\n(477,376,o),\n(417,332,o),\n(343,332,cs),\n(183,332,l)\n);\n}\n);\nwidth = 602;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(238,-1,l),\n(238,231,l),\n(388,231,ls),\n(532,231,o),\n(618,336,o),\n(618,465,cs),\n(618,609,o),\n(523,701,o),\n(390,701,cs),\n(90,701,l),\n(90,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,575,l),\n(365,575,ls),\n(428,575,o),\n(464,527,o),\n(464,467,cs),\n(464,410,o),\n(429,357,o),\n(365,357,cs),\n(236,357,l)\n);\n}\n);\nwidth = 638;\n}\n);\nunicode = 80;\n},\n{\nglyphname = Thorn;\nlastChange = \"2024-11-22 03:08:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(164,138,l),\n(332,138,ls),\n(470,138,o),\n(547,226,o),\n(547,348,cs),\n(547,491,o),\n(461,576,o),\n(334,576,cs),\n(98,576,l),\n(98,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(162,520,l),\n(332,520,ls),\n(426,520,o),\n(485,454,o),\n(485,348,cs),\n(485,251,o),\n(428,194,o),\n(331,194,cs),\n(162,194,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(98,512,l),\n(163,512,l),\n(163,700,l),\n(98,700,l)\n);\n}\n);\nwidth = 585;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(183,128,l),\n(344,128,l),\n(485,128,o),\n(567,218,o),\n(567,348,cs),\n(567,491,o),\n(476,576,o),\n(346,576,cs),\n(95,576,l),\n(95,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,497,l),\n(344,497,ls),\n(417,497,o),\n(477,449,o),\n(477,348,cs),\n(477,252,o),\n(417,208,o),\n(343,208,cs),\n(183,208,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(95,500,l),\n(181,500,l),\n(181,700,l),\n(95,700,l)\n);\n}\n);\nwidth = 602;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(238,-1,l),\n(238,122,l),\n(388,122,ls),\n(532,122,o),\n(618,227,o),\n(618,356,cs),\n(618,500,o),\n(523,592,o),\n(390,592,cs),\n(90,592,l),\n(90,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,466,l),\n(365,466,ls),\n(428,466,o),\n(464,418,o),\n(464,358,cs),\n(464,301,o),\n(429,248,o),\n(365,248,cs),\n(236,248,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(90,462,l),\n(238,462,l),\n(238,700,l),\n(90,700,l)\n);\n}\n);\nwidth = 638;\n}\n);\nunicode = 222;\n},\n{\nglyphname = Q;\nkernLeft = O;\nkernRight = Q;\nlastChange = \"2025-01-01 08:40:56 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(584,-12,o),\n(672,157,o),\n(672,349,cs),\n(672,543,o),\n(584,712,o),\n(368,712,cs),\n(152,712,o),\n(64,543,o),\n(64,349,cs),\n(64,157,o),\n(152,-12,o),\n(368,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(683,-33,l),\n(436,256,l),\n(393,220,l),\n(638,-71,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(221,44,o),\n(126,154,o),\n(126,349,cs),\n(126,540,o),\n(221,656,o),\n(368,656,cs),\n(515,656,o),\n(610,540,o),\n(610,349,cs),\n(610,154,o),\n(515,44,o),\n(368,44,cs)\n);\n}\n);\nwidth = 745;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(592,-11,o),\n(685,158,o),\n(685,351,cs),\n(685,544,o),\n(592,713,o),\n(372,713,cs),\n(152,713,o),\n(59,544,o),\n(59,351,cs),\n(59,158,o),\n(152,-11,o),\n(372,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(701,-34,l),\n(436,272,l),\n(382,227,l),\n(644,-82,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(219,69,o),\n(151,196,o),\n(151,351,cs),\n(151,506,o),\n(219,633,o),\n(372,633,cs),\n(525,633,o),\n(593,506,o),\n(593,351,cs),\n(593,196,o),\n(525,69,o),\n(372,69,cs)\n);\n}\n);\nwidth = 752;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(598,-11,o),\n(698,158,o),\n(698,351,cs),\n(698,544,o),\n(598,713,o),\n(374,713,cs),\n(150,713,o),\n(48,544,o),\n(48,351,cs),\n(48,158,o),\n(150,-11,o),\n(374,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(711,-30,l),\n(430,299,l),\n(341,226,l),\n(621,-105,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(231,111,o),\n(180,224,o),\n(180,351,cs),\n(180,463,o),\n(224,592,o),\n(374,592,cs),\n(524,592,o),\n(564,463,o),\n(564,351,cs),\n(564,224,o),\n(524,111,o),\n(374,111,cs)\n);\n}\n);\nwidth = 734;\n}\n);\nunicode = 81;\n},\n{\nglyphname = R;\nlastChange = \"2025-01-01 07:00:59 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (305,0);\n},\n{\nname = top;\npos = (274,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(164,292,l),\n(316,292,ls),\n(449,292,o),\n(526,395,o),\n(526,488,cs),\n(526,631,o),\n(440,700,o),\n(318,700,cs),\n(98,700,l),\n(98,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(563,0,l),\n(385,306,l),\n(326,292,l),\n(493,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(162,644,l),\n(316,644,ls),\n(405,644,o),\n(464,594,o),\n(464,488,cs),\n(464,420,o),\n(406,348,o),\n(314,348,cs),\n(162,348,l)\n);\n}\n);\nwidth = 608;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (328,0);\n},\n{\nname = top;\npos = (328,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(183,290,l),\n(326,290,ls),\n(470,290,o),\n(564,376,o),\n(564,498,cs),\n(564,631,o),\n(474,700,o),\n(352,700,cs),\n(95,700,l),\n(95,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(602,0,l),\n(416,319,l),\n(333,292,l),\n(500,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,620,l),\n(346,620,ls),\n(416,620,o),\n(474,573,o),\n(474,498,cs),\n(474,422,o),\n(416,370,o),\n(346,370,cs),\n(183,370,l)\n);\n}\n);\nwidth = 644;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (317,0);\n},\n{\nname = top;\npos = (317,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(238,-1,l),\n(238,251,l),\n(388,251,ls),\n(532,251,o),\n(618,341,o),\n(618,478,cs),\n(618,622,o),\n(523,701,o),\n(390,701,cs),\n(90,701,l),\n(90,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(667,0,l),\n(489,283,l),\n(330,269,l),\n(494,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,575,l),\n(365,575,ls),\n(428,575,o),\n(464,533,o),\n(464,480,cs),\n(464,410,o),\n(429,377,o),\n(365,377,cs),\n(236,377,l)\n);\n}\n);\nwidth = 699;\n}\n);\nunicode = 82;\n},\n{\nglyphname = Racute;\nlastChange = \"2024-09-13 00:28:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (224,188);\nref = acutecomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (294,188);\nref = acutecomb;\n}\n);\nwidth = 644;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (256,192);\nref = acutecomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 340;\n},\n{\nglyphname = Rcaron;\nlastChange = \"2024-09-02 07:42:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (140,188);\nref = caroncomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (176,188);\nref = caroncomb;\n}\n);\nwidth = 644;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (136,192);\nref = caroncomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 344;\n},\n{\nglyphname = Rcommaaccent;\nlastChange = \"2024-09-02 07:42:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (244,12);\nref = commaaccentcomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (251,12);\nref = commaaccentcomb;\n}\n);\nwidth = 644;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (222,1);\nref = commaaccentcomb;\n}\n);\nwidth = 699;\n}\n);\nunicode = 342;\n},\n{\nglyphname = Rdotbelow;\nlastChange = \"2024-09-09 02:08:44 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (223,1);\nref = dotbelowcomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (235,0);\nref = dotbelowcomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (253,0);\nref = dotbelowcomb;\n}\n);\nwidth = 644;\n}\n);\nunicode = 7770;\n},\n{\nglyphname = Rmacronbelow;\nlastChange = \"2024-09-09 02:08:44 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = R;\n},\n{\npos = (137,1);\nref = macronbelowcomb;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = R;\n},\n{\npos = (163,12);\nref = macronbelowcomb;\n}\n);\nwidth = 608;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = R;\n},\n{\npos = (168,12);\nref = macronbelowcomb;\n}\n);\nwidth = 644;\n}\n);\nunicode = 7774;\n},\n{\nglyphname = S;\nlastChange = \"2025-01-01 07:01:56 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (307,-12);\n},\n{\nname = top;\npos = (304,712);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(442,-12,o),\n(543,58,o),\n(543,195,cs),\n(543,437,o),\n(129,334,o),\n(129,521,cs),\n(129,591,o),\n(185,656,o),\n(292,656,cs),\n(410,656,o),\n(460,580,o),\n(469,513,c),\n(535,513,l),\n(530,603,o),\n(444,712,o),\n(299,712,cs),\n(142,712,o),\n(67,618,o),\n(67,516,cs),\n(67,259,o),\n(481,382,o),\n(481,186,cs),\n(481,114,o),\n(426,44,o),\n(305,44,cs),\n(182,44,o),\n(127,121,o),\n(111,214,c),\n(44,214,l),\n(57,99,o),\n(141,-12,o),\n(305,-12,cs)\n);\n}\n);\nwidth = 596;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (313,-12);\n},\n{\nname = top;\npos = (310,712);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(453,-12,o),\n(559,58,o),\n(559,195,cs),\n(559,457,o),\n(165,344,o),\n(165,521,cs),\n(165,591,o),\n(233,632,o),\n(303,632,cs),\n(398,632,o),\n(446,572,o),\n(456,513,c),\n(549,513,l),\n(544,603,o),\n(463,712,o),\n(310,712,cs),\n(150,712,o),\n(73,618,o),\n(73,516,cs),\n(73,246,o),\n(467,371,o),\n(467,186,cs),\n(467,114,o),\n(396,68,o),\n(313,68,cs),\n(218,68,o),\n(163,129,o),\n(149,214,c),\n(52,214,l),\n(65,99,o),\n(143,-12,o),\n(313,-12,cs)\n);\n}\n);\nwidth = 597;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (313,-5);\n},\n{\nname = top;\npos = (314,712);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(472,-12,o),\n(575,63,o),\n(575,200,cs),\n(575,459,o),\n(212,386,o),\n(212,509,cs),\n(212,568,o),\n(270,582,o),\n(314,582,cs),\n(370,582,o),\n(407,554,o),\n(416,505,c),\n(569,505,l),\n(564,595,o),\n(492,712,o),\n(314,712,cs),\n(137,712,o),\n(59,606,o),\n(59,504,cs),\n(59,234,o),\n(421,338,o),\n(421,186,cs),\n(421,142,o),\n(374,118,o),\n(313,118,cs),\n(257,118,o),\n(205,147,o),\n(191,222,c),\n(35,222,l),\n(48,107,o),\n(119,-12,o),\n(313,-12,cs)\n);\n}\n);\nwidth = 611;\n}\n);\nunicode = 83;\n},\n{\nglyphname = Sacute;\nlastChange = \"2024-09-02 07:42:52 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (254,200);\nref = acutecomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (276,200);\nref = acutecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (253,204);\nref = acutecomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 346;\n},\n{\nglyphname = Scaron;\nlastChange = \"2024-09-02 07:42:52 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (170,200);\nref = caroncomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (158,200);\nref = caroncomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (133,204);\nref = caroncomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 352;\n},\n{\nglyphname = Scedilla;\nlastChange = \"2024-11-01 00:35:54 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (200,-14);\nref = cedillacomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (196,-14);\nref = cedillacomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (185,-4);\nref = cedillacomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 350;\n},\n{\nglyphname = Scircumflex;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (170,200);\nref = circumflexcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (160,200);\nref = circumflexcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (133,204);\nref = circumflexcomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 348;\n},\n{\nglyphname = Scommaaccent;\nlastChange = \"2024-09-02 07:42:51 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = S;\n},\n{\npos = (246,0);\nref = commaaccentcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = S;\n},\n{\npos = (236,0);\nref = commaaccentcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = S;\n},\n{\npos = (218,-4);\nref = commaaccentcomb;\n}\n);\nwidth = 611;\n}\n);\nunicode = 536;\n},\n{\nglyphname = Germandbls;\nlastChange = \"2024-11-01 00:57:37 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,0,l),\n(160,700,l),\n(100,700,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(202,98,l),\n(242,29,o),\n(316,-12,o),\n(401,-12,cs),\n(523,-12,o),\n(617,69,o),\n(616,204,cs),\n(615,320,o),\n(534,423,o),\n(380,423,c),\n(580,639,l),\n(580,700,l),\n(122,700,l),\n(122,644,l),\n(507,644,l),\n(299,423,l),\n(299,370,l),\n(356,370,ls),\n(485,370,o),\n(555,305,o),\n(555,208,cs),\n(555,124,o),\n(503,44,o),\n(401,44,cs),\n(327,44,o),\n(280,76,o),\n(254,128,c)\n);\n}\n);\nwidth = 667;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(197,0,l),\n(197,700,l),\n(109,700,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,91,l),\n(263,31,o),\n(331,-12,o),\n(426,-12,cs),\n(561,-12,o),\n(641,77,o),\n(641,210,cs),\n(641,312,o),\n(561,414,o),\n(426,414,c),\n(598,615,l),\n(598,700,l),\n(174,700,l),\n(174,620,l),\n(492,620,l),\n(315,414,l),\n(315,346,l),\n(374,346,ls),\n(482,346,o),\n(549,295,o),\n(549,200,cs),\n(549,114,o),\n(494,68,o),\n(426,68,cs),\n(366,68,o),\n(330,105,o),\n(316,139,c)\n);\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(255,0,l),\n(255,700,l),\n(109,700,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(290,92,l),\n(327,21,o),\n(406,-13,o),\n(493,-13,cs),\n(656,-13,o),\n(722,92,o),\n(722,218,cs),\n(722,331,o),\n(634,423,o),\n(533,423,c),\n(680,574,l),\n(680,700,l),\n(184,700,l),\n(184,574,l),\n(517,574,l),\n(370,422,l),\n(370,317,l),\n(442,317,ls),\n(517,317,o),\n(577,288,o),\n(577,217,cs),\n(577,155,o),\n(537,117,o),\n(489,117,cs),\n(452,117,o),\n(422,133,o),\n(406,166,c)\n);\n}\n);\nwidth = 760;\n}\n);\nunicode = 7838;\n},\n{\nglyphname = T;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2025-01-01 08:41:32 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (250,0);\n},\n{\nname = top;\npos = (250,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(282,0,l),\n(282,644,l),\n(484,644,l),\n(484,700,l),\n(16,700,l),\n(16,644,l),\n(218,644,l),\n(218,0,l)\n);\n}\n);\nwidth = 500;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (283,0);\n},\n{\nname = top;\npos = (283,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(327,0,l),\n(327,620,l),\n(516,620,l),\n(516,700,l),\n(50,700,l),\n(50,620,l),\n(239,620,l),\n(239,0,l)\n);\n}\n);\nwidth = 562;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (300,0);\n},\n{\nname = top;\npos = (296,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(369,0,l),\n(369,574,l),\n(556,574,l),\n(556,700,l),\n(40,700,l),\n(40,574,l),\n(223,574,l),\n(223,0,l)\n);\n}\n);\nwidth = 596;\n}\n);\nunicode = 84;\n},\n{\nglyphname = Tcaron;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2024-11-01 03:06:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (116,188);\nref = caroncomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (131,188);\nref = caroncomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (115,192);\nref = caroncomb;\n}\n);\nwidth = 596;\n}\n);\nunicode = 356;\n},\n{\nglyphname = Tcedilla;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2024-11-01 03:06:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (143,-2);\nref = cedillacomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (166,-2);\nref = cedillacomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (172,1);\nref = cedillacomb;\n}\n);\nwidth = 596;\n}\n);\nunicode = 354;\n},\n{\nglyphname = Tcommaaccent;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2024-11-01 03:06:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (189,12);\nref = commaaccentcomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (206,12);\nref = commaaccentcomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (205,1);\nref = commaaccentcomb;\n}\n);\nwidth = 596;\n}\n);\nunicode = 538;\n},\n{\nglyphname = Tdotbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2024-11-01 03:06:39 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (206,1);\nref = dotbelowcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (180,0);\nref = dotbelowcomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (208,0);\nref = dotbelowcomb;\n}\n);\nwidth = 562;\n}\n);\nunicode = 7788;\n},\n{\nglyphname = Tmacronbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2024-11-01 03:06:39 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = T;\n},\n{\npos = (120,1);\nref = macronbelowcomb;\n}\n);\nwidth = 596;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = T;\n},\n{\npos = (108,12);\nref = macronbelowcomb;\n}\n);\nwidth = 500;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = T;\n},\n{\npos = (123,12);\nref = macronbelowcomb;\n}\n);\nwidth = 562;\n}\n);\nunicode = 7790;\n},\n{\nglyphname = U;\nlastChange = \"2025-01-01 06:29:39 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (336,-12);\n},\n{\nname = top;\npos = (336,713);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(483,-12,o),\n(576,94,o),\n(576,275,cs),\n(576,701,l),\n(516,701,l),\n(516,275,ls),\n(516,121,o),\n(439,44,o),\n(333,44,cs),\n(229,44,o),\n(150,121,o),\n(150,275,cs),\n(150,701,l),\n(90,701,l),\n(90,275,ls),\n(90,94,o),\n(184,-12,o),\n(337,-12,cs)\n);\n}\n);\nwidth = 666;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (342,-12);\n},\n{\nname = top;\npos = (342,713);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(509,-12,o),\n(594,98,o),\n(594,275,cs),\n(594,701,l),\n(506,701,l),\n(506,275,ls),\n(506,139,o),\n(432,73,o),\n(340,73,cs),\n(244,73,o),\n(174,139,o),\n(174,275,cs),\n(174,701,l),\n(86,701,l),\n(86,275,ls),\n(86,98,o),\n(182,-12,o),\n(344,-12,cs)\n);\n}\n);\nwidth = 680;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (351,-12);\n},\n{\nname = top;\npos = (351,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(527,-12,o),\n(626,98,o),\n(626,275,cs),\n(626,701,l),\n(480,701,l),\n(480,275,ls),\n(480,184,o),\n(434,118,o),\n(347,118,cs),\n(256,118,o),\n(214,184,o),\n(214,275,cs),\n(214,701,l),\n(68,701,l),\n(68,275,ls),\n(68,98,o),\n(178,-12,o),\n(351,-12,cs)\n);\n}\n);\nwidth = 694;\n}\n);\nunicode = 85;\n},\n{\nglyphname = Uacute;\nlastChange = \"2024-09-02 07:43:34 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (286,201);\nref = acutecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (308,201);\nref = acutecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (290,192);\nref = acutecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 218;\n},\n{\nglyphname = Ubreve;\nlastChange = \"2024-09-08 01:05:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (190,201);\nref = brevecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (198,201);\nref = brevecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (177,192);\nref = brevecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 364;\n},\n{\nglyphname = Ucircumflex;\nlastChange = \"2024-09-02 07:43:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (202,201);\nref = circumflexcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (192,201);\nref = circumflexcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (170,192);\nref = circumflexcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 219;\n},\n{\nglyphname = Udieresis;\nlastChange = \"2024-09-02 07:43:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (182,201);\nref = dieresiscomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (181,201);\nref = dieresiscomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (147,192);\nref = dieresiscomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 220;\n},\n{\nglyphname = Udotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (266,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (267,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (257,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 7908;\n},\n{\nglyphname = Ugrave;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (186,201);\nref = gravecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (185,201);\nref = gravecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (164,192);\nref = gravecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 217;\n},\n{\nglyphname = Uhookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (299,213);\nref = hookabovecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (286,213);\nref = hookabovecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (291,192);\nref = hookabovecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 7910;\n},\n{\nglyphname = Uhorn;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2024-11-21 10:11:11 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\nclosed = 1;\nnodes = (\n(662,652,o),\n(746,730,o),\n(697,852,c),\n(636,833,l),\n(667,763,o),\n(639,701,o),\n(575,701,c),\n(575,652,l)\n);\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\nclosed = 1;\nnodes = (\n(714,647,o),\n(776,730,o),\n(727,852,c),\n(647,830,l),\n(676,771,o),\n(672,701,o),\n(591,701,c),\n(591,647,l)\n);\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\nclosed = 1;\nnodes = (\n(757,620,o),\n(845,729,o),\n(791,864,c),\n(677,833,l),\n(706,774,o),\n(705,701,o),\n(624,701,c),\n(624,620,l)\n);\n}\n);\nwidth = 777;\n}\n);\nunicode = 431;\n},\n{\nglyphname = Uhornacute;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2024-11-01 03:14:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (286,201);\nref = acutecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (308,201);\nref = acutecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (290,192);\nref = acutecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7912;\n},\n{\nglyphname = Uhorndotbelow;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2024-11-01 03:14:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (266,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (267,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (257,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7920;\n},\n{\nglyphname = Uhorngrave;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (186,201);\nref = gravecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (185,201);\nref = gravecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (164,192);\nref = gravecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7914;\n},\n{\nglyphname = Uhornhookabove;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2024-11-01 03:14:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (299,213);\nref = hookabovecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (286,213);\nref = hookabovecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (291,192);\nref = hookabovecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7916;\n},\n{\nglyphname = Uhorntilde;\nkernLeft = U;\nkernRight = Uhorn;\nlastChange = \"2024-11-01 03:14:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (173,201);\nref = tildecomb;\n}\n);\nwidth = 701;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (179,201);\nref = tildecomb;\n}\n);\nwidth = 744;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (143,192);\nref = tildecomb;\n}\n);\nwidth = 777;\n}\n);\nunicode = 7918;\n},\n{\nglyphname = Uhungarumlaut;\nlastChange = \"2024-09-02 07:43:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (217,201);\nref = hungarumlautcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (219,201);\nref = hungarumlautcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (185,192);\nref = hungarumlautcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 368;\n},\n{\nglyphname = Umacron;\nlastChange = \"2024-09-02 07:43:36 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (194,201);\nref = macroncomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (163,201);\nref = macroncomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (175,192);\nref = macroncomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 362;\n},\n{\nglyphname = Uogonek;\nlastChange = \"2024-09-13 00:56:51 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (251,3);\nref = ogonekcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (265,0);\nref = ogonekcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (271,2);\nref = ogonekcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 370;\n},\n{\nglyphname = Uring;\nlastChange = \"2024-09-02 07:43:37 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (217,201);\nref = ringcomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (219,201);\nref = ringcomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (215,192);\nref = ringcomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 366;\n},\n{\nglyphname = Utilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = U;\n},\n{\npos = (173,201);\nref = tildecomb;\n}\n);\nwidth = 666;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = U;\n},\n{\npos = (179,201);\nref = tildecomb;\n}\n);\nwidth = 680;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = U;\n},\n{\npos = (143,192);\nref = tildecomb;\n}\n);\nwidth = 694;\n}\n);\nunicode = 360;\n},\n{\nglyphname = V;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-01 06:26:08 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(257,0,l),\n(319,0,l),\n(79,700,l),\n(8,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(261,0,l),\n(319,0,l),\n(568,700,l),\n(504,700,l)\n);\n}\n);\nwidth = 579;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(253,0,l),\n(339,0,l),\n(106,700,l),\n(8,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(259,0,l),\n(339,0,l),\n(583,700,l),\n(497,700,l)\n);\n}\n);\nwidth = 590;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(247,0,l),\n(397,0,l),\n(160,700,l),\n(2,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(279,0,l),\n(417,0,l),\n(661,700,l),\n(509,700,l)\n);\n}\n);\nwidth = 663;\n}\n);\nunicode = 86;\n},\n{\nglyphname = W;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-01 07:00:56 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (474,0);\n},\n{\nname = top;\npos = (474,700);\n}\n);\nguides = (\n{\nangle = 270;\npos = (268,658);\n},\n{\nangle = 270;\npos = (474,649);\n},\n{\nangle = 270;\npos = (695,658);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(305,0,l),\n(485,638,l),\n(468,638,l),\n(653,0,l),\n(732,0,l),\n(926,700,l),\n(863,700,l),\n(687,48,l),\n(703,48,l),\n(523,700,l),\n(440,700,l),\n(260,48,l),\n(276,48,l),\n(102,700,l),\n(32,700,l),\n(224,0,l)\n);\n}\n);\nwidth = 958;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (469,0);\n},\n{\nname = top;\npos = (478,700);\n}\n);\nguides = (\n{\nangle = 89.2931;\npos = (265,413);\n},\n{\nangle = 89.2931;\npos = (474,411);\n},\n{\nangle = 89.2931;\npos = (696,411);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(318,0,l),\n(490,616,l),\n(464,616,l),\n(636,0,l),\n(751,0,l),\n(926,700,l),\n(833,700,l),\n(679,59,l),\n(708,59,l),\n(532,700,l),\n(422,700,l),\n(246,59,l),\n(275,59,l),\n(121,700,l),\n(28,700,l),\n(203,0,l)\n);\n}\n);\nwidth = 954;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (491,0);\n},\n{\nname = top;\npos = (491,700);\n}\n);\nguides = (\n{\nangle = 270;\npos = (287,528);\n},\n{\nangle = 270;\npos = (491,528);\n},\n{\nangle = 270;\npos = (696,528);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(362,0,l),\n(509,567,l),\n(473,567,l),\n(622,0,l),\n(786,0,l),\n(967,700,l),\n(810,700,l),\n(677,129,l),\n(717,129,l),\n(573,700,l),\n(409,700,l),\n(267,129,l),\n(306,129,l),\n(173,700,l),\n(16,700,l),\n(198,0,l)\n);\n}\n);\nwidth = 983;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"61F56607-383A-4625-9FCC-44CDCF2F703C\";\nname = \"14 Jul 24 at 12:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(293,0,l),\n(463,569,l),\n(633,0,l),\n(748,0,l),\n(898,700,l),\n(805,700,l),\n(688,116,l),\n(517,700,l),\n(409,700,l),\n(238,116,l),\n(121,700,l),\n(28,700,l),\n(178,0,l)\n);\n}\n);\nwidth = 926;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"5ACD06B8-073E-40FC-B562-77ADC4AD2B58\";\nname = \"14 Jul 24 at 12:35\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(332,0,l),\n(168,0,l),\n(18,700,l),\n(175,700,l),\n(262,213,l),\n(408,700,l),\n(556,700,l),\n(702,213,l),\n(789,700,l),\n(946,700,l),\n(796,0,l),\n(632,0,l),\n(482,485,l)\n);\n}\n);\nwidth = 964;\n}\n);\nunicode = 87;\n},\n{\nglyphname = Wacute;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2024-11-01 03:05:19 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (424,188);\nref = acutecomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (444,188);\nref = acutecomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (430,192);\nref = acutecomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 7810;\n},\n{\nglyphname = Wcircumflex;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2024-11-01 03:05:19 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (340,188);\nref = circumflexcomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (328,188);\nref = circumflexcomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (310,192);\nref = circumflexcomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 372;\n},\n{\nglyphname = Wdieresis;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2024-11-01 03:05:19 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (320,188);\nref = dieresiscomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (317,188);\nref = dieresiscomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (287,192);\nref = dieresiscomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 7812;\n},\n{\nglyphname = Wgrave;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = W;\n},\n{\npos = (324,188);\nref = gravecomb;\n}\n);\nwidth = 958;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = W;\n},\n{\npos = (321,188);\nref = gravecomb;\n}\n);\nwidth = 954;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = W;\n},\n{\npos = (304,192);\nref = gravecomb;\n}\n);\nwidth = 983;\n}\n);\nunicode = 7808;\n},\n{\nglyphname = X;\nlastChange = \"2025-01-01 08:41:50 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(573,-1,l),\n(112,699,l),\n(41,699,l),\n(503,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(90,-1,l),\n(550,699,l),\n(479,699,l),\n(20,-1,l)\n);\n}\n);\nwidth = 593;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(580,0,l),\n(127,700,l),\n(26,700,l),\n(480,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(115,0,l),\n(569,700,l),\n(469,700,l),\n(16,0,l)\n);\n}\n);\nwidth = 596;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(636,0,l),\n(166,700,l),\n(7,700,l),\n(478,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(634,700,l),\n(475,700,l),\n(6,0,l)\n);\n}\n);\nwidth = 642;\n}\n);\nunicode = 88;\n},\n{\nglyphname = Y;\nlastChange = \"2025-01-01 07:01:17 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (286,0);\n},\n{\nname = top;\npos = (286,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(317,0,l),\n(314,294,l),\n(558,700,l),\n(491,700,l),\n(286,350,l),\n(80,700,l),\n(6,700,l),\n(257,294,l),\n(254,0,l)\n);\n}\n);\nwidth = 564;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (294,0);\n},\n{\nname = top;\npos = (294,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(339,0,l),\n(336,294,l),\n(577,700,l),\n(484,700,l),\n(293,375,l),\n(105,700,l),\n(5,700,l),\n(254,294,l),\n(251,0,l)\n);\n}\n);\nwidth = 582;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (324,0);\n},\n{\nname = top;\npos = (323,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(397,0,l),\n(394,289,l),\n(645,700,l),\n(487,700,l),\n(323,411,l),\n(161,700,l),\n(0,700,l),\n(253,289,l),\n(250,0,l)\n);\n}\n);\nwidth = 645;\n}\n);\nunicode = 89;\n},\n{\nglyphname = Yacute;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2024-11-01 03:04:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (236,188);\nref = acutecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (260,188);\nref = acutecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (262,192);\nref = acutecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 221;\n},\n{\nglyphname = Ycircumflex;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2024-11-01 03:04:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (152,188);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (144,188);\nref = circumflexcomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (142,192);\nref = circumflexcomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 374;\n},\n{\nglyphname = Ydieresis;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2024-11-01 03:04:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (132,188);\nref = dieresiscomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (133,188);\nref = dieresiscomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (119,192);\nref = dieresiscomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 376;\n},\n{\nglyphname = Ydotbelow;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2024-11-01 03:04:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (216,0);\nref = dotbelowcomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (219,0);\nref = dotbelowcomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (230,1);\nref = dotbelowcomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7924;\n},\n{\nglyphname = Ygrave;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (136,188);\nref = gravecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (137,188);\nref = gravecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (136,192);\nref = gravecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7922;\n},\n{\nglyphname = Yhookabove;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2024-11-01 03:04:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (249,200);\nref = hookabovecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (238,200);\nref = hookabovecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (263,192);\nref = hookabovecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7926;\n},\n{\nglyphname = Ytilde;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2024-11-01 03:04:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (123,188);\nref = tildecomb;\n}\n);\nwidth = 564;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Y;\n},\n{\npos = (131,188);\nref = tildecomb;\n}\n);\nwidth = 582;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Y;\n},\n{\npos = (115,192);\nref = tildecomb;\n}\n);\nwidth = 645;\n}\n);\nunicode = 7928;\n},\n{\nglyphname = Z;\nlastChange = \"2025-01-01 07:01:22 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (264,0);\n},\n{\nname = top;\npos = (264,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(483,1,l),\n(483,57,l),\n(114,57,l),\n(483,642,l),\n(483,700,l),\n(46,700,l),\n(46,644,l),\n(416,644,l),\n(46,59,l),\n(46,1,l)\n);\n}\n);\nwidth = 533;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (271,0);\n},\n{\nname = top;\npos = (271,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(495,1,l),\n(495,81,l),\n(150,81,l),\n(495,618,l),\n(495,700,l),\n(46,700,l),\n(46,620,l),\n(391,620,l),\n(46,83,l),\n(46,1,l)\n);\n}\n);\nwidth = 545;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (271,0);\n},\n{\nname = top;\npos = (271,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(517,1,l),\n(517,127,l),\n(199,127,l),\n(517,578,l),\n(517,700,l),\n(30,700,l),\n(30,574,l),\n(350,574,l),\n(30,123,l),\n(30,1,l)\n);\n}\n);\nwidth = 549;\n}\n);\nunicode = 90;\n},\n{\nglyphname = Zacute;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (214,188);\nref = acutecomb;\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Z;\n},\n{\npos = (237,188);\nref = acutecomb;\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Z;\n},\n{\npos = (210,192);\nref = acutecomb;\n}\n);\nwidth = 549;\n}\n);\nunicode = 377;\n},\n{\nglyphname = Zcaron;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (130,188);\nref = caroncomb;\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Z;\n},\n{\npos = (119,188);\nref = caroncomb;\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Z;\n},\n{\npos = (90,192);\nref = caroncomb;\n}\n);\nwidth = 549;\n}\n);\nunicode = 381;\n},\n{\nglyphname = Zdotaccent;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (196,188);\nref = dotaccentcomb;\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = Z;\n},\n{\npos = (197,188);\nref = dotaccentcomb;\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = Z;\n},\n{\npos = (175,192);\nref = dotaccentcomb;\n}\n);\nwidth = 549;\n}\n);\nunicode = 379;\n},\n{\nglyphname = Lcommaaccent.loclMAH;\nlastChange = \"2025-01-07 17:13:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = L;\n},\n{\npos = (193,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 529;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = L;\n},\n{\npos = (172,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 524;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = L;\n},\n{\npos = (193,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 579;\n}\n);\n},\n{\nglyphname = Ncommaaccent.loclMAH;\nlastChange = \"2024-10-21 04:16:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = N;\n},\n{\npos = (231,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 681;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = N;\n},\n{\npos = (227,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 699;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = N;\n},\n{\npos = (238,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 732;\n}\n);\n},\n{\nglyphname = a;\nkernLeft = o;\nlastChange = \"2025-01-01 06:44:11 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (282,-12);\n},\n{\nname = top;\npos = (281,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(334,-12,o),\n(419,23,o),\n(442,92,c),\n(442,0,l),\n(498,0,l),\n(498,500,l),\n(442,500,l),\n(442,406,l),\n(422,461,o),\n(353,512,o),\n(268,512,cs),\n(151,512,o),\n(56,419,o),\n(56,250,cs),\n(56,86,o),\n(151,-12,o),\n(268,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(181,38,o),\n(115,124,o),\n(115,252,cs),\n(115,377,o),\n(167,462,o),\n(280,462,cs),\n(359,462,o),\n(442,392,o),\n(443,250,cs),\n(442,112,o),\n(376,38,o),\n(280,38,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (291,-12);\n},\n{\nname = top;\npos = (291,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,-12,o),\n(417,27,o),\n(439,96,c),\n(439,0,l),\n(523,0,l),\n(523,500,l),\n(439,500,l),\n(439,402,l),\n(420,457,o),\n(368,512,o),\n(280,512,cs),\n(141,512,o),\n(54,419,o),\n(54,250,cs),\n(54,86,o),\n(141,-12,o),\n(275,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(187,64,o),\n(139,148,o),\n(139,252,cs),\n(139,356,o),\n(187,437,o),\n(285,437,cs),\n(384,437,o),\n(438,360,o),\n(438,250,cs),\n(438,148,o),\n(384,64,o),\n(288,64,cs)\n);\n}\n);\nwidth = 609;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (285,-12);\n},\n{\nname = top;\npos = (285,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(341,-12,o),\n(390,29,o),\n(416,83,c),\n(416,0,l),\n(555,0,l),\n(556,508,l),\n(416,508,l),\n(416,415,l),\n(390,470,o),\n(341,520,o),\n(257,520,cs),\n(126,520,o),\n(38,421,o),\n(38,253,cs),\n(38,88,o),\n(116,-12,o),\n(252,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(230,95,o),\n(184,157,o),\n(184,253,cs),\n(184,340,o),\n(230,410,o),\n(302,410,cs),\n(370,410,o),\n(416,341,o),\n(416,253,cs),\n(416,158,o),\n(370,97,o),\n(302,96,cs)\n);\n}\n);\nwidth = 610;\n}\n);\nunicode = 97;\n},\n{\nglyphname = aacute;\nkernLeft = a;\nlastChange = \"2024-09-27 10:45:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (231,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (257,0);\nref = acutecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (224,12);\nref = acutecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 225;\n},\n{\nglyphname = abreve;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (135,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (147,0);\nref = brevecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (111,12);\nref = brevecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 259;\n},\n{\nglyphname = abreveacute;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (84,0);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (91,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (110,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7855;\n},\n{\nglyphname = abrevedotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (212,-12);\nref = dotbelowcomb;\n},\n{\npos = (135,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (216,-12);\nref = dotbelowcomb;\n},\n{\npos = (147,0);\nref = brevecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (191,-11);\nref = dotbelowcomb;\n},\n{\npos = (111,12);\nref = brevecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7863;\n},\n{\nglyphname = abrevegrave;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (74,0);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (83,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (110,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7857;\n},\n{\nglyphname = abrevehookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (93,0);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (91,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (110,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7859;\n},\n{\nglyphname = abrevetilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (51,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (64,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (110,12);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7861;\n},\n{\nglyphname = acircumflex;\nkernLeft = a;\nlastChange = \"2024-09-27 10:45:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (147,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (141,0);\nref = circumflexcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (104,12);\nref = circumflexcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 226;\n},\n{\nglyphname = acircumflexacute;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (10,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (104,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7845;\n},\n{\nglyphname = acircumflexdotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (212,-12);\nref = dotbelowcomb;\n},\n{\npos = (147,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (216,-12);\nref = dotbelowcomb;\n},\n{\npos = (141,0);\nref = circumflexcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (191,-11);\nref = dotbelowcomb;\n},\n{\npos = (104,12);\nref = circumflexcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7853;\n},\n{\nglyphname = acircumflexgrave;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (147,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (142,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (104,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7847;\n},\n{\nglyphname = acircumflexhookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (147,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (142,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (104,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7849;\n},\n{\nglyphname = acircumflextilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (145,0);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (135,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (77,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7851;\n},\n{\nglyphname = adieresis;\nkernLeft = a;\nlastChange = \"2025-01-01 06:42:02 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (127,0);\nref = dieresiscomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (130,0);\nref = dieresiscomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (81,12);\nref = dieresiscomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 228;\n},\n{\nglyphname = adotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (212,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (216,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (191,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7841;\n},\n{\nglyphname = agrave;\nkernLeft = a;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (131,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (134,0);\nref = gravecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (98,12);\nref = gravecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 224;\n},\n{\nglyphname = ahookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (244,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (235,12);\nref = hookabovecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (225,12);\nref = hookabovecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 7843;\n},\n{\nglyphname = amacron;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (139,0);\nref = macroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (112,0);\nref = macroncomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (109,12);\nref = macroncomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 257;\n},\n{\nglyphname = aogonek;\nlastChange = \"2025-01-01 06:45:25 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (339,5);\nref = ogonekcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (360,0);\nref = ogonekcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (380,0);\nref = ogonekcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 261;\n},\n{\nglyphname = aring;\nkernLeft = a;\nlastChange = \"2024-09-27 10:45:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (162,0);\nref = ringcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (168,0);\nref = ringcomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (149,12);\nref = ringcomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 229;\n},\n{\nglyphname = atilde;\nkernLeft = a;\nlastChange = \"2024-09-27 10:45:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = a;\n},\n{\npos = (118,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a;\n},\n{\npos = (128,0);\nref = tildecomb;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = a;\n},\n{\npos = (77,12);\nref = tildecomb;\n}\n);\nwidth = 610;\n}\n);\nunicode = 227;\n},\n{\nglyphname = ae;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2025-01-01 06:42:54 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (452,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(778,-13,o),\n(845,62,o),\n(870,144,c),\n(817,154,l),\n(798,100,o),\n(749,37,o),\n(653,37,cs),\n(534,37,o),\n(472,118,o),\n(472,245,cs),\n(472,368,o),\n(520,462,o),\n(650,462,cs),\n(757,462,o),\n(812,381,o),\n(812,302,c),\n(461,302,l),\n(461,252,l),\n(872,252,l),\n(872,267,l),\n(872,422,o),\n(774,512,o),\n(646,512,cs),\n(509,512,o),\n(423,412,o),\n(423,248,cs),\n(423,87,o),\n(503,-13,o),\n(649,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(341,-12,o),\n(440,65,o),\n(440,163,c),\n(464,145,l),\n(464,338,ls),\n(464,450,o),\n(408,512,o),\n(272,512,cs),\n(193,512,o),\n(121,476,o),\n(82,400,c),\n(134,373,l),\n(155,420,o),\n(203,460,o),\n(272,460,cs),\n(374,460,o),\n(423,409,o),\n(416,333,cs),\n(413,301,l),\n(173,301,o),\n(56,271,o),\n(56,132,cs),\n(56,40,o),\n(137,-12,o),\n(221,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,38,o),\n(117,81,o),\n(117,131,cs),\n(117,228,o),\n(176,251,o),\n(413,251,c),\n(413,230,ls),\n(413,129,o),\n(339,38,o),\n(223,38,cs)\n);\n}\n);\nwidth = 924;\n},\n{\nanchors = (\n{\nname = top;\npos = (471,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(793,-13,o),\n(861,55,o),\n(886,137,c),\n(804,151,l),\n(785,97,o),\n(729,63,o),\n(672,63,cs),\n(547,63,o),\n(514,152,o),\n(514,247,cs),\n(514,369,o),\n(560,436,o),\n(669,436,cs),\n(763,436,o),\n(802,360,o),\n(802,311,c),\n(509,311,l),\n(509,241,l),\n(888,241,l),\n(888,261,l),\n(888,434,o),\n(789,512,o),\n(665,512,cs),\n(528,512,o),\n(441,414,o),\n(441,250,cs),\n(441,89,o),\n(528,-13,o),\n(668,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(353,-12,o),\n(458,73,o),\n(458,147,c),\n(484,148,l),\n(484,332,ls),\n(484,447,o),\n(422,512,o),\n(290,512,cs),\n(179,512,o),\n(117,462,o),\n(87,392,c),\n(156,356,l),\n(173,413,o),\n(231,442,o),\n(286,442,cs),\n(356,442,o),\n(417,414,o),\n(417,339,cs),\n(417,313,l),\n(161,313,o),\n(68,261,o),\n(68,141,cs),\n(68,49,o),\n(148,-12,o),\n(231,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,62,o),\n(150,96,o),\n(150,141,cs),\n(150,210,o),\n(193,247,o),\n(417,247,c),\n(417,215,ls),\n(417,110,o),\n(304,62,o),\n(242,62,cs)\n);\n}\n);\nwidth = 941;\n},\n{\nanchors = (\n{\nname = top;\npos = (461,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(732,-13,o),\n(828,23,o),\n(875,134,c),\n(743,173,l),\n(724,130,o),\n(677,107,o),\n(647,107,cs),\n(558,107,o),\n(519,164,o),\n(519,256,cs),\n(519,337,o),\n(558,400,o),\n(642,400,cs),\n(709,400,o),\n(747,346,o),\n(747,311,c),\n(486,311,l),\n(487,225,l),\n(890,225,l),\n(890,248,l),\n(890,418,o),\n(793,520,o),\n(643,520,cs),\n(512,520,o),\n(400,436,o),\n(400,256,cs),\n(400,82,o),\n(510,-13,o),\n(645,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(457,-12,o),\n(460,173,o),\n(460,173,c),\n(488,174,l),\n(488,340,ls),\n(488,451,o),\n(435,520,o),\n(285,520,cs),\n(164,520,o),\n(89,459,o),\n(65,387,c),\n(170,342,l),\n(184,385,o),\n(222,412,o),\n(277,412,cs),\n(345,412,o),\n(380,374,o),\n(380,322,cs),\n(380,318,l),\n(156,318,o),\n(40,273,o),\n(40,144,cs),\n(40,51,o),\n(113,-12,o),\n(227,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(227,93,o),\n(180,109,o),\n(180,151,cs),\n(180,199,o),\n(208,226,o),\n(380,226,c),\n(380,206,ls),\n(380,124,o),\n(318,93,o),\n(248,93,cs)\n);\n}\n);\nwidth = 935;\n}\n);\nunicode = 230;\n},\n{\nglyphname = aeacute;\nlastChange = \"2024-09-08 01:06:52 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ae;\n},\n{\npos = (402,0);\nref = acutecomb;\n}\n);\nwidth = 924;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ae;\n},\n{\npos = (437,0);\nref = acutecomb;\n}\n);\nwidth = 941;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ae;\n},\n{\npos = (400,12);\nref = acutecomb;\n}\n);\nwidth = 935;\n}\n);\nunicode = 509;\n},\n{\nglyphname = b;\nkernRight = o;\nlastChange = \"2025-01-01 10:06:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,700,l),\n(96,700,l),\n(96,0,l),\n(152,0,l),\n(152,98,l),\n(172,43,o),\n(241,-12,o),\n(326,-12,cs),\n(451,-12,o),\n(538,81,o),\n(538,250,cs),\n(538,414,o),\n(443,512,o),\n(326,512,cs),\n(235,512,o),\n(172,457,o),\n(152,402,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(413,462,o),\n(479,376,o),\n(479,248,cs),\n(479,123,o),\n(427,38,o),\n(314,38,cs),\n(235,38,o),\n(152,108,o),\n(151,250,c),\n(152,392,o),\n(235,462,o),\n(314,462,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,700,l),\n(92,700,l),\n(92,0,l),\n(176,0,l),\n(176,98,l),\n(195,43,o),\n(247,-12,o),\n(335,-12,cs),\n(474,-12,o),\n(561,81,o),\n(561,250,cs),\n(561,414,o),\n(474,512,o),\n(340,512,cs),\n(271,512,o),\n(198,476,o),\n(176,407,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(428,436,o),\n(476,352,o),\n(476,248,cs),\n(476,144,o),\n(428,63,o),\n(330,63,cs),\n(231,63,o),\n(177,140,o),\n(177,250,cs),\n(177,352,o),\n(231,436,o),\n(327,436,cs)\n);\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(221,700,l),\n(81,700,l),\n(80,0,l),\n(221,0,l),\n(221,93,l),\n(247,38,o),\n(302,-12,o),\n(380,-12,cs),\n(511,-12,o),\n(599,87,o),\n(599,255,cs),\n(599,420,o),\n(516,520,o),\n(385,520,cs),\n(302,520,o),\n(247,479,o),\n(221,425,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(407,413,o),\n(453,351,o),\n(453,255,cs),\n(453,168,o),\n(407,98,o),\n(335,98,cs),\n(267,98,o),\n(221,167,o),\n(221,255,cs),\n(221,350,o),\n(267,411,o),\n(335,412,cs)\n);\n}\n);\nwidth = 633;\n}\n);\nunicode = 98;\n},\n{\nglyphname = c;\nkernLeft = o;\nlastChange = \"2025-01-08 14:12:06 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (284,-12);\n},\n{\nname = top;\npos = (280,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(435,468,o),\n(363,512,o),\n(280,512,cs),\n(160,512,o),\n(56,422,o),\n(56,250,cs),\n(56,78,o),\n(160,-12,o),\n(280,-12,cs),\n(380,-12,o),\n(432,35,o),\n(471,121,c),\n(419,142,l),\n(398,86,o),\n(351,38,o),\n(280,38,cs),\n(173,38,o),\n(114,121,o),\n(114,250,cs),\n(114,379,o),\n(173,462,o),\n(280,462,cs),\n(350,462,o),\n(401,413,o),\n(422,363,c),\n(474,383,l)\n);\n}\n);\nwidth = 518;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (275,-12);\n},\n{\nname = top;\npos = (292,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(455,464,o),\n(380,512,o),\n(292,512,c),\n(166,512,o),\n(54,424,o),\n(54,248,cs),\n(54,74,o),\n(166,-13,o),\n(292,-13,cs),\n(393,-13,o),\n(455,37,o),\n(490,120,c),\n(414,150,l),\n(393,99,o),\n(350,63,o),\n(290,63,cs),\n(186,63,o),\n(138,140,o),\n(138,251,cs),\n(138,359,o),\n(185,436,o),\n(290,436,cs),\n(350,436,o),\n(393,402,o),\n(414,351,c),\n(490,381,l)\n);\n}\n);\nwidth = 536;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (291,-12);\n},\n{\nname = top;\npos = (309,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(479,473,o),\n(401,520,o),\n(313,520,cs),\n(150,520,o),\n(44,420,o),\n(44,254,cs),\n(44,88,o),\n(150,-12,o),\n(313,-12,cs),\n(401,-12,o),\n(479,35,o),\n(518,127,c),\n(402,173,l),\n(390,141,o),\n(354,108,o),\n(308,108,cs),\n(236,108,o),\n(190,163,o),\n(190,255,cs),\n(190,347,o),\n(236,400,o),\n(308,400,cs),\n(354,400,o),\n(390,367,o),\n(402,335,c),\n(518,381,l)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"D6DBBF6B-18E3-4F95-B026-A0427CA97C42\";\nname = \"26 Mar 24 at 21:35\";\nvisible = 1;\nwidth = 529;\n}\n);\nunicode = 99;\n},\n{\nglyphname = cacute;\nlastChange = \"2025-01-08 14:12:06 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (230,0);\nref = acutecomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (258,0);\nref = acutecomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (248,12);\nref = acutecomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 263;\n},\n{\nglyphname = ccaron;\nlastChange = \"2025-01-08 14:12:06 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (146,0);\nref = caroncomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (140,0);\nref = caroncomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (128,12);\nref = caroncomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 269;\n},\n{\nglyphname = ccedilla;\nlastChange = \"2024-09-24 09:24:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (177,-14);\nref = cedillacomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (158,-14);\nref = cedillacomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (163,-11);\nref = cedillacomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 231;\n},\n{\nglyphname = ccircumflex;\nlastChange = \"2025-01-08 14:12:06 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (146,0);\nref = circumflexcomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (142,0);\nref = circumflexcomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (128,12);\nref = circumflexcomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 265;\n},\n{\nglyphname = cdotaccent;\nlastChange = \"2025-01-08 14:12:06 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = c;\n},\n{\npos = (212,0);\nref = dotaccentcomb;\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = c;\n},\n{\npos = (218,0);\nref = dotaccentcomb;\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = c;\n},\n{\npos = (213,12);\nref = dotaccentcomb;\n}\n);\nwidth = 550;\n}\n);\nunicode = 267;\n},\n{\nglyphname = d;\nkernLeft = o;\nlastChange = \"2025-01-01 06:24:23 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (304,-12);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(442,17,o),\n(482,0,o),\n(521,-1,cs),\n(546,-2,o),\n(556,3,o),\n(570,11,c),\n(570,58,l),\n(527,39,o),\n(498,53,o),\n(498,103,cs),\n(498,700,l),\n(442,700,l),\n(442,404,l),\n(419,473,o),\n(334,512,o),\n(268,512,cs),\n(151,512,o),\n(56,414,o),\n(56,250,cs),\n(56,81,o),\n(145,-12,o),\n(268,-12,cs),\n(334,-12,o),\n(419,19,o),\n(442,88,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(167,38,o),\n(115,123,o),\n(115,248,cs),\n(115,376,o),\n(181,462,o),\n(280,462,cs),\n(376,462,o),\n(442,388,o),\n(443,250,cs),\n(442,112,o),\n(376,38,o),\n(280,38,cs)\n);\n}\n);\nwidth = 610;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (327,-12);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(442,44,o),\n(481,-1,o),\n(533,-1,cs),\n(558,-1,o),\n(571,3,o),\n(585,11,c),\n(585,79,l),\n(536,68,o),\n(522,86,o),\n(522,126,cs),\n(522,700,l),\n(438,700,l),\n(438,406,l),\n(419,461,o),\n(367,512,o),\n(279,512,cs),\n(140,512,o),\n(53,419,o),\n(53,250,cs),\n(53,86,o),\n(136,-12,o),\n(274,-12,cs),\n(343,-12,o),\n(420,25,o),\n(442,94,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,64,o),\n(138,148,o),\n(138,252,cs),\n(138,356,o),\n(186,437,o),\n(284,437,cs),\n(383,437,o),\n(437,360,o),\n(437,250,cs),\n(437,148,o),\n(383,64,o),\n(287,64,cs)\n);\n}\n);\nwidth = 627;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (325,-12);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(424,30,o),\n(500,-1,o),\n(547,-1,cs),\n(574,-1,o),\n(608,6,o),\n(622,14,c),\n(622,124,l),\n(573,113,o),\n(559,128,o),\n(559,168,cs),\n(560,700,l),\n(420,700,l),\n(420,415,l),\n(394,470,o),\n(344,520,o),\n(261,520,cs),\n(130,520,o),\n(42,421,o),\n(42,253,cs),\n(42,88,o),\n(125,-12,o),\n(256,-12,cs),\n(344,-12,o),\n(396,32,o),\n(424,101,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,95,o),\n(189,157,o),\n(189,253,cs),\n(189,340,o),\n(235,410,o),\n(307,410,cs),\n(375,410,o),\n(421,341,o),\n(421,253,cs),\n(421,158,o),\n(375,97,o),\n(307,96,cs)\n);\n}\n);\nwidth = 660;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"F3AABDD4-5D52-40E7-9352-25D68A3D59C9\";\nname = \"5 Apr 24 at 08:05\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,462,o),\n(444,388,o),\n(445,250,cs),\n(444,108,o),\n(361,38,o),\n(282,38,cs),\n(169,38,o),\n(117,123,o),\n(117,248,cs),\n(117,376,o),\n(183,462,o),\n(282,462,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(500,700,l),\n(444,700,l),\n(444,404,l),\n(421,473,o),\n(336,512,o),\n(270,512,cs),\n(153,512,o),\n(58,414,o),\n(58,250,cs),\n(58,81,o),\n(153,-12,o),\n(270,-12,cs),\n(355,-12,o),\n(424,41,o),\n(444,96,c),\n(444,25,o),\n(484,0,o),\n(523,-1,cs),\n(548,-2,o),\n(558,3,o),\n(572,11,c),\n(572,64,l),\n(529,48,o),\n(500,69,o),\n(500,119,cs)\n);\n}\n);\nwidth = 652;\n}\n);\nunicode = 100;\n},\n{\nglyphname = dcaron;\nlastChange = \"2024-11-01 00:50:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(667,700,l),\n(574,700,l),\n(561,582,l),\n(611,582,l)\n);\n}\n);\nwidth = 667;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(708,701,l),\n(598,701,l),\n(587,564,l),\n(659,564,l)\n);\n}\n);\nwidth = 708;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(760,701,l),\n(630,701,l),\n(611,531,l),\n(706,531,l)\n);\n}\n);\nwidth = 760;\n}\n);\nunicode = 271;\n},\n{\nglyphname = dcroat;\nlastChange = \"2024-09-20 10:31:53 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(311,562,l),\n(577,562,l),\n(577,609,l),\n(311,609,l)\n);\n}\n);\nwidth = 617;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(302,564,l),\n(611,564,l),\n(611,632,l),\n(302,632,l)\n);\n}\n);\nwidth = 653;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = d;\n},\n{\nclosed = 1;\nnodes = (\n(298,540,l),\n(641,540,l),\n(641,640,l),\n(298,640,l)\n);\n}\n);\nwidth = 679;\n}\n);\nunicode = 273;\n},\n{\nglyphname = ddotbelow;\nlastChange = \"2024-09-09 02:09:45 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = d;\n},\n{\npos = (231,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 660;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = d;\n},\n{\npos = (234,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 610;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = d;\n},\n{\npos = (252,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7693;\n},\n{\nglyphname = dmacronbelow;\nlastChange = \"2024-09-09 02:09:45 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = d;\n},\n{\npos = (145,-11);\nref = macronbelowcomb;\n}\n);\nwidth = 660;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = d;\n},\n{\npos = (162,0);\nref = macronbelowcomb;\n}\n);\nwidth = 610;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = d;\n},\n{\npos = (167,0);\nref = macronbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7695;\n},\n{\nglyphname = eth;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 06:43:10 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (281,0);\n},\n{\nname = top;\npos = (281,720);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(431,-12,o),\n(505,105,o),\n(505,289,cs),\n(505,472,o),\n(438,622,o),\n(228,713,c),\n(202,664,l),\n(259,647,o),\n(428,542,o),\n(438,389,c),\n(409,453,o),\n(346,489,o),\n(274,489,cs),\n(160,489,o),\n(56,405,o),\n(56,239,cs),\n(56,72,o),\n(160,-12,o),\n(274,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(173,38,o),\n(115,113,o),\n(115,239,cs),\n(115,365,o),\n(173,439,o),\n(274,439,cs),\n(367,439,o),\n(434,365,o),\n(434,239,cs),\n(434,113,o),\n(375,38,o),\n(274,38,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(464,635,l),\n(443,678,l),\n(206,562,l),\n(228,519,l)\n);\n}\n);\nwidth = 561;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (288,0);\n},\n{\nname = top;\npos = (288,720);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(442,-12,o),\n(519,120,o),\n(519,284,cs),\n(519,529,o),\n(408,654,o),\n(242,725,c),\n(207,660,l),\n(260,640,o),\n(403,558,o),\n(419,429,c),\n(383,471,o),\n(325,488,o),\n(281,488,cs),\n(167,488,o),\n(56,402,o),\n(56,238,cs),\n(56,74,o),\n(160,-12,o),\n(284,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(192,60,o),\n(140,128,o),\n(140,238,cs),\n(140,348,o),\n(194,416,o),\n(284,416,cs),\n(377,416,o),\n(429,348,o),\n(429,238,cs),\n(429,128,o),\n(377,60,o),\n(284,60,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(489,644,l),\n(460,702,l),\n(207,571,l),\n(236,512,l)\n);\n}\n);\nwidth = 575;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (292,0);\n},\n{\nname = top;\npos = (292,720);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(452,-12,o),\n(548,129,o),\n(548,307,cs),\n(548,533,o),\n(416,677,o),\n(225,744,c),\n(175,651,l),\n(214,642,o),\n(375,578,o),\n(416,432,c),\n(394,466,o),\n(333,498,o),\n(274,498,cs),\n(153,498,o),\n(36,419,o),\n(36,243,cs),\n(36,76,o),\n(161,-12,o),\n(290,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(218,108,o),\n(178,161,o),\n(178,243,cs),\n(178,323,o),\n(219,378,o),\n(287,378,cs),\n(365,378,o),\n(400,323,o),\n(400,243,cs),\n(400,161,o),\n(364,108,o),\n(287,108,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(500,650,l),\n(460,722,l),\n(182,583,l),\n(221,511,l)\n);\n}\n);\nwidth = 584;\n}\n);\nunicode = 240;\n},\n{\nglyphname = e;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 00:32:49 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (285,-13);\n},\n{\nname = top;\npos = (285,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,-13,o),\n(489,62,o),\n(514,144,c),\n(461,154,l),\n(442,100,o),\n(393,37,o),\n(297,37,cs),\n(178,37,o),\n(116,118,o),\n(116,245,cs),\n(116,368,o),\n(164,462,o),\n(294,462,cs),\n(401,462,o),\n(456,368,o),\n(456,289,c),\n(105,289,l),\n(105,239,l),\n(516,239,l),\n(516,267,l),\n(516,422,o),\n(418,512,o),\n(290,512,cs),\n(153,512,o),\n(58,412,o),\n(58,248,cs),\n(58,87,o),\n(147,-13,o),\n(293,-13,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (287,-13);\n},\n{\nname = top;\npos = (287,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,-13,o),\n(489,55,o),\n(514,137,c),\n(432,151,l),\n(413,97,o),\n(357,63,o),\n(300,63,cs),\n(175,63,o),\n(142,150,o),\n(142,245,cs),\n(142,367,o),\n(188,436,o),\n(297,436,cs),\n(391,436,o),\n(430,345,o),\n(430,304,c),\n(137,304,l),\n(137,234,l),\n(516,234,l),\n(516,261,l),\n(516,434,o),\n(417,512,o),\n(293,512,cs),\n(156,512,o),\n(57,412,o),\n(57,248,cs),\n(57,87,o),\n(156,-13,o),\n(296,-13,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (291,-13);\n},\n{\nname = top;\npos = (291,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(388,-13,o),\n(484,23,o),\n(531,134,c),\n(399,173,l),\n(380,130,o),\n(333,107,o),\n(303,107,cs),\n(214,107,o),\n(175,164,o),\n(175,256,cs),\n(175,337,o),\n(214,400,o),\n(298,400,cs),\n(365,400,o),\n(403,336,o),\n(403,301,c),\n(142,301,l),\n(143,215,l),\n(546,215,l),\n(546,248,l),\n(546,418,o),\n(449,520,o),\n(299,520,cs),\n(168,520,o),\n(38,436,o),\n(38,256,cs),\n(38,82,o),\n(166,-13,o),\n(301,-13,cs)\n);\n}\n);\nwidth = 591;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"35791070-3456-4186-8F4C-DCAEEFC69CEB\";\nname = \"28 Feb 24 at 11:45\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(395,-13,o),\n(490,19,o),\n(537,122,c),\n(402,149,l),\n(385,115,o),\n(339,107,o),\n(309,107,cs),\n(216,107,o),\n(179,161,o),\n(179,253,cs),\n(179,334,o),\n(216,400,o),\n(304,400,cs),\n(375,400,o),\n(410,335,o),\n(410,300,c),\n(141,300,l),\n(142,210,l),\n(553,210,l),\n(553,245,l),\n(553,415,o),\n(456,520,o),\n(302,520,cs),\n(167,520,o),\n(37,436,o),\n(37,256,cs),\n(37,82,o),\n(165,-13,o),\n(304,-13,cs)\n);\n}\n);\nvisible = 1;\nwidth = 582;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"DC9D73E7-764C-4C88-8E22-C9A4CAB6D2B5\";\nname = \"26 Mar 24 at 21:50\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(416,-12,o),\n(550,70,o),\n(550,254,cs),\n(550,440,o),\n(422,520,o),\n(293,520,cs),\n(168,520,o),\n(34,440,o),\n(34,254,cs),\n(34,70,o),\n(160,-12,o),\n(293,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(219,108,o),\n(180,164,o),\n(180,254,cs),\n(180,342,o),\n(220,400,o),\n(293,400,cs),\n(367,400,o),\n(404,342,o),\n(404,254,cs),\n(404,164,o),\n(366,108,o),\n(293,108,cs)\n);\n},\n{\nclosed = 0;\nnodes = (\n(293,520,l)\n);\n}\n);\nvisible = 1;\nwidth = 572;\n}\n);\nunicode = 101;\n},\n{\nglyphname = eacute;\nkernLeft = o;\nlastChange = \"2024-09-27 10:45:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (235,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (253,0);\nref = acutecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (230,12);\nref = acutecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 233;\n},\n{\nglyphname = ebreve;\nlastChange = \"2024-09-08 00:59:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (139,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (143,0);\nref = brevecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (117,12);\nref = brevecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 277;\n},\n{\nglyphname = ecaron;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (151,0);\nref = caroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (135,0);\nref = caroncomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (110,12);\nref = caroncomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 283;\n},\n{\nglyphname = ecircumflex;\nkernLeft = o;\nlastChange = \"2024-09-27 10:45:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (151,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (137,0);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (110,12);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 234;\n},\n{\nglyphname = ecircumflexacute;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (4,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (6,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (110,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7871;\n},\n{\nglyphname = ecircumflexdotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (215,-13);\nref = dotbelowcomb;\n},\n{\npos = (151,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (212,-13);\nref = dotbelowcomb;\n},\n{\npos = (137,0);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (197,-12);\nref = dotbelowcomb;\n},\n{\npos = (110,12);\nref = circumflexcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7879;\n},\n{\nglyphname = ecircumflexgrave;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (151,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (138,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (110,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7873;\n},\n{\nglyphname = ecircumflexhookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (151,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (138,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (110,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7875;\n},\n{\nglyphname = ecircumflextilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (149,0);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (131,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (83,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7877;\n},\n{\nglyphname = edieresis;\nkernLeft = o;\nlastChange = \"2024-09-27 10:45:49 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (131,0);\nref = dieresiscomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (126,0);\nref = dieresiscomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (87,12);\nref = dieresiscomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 235;\n},\n{\nglyphname = edotaccent;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (217,0);\nref = dotaccentcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (213,0);\nref = dotaccentcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (195,12);\nref = dotaccentcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 279;\n},\n{\nglyphname = edotbelow;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (215,-13);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (212,-13);\nref = dotbelowcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (197,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7865;\n},\n{\nglyphname = egrave;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (135,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (130,0);\nref = gravecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (104,12);\nref = gravecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 232;\n},\n{\nglyphname = ehookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (248,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (231,12);\nref = hookabovecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (231,12);\nref = hookabovecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7867;\n},\n{\nglyphname = emacron;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (143,0);\nref = macroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (108,0);\nref = macroncomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (115,12);\nref = macroncomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 275;\n},\n{\nglyphname = eogonek;\nlastChange = \"2024-11-01 00:25:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\nclosed = 1;\nnodes = (\n(467,-143,o),\n(492,-134,o),\n(506,-121,c),\n(482,-70,l),\n(453,-92,o),\n(406,-78,o),\n(406,-40,cs),\n(406,-12,o),\n(417,3,o),\n(474,67,c),\n(447,86,l),\n(373,49,o),\n(343,0,o),\n(343,-55,cs),\n(343,-110,o),\n(387,-143,o),\n(441,-143,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\nclosed = 1;\nnodes = (\n(465,-152,o),\n(496,-140,o),\n(510,-127,c),\n(487,-64,l),\n(445,-91,o),\n(403,-79,o),\n(403,-39,cs),\n(403,-10,o),\n(431,16,o),\n(464,51,c),\n(429,83,l),\n(361,52,o),\n(330,-4,o),\n(330,-59,cs),\n(330,-116,o),\n(376,-152,o),\n(429,-152,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\nclosed = 1;\nnodes = (\n(489,-183,o),\n(526,-165,o),\n(547,-145,c),\n(509,-70,l),\n(472,-101,o),\n(428,-78,o),\n(428,-35,cs),\n(428,-15,o),\n(437,13,o),\n(483,60,c),\n(458,96,l),\n(361,50,o),\n(326,3,o),\n(325,-74,cs),\n(324,-139,o),\n(381,-183,o),\n(441,-183,cs)\n);\n}\n);\nwidth = 592;\n}\n);\nunicode = 281;\n},\n{\nglyphname = eopen;\nlastChange = \"2024-10-21 03:33:22 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(445,143,l),\n(427,76,o),\n(363,38,o),\n(277,38,cs),\n(167,38,o),\n(116,79,o),\n(116,136,cs),\n(116,184,o),\n(160,240,o),\n(290,240,cs),\n(290,240,o),\n(348,240,o),\n(348,240,c),\n(349,294,l),\n(291,294,l),\n(168,294,o),\n(139,339,o),\n(139,375,cs),\n(139,423,o),\n(172,462,o),\n(273,462,cs),\n(341,462,o),\n(391,442,o),\n(411,403,c),\n(455,425,l),\n(422,488,o),\n(348,512,o),\n(273,512,cs),\n(152,512,o),\n(81,456,o),\n(81,374,cs),\n(81,320,o),\n(112,278,o),\n(154,265,c),\n(85,239,o),\n(58,184,o),\n(58,134,cs),\n(58,31,o),\n(145,-12,o),\n(276,-12,cs),\n(381,-12,o),\n(471,38,o),\n(491,128,c)\n);\n}\n);\nwidth = 543;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,159,l),\n(402,87,o),\n(344,64,o),\n(279,64,cs),\n(180,64,o),\n(141,98,o),\n(141,147,cs),\n(141,194,o),\n(177,239,o),\n(287,239,cs),\n(287,239,o),\n(340,239,o),\n(340,239,c),\n(341,312,l),\n(288,312,l),\n(192,312,o),\n(163,335,o),\n(163,371,cs),\n(163,398,o),\n(186,436,o),\n(278,436,cs),\n(321,436,o),\n(361,426,o),\n(383,387,c),\n(449,421,l),\n(430,479,o),\n(341,512,o),\n(274,512,cs),\n(143,512,o),\n(79,457,o),\n(79,375,cs),\n(79,321,o),\n(113,288,o),\n(155,275,c),\n(98,252,o),\n(57,203,o),\n(57,142,cs),\n(57,38,o),\n(140,-12,o),\n(278,-12,cs),\n(381,-12,o),\n(467,39,o),\n(492,139,c)\n);\n}\n);\nwidth = 545;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,177,l),\n(391,140,o),\n(359,108,o),\n(289,108,cs),\n(212,108,o),\n(184,131,o),\n(184,164,cs),\n(184,201,o),\n(211,221,o),\n(287,221,cs),\n(287,221,o),\n(338,221,o),\n(338,221,c),\n(339,309,l),\n(288,309,l),\n(238,309,o),\n(209,325,o),\n(209,354,cs),\n(209,381,o),\n(230,400,o),\n(283,400,cs),\n(330,400,o),\n(354,382,o),\n(363,358,c),\n(482,415,l),\n(463,479,o),\n(375,520,o),\n(279,520,cs),\n(143,520,o),\n(66,461,o),\n(66,379,cs),\n(66,325,o),\n(100,282,o),\n(142,269,c),\n(68,243,o),\n(38,209,o),\n(38,148,cs),\n(38,44,o),\n(137,-12,o),\n(288,-12,cs),\n(424,-12,o),\n(499,56,o),\n(524,149,c)\n);\n}\n);\nwidth = 569;\n}\n);\nunicode = 603;\n},\n{\nglyphname = etilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = e;\n},\n{\npos = (122,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = e;\n},\n{\npos = (124,0);\nref = tildecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = e;\n},\n{\npos = (83,12);\nref = tildecomb;\n}\n);\nwidth = 591;\n}\n);\nunicode = 7869;\n},\n{\nglyphname = schwa;\nlastChange = \"2024-09-05 12:30:51 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nangle = 180;\npos = (568,500);\nref = e;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nangle = 180;\npos = (569,500);\nref = e;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m003;\nshapes = (\n{\nangle = 180;\npos = (591,508);\nref = e;\n}\n);\nwidth = 591;\n}\n);\nunicode = 601;\n},\n{\nglyphname = f;\nlastChange = \"2025-01-01 06:24:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,0,l),\n(200,450,l),\n(327,450,l),\n(327,500,l),\n(200,500,l),\n(200,575,ls),\n(200,648,o),\n(228,666,o),\n(276,666,cs),\n(289,666,o),\n(306,665,o),\n(322,662,c),\n(322,712,l),\n(305,717,o),\n(283,720,o),\n(267,720,cs),\n(182,720,o),\n(144,669,o),\n(144,576,cs),\n(144,500,l),\n(52,500,l),\n(52,450,l),\n(144,450,l),\n(144,0,l)\n);\n}\n);\nwidth = 346;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(227,0,l),\n(227,424,l),\n(355,424,l),\n(355,500,l),\n(227,500,l),\n(227,575,ls),\n(227,629,o),\n(254,648,o),\n(303,648,cs),\n(316,648,o),\n(334,647,o),\n(350,644,c),\n(350,712,l),\n(333,717,o),\n(310,720,o),\n(294,720,cs),\n(185,720,o),\n(143,669,o),\n(143,576,cs),\n(143,500,l),\n(47,500,l),\n(47,424,l),\n(143,424,l),\n(143,0,l)\n);\n}\n);\nwidth = 375;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(272,0,l),\n(272,388,l),\n(388,388,l),\n(388,508,l),\n(272,508,l),\n(272,539,ls),\n(272,576,o),\n(287,604,o),\n(336,604,cs),\n(349,604,o),\n(366,603,o),\n(382,600,c),\n(383,712,l),\n(366,717,o),\n(331,720,o),\n(296,720,cs),\n(213,720,o),\n(135,686,o),\n(133,576,cs),\n(132,508,l),\n(32,508,l),\n(32,388,l),\n(132,388,l),\n(132,0,l)\n);\n}\n);\nwidth = 400;\n}\n);\nunicode = 102;\n},\n{\nglyphname = g;\nkernLeft = g;\nlastChange = \"2025-01-08 14:11:44 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (287,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,-103,o),\n(387,-176,o),\n(273,-176,cs),\n(172,-176,o),\n(126,-109,o),\n(111,-81,c),\n(61,-115,l),\n(89,-171,o),\n(149,-230,o),\n(273,-230,cs),\n(398,-230,o),\n(499,-175,o),\n(499,13,c),\n(499,500,l),\n(442,500,l),\n(442,402,l),\n(422,457,o),\n(353,512,o),\n(268,512,cs),\n(151,512,o),\n(56,419,o),\n(56,250,cs),\n(56,86,o),\n(149,-12,o),\n(268,-12,cs),\n(334,-12,o),\n(420,27,o),\n(443,96,c),\n(443,13,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(181,38,o),\n(114,124,o),\n(114,252,cs),\n(114,377,o),\n(167,462,o),\n(280,462,cs),\n(359,462,o),\n(442,392,o),\n(443,250,cs),\n(442,112,o),\n(376,38,o),\n(280,38,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nanchors = (\n{\nname = top;\npos = (292,512);\n}\n);\nguides = (\n{\nangle = 270;\npos = (52,419);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(437,-96,o),\n(394,-156,o),\n(284,-156,cs),\n(217,-156,o),\n(161,-117,o),\n(136,-60,c),\n(64,-107,l),\n(100,-195,o),\n(194,-229,o),\n(281,-230,cs),\n(413,-232,o),\n(521,-171,o),\n(521,17,cs),\n(521,500,l),\n(437,500,l),\n(437,402,l),\n(418,457,o),\n(366,512,o),\n(278,512,cs),\n(139,512,o),\n(52,419,o),\n(52,250,cs),\n(52,86,o),\n(139,-12,o),\n(273,-12,cs),\n(342,-12,o),\n(415,27,o),\n(437,96,c),\n(437,17,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(185,64,o),\n(137,148,o),\n(137,252,cs),\n(137,356,o),\n(185,437,o),\n(283,437,cs),\n(382,437,o),\n(436,360,o),\n(436,250,cs),\n(436,148,o),\n(382,64,o),\n(286,64,cs)\n);\n}\n);\nwidth = 607;\n},\n{\nanchors = (\n{\nname = top;\npos = (309,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(425,-80,o),\n(373,-123,o),\n(288,-123,cs),\n(221,-123,o),\n(168,-76,o),\n(146,-29,c),\n(38,-102,l),\n(71,-180,o),\n(164,-237,o),\n(285,-237,cs),\n(466,-237,o),\n(561,-142,o),\n(561,0,cs),\n(562,508,l),\n(428,508,l),\n(428,419,l),\n(401,474,o),\n(354,520,o),\n(270,520,cs),\n(139,520,o),\n(48,421,o),\n(48,253,cs),\n(48,88,o),\n(134,-12,o),\n(265,-12,cs),\n(348,-12,o),\n(401,25,o),\n(425,79,c),\n(425,0,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(240,95,o),\n(194,157,o),\n(194,253,cs),\n(194,340,o),\n(240,410,o),\n(312,410,cs),\n(380,410,o),\n(426,341,o),\n(426,253,cs),\n(426,158,o),\n(380,97,o),\n(312,96,cs)\n);\n}\n);\nwidth = 632;\n}\n);\nunicode = 103;\n},\n{\nglyphname = gbreve;\nlastChange = \"2025-01-08 14:11:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (141,0);\nref = brevecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (148,0);\nref = brevecomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (135,12);\nref = brevecomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 287;\n},\n{\nglyphname = gcircumflex;\nlastChange = \"2025-01-08 14:11:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (153,0);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (142,0);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (128,12);\nref = circumflexcomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 285;\n},\n{\nglyphname = gcommaaccent;\nlastChange = \"2025-01-08 14:11:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (226,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (206,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (219,12);\nref = commaturnedabovecomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 291;\n},\n{\nglyphname = gdotaccent;\nlastChange = \"2025-01-08 14:11:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (219,0);\nref = dotaccentcomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (218,0);\nref = dotaccentcomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (213,12);\nref = dotaccentcomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 289;\n},\n{\nglyphname = gmacron;\nlastChange = \"2025-01-08 14:11:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g;\n},\n{\npos = (145,0);\nref = macroncomb;\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g;\n},\n{\npos = (113,0);\nref = macroncomb;\n}\n);\nwidth = 607;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g;\n},\n{\npos = (133,12);\nref = macroncomb;\n}\n);\nwidth = 632;\n}\n);\nunicode = 7713;\n},\n{\nglyphname = h;\nlastChange = \"2025-01-08 15:04:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(152,270,ls),\n(152,366,o),\n(207,462,o),\n(306,462,cs),\n(387,462,o),\n(448,411,o),\n(448,310,cs),\n(448,0,l),\n(504,0,l),\n(504,322,ls),\n(504,442,o),\n(419,512,o),\n(322,512,cs),\n(203,512,o),\n(161,431,o),\n(152,396,c),\n(152,700,l),\n(96,700,l),\n(96,0,l)\n);\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,0,l),\n(164,270,ls),\n(164,366,o),\n(211,436,o),\n(303,436,cs),\n(370,436,o),\n(415,403,o),\n(415,316,cs),\n(415,0,l),\n(499,0,l),\n(499,328,ls),\n(499,448,o),\n(428,512,o),\n(331,512,cs),\n(219,512,o),\n(173,441,o),\n(164,406,c),\n(164,700,l),\n(80,700,l),\n(80,0,l)\n);\n}\n);\nwidth = 579;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(220,0,l),\n(220,239,ls),\n(220,347,o),\n(248,408,o),\n(331,408,cs),\n(388,408,o),\n(416,370,o),\n(416,296,cs),\n(416,0,l),\n(556,0,l),\n(556,315,ls),\n(556,435,o),\n(498,520,o),\n(364,520,cs),\n(296,520,o),\n(241,479,o),\n(220,430,c),\n(220,700,l),\n(80,700,l),\n(80,0,l)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 104;\n},\n{\nglyphname = hbar;\nlastChange = \"2024-09-20 10:41:52 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (77,0);\nref = h;\n},\n{\nclosed = 1;\nnodes = (\n(96,562,l),\n(362,562,l),\n(362,609,l),\n(96,609,l)\n);\n}\n);\nwidth = 669;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (89,0);\nref = h;\n},\n{\nclosed = 1;\nnodes = (\n(92,564,l),\n(401,564,l),\n(401,632,l),\n(92,632,l)\n);\n}\n);\nwidth = 686;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (84,0);\nref = h;\n},\n{\nclosed = 1;\nnodes = (\n(80,540,l),\n(423,540,l),\n(423,640,l),\n(80,640,l)\n);\n}\n);\nwidth = 712;\n}\n);\nunicode = 295;\n},\n{\nglyphname = hcircumflex;\nlastChange = \"2024-10-20 23:50:18 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = h;\n},\n{\npos = (198,0);\nref = circumflexcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = h;\n},\n{\npos = (207,0);\nref = circumflexcomb;\n}\n);\nwidth = 579;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = h;\n},\n{\npos = (264,22);\nref = circumflexcomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 293;\n},\n{\nglyphname = i;\nkernLeft = i;\nkernRight = i;\nlastChange = \"2025-01-01 06:27:21 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (-47,680);\n},\n{\npos = (-42,585);\n},\n{\npos = (-47,632);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(163,585,o),\n(184,607,o),\n(184,632,cs),\n(184,658,o),\n(163,680,o),\n(138,680,cs),\n(112,680,o),\n(90,658,o),\n(90,632,cs),\n(90,607,o),\n(112,585,o),\n(138,585,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(165,0,l),\n(165,500,l),\n(109,500,l),\n(109,0,l)\n);\n}\n);\nwidth = 274;\n},\n{\nguides = (\n{\npos = (-27,700);\n},\n{\npos = (-26,590);\n},\n{\npos = (-27,645);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(157,590,o),\n(181,615,o),\n(181,645,cs),\n(181,675,o),\n(157,700,o),\n(127,700,cs),\n(97,700,o),\n(72,675,o),\n(72,645,cs),\n(72,615,o),\n(97,590,o),\n(127,590,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(169,0,l),\n(169,500,l),\n(85,500,l),\n(85,0,l)\n);\n}\n);\nwidth = 253;\n},\n{\nguides = (\n{\npos = (15,559);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(182,559,o),\n(218,598,o),\n(218,644,cs),\n(218,690,o),\n(182,729,o),\n(134,729,cs),\n(89,729,o),\n(50,690,o),\n(50,644,cs),\n(50,598,o),\n(89,559,o),\n(134,559,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(204,0,l),\n(204,508,l),\n(64,508,l),\n(64,0,l)\n);\n}\n);\nwidth = 268;\n}\n);\nunicode = 105;\n},\n{\nglyphname = idotless;\nlastChange = \"2024-09-03 03:36:43 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (117,0);\n},\n{\nname = top;\npos = (118,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,0,l),\n(146,500,l),\n(90,500,l),\n(90,0,l)\n);\n}\n);\nwidth = 236;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (114,0);\n},\n{\nname = top;\npos = (113,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,0,l),\n(156,500,l),\n(72,500,l),\n(72,0,l)\n);\n}\n);\nwidth = 228;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (120,0);\n},\n{\nname = top;\npos = (119,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(190,0,l),\n(190,508,l),\n(50,508,l),\n(50,0,l)\n);\n}\n);\nwidth = 240;\n}\n);\nunicode = 305;\n},\n{\nglyphname = iacute;\nlastChange = \"2025-01-01 06:47:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (68,-12);\nref = acutecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (79,-12);\nref = acutecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (58,0);\nref = acutecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 237;\n},\n{\nglyphname = ibreve;\nlastChange = \"2024-09-08 01:05:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-28,-12);\nref = brevecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-31,-12);\nref = brevecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-55,0);\nref = brevecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 301;\n},\n{\nglyphname = icircumflex;\nlastChange = \"2024-11-22 04:44:59 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-16,-12);\nref = circumflexcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-37,-12);\nref = circumflexcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-62,0);\nref = circumflexcomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 238;\n},\n{\nglyphname = idieresis;\nlastChange = \"2024-11-22 04:45:10 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-36,-12);\nref = dieresiscomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-48,-12);\nref = dieresiscomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-85,0);\nref = dieresiscomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 239;\n},\n{\nglyphname = idotaccent;\nlastChange = \"2024-09-03 03:38:57 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (50,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (39,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (23,0);\nref = dotaccentcomb;\n}\n);\nwidth = 240;\n}\n);\n},\n{\nglyphname = idotbelow;\nlastChange = \"2024-10-31 00:46:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = i;\n},\n{\npos = (67,0);\nref = dotbelowcomb;\n}\n);\nwidth = 274;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = i;\n},\n{\npos = (53,0);\nref = dotbelowcomb;\n}\n);\nwidth = 253;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = i;\n},\n{\npos = (36,0);\nref = dotbelowcomb;\n}\n);\nwidth = 268;\n}\n);\nunicode = 7883;\n},\n{\nglyphname = igrave;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-32,-12);\nref = gravecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-44,-12);\nref = gravecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-68,0);\nref = gravecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 236;\n},\n{\nglyphname = ihookabove;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (81,0);\nref = hookabovecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (57,0);\nref = hookabovecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (59,0);\nref = hookabovecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 7881;\n},\n{\nglyphname = imacron;\nlastChange = \"2024-09-03 03:38:57 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-24,-12);\nref = macroncomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-66,-12);\nref = macroncomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-57,0);\nref = macroncomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 299;\n},\n{\nglyphname = iogonek;\nlastChange = \"2024-09-13 00:56:47 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (50,-12);\nref = dotaccentcomb;\n},\n{\npos = (-13,5);\nref = ogonekcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (39,-12);\nref = dotaccentcomb;\n},\n{\npos = (-7,0);\nref = ogonekcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (23,0);\nref = dotaccentcomb;\n},\n{\npos = (15,-1);\nref = ogonekcomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 303;\n},\n{\nglyphname = itilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-45,-12);\nref = tildecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-50,-12);\nref = tildecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-89,0);\nref = tildecomb;\n}\n);\nwidth = 240;\n}\n);\nunicode = 297;\n},\n{\nglyphname = ij;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = i;\n},\n{\npos = (254,0);\nref = j;\n}\n);\nwidth = 532;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = i;\n},\n{\npos = (223,0);\nref = j;\n}\n);\nwidth = 512;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = i;\n},\n{\npos = (268,0);\nref = j;\n}\n);\nwidth = 552;\n}\n);\nunicode = 307;\n},\n{\nglyphname = j;\nlastChange = \"2025-01-01 06:45:42 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (-37,680);\n},\n{\npos = (-32,585);\n},\n{\npos = (-37,632);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(140,-232,o),\n(178,-181,o),\n(178,-88,cs),\n(179,500,l),\n(123,500,l),\n(122,-87,ls),\n(120,-160,o),\n(94,-178,o),\n(46,-178,cs),\n(33,-178,o),\n(16,-177,o),\n(0,-174,c),\n(0,-224,l),\n(17,-229,o),\n(39,-232,o),\n(55,-232,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(173,585,o),\n(194,607,o),\n(194,632,cs),\n(194,658,o),\n(173,680,o),\n(148,680,cs),\n(122,680,o),\n(100,658,o),\n(100,632,cs),\n(100,607,o),\n(122,585,o),\n(148,585,cs)\n);\n}\n);\nwidth = 278;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(167,-230,o),\n(208,-179,o),\n(208,-86,cs),\n(209,500,l),\n(125,500,l),\n(125,-85,ls),\n(125,-139,o),\n(98,-158,o),\n(49,-158,cs),\n(36,-158,o),\n(18,-157,o),\n(2,-154,c),\n(2,-222,l),\n(19,-227,o),\n(42,-230,o),\n(58,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,590,o),\n(219,615,o),\n(219,645,cs),\n(219,675,o),\n(195,700,o),\n(165,700,cs),\n(135,700,o),\n(110,675,o),\n(110,645,cs),\n(110,615,o),\n(135,590,o),\n(165,590,cs)\n);\n}\n);\nwidth = 289;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,-230,o),\n(219,-169,o),\n(219,-76,cs),\n(220,508,l),\n(80,508,l),\n(80,-28,ls),\n(80,-66,o),\n(58,-90,o),\n(22,-90,cs),\n(9,-90,o),\n(-23,-89,o),\n(-39,-86,c),\n(-40,-222,l),\n(-23,-227,o),\n(15,-230,o),\n(31,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(198,559,o),\n(234,598,o),\n(234,644,cs),\n(234,690,o),\n(198,729,o),\n(150,729,cs),\n(105,729,o),\n(66,690,o),\n(66,644,cs),\n(66,598,o),\n(105,559,o),\n(150,559,cs)\n);\n}\n);\nwidth = 284;\n}\n);\nunicode = 106;\n},\n{\nglyphname = jdotless;\nlastChange = \"2024-09-03 07:18:16 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (150,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(140,-232,o),\n(178,-181,o),\n(178,-88,cs),\n(179,500,l),\n(123,500,l),\n(122,-87,ls),\n(120,-160,o),\n(94,-178,o),\n(46,-178,cs),\n(33,-178,o),\n(16,-177,o),\n(0,-174,c),\n(0,-224,l),\n(17,-229,o),\n(39,-232,o),\n(55,-232,cs)\n);\n}\n);\nwidth = 265;\n},\n{\nanchors = (\n{\nname = top;\npos = (166,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(167,-230,o),\n(208,-179,o),\n(208,-86,cs),\n(209,500,l),\n(125,500,l),\n(125,-85,ls),\n(125,-139,o),\n(98,-158,o),\n(49,-158,cs),\n(36,-158,o),\n(18,-157,o),\n(2,-154,c),\n(2,-222,l),\n(19,-227,o),\n(42,-230,o),\n(58,-230,cs)\n);\n}\n);\nwidth = 279;\n},\n{\nanchors = (\n{\nname = top;\npos = (150,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,-230,o),\n(219,-169,o),\n(219,-76,cs),\n(220,508,l),\n(80,508,l),\n(80,-28,ls),\n(80,-66,o),\n(58,-90,o),\n(22,-90,cs),\n(9,-90,o),\n(-23,-89,o),\n(-39,-86,c),\n(-40,-222,l),\n(-23,-227,o),\n(15,-230,o),\n(31,-230,cs)\n);\n}\n);\nwidth = 270;\n}\n);\nunicode = 567;\n},\n{\nglyphname = jacute;\nlastChange = \"2024-09-03 07:18:27 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (100,-12);\nref = acutecomb;\n}\n);\nwidth = 265;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (132,-12);\nref = acutecomb;\n}\n);\nwidth = 279;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (89,0);\nref = acutecomb;\n}\n);\nwidth = 270;\n}\n);\n},\n{\nglyphname = jcircumflex;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (16,-12);\nref = circumflexcomb;\n}\n);\nwidth = 265;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (16,-12);\nref = circumflexcomb;\n}\n);\nwidth = 279;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (-31,0);\nref = circumflexcomb;\n}\n);\nwidth = 270;\n}\n);\nunicode = 309;\n},\n{\nglyphname = k;\nlastChange = \"2025-01-01 10:05:42 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (261,0);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(243,291,l),\n(261,301,l),\n(452,500,l),\n(382,500,l),\n(107,219,l),\n(107,145,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(152,700,l),\n(96,700,l),\n(96,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(468,0,l),\n(267,331,l),\n(229,294,l),\n(403,0,l)\n);\n}\n);\nwidth = 483;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (283,0);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(267,272,l),\n(291,288,l),\n(499,500,l),\n(395,500,l),\n(115,219,l),\n(115,120,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,700,l),\n(92,700,l),\n(92,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(515,0,l),\n(311,322,l),\n(249,269,l),\n(413,0,l)\n);\n}\n);\nwidth = 525;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (315,0);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(311,241,l),\n(335,251,l),\n(570,508,l),\n(392,508,l),\n(102,210,l),\n(177,116,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(220,0,l),\n(220,712,l),\n(80,711,l),\n(80,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(588,0,l),\n(367,351,l),\n(245,280,l),\n(420,0,l)\n);\n}\n);\nwidth = 588;\n}\n);\nunicode = 107;\n},\n{\nglyphname = kcommaaccent;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = k;\n},\n{\npos = (200,12);\nref = commaaccentcomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = k;\n},\n{\npos = (206,12);\nref = commaaccentcomb;\n}\n);\nwidth = 525;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = k;\n},\n{\npos = (220,1);\nref = commaaccentcomb;\n}\n);\nwidth = 588;\n}\n);\nunicode = 311;\n},\n{\nglyphname = l;\nlastChange = \"2025-01-01 06:27:30 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (118,0);\n},\n{\nname = top;\npos = (119,700);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,0,l),\n(146,700,l),\n(90,700,l),\n(90,0,l)\n);\n}\n);\nwidth = 236;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (113,0);\n},\n{\nname = top;\npos = (113,700);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,0,l),\n(156,700,l),\n(72,700,l),\n(72,0,l)\n);\n}\n);\nwidth = 228;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (148,0);\n},\n{\nname = top;\npos = (149,700);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(218,0,l),\n(218,700,l),\n(78,700,l),\n(78,0,l)\n);\n}\n);\nwidth = 296;\n}\n);\nunicode = 108;\n},\n{\nglyphname = lacute;\nlastChange = \"2024-09-05 12:03:37 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (69,188);\nref = acutecomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (79,188);\nref = acutecomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (88,192);\nref = acutecomb;\n}\n);\nwidth = 296;\n}\n);\nunicode = 314;\n},\n{\nglyphname = lcaron;\nlastChange = \"2025-01-01 06:47:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(319,700,l),\n(226,700,l),\n(213,582,l),\n(263,582,l)\n);\n}\n);\nwidth = 319;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(343,700,l),\n(233,700,l),\n(222,563,l),\n(294,563,l)\n);\n}\n);\nwidth = 343;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(418,700,l),\n(288,700,l),\n(269,530,l),\n(364,530,l)\n);\n}\n);\nwidth = 418;\n}\n);\nunicode = 318;\n},\n{\nglyphname = lcommaaccent;\nlastChange = \"2024-09-09 01:17:11 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (57,12);\nref = commaaccentcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (36,12);\nref = commaaccentcomb;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (53,1);\nref = commaaccentcomb;\n}\n);\nwidth = 296;\n}\n);\nunicode = 316;\n},\n{\nglyphname = ldot;\nlastChange = \"2025-01-01 08:53:17 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(322,303,o),\n(343,325,o),\n(343,349,cs),\n(343,375,o),\n(322,397,o),\n(298,397,cs),\n(272,397,o),\n(250,375,o),\n(250,349,cs),\n(250,325,o),\n(272,303,o),\n(298,303,cs)\n);\n}\n);\nwidth = 369;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(333,285,o),\n(362,315,o),\n(362,350,cs),\n(362,386,o),\n(333,416,o),\n(298,416,cs),\n(262,416,o),\n(232,386,o),\n(232,350,cs),\n(232,315,o),\n(262,285,o),\n(298,285,cs)\n);\n}\n);\nwidth = 382;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(422,262,o),\n(463,302,o),\n(463,352,cs),\n(463,400,o),\n(422,439,o),\n(374,439,cs),\n(325,439,o),\n(284,400,o),\n(284,352,cs),\n(284,302,o),\n(325,262,o),\n(374,262,cs)\n);\n}\n);\nwidth = 467;\n}\n);\nunicode = 320;\n},\n{\nglyphname = ldotbelow;\nlastChange = \"2024-09-09 02:09:53 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (54,1);\nref = dotbelowcomb;\n}\n);\nwidth = 296;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (48,0);\nref = dotbelowcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (38,0);\nref = dotbelowcomb;\n}\n);\nwidth = 228;\n}\n);\nunicode = 7735;\n},\n{\nglyphname = lmacronbelow;\nlastChange = \"2024-09-09 02:09:53 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (-32,1);\nref = macronbelowcomb;\n}\n);\nwidth = 296;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-24,12);\nref = macronbelowcomb;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (-47,12);\nref = macronbelowcomb;\n}\n);\nwidth = 228;\n}\n);\nunicode = 7739;\n},\n{\nglyphname = lslash;\nlastChange = \"2025-01-01 06:46:51 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (13,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(284,423,l),\n(253,468,l),\n(-10,284,l),\n(20,238,l)\n);\n}\n);\nwidth = 294;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (43,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(321,420,l),\n(278,480,l),\n(0,286,l),\n(42,226,l)\n);\n}\n);\nwidth = 331;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (49,0);\nref = l;\n},\n{\nclosed = 1;\nnodes = (\n(407,432,l),\n(339,518,l),\n(-12,278,l),\n(55,190,l)\n);\n}\n);\nwidth = 399;\n}\n);\nunicode = 322;\n},\n{\nglyphname = m;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2025-01-01 06:27:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(152,270,ls),\n(152,366,o),\n(207,462,o),\n(306,462,cs),\n(387,462,o),\n(448,411,o),\n(448,310,cs),\n(448,0,l),\n(504,0,l),\n(504,322,ls),\n(504,442,o),\n(419,512,o),\n(322,512,cs),\n(203,512,o),\n(161,431,o),\n(152,396,c),\n(152,500,l),\n(96,500,l),\n(96,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(856,0,l),\n(856,322,ls),\n(856,442,o),\n(771,512,o),\n(674,512,cs),\n(555,512,o),\n(502,414,o),\n(493,379,c),\n(504,270,l),\n(504,373,o),\n(559,462,o),\n(658,462,cs),\n(739,462,o),\n(800,411,o),\n(800,310,cs),\n(800,0,l)\n);\n}\n);\nwidth = 944;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,0,l),\n(511,0,l),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(846,0,l),\n(846,328,ls),\n(846,448,o),\n(775,512,o),\n(678,512,cs),\n(566,512,o),\n(510,432,o),\n(501,397,c),\n(511,270,l),\n(511,366,o),\n(558,436,o),\n(650,436,cs),\n(717,436,o),\n(762,403,o),\n(762,316,cs),\n(762,0,l)\n);\n}\n);\nwidth = 934;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(220,0,l),\n(220,239,ls),\n(220,347,o),\n(252,408,o),\n(335,408,cs),\n(392,408,o),\n(421,373,o),\n(421,296,cs),\n(421,0,l),\n(561,0,l),\n(561,315,ls),\n(561,435,o),\n(498,520,o),\n(369,520,cs),\n(301,520,o),\n(241,479,o),\n(220,430,c),\n(220,508,l),\n(80,508,l),\n(80,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(902,0,l),\n(902,315,ls),\n(902,435,o),\n(839,520,o),\n(710,520,cs),\n(646,520,o),\n(573,496,o),\n(545,410,c),\n(561,239,l),\n(561,347,o),\n(593,408,o),\n(676,408,cs),\n(733,408,o),\n(762,373,o),\n(762,296,cs),\n(762,0,l)\n);\n}\n);\nwidth = 974;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"9734DA5E-3835-4262-844E-572FF4DD55DE\";\nname = \"5 Apr 24 at 07:53\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(152,270,ls),\n(152,366,o),\n(200,458,o),\n(299,458,cs),\n(380,458,o),\n(448,411,o),\n(448,310,cs),\n(448,0,l),\n(504,0,l),\n(504,322,ls),\n(504,442,o),\n(424,512,o),\n(327,512,cs),\n(208,512,o),\n(161,431,o),\n(152,396,c),\n(152,500,l),\n(96,500,l),\n(96,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(504,270,l),\n(504,366,o),\n(552,458,o),\n(651,458,cs),\n(732,458,o),\n(800,411,o),\n(800,310,cs),\n(800,0,l),\n(856,0,l),\n(856,322,ls),\n(856,442,o),\n(776,512,o),\n(679,512,cs),\n(560,512,o),\n(513,431,o),\n(504,396,c)\n);\n}\n);\nwidth = 926;\n}\n);\nunicode = 109;\n},\n{\nglyphname = n;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2024-12-31 22:40:41 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (307,0);\n},\n{\nname = top;\npos = (307,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(152,270,ls),\n(152,366,o),\n(207,462,o),\n(306,462,cs),\n(387,462,o),\n(448,411,o),\n(448,310,cs),\n(448,0,l),\n(504,0,l),\n(504,322,ls),\n(504,442,o),\n(419,512,o),\n(322,512,cs),\n(203,512,o),\n(161,431,o),\n(152,396,c),\n(152,500,l),\n(96,500,l),\n(96,0,l)\n);\n}\n);\nwidth = 592;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (307,0);\n},\n{\nname = top;\npos = (307,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,0,l),\n(511,0,l),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n}\n);\nwidth = 587;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (326,0);\n},\n{\nname = top;\npos = (331,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(220,0,l),\n(220,239,ls),\n(220,347,o),\n(248,408,o),\n(331,408,cs),\n(388,408,o),\n(416,370,o),\n(416,296,cs),\n(416,0,l),\n(556,0,l),\n(556,315,ls),\n(556,435,o),\n(498,520,o),\n(364,520,cs),\n(296,520,o),\n(241,479,o),\n(220,430,c),\n(220,508,l),\n(80,508,l),\n(80,0,l)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 110;\n},\n{\nglyphname = nacute;\nlastChange = \"2024-09-03 02:02:20 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (257,0);\nref = acutecomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (273,0);\nref = acutecomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (270,12);\nref = acutecomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 324;\n},\n{\nglyphname = ncaron;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (173,0);\nref = caroncomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (155,0);\nref = caroncomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (150,12);\nref = caroncomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 328;\n},\n{\nglyphname = ncommaaccent;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (246,12);\nref = commaaccentcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (230,12);\nref = commaaccentcomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (231,1);\nref = commaaccentcomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 326;\n},\n{\nglyphname = ndotbelow;\nlastChange = \"2024-09-09 02:09:53 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (232,1);\nref = dotbelowcomb;\n}\n);\nwidth = 624;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (237,0);\nref = dotbelowcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (232,0);\nref = dotbelowcomb;\n}\n);\nwidth = 587;\n}\n);\nunicode = 7751;\n},\n{\nglyphname = nhookleft;\nkernLeft = j;\nkernRight = n;\nlastChange = \"2025-01-01 10:05:03 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (184,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (30,0);\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(189,-165,o),\n(250,-104,o),\n(250,-11,cs),\n(250,70,l),\n(110,70,l),\n(110,37,ls),\n(110,-1,o),\n(88,-25,o),\n(52,-25,cs),\n(39,-25,o),\n(7,-24,o),\n(-9,-21,c),\n(-10,-157,l),\n(7,-162,o),\n(45,-165,o),\n(61,-165,cs)\n);\n}\n);\nwidth = 654;\n},\n{\nguides = (\n{\npos = (552,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (7,0);\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(120,-133,o),\n(159,-88,o),\n(159,5,cs),\n(159,11,l),\n(103,11,l),\n(103,6,ls),\n(103,-67,o),\n(74,-79,o),\n(26,-79,cs),\n(13,-79,o),\n(-4,-78,o),\n(-20,-75,c),\n(-20,-125,l),\n(-3,-130,o),\n(19,-133,o),\n(35,-133,cs)\n);\n}\n);\nwidth = 599;\n},\n{\nguides = (\n{\npos = (311,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (21,0);\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(155,-142,o),\n(197,-91,o),\n(197,2,cs),\n(197,90,l),\n(113,90,l),\n(113,3,ls),\n(113,-51,o),\n(86,-70,o),\n(37,-70,cs),\n(24,-70,o),\n(6,-69,o),\n(-10,-66,c),\n(-10,-134,l),\n(7,-139,o),\n(30,-142,o),\n(46,-142,cs)\n);\n}\n);\nwidth = 608;\n}\n);\nunicode = 626;\n},\n{\nglyphname = nhookretroflex;\nlastChange = \"2025-01-01 10:08:14 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (162,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (8,0);\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(629,-165,o),\n(667,-162,o),\n(684,-157,c),\n(683,-21,l),\n(667,-24,o),\n(635,-25,o),\n(622,-25,cs),\n(586,-25,o),\n(564,-1,o),\n(564,37,cs),\n(564,57,l),\n(424,57,l),\n(424,-5,ls),\n(424,-98,o),\n(485,-165,o),\n(613,-165,cs)\n);\n}\n);\nwidth = 674;\n},\n{\nguides = (\n{\npos = (545,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(588,-133,o),\n(610,-130,o),\n(627,-125,c),\n(627,-75,l),\n(611,-78,o),\n(594,-79,o),\n(581,-79,cs),\n(533,-79,o),\n(504,-61,o),\n(504,12,cs),\n(504,31,l),\n(448,31,l),\n(448,11,ls),\n(448,-82,o),\n(487,-133,o),\n(572,-133,cs)\n);\n}\n);\nwidth = 583;\n},\n{\nguides = (\n{\npos = (290,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(594,-142,o),\n(617,-139,o),\n(634,-134,c),\n(634,-66,l),\n(618,-69,o),\n(600,-70,o),\n(587,-70,cs),\n(538,-70,o),\n(511,-51,o),\n(511,3,cs),\n(511,90,l),\n(427,90,l),\n(427,2,ls),\n(427,-91,o),\n(469,-142,o),\n(578,-142,cs)\n);\n}\n);\nwidth = 589;\n}\n);\nunicode = 627;\n},\n{\nglyphname = nmacronbelow;\nlastChange = \"2024-09-09 02:09:53 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (146,1);\nref = macronbelowcomb;\n}\n);\nwidth = 624;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (165,12);\nref = macronbelowcomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (147,12);\nref = macronbelowcomb;\n}\n);\nwidth = 587;\n}\n);\nunicode = 7753;\n},\n{\nglyphname = ntilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (144,0);\nref = tildecomb;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (144,0);\nref = tildecomb;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (123,12);\nref = tildecomb;\n}\n);\nwidth = 624;\n}\n);\nunicode = 241;\n},\n{\nglyphname = eng;\nkernRight = n;\nlastChange = \"2025-01-01 10:08:25 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (154,-165);\n}\n);\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(495,-165,o),\n(554,-104,o),\n(555,-11,cs),\n(556,70,l),\n(416,70,l),\n(416,37,ls),\n(416,-1,o),\n(394,-25,o),\n(358,-25,cs),\n(345,-25,o),\n(313,-24,o),\n(297,-21,c),\n(296,-157,l),\n(313,-162,o),\n(351,-165,o),\n(367,-165,cs)\n);\n}\n);\nwidth = 624;\n},\n{\nguides = (\n{\npos = (545,-133);\n}\n);\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(466,-133,o),\n(504,-89,o),\n(504,4,cs),\n(504,56,l),\n(448,56,l),\n(448,10,ls),\n(448,-63,o),\n(420,-79,o),\n(372,-79,cs),\n(359,-79,o),\n(342,-78,o),\n(326,-75,c),\n(326,-125,l),\n(343,-130,o),\n(365,-133,o),\n(381,-133,cs)\n);\n}\n);\nwidth = 582;\n},\n{\nguides = (\n{\npos = (290,-142);\n}\n);\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\nclosed = 1;\nnodes = (\n(469,-142,o),\n(511,-91,o),\n(511,2,cs),\n(511,90,l),\n(427,90,l),\n(427,3,ls),\n(427,-51,o),\n(400,-70,o),\n(351,-70,cs),\n(338,-70,o),\n(320,-69,o),\n(304,-66,c),\n(304,-134,l),\n(321,-139,o),\n(344,-142,o),\n(360,-142,cs)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 331;\n},\n{\nglyphname = o;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-01 03:19:00 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (284,-12);\n},\n{\nname = top;\npos = (284,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(408,-12,o),\n(512,78,o),\n(512,250,cs),\n(512,422,o),\n(408,512,o),\n(284,512,cs),\n(160,512,o),\n(56,422,o),\n(56,250,cs),\n(56,78,o),\n(160,-12,o),\n(284,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(173,38,o),\n(114,121,o),\n(114,250,cs),\n(114,379,o),\n(173,462,o),\n(284,462,cs),\n(395,462,o),\n(454,379,o),\n(454,250,cs),\n(454,121,o),\n(395,38,o),\n(284,38,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (290,-12);\n},\n{\nname = top;\npos = (290,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(414,-12,o),\n(524,78,o),\n(524,250,cs),\n(524,422,o),\n(420,512,o),\n(290,512,cs),\n(166,512,o),\n(56,422,o),\n(56,250,cs),\n(56,78,o),\n(160,-12,o),\n(290,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(192,64,o),\n(140,135,o),\n(140,250,cs),\n(140,365,o),\n(194,436,o),\n(290,436,cs),\n(388,436,o),\n(440,365,o),\n(440,250,cs),\n(440,135,o),\n(388,64,o),\n(290,64,cs)\n);\n}\n);\nwidth = 580;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (303,-12);\n},\n{\nname = top;\npos = (303,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(434,-12,o),\n(568,70,o),\n(568,254,cs),\n(568,440,o),\n(440,520,o),\n(303,520,cs),\n(174,520,o),\n(36,440,o),\n(36,254,cs),\n(36,70,o),\n(166,-12,o),\n(303,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(225,108,o),\n(182,164,o),\n(182,254,cs),\n(182,342,o),\n(226,400,o),\n(303,400,cs),\n(385,400,o),\n(422,342,o),\n(422,254,cs),\n(422,164,o),\n(384,108,o),\n(303,108,cs)\n);\n}\n);\nwidth = 604;\n}\n);\nunicode = 111;\n},\n{\nglyphname = oacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-22 04:44:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (234,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (256,0);\nref = acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (242,12);\nref = acutecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 243;\n},\n{\nglyphname = obreve;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (138,0);\nref = brevecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (146,0);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (129,12);\nref = brevecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 335;\n},\n{\nglyphname = ocircumflex;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (150,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (140,0);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (122,12);\nref = circumflexcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 244;\n},\n{\nglyphname = ocircumflexacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (3,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (9,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (122,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7889;\n},\n{\nglyphname = ocircumflexdotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (214,-12);\nref = dotbelowcomb;\n},\n{\npos = (150,0);\nref = circumflexcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n},\n{\npos = (140,0);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (209,-11);\nref = dotbelowcomb;\n},\n{\npos = (122,12);\nref = circumflexcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7897;\n},\n{\nglyphname = ocircumflexgrave;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (150,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (141,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (122,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7891;\n},\n{\nglyphname = ocircumflexhookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (150,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (141,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (122,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7893;\n},\n{\nglyphname = ocircumflextilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (148,0);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (134,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (95,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7895;\n},\n{\nglyphname = odieresis;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (130,0);\nref = dieresiscomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (129,0);\nref = dieresiscomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (99,12);\nref = dieresiscomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 246;\n},\n{\nglyphname = odotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (214,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (209,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7885;\n},\n{\nglyphname = ograve;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (134,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (133,0);\nref = gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (116,12);\nref = gravecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 242;\n},\n{\nglyphname = ohookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (247,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (234,12);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (243,12);\nref = hookabovecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 7887;\n},\n{\nglyphname = ohorn;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2024-11-01 03:03:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(518,434,o),\n(602,512,o),\n(553,634,c),\n(492,615,l),\n(523,545,o),\n(495,483,o),\n(431,483,cs),\n(401,483,o),\n(370,498,o),\n(340,505,c),\n(340,462,l),\n(431,434,l)\n);\n},\n{\nref = o;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(556,430,o),\n(618,513,o),\n(569,635,c),\n(489,613,l),\n(518,554,o),\n(508,484,o),\n(440,484,cs),\n(417,484,o),\n(375,500,o),\n(352,504,c),\n(352,447,l),\n(422,430,l)\n);\n},\n{\nref = o;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(602,413,o),\n(687,522,o),\n(633,657,c),\n(519,626,l),\n(548,567,o),\n(544,494,o),\n(463,494,cs),\n(427,494,o),\n(404,508,o),\n(350,516,c),\n(350,433,l),\n(469,413,l)\n);\n},\n{\nref = o;\n}\n);\nwidth = 685;\n}\n);\nunicode = 417;\n},\n{\nglyphname = ohornacute;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2024-11-01 03:03:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (234,0);\nref = acutecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (256,0);\nref = acutecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (242,12);\nref = acutecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7899;\n},\n{\nglyphname = ohorndotbelow;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2024-11-01 03:03:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (214,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (209,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7907;\n},\n{\nglyphname = ohorngrave;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (134,0);\nref = gravecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (133,0);\nref = gravecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (116,12);\nref = gravecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7901;\n},\n{\nglyphname = ohornhookabove;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2024-11-01 03:03:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (247,12);\nref = hookabovecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (234,12);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (243,12);\nref = hookabovecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7903;\n},\n{\nglyphname = ohorntilde;\nkernLeft = o;\nkernRight = ohorn;\nlastChange = \"2024-11-01 03:03:44 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (121,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (127,0);\nref = tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (95,12);\nref = tildecomb;\n}\n);\nwidth = 685;\n}\n);\nunicode = 7905;\n},\n{\nglyphname = ohungarumlaut;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-01 03:04:01 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (165,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (167,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (137,12);\nref = hungarumlautcomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 337;\n},\n{\nglyphname = omacron;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (142,0);\nref = macroncomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (111,0);\nref = macroncomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (127,12);\nref = macroncomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 333;\n},\n{\nglyphname = oopen;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (518,0);\nref = c;\nscale = (-1,1);\n}\n);\nwidth = 518;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (536,0);\nref = c;\nscale = (-1,1);\n}\n);\nwidth = 536;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (550,0);\nref = c;\nscale = (-1,1);\n}\n);\nwidth = 550;\n}\n);\nunicode = 596;\n},\n{\nglyphname = oslash;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-02 02:04:03 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (7,0);\nref = o;\n},\n{\nclosed = 1;\nnodes = (\n(84,-27,l),\n(528,493,l),\n(491,523,l),\n(49,6,l)\n);\n}\n);\nwidth = 576;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (13,0);\nref = o;\n},\n{\nclosed = 1;\nnodes = (\n(97,-34,l),\n(549,488,l),\n(495,532,l),\n(45,13,l)\n);\n}\n);\nwidth = 595;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (6,0);\nref = o;\n},\n{\nclosed = 1;\nnodes = (\n(102,-51,l),\n(587,495,l),\n(508,556,l),\n(25,13,l)\n);\n}\n);\nwidth = 613;\n}\n);\nunicode = 248;\n},\n{\nglyphname = oslashacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-02 02:04:19 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = oslash;\n},\n{\npos = (241,0);\nref = acutecomb;\n}\n);\nwidth = 576;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = oslash;\n},\n{\npos = (269,0);\nref = acutecomb;\n}\n);\nwidth = 595;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = oslash;\n},\n{\npos = (248,12);\nref = acutecomb;\n}\n);\nwidth = 613;\n}\n);\nunicode = 511;\n},\n{\nglyphname = otilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2024-11-02 02:04:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = o;\n},\n{\npos = (121,0);\nref = tildecomb;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = o;\n},\n{\npos = (127,0);\nref = tildecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = o;\n},\n{\npos = (95,12);\nref = tildecomb;\n}\n);\nwidth = 604;\n}\n);\nunicode = 245;\n},\n{\nglyphname = oe;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2024-11-02 02:03:38 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (862,-13);\n},\n{\nname = top;\npos = (858,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(408,-12,o),\n(503,78,o),\n(503,250,cs),\n(503,422,o),\n(408,512,o),\n(284,512,cs),\n(160,512,o),\n(56,422,o),\n(56,250,cs),\n(56,78,o),\n(160,-12,o),\n(284,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(173,38,o),\n(114,121,o),\n(114,250,cs),\n(114,379,o),\n(173,462,o),\n(284,462,cs),\n(395,462,o),\n(454,379,o),\n(454,250,cs),\n(454,121,o),\n(395,38,o),\n(284,38,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(823,-13,o),\n(890,62,o),\n(915,144,c),\n(862,154,l),\n(843,100,o),\n(794,37,o),\n(698,37,cs),\n(579,37,o),\n(517,118,o),\n(517,245,cs),\n(517,368,o),\n(565,462,o),\n(695,462,cs),\n(802,462,o),\n(857,368,o),\n(857,289,c),\n(506,289,l),\n(506,239,l),\n(917,239,l),\n(917,267,l),\n(917,422,o),\n(819,512,o),\n(691,512,cs),\n(554,512,o),\n(465,412,o),\n(465,248,cs),\n(465,87,o),\n(548,-13,o),\n(694,-13,cs)\n);\n}\n);\nwidth = 973;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (876,-13);\n},\n{\nname = top;\npos = (872,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(414,-12,o),\n(514,78,o),\n(514,250,cs),\n(514,422,o),\n(420,512,o),\n(290,512,cs),\n(166,512,o),\n(56,422,o),\n(56,250,cs),\n(56,78,o),\n(160,-12,o),\n(290,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(192,64,o),\n(140,135,o),\n(140,250,cs),\n(140,365,o),\n(194,436,o),\n(290,436,cs),\n(388,436,o),\n(440,365,o),\n(440,250,cs),\n(440,135,o),\n(388,64,o),\n(290,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(807,-13,o),\n(875,55,o),\n(900,137,c),\n(818,151,l),\n(799,97,o),\n(743,63,o),\n(686,63,cs),\n(561,63,o),\n(528,150,o),\n(528,245,cs),\n(528,367,o),\n(574,436,o),\n(683,436,cs),\n(777,436,o),\n(816,345,o),\n(816,304,c),\n(523,304,l),\n(523,234,l),\n(902,234,l),\n(902,261,l),\n(902,434,o),\n(803,512,o),\n(679,512,cs),\n(542,512,o),\n(452,412,o),\n(452,248,cs),\n(452,87,o),\n(542,-13,o),\n(682,-13,cs)\n);\n}\n);\nwidth = 958;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (334,-13);\n},\n{\nname = top;\npos = (332,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(434,-12,o),\n(552,70,o),\n(552,254,cs),\n(552,440,o),\n(440,520,o),\n(303,520,cs),\n(174,520,o),\n(36,440,o),\n(36,254,cs),\n(36,70,o),\n(166,-12,o),\n(303,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(225,108,o),\n(182,164,o),\n(182,254,cs),\n(182,342,o),\n(226,400,o),\n(303,400,cs),\n(385,400,o),\n(422,342,o),\n(422,254,cs),\n(422,164,o),\n(384,108,o),\n(303,108,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(778,-13,o),\n(874,23,o),\n(921,134,c),\n(789,173,l),\n(770,130,o),\n(723,107,o),\n(693,107,cs),\n(604,107,o),\n(565,164,o),\n(565,256,cs),\n(565,337,o),\n(604,400,o),\n(688,400,cs),\n(755,400,o),\n(793,336,o),\n(793,301,c),\n(532,301,l),\n(533,215,l),\n(936,215,l),\n(936,248,l),\n(936,418,o),\n(839,520,o),\n(689,520,cs),\n(558,520,o),\n(442,436,o),\n(442,256,cs),\n(442,82,o),\n(556,-13,o),\n(691,-13,cs)\n);\n}\n);\nwidth = 972;\n}\n);\nunicode = 339;\n},\n{\nglyphname = p;\nkernRight = o;\nlastChange = \"2025-01-01 06:27:43 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(172,43,o),\n(235,-12,o),\n(326,-12,cs),\n(443,-12,o),\n(538,86,o),\n(538,250,cs),\n(538,419,o),\n(457,512,o),\n(326,512,cs),\n(241,512,o),\n(172,457,o),\n(152,402,c),\n(152,500,l),\n(96,500,l),\n(96,-230,l),\n(152,-230,l),\n(152,98,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,38,o),\n(152,108,o),\n(151,250,c),\n(152,392,o),\n(235,462,o),\n(314,462,cs),\n(427,462,o),\n(479,377,o),\n(479,252,cs),\n(479,124,o),\n(413,38,o),\n(314,38,cs)\n);\n}\n);\nwidth = 594;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(198,24,o),\n(271,-12,o),\n(340,-12,cs),\n(474,-12,o),\n(561,86,o),\n(561,250,cs),\n(561,419,o),\n(474,512,o),\n(335,512,cs),\n(247,512,o),\n(195,457,o),\n(176,402,c),\n(176,500,l),\n(92,500,l),\n(92,-230,l),\n(176,-230,l),\n(176,93,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(231,64,o),\n(177,148,o),\n(177,250,cs),\n(177,360,o),\n(231,437,o),\n(330,437,cs),\n(428,437,o),\n(476,356,o),\n(476,252,cs),\n(476,148,o),\n(428,64,o),\n(327,64,cs)\n);\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(217,29,o),\n(267,-12,o),\n(350,-12,cs),\n(481,-12,o),\n(569,88,o),\n(569,253,cs),\n(569,421,o),\n(476,520,o),\n(345,520,cs),\n(267,520,o),\n(217,470,o),\n(191,415,c),\n(191,508,l),\n(50,508,l),\n(51,-230,l),\n(191,-230,l),\n(191,83,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(237,97,o),\n(191,158,o),\n(191,253,cs),\n(191,341,o),\n(237,410,o),\n(305,410,cs),\n(377,410,o),\n(423,340,o),\n(423,253,cs),\n(423,157,o),\n(377,95,o),\n(305,96,cs)\n);\n}\n);\nwidth = 613;\n}\n);\nunicode = 112;\n},\n{\nglyphname = thorn;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(172,43,o),\n(235,-12,o),\n(326,-12,cs),\n(443,-12,o),\n(538,86,o),\n(538,250,cs),\n(538,419,o),\n(457,512,o),\n(326,512,cs),\n(241,512,o),\n(172,457,o),\n(152,402,c),\n(152,700,l),\n(96,700,l),\n(96,-230,l),\n(152,-230,l),\n(152,98,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,38,o),\n(152,108,o),\n(151,250,c),\n(152,392,o),\n(235,462,o),\n(314,462,cs),\n(427,462,o),\n(479,377,o),\n(479,252,cs),\n(479,124,o),\n(413,38,o),\n(314,38,cs)\n);\n}\n);\nwidth = 594;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(198,24,o),\n(271,-12,o),\n(340,-12,cs),\n(474,-12,o),\n(561,86,o),\n(561,250,cs),\n(561,419,o),\n(474,512,o),\n(335,512,cs),\n(247,512,o),\n(195,457,o),\n(176,402,c),\n(176,700,l),\n(92,700,l),\n(92,-230,l),\n(176,-230,l),\n(176,93,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(231,64,o),\n(177,148,o),\n(177,250,cs),\n(177,360,o),\n(231,437,o),\n(330,437,cs),\n(428,437,o),\n(476,356,o),\n(476,252,cs),\n(476,148,o),\n(428,64,o),\n(327,64,cs)\n);\n}\n);\nwidth = 615;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(219,29,o),\n(269,-12,o),\n(352,-12,cs),\n(483,-12,o),\n(571,88,o),\n(571,253,cs),\n(571,421,o),\n(478,520,o),\n(347,520,cs),\n(269,520,o),\n(219,470,o),\n(193,415,c),\n(193,700,l),\n(52,700,l),\n(53,-230,l),\n(193,-230,l),\n(193,83,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(239,97,o),\n(193,158,o),\n(193,253,cs),\n(193,341,o),\n(239,410,o),\n(307,410,cs),\n(379,410,o),\n(425,340,o),\n(425,253,cs),\n(425,157,o),\n(379,95,o),\n(307,96,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 254;\n},\n{\nglyphname = q;\nkernLeft = o;\nlastChange = \"2025-01-01 10:07:36 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(547,-231,o),\n(557,-226,o),\n(571,-218,c),\n(571,-171,l),\n(530,-190,o),\n(499,-176,o),\n(499,-126,c),\n(498,500,l),\n(442,500,l),\n(442,402,l),\n(422,457,o),\n(353,512,o),\n(268,512,cs),\n(137,512,o),\n(56,419,o),\n(56,250,cs),\n(56,86,o),\n(151,-12,o),\n(268,-12,cs),\n(359,-12,o),\n(422,43,o),\n(442,98,c),\n(443,-141,ls),\n(443,-212,o),\n(483,-229,o),\n(522,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(181,38,o),\n(115,124,o),\n(115,252,cs),\n(115,377,o),\n(167,462,o),\n(280,462,cs),\n(359,462,o),\n(442,392,o),\n(443,250,c),\n(442,108,o),\n(359,38,o),\n(280,38,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(557,-230,o),\n(570,-226,o),\n(584,-218,c),\n(584,-150,l),\n(535,-161,o),\n(522,-143,o),\n(524,-103,cs),\n(524,500,l),\n(441,500,l),\n(441,402,l),\n(420,457,o),\n(368,512,o),\n(280,512,cs),\n(149,512,o),\n(54,419,o),\n(54,250,cs),\n(54,86,o),\n(144,-12,o),\n(275,-12,cs),\n(344,-12,o),\n(419,27,o),\n(440,96,c),\n(440,-124,ls),\n(440,-204,o),\n(480,-230,o),\n(532,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,64,o),\n(138,148,o),\n(138,252,cs),\n(138,356,o),\n(186,437,o),\n(284,437,cs),\n(383,437,o),\n(437,360,o),\n(437,250,cs),\n(437,148,o),\n(383,64,o),\n(287,64,cs)\n);\n}\n);\nwidth = 604;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(571,-229,o),\n(611,-222,o),\n(625,-214,c),\n(625,-104,l),\n(576,-115,o),\n(562,-100,o),\n(562,-60,cs),\n(563,508,l),\n(422,508,l),\n(422,415,l),\n(396,470,o),\n(346,520,o),\n(268,520,cs),\n(137,520,o),\n(44,421,o),\n(44,253,cs),\n(44,88,o),\n(132,-12,o),\n(263,-12,cs),\n(346,-12,o),\n(396,29,o),\n(422,83,c),\n(421,-100,ls),\n(421,-191,o),\n(469,-229,o),\n(544,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,95,o),\n(190,157,o),\n(190,253,cs),\n(190,340,o),\n(236,410,o),\n(308,410,cs),\n(376,410,o),\n(422,341,o),\n(422,253,cs),\n(422,158,o),\n(376,97,o),\n(308,96,cs)\n);\n}\n);\nwidth = 655;\n}\n);\nunicode = 113;\n},\n{\nglyphname = r;\nlastChange = \"2025-02-21 05:17:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (125,0);\n},\n{\nname = top;\npos = (203,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,0,l),\n(152,270,ls),\n(152,366,o),\n(207,456,o),\n(306,456,cs),\n(324,456,o),\n(342,454,o),\n(358,449,c),\n(358,509,l),\n(346,511,o),\n(334,512,o),\n(322,512,cs),\n(203,512,o),\n(161,431,o),\n(152,396,c),\n(152,500,l),\n(96,500,l),\n(96,0,l)\n);\n}\n);\nwidth = 375;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (136,0);\n},\n{\nname = top;\npos = (214,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(221,420,o),\n(302,436,cs),\n(327,441,o),\n(362,436,o),\n(382,430,c),\n(382,508,l),\n(373,510,o),\n(349,512,o),\n(339,512,cs),\n(236,512,o),\n(196,454,o),\n(176,401,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n}\n);\nwidth = 402;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (149,0);\n},\n{\nname = top;\npos = (237,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(220,0,l),\n(220,221,ls),\n(220,317,o),\n(242,375,o),\n(321,391,cs),\n(346,396,o),\n(381,391,o),\n(401,385,c),\n(401,516,l),\n(392,519,o),\n(368,520,o),\n(358,520,cs),\n(290,520,o),\n(240,477,o),\n(220,424,c),\n(220,508,l),\n(80,508,l),\n(80,0,l)\n);\n}\n);\nwidth = 419;\n}\n);\nunicode = 114;\n},\n{\nglyphname = racute;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (153,-12);\nref = acutecomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (180,-12);\nref = acutecomb;\n}\n);\nwidth = 402;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (176,12);\nref = acutecomb;\n}\n);\nwidth = 419;\n}\n);\nunicode = 341;\n},\n{\nglyphname = rcaron;\nlastChange = \"2025-02-21 05:17:28 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (69,-12);\nref = caroncomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (62,-12);\nref = caroncomb;\n}\n);\nwidth = 402;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (60,12);\nref = caroncomb;\n}\n);\nwidth = 419;\n}\n);\nunicode = 345;\n},\n{\nglyphname = rcommaaccent;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (64,12);\nref = commaaccentcomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (59,12);\nref = commaaccentcomb;\n}\n);\nwidth = 402;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (54,1);\nref = commaaccentcomb;\n}\n);\nwidth = 419;\n}\n);\nunicode = 343;\n},\n{\nglyphname = rdotbelow;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (55,1);\nref = dotbelowcomb;\n}\n);\nwidth = 419;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (55,0);\nref = dotbelowcomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (61,0);\nref = dotbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7771;\n},\n{\nglyphname = rmacronbelow;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = r;\n},\n{\npos = (-31,1);\nref = macronbelowcomb;\n}\n);\nwidth = 419;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-17,12);\nref = macronbelowcomb;\n}\n);\nwidth = 375;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = r;\n},\n{\npos = (-24,12);\nref = macronbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7775;\n},\n{\nglyphname = s;\nlastChange = \"2025-01-01 06:46:20 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (252,-12);\n},\n{\nname = top;\npos = (253,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(396,-12,o),\n(451,53,o),\n(451,134,cs),\n(451,331,o),\n(128,228,o),\n(128,371,cs),\n(128,432,o),\n(186,462,o),\n(252,462,cs),\n(328,462,o),\n(376,418,o),\n(376,367,c),\n(436,367,l),\n(436,429,o),\n(402,512,o),\n(253,512,cs),\n(130,512,o),\n(70,441,o),\n(70,368,cs),\n(70,168,o),\n(393,269,o),\n(393,134,cs),\n(393,70,o),\n(339,38,o),\n(254,38,cs),\n(189,38,o),\n(110,80,o),\n(110,156,c),\n(50,156,l),\n(50,57,o),\n(149,-12,o),\n(252,-12,cs)\n);\n}\n);\nwidth = 505;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (251,-12);\n},\n{\nname = top;\npos = (243,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(398,-12,o),\n(456,60,o),\n(456,141,cs),\n(456,338,o),\n(137,253,o),\n(137,365,cs),\n(137,407,o),\n(169,436,o),\n(242,436,cs),\n(322,436,o),\n(360,400,o),\n(360,367,c),\n(446,367,l),\n(446,429,o),\n(396,512,o),\n(243,512,cs),\n(113,512,o),\n(53,433,o),\n(53,360,cs),\n(53,161,o),\n(372,258,o),\n(372,137,cs),\n(372,87,o),\n(327,64,o),\n(253,64,cs),\n(195,64,o),\n(132,93,o),\n(132,156,c),\n(42,156,l),\n(42,57,o),\n(142,-12,o),\n(251,-12,c)\n);\n}\n);\nwidth = 503;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (275,-12);\n},\n{\nname = top;\npos = (272,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,-12,o),\n(514,53,o),\n(514,162,cs),\n(514,347,o),\n(195,287,o),\n(195,361,cs),\n(195,389,o),\n(216,406,o),\n(271,406,cs),\n(328,406,o),\n(364,380,o),\n(364,351,c),\n(500,351,l),\n(500,424,o),\n(444,520,o),\n(272,520,cs),\n(117,520,o),\n(56,447,o),\n(56,355,cs),\n(56,157,o),\n(375,224,o),\n(375,155,cs),\n(375,116,o),\n(339,102,o),\n(282,102,cs),\n(216,102,o),\n(172,126,o),\n(172,175,c),\n(36,176,l),\n(36,77,o),\n(117,-12,o),\n(275,-12,c)\n);\n}\n);\nwidth = 554;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"F69D4450-EE1F-4301-BB03-F9CA77403C17\";\nname = \"10 Aug 24 at 16:46\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(434,-12,o),\n(514,66,o),\n(514,145,cs),\n(514,351,o),\n(195,285,o),\n(195,361,cs),\n(195,389,o),\n(216,406,o),\n(271,406,cs),\n(328,406,o),\n(364,380,o),\n(364,351,c),\n(500,351,l),\n(500,424,o),\n(444,520,o),\n(272,520,cs),\n(117,520,o),\n(56,448,o),\n(56,364,cs),\n(56,156,o),\n(375,226,o),\n(375,155,cs),\n(375,116,o),\n(339,102,o),\n(282,102,cs),\n(216,102,o),\n(172,126,o),\n(172,175,c),\n(36,176,l),\n(36,77,o),\n(117,-12,o),\n(275,-12,c)\n);\n}\n);\nvisible = 1;\nwidth = 554;\n}\n);\nunicode = 115;\n},\n{\nglyphname = sacute;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (203,0);\nref = acutecomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (209,0);\nref = acutecomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (211,12);\nref = acutecomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 347;\n},\n{\nglyphname = scaron;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (119,0);\nref = caroncomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (91,0);\nref = caroncomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (91,12);\nref = caroncomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 353;\n},\n{\nglyphname = scedilla;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (145,-14);\nref = cedillacomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (134,-14);\nref = cedillacomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (147,-11);\nref = cedillacomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 351;\n},\n{\nglyphname = scircumflex;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (119,0);\nref = circumflexcomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (93,0);\nref = circumflexcomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (91,12);\nref = circumflexcomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 349;\n},\n{\nglyphname = scommaaccent;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = s;\n},\n{\npos = (191,0);\nref = commaaccentcomb;\n}\n);\nwidth = 505;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = s;\n},\n{\npos = (174,0);\nref = commaaccentcomb;\n}\n);\nwidth = 503;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = s;\n},\n{\npos = (180,-11);\nref = commaaccentcomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 537;\n},\n{\nglyphname = germandbls;\nlastChange = \"2024-11-01 00:37:25 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,122,l),\n(207,46,o),\n(270,-12,o),\n(367,-12,cs),\n(457,-12,o),\n(530,41,o),\n(530,140,cs),\n(530,303,o),\n(361,302,o),\n(361,379,cs),\n(361,431,o),\n(421,461,o),\n(421,557,cs),\n(421,646,o),\n(352,712,o),\n(256,712,cs),\n(147,712,o),\n(84,642,o),\n(84,506,cs),\n(84,0,l),\n(140,0,l),\n(140,506,ls),\n(140,598,o),\n(169,662,o),\n(259,662,cs),\n(321,662,o),\n(363,608,o),\n(363,557,cs),\n(363,473,o),\n(303,458,o),\n(303,379,cs),\n(303,260,o),\n(472,286,o),\n(472,138,cs),\n(472,74,o),\n(430,38,o),\n(368,38,cs),\n(300,38,o),\n(259,82,o),\n(259,122,c)\n);\n}\n);\nwidth = 570;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,140,l),\n(215,58,o),\n(268,-12,o),\n(390,-12,cs),\n(492,-12,o),\n(561,54,o),\n(561,157,cs),\n(561,316,o),\n(396,327,o),\n(396,393,cs),\n(396,445,o),\n(449,460,o),\n(449,552,cs),\n(449,642,o),\n(370,712,o),\n(272,712,cs),\n(149,712,o),\n(86,631,o),\n(86,506,cs),\n(86,0,l),\n(174,0,l),\n(174,506,ls),\n(174,583,o),\n(194,636,o),\n(275,636,cs),\n(327,636,o),\n(365,595,o),\n(365,552,cs),\n(365,480,o),\n(312,472,o),\n(312,393,cs),\n(312,268,o),\n(477,284,o),\n(477,155,cs),\n(477,97,o),\n(442,64,o),\n(390,64,cs),\n(328,64,o),\n(298,95,o),\n(298,140,c)\n);\n}\n);\nwidth = 596;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(247,163,l),\n(247,43,o),\n(330,-12,o),\n(445,-12,cs),\n(580,-12,o),\n(643,68,o),\n(643,170,cs),\n(643,334,o),\n(476,332,o),\n(476,392,cs),\n(476,443,o),\n(512,462,o),\n(512,537,cs),\n(512,626,o),\n(429,712,o),\n(302,712,cs),\n(129,712,o),\n(80,602,o),\n(80,463,cs),\n(80,0,l),\n(220,0,l),\n(220,457,ls),\n(220,554,o),\n(245,598,o),\n(303,598,cs),\n(342,598,o),\n(373,570,o),\n(373,537,cs),\n(373,465,o),\n(336,459,o),\n(336,392,cs),\n(336,256,o),\n(506,271,o),\n(506,171,cs),\n(506,126,o),\n(486,102,o),\n(446,102,cs),\n(404,102,o),\n(378,122,o),\n(378,163,c)\n);\n}\n);\nwidth = 673;\n}\n);\nunicode = 223;\n},\n{\nglyphname = t;\nlastChange = \"2025-01-01 06:25:36 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (196,-3);\n},\n{\nname = top;\npos = (159,629);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(269,-11,o),\n(291,-8,o),\n(308,-3,c),\n(308,47,l),\n(292,44,o),\n(275,43,o),\n(262,43,cs),\n(214,43,o),\n(186,61,o),\n(186,134,cs),\n(186,449,l),\n(315,449,l),\n(315,499,l),\n(186,499,l),\n(186,627,l),\n(134,627,l),\n(134,570,ls),\n(134,506,o),\n(124,500,o),\n(63,500,cs),\n(40,500,l),\n(40,449,l),\n(130,449,l),\n(130,133,ls),\n(130,40,o),\n(168,-11,o),\n(253,-11,cs)\n);\n}\n);\nwidth = 355;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (214,-8);\n},\n{\nname = top;\npos = (157,627);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(282,-12,o),\n(304,-9,o),\n(321,-4,c),\n(321,64,l),\n(305,61,o),\n(288,60,o),\n(275,60,cs),\n(226,60,o),\n(200,78,o),\n(200,132,cs),\n(200,423,l),\n(329,423,l),\n(329,499,l),\n(200,499,l),\n(200,627,l),\n(116,627,l),\n(116,570,ls),\n(116,512,o),\n(103,500,o),\n(49,500,cs),\n(26,500,l),\n(26,423,l),\n(116,423,l),\n(116,132,ls),\n(116,39,o),\n(157,-12,o),\n(266,-12,cs)\n);\n}\n);\nwidth = 366;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (230,-4);\n},\n{\nname = top;\npos = (187,628);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(317,-12,o),\n(346,-9,o),\n(363,-4,c),\n(362,126,l),\n(346,123,o),\n(323,122,o),\n(310,122,cs),\n(283,122,o),\n(254,137,o),\n(254,184,cs),\n(254,387,l),\n(370,387,l),\n(370,507,l),\n(254,507,l),\n(254,627,l),\n(120,627,l),\n(120,582,ls),\n(120,527,o),\n(100,508,o),\n(37,508,cs),\n(18,508,l),\n(18,387,l),\n(114,387,l),\n(114,149,ls),\n(114,42,o),\n(170,-12,o),\n(301,-12,cs)\n);\n}\n);\nwidth = 400;\n}\n);\nunicode = 116;\n},\n{\nglyphname = tcaron;\nlastChange = \"2024-11-07 17:13:11 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(303,582,l),\n(359,700,l),\n(266,700,l),\n(253,582,l)\n);\n},\n{\nref = t;\n}\n);\nwidth = 359;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(333,562,l),\n(382,699,l),\n(272,699,l),\n(261,562,l)\n);\n},\n{\nref = t;\n}\n);\nwidth = 382;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(400,562,l),\n(455,702,l),\n(325,702,l),\n(305,562,l)\n);\n},\n{\nref = t;\n}\n);\nwidth = 455;\n}\n);\nunicode = 357;\n},\n{\nglyphname = tcedilla;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (89,-5);\nref = cedillacomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (97,-10);\nref = cedillacomb;\n}\n);\nwidth = 366;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (102,-3);\nref = cedillacomb;\n}\n);\nwidth = 400;\n}\n);\nunicode = 355;\n},\n{\nglyphname = tcommaaccent;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (135,9);\nref = commaaccentcomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (137,4);\nref = commaaccentcomb;\n}\n);\nwidth = 366;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (135,-3);\nref = commaaccentcomb;\n}\n);\nwidth = 400;\n}\n);\nunicode = 539;\n},\n{\nglyphname = tdotbelow;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (136,-3);\nref = dotbelowcomb;\n}\n);\nwidth = 400;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (126,-3);\nref = dotbelowcomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (139,-8);\nref = dotbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7789;\n},\n{\nglyphname = tmacronbelow;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = t;\n},\n{\npos = (50,-3);\nref = macronbelowcomb;\n}\n);\nwidth = 400;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = t;\n},\n{\npos = (54,9);\nref = macronbelowcomb;\n}\n);\nwidth = 355;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = t;\n},\n{\npos = (54,4);\nref = macronbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7791;\n},\n{\nglyphname = u;\nlastChange = \"2025-01-01 06:28:10 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (285,-12);\n},\n{\nname = top;\npos = (285,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(438,500,l),\n(438,230,ls),\n(438,134,o),\n(383,38,o),\n(284,38,cs),\n(203,38,o),\n(142,89,o),\n(142,190,cs),\n(142,500,l),\n(86,500,l),\n(86,178,ls),\n(86,58,o),\n(171,-12,o),\n(268,-12,cs),\n(387,-12,o),\n(429,69,o),\n(438,104,c),\n(438,0,l),\n(494,0,l),\n(494,500,l)\n);\n}\n);\nwidth = 584;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (290,-12);\n},\n{\nname = top;\npos = (290,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,500,l),\n(421,230,ls),\n(421,134,o),\n(374,64,o),\n(282,64,cs),\n(215,64,o),\n(170,97,o),\n(170,184,cs),\n(170,500,l),\n(86,500,l),\n(86,172,ls),\n(86,52,o),\n(157,-12,o),\n(254,-12,cs),\n(366,-12,o),\n(412,59,o),\n(421,94,c),\n(421,0,l),\n(505,0,l),\n(505,500,l)\n);\n}\n);\nwidth = 597;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (287,-12);\n},\n{\nname = top;\npos = (292,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(396,508,l),\n(396,269,ls),\n(396,161,o),\n(368,100,o),\n(285,100,cs),\n(228,100,o),\n(200,138,o),\n(200,212,cs),\n(200,508,l),\n(60,508,l),\n(60,193,ls),\n(60,73,o),\n(118,-12,o),\n(252,-12,cs),\n(320,-12,o),\n(375,29,o),\n(396,78,c),\n(396,0,l),\n(536,0,l),\n(536,508,l)\n);\n}\n);\nwidth = 616;\n}\n);\nunicode = 117;\n},\n{\nglyphname = uacute;\nkernLeft = u;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (235,-12);\nref = acutecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (256,-12);\nref = acutecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (231,12);\nref = acutecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 250;\n},\n{\nglyphname = ubreve;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (139,-12);\nref = brevecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (146,-12);\nref = brevecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (118,12);\nref = brevecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 365;\n},\n{\nglyphname = ucircumflex;\nkernLeft = u;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (151,-12);\nref = circumflexcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (140,-12);\nref = circumflexcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (111,12);\nref = circumflexcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 251;\n},\n{\nglyphname = udieresis;\nkernLeft = u;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (131,-12);\nref = dieresiscomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (129,-12);\nref = dieresiscomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (88,12);\nref = dieresiscomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 252;\n},\n{\nglyphname = udotbelow;\nlastChange = \"2024-10-21 04:16:12 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (193,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 7909;\n},\n{\nglyphname = ugrave;\nkernLeft = uhorn;\nkernRight = u;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (135,-12);\nref = gravecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (133,-12);\nref = gravecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (105,12);\nref = gravecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 249;\n},\n{\nglyphname = uhookabove;\nkernLeft = uhorn;\nkernRight = u;\nlastChange = \"2024-11-01 03:03:27 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (248,0);\nref = hookabovecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (234,0);\nref = hookabovecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (232,12);\nref = hookabovecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 7911;\n},\n{\nglyphname = uhorn;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2024-11-01 03:09:39 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\nclosed = 1;\nnodes = (\n(581,451,o),\n(665,529,o),\n(616,651,c),\n(555,632,l),\n(586,562,o),\n(558,500,o),\n(494,500,c),\n(494,451,l)\n);\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\nclosed = 1;\nnodes = (\n(625,446,o),\n(687,529,o),\n(638,651,c),\n(558,629,l),\n(587,570,o),\n(583,500,o),\n(502,500,c),\n(502,446,l)\n);\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\nclosed = 1;\nnodes = (\n(666,427,o),\n(754,536,o),\n(700,671,c),\n(586,640,l),\n(615,581,o),\n(614,508,o),\n(533,508,c),\n(533,427,l)\n);\n}\n);\nwidth = 736;\n}\n);\nunicode = 432;\n},\n{\nglyphname = uhornacute;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2024-11-01 03:08:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (235,-12);\nref = acutecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (256,-12);\nref = acutecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (231,12);\nref = acutecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7913;\n},\n{\nglyphname = uhorndotbelow;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2024-11-01 03:08:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (193,-11);\nref = dotbelowcomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7921;\n},\n{\nglyphname = uhorngrave;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (135,-12);\nref = gravecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (133,-12);\nref = gravecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (105,12);\nref = gravecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7915;\n},\n{\nglyphname = uhornhookabove;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2024-11-01 03:08:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (248,0);\nref = hookabovecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (234,0);\nref = hookabovecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (232,12);\nref = hookabovecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7917;\n},\n{\nglyphname = uhorntilde;\nkernLeft = u;\nkernRight = uhorn;\nlastChange = \"2024-11-01 03:08:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (122,-12);\nref = tildecomb;\n}\n);\nwidth = 640;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (127,-12);\nref = tildecomb;\n}\n);\nwidth = 675;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (84,12);\nref = tildecomb;\n}\n);\nwidth = 736;\n}\n);\nunicode = 7919;\n},\n{\nglyphname = uhungarumlaut;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (166,-12);\nref = hungarumlautcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (167,-12);\nref = hungarumlautcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (126,12);\nref = hungarumlautcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 369;\n},\n{\nglyphname = umacron;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (143,-12);\nref = macroncomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (111,-12);\nref = macroncomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (116,12);\nref = macroncomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 363;\n},\n{\nglyphname = uogonek;\nlastChange = \"2024-09-13 00:43:16 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (334,5);\nref = ogonekcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (342,0);\nref = ogonekcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (360,0);\nref = ogonekcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 371;\n},\n{\nglyphname = uring;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (166,-12);\nref = ringcomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (167,-12);\nref = ringcomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (156,12);\nref = ringcomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 367;\n},\n{\nglyphname = utilde;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = u;\n},\n{\npos = (122,-12);\nref = tildecomb;\n}\n);\nwidth = 584;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = u;\n},\n{\npos = (127,-12);\nref = tildecomb;\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = u;\n},\n{\npos = (84,12);\nref = tildecomb;\n}\n);\nwidth = 616;\n}\n);\nunicode = 361;\n},\n{\nglyphname = v;\nkernLeft = v;\nkernRight = v;\nlastChange = \"2025-01-01 10:03:03 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(214,0,l),\n(274,0,l),\n(87,500,l),\n(15,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(399,500,l),\n(214,0,l),\n(274,0,l),\n(464,500,l)\n);\n}\n);\nwidth = 480;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(204,0,l),\n(287,0,l),\n(113,500,l),\n(14,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(391,500,l),\n(214,0,l),\n(295,0,l),\n(482,500,l)\n);\n}\n);\nwidth = 496;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(204,0,l),\n(329,0,l),\n(147,508,l),\n(3,508,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(407,508,l),\n(219,0,l),\n(338,0,l),\n(541,508,l)\n);\n}\n);\nwidth = 544;\n}\n);\nunicode = 118;\n},\n{\nglyphname = w;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2025-01-01 10:08:00 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (414,0);\n},\n{\nname = top;\npos = (414,500);\n}\n);\nguides = (\n{\nangle = 270;\npos = (414,596);\n},\n{\nangle = 270;\npos = (232,568);\n},\n{\nangle = 270;\npos = (601,594);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(268,0,l),\n(427,473,l),\n(403,473,l),\n(563,0,l),\n(623,0,l),\n(790,500,l),\n(727,500,l),\n(589,61,l),\n(602,61,l),\n(455,500,l),\n(377,500,l),\n(233,61,l),\n(247,61,l),\n(108,500,l),\n(40,500,l),\n(207,0,l)\n);\n}\n);\nwidth = 830;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (427,0);\n},\n{\nname = top;\npos = (427,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(295,0,l),\n(445,420,l),\n(409,420,l),\n(558,0,l),\n(648,0,l),\n(812,500,l),\n(725,500,l),\n(595,62,l),\n(616,62,l),\n(470,500,l),\n(387,500,l),\n(244,62,l),\n(263,62,l),\n(131,500,l),\n(36,500,l),\n(205,0,l)\n);\n}\n);\nwidth = 848;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (460,-12);\n},\n{\nname = top;\npos = (460,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,0,l),\n(474,408,l),\n(445,408,l),\n(572,0,l),\n(709,0,l),\n(886,508,l),\n(750,508,l),\n(626,95,l),\n(650,95,l),\n(537,508,l),\n(391,508,l),\n(271,95,l),\n(295,95,l),\n(178,508,l),\n(32,508,l),\n(207,0,l)\n);\n}\n);\nwidth = 918;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"30F2B960-0829-4076-A92C-CF2E7BC166CC\";\nname = m;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(68,0,l),\n(68,270,ls),\n(68,366,o),\n(115,436,o),\n(207,436,cs),\n(274,436,o),\n(319,403,o),\n(319,316,cs),\n(319,0,l),\n(403,0,l),\n(403,328,ls),\n(403,448,o),\n(332,512,o),\n(235,512,cs),\n(123,512,o),\n(77,441,o),\n(68,406,c),\n(68,500,l),\n(-16,500,l),\n(-16,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(738,0,l),\n(738,328,ls),\n(738,448,o),\n(667,512,o),\n(570,512,cs),\n(458,512,o),\n(402,432,o),\n(393,397,c),\n(403,270,l),\n(403,366,o),\n(450,436,o),\n(542,436,cs),\n(609,436,o),\n(654,403,o),\n(654,316,cs),\n(654,0,l)\n);\n}\n);\nwidth = 730;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"54EF5A92-DF5C-4F27-901D-AD1120EB6B99\";\nname = v;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(130,0,l),\n(213,0,l),\n(39,500,l),\n(-60,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(317,500,l),\n(140,0,l),\n(221,0,l),\n(408,500,l)\n);\n}\n);\nwidth = 730;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"6140675B-CD52-4F0B-8FAC-842A7E23690F\";\nname = \"29 Jul 24 at 14:44\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(332,0,l),\n(442,394,l),\n(395,394,l),\n(500,0,l),\n(673,0,l),\n(812,508,l),\n(671,508,l),\n(566,60,l),\n(609,60,l),\n(490,508,l),\n(345,508,l),\n(225,60,l),\n(270,60,l),\n(165,508,l),\n(25,508,l),\n(164,0,l)\n);\n}\n);\nwidth = 837;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"C266404C-C364-4E5A-B81C-638BAB07B38C\";\nname = \"29 Jul 24 at 14:44\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(142,0,l),\n(142,239,ls),\n(142,347,o),\n(174,408,o),\n(257,408,cs),\n(314,408,o),\n(343,373,o),\n(343,296,cs),\n(343,0,l),\n(483,0,l),\n(483,315,ls),\n(483,435,o),\n(420,520,o),\n(291,520,cs),\n(223,520,o),\n(163,479,o),\n(142,430,c),\n(142,508,l),\n(2,508,l),\n(2,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(483,239,l),\n(483,347,o),\n(515,408,o),\n(598,408,cs),\n(655,408,o),\n(684,373,o),\n(684,296,cs),\n(684,0,l),\n(824,0,l),\n(824,315,ls),\n(824,435,o),\n(761,520,o),\n(632,520,cs),\n(568,520,o),\n(490,490,o),\n(468,404,c)\n);\n}\n);\nwidth = 837;\n},\n{\nassociatedMasterId = m01;\nguides = (\n{\nangle = 270;\npos = (415,596);\n},\n{\nangle = 270;\npos = (233,568);\n},\n{\nangle = 270;\npos = (602,594);\n}\n);\nlayerId = \"CC5DFB62-56C2-4ABB-B478-555D61F8676C\";\nname = \"29 Jul 24 at 16:40\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(80,0,l),\n(80,270,ls),\n(80,366,o),\n(135,458,o),\n(234,458,cs),\n(315,458,o),\n(376,411,o),\n(376,310,cs),\n(376,0,l),\n(432,0,l),\n(432,322,ls),\n(432,442,o),\n(347,512,o),\n(250,512,cs),\n(131,512,o),\n(89,431,o),\n(80,396,c),\n(80,500,l),\n(24,500,l),\n(24,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(432,270,l),\n(432,373,o),\n(487,458,o),\n(586,458,cs),\n(667,458,o),\n(728,411,o),\n(728,310,cs),\n(728,0,l),\n(784,0,l),\n(784,322,ls),\n(784,442,o),\n(699,512,o),\n(602,512,cs),\n(483,512,o),\n(430,414,o),\n(421,379,c)\n);\n}\n);\nwidth = 830;\n}\n);\nunicode = 119;\n},\n{\nglyphname = wacute;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (364,-12);\nref = acutecomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (393,-12);\nref = acutecomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (399,12);\nref = acutecomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 7811;\n},\n{\nglyphname = wcircumflex;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (280,-12);\nref = circumflexcomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (277,-12);\nref = circumflexcomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (279,12);\nref = circumflexcomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 373;\n},\n{\nglyphname = wdieresis;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (260,-12);\nref = dieresiscomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (266,-12);\nref = dieresiscomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (256,12);\nref = dieresiscomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 7813;\n},\n{\nglyphname = wgrave;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = w;\n},\n{\npos = (264,-12);\nref = gravecomb;\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = w;\n},\n{\npos = (270,-12);\nref = gravecomb;\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = w;\n},\n{\npos = (273,12);\nref = gravecomb;\n}\n);\nwidth = 918;\n}\n);\nunicode = 7809;\n},\n{\nglyphname = x;\nlastChange = \"2025-01-01 10:06:08 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(465,0,l),\n(259,287,l),\n(253,296,l),\n(107,500,l),\n(36,500,l),\n(217,248,l),\n(226,235,l),\n(394,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(89,0,l),\n(251,227,l),\n(260,239,l),\n(447,500,l),\n(378,500,l),\n(228,290,l),\n(216,274,l),\n(20,0,l)\n);\n}\n);\nwidth = 491;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(470,0,l),\n(268,283,l),\n(261,292,l),\n(112,500,l),\n(12,500,l),\n(203,233,l),\n(210,224,l),\n(370,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(102,0,l),\n(256,215,l),\n(266,229,l),\n(460,500,l),\n(365,500,l),\n(216,292,l),\n(204,275,l),\n(7,0,l)\n);\n}\n);\nwidth = 477;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(549,0,l),\n(320,306,l),\n(310,313,l),\n(166,508,l),\n(12,508,l),\n(228,218,l),\n(237,212,l),\n(395,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,0,l),\n(314,213,l),\n(323,220,l),\n(538,508,l),\n(389,508,l),\n(242,310,l),\n(233,304,l),\n(6,0,l)\n);\n}\n);\nwidth = 555;\n}\n);\nunicode = 120;\n},\n{\nglyphname = y;\nkernLeft = v;\nkernRight = v;\nlastChange = \"2025-01-01 10:08:09 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (266,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,-230,o),\n(234,-164,o),\n(285,-34,cs),\n(494,500,l),\n(430,500,l),\n(266,71,l),\n(86,500,l),\n(17,500,l),\n(237,0,l),\n(192,-126,o),\n(163,-170,o),\n(116,-170,c),\n(98,-170,o),\n(79,-169,o),\n(67,-166,c),\n(67,-222,l),\n(80,-226,o),\n(92,-230,o),\n(113,-230,cs)\n);\n}\n);\nwidth = 510;\n},\n{\nanchors = (\n{\nname = top;\npos = (265,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(216,-230,o),\n(245,-164,o),\n(294,-34,cs),\n(495,500,l),\n(400,500,l),\n(265,110,l),\n(105,500,l),\n(9,500,l),\n(221,3,l),\n(187,-126,o),\n(155,-152,o),\n(104,-152,c),\n(86,-152,o),\n(71,-151,o),\n(59,-148,c),\n(59,-222,l),\n(72,-226,o),\n(101,-230,o),\n(122,-230,cs)\n);\n}\n);\nwidth = 507;\n},\n{\nanchors = (\n{\nname = top;\npos = (274,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(222,-230,o),\n(287,-177,o),\n(340,-34,cs),\n(541,508,l),\n(400,508,l),\n(285,141,l),\n(144,508,l),\n(4,508,l),\n(212,3,l),\n(193,-78,o),\n(142,-104,o),\n(96,-104,c),\n(86,-104,o),\n(59,-103,o),\n(47,-100,c),\n(46,-220,l),\n(59,-224,o),\n(92,-230,o),\n(132,-230,cs)\n);\n}\n);\nwidth = 543;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"D87BC176-5E8B-42A9-9E7C-690C4401C1BD\";\nname = \"14 Jul 24 at 12:20\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(209,0,l),\n(292,0,l),\n(118,500,l),\n(22,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(396,500,l),\n(219,0,l),\n(300,0,l),\n(484,500,l)\n);\n}\n);\nvisible = 1;\nwidth = 498;\n}\n);\nunicode = 121;\n},\n{\nglyphname = yacute;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2024-11-01 03:04:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (216,-12);\nref = acutecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (231,-12);\nref = acutecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (213,12);\nref = acutecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 253;\n},\n{\nglyphname = ycircumflex;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2024-11-01 03:04:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (132,-12);\nref = circumflexcomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (115,-12);\nref = circumflexcomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (93,12);\nref = circumflexcomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 375;\n},\n{\nglyphname = ydieresis;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2024-11-01 03:04:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (112,-12);\nref = dieresiscomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (104,-12);\nref = dieresiscomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (70,12);\nref = dieresiscomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 255;\n},\n{\nglyphname = ydotbelow;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2024-11-01 03:04:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (174,-158);\nref = dotbelowcomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (169,-164);\nref = dotbelowcomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (170,-177);\nref = dotbelowcomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7925;\n},\n{\nglyphname = ygrave;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (116,-12);\nref = gravecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (108,-12);\nref = gravecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (87,12);\nref = gravecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7923;\n},\n{\nglyphname = yhookabove;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2024-11-01 03:04:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (229,0);\nref = hookabovecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (209,0);\nref = hookabovecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (214,12);\nref = hookabovecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7927;\n},\n{\nglyphname = ytilde;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2024-11-01 03:04:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = y;\n},\n{\npos = (103,-12);\nref = tildecomb;\n}\n);\nwidth = 510;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = y;\n},\n{\npos = (102,-12);\nref = tildecomb;\n}\n);\nwidth = 507;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = y;\n},\n{\npos = (66,12);\nref = tildecomb;\n}\n);\nwidth = 543;\n}\n);\nunicode = 7929;\n},\n{\nglyphname = z;\nlastChange = \"2025-01-01 00:21:39 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (239,0);\n},\n{\nname = top;\npos = (239,500);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(419,1,l),\n(419,51,l),\n(116,51,l),\n(417,454,l),\n(417,501,l),\n(50,501,l),\n(50,451,l),\n(348,451,l),\n(50,51,l),\n(50,1,l)\n);\n}\n);\nwidth = 475;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (246,0);\n},\n{\nname = top;\npos = (246,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,1,l),\n(429,77,l),\n(154,77,l),\n(427,428,l),\n(427,501,l),\n(54,501,l),\n(54,425,l),\n(327,425,l),\n(54,75,l),\n(54,1,l)\n);\n}\n);\nwidth = 483;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (252,0);\n},\n{\nname = top;\npos = (257,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(472,1,l),\n(472,121,l),\n(225,121,l),\n(471,396,l),\n(470,508,l),\n(40,508,l),\n(41,388,l),\n(287,388,l),\n(41,114,l),\n(40,1,l)\n);\n}\n);\nwidth = 516;\n}\n);\nunicode = 122;\n},\n{\nglyphname = zacute;\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = z;\n},\n{\npos = (189,-12);\nref = acutecomb;\n}\n);\nwidth = 475;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = z;\n},\n{\npos = (212,-12);\nref = acutecomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = z;\n},\n{\npos = (196,0);\nref = acutecomb;\n}\n);\nwidth = 516;\n}\n);\nunicode = 378;\n},\n{\nglyphname = zcaron;\nlastChange = \"2024-09-03 02:04:03 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = z;\n},\n{\npos = (105,-12);\nref = caroncomb;\n}\n);\nwidth = 475;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = z;\n},\n{\npos = (94,-12);\nref = caroncomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = z;\n},\n{\npos = (76,0);\nref = caroncomb;\n}\n);\nwidth = 516;\n}\n);\nunicode = 382;\n},\n{\nglyphname = zdotaccent;\nlastChange = \"2024-09-03 02:04:04 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = z;\n},\n{\npos = (171,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 475;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = z;\n},\n{\npos = (172,-12);\nref = dotaccentcomb;\n}\n);\nwidth = 483;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = z;\n},\n{\npos = (161,0);\nref = dotaccentcomb;\n}\n);\nwidth = 516;\n}\n);\nunicode = 380;\n},\n{\nglyphname = lcommaaccent.loclMAH;\nlastChange = \"2024-10-21 04:16:23 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = l;\n},\n{\npos = (9,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 236;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = l;\n},\n{\npos = (-12,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 228;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = l;\n},\n{\npos = (13,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 296;\n}\n);\n},\n{\nglyphname = ncommaaccent.loclMAH;\nlastChange = \"2024-10-21 04:16:23 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = n;\n},\n{\npos = (198,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 592;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = n;\n},\n{\npos = (182,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 587;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = n;\n},\n{\npos = (191,1);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 624;\n}\n);\n},\n{\nglyphname = a.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-09 01:29:15 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (279,-10);\n},\n{\nname = top;\npos = (279,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(368,-12,o),\n(413,97,o),\n(413,97,c),\n(413,30,o),\n(449,-1,o),\n(492,-1,cs),\n(517,-1,o),\n(527,3,o),\n(541,11,c),\n(541,59,l),\n(498,43,o),\n(469,63,o),\n(469,113,cs),\n(469,338,ls),\n(469,450,o),\n(405,512,o),\n(269,512,cs),\n(190,512,o),\n(118,476,o),\n(79,400,c),\n(131,373,l),\n(152,420,o),\n(200,460,o),\n(269,460,cs),\n(371,460,o),\n(413,409,o),\n(413,333,cs),\n(413,318,l),\n(185,318,o),\n(56,278,o),\n(56,135,cs),\n(56,43,o),\n(128,-12,o),\n(212,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(157,38,o),\n(114,81,o),\n(114,131,cs),\n(114,228,o),\n(188,268,o),\n(413,268,c),\n(413,233,ls),\n(413,132,o),\n(336,38,o),\n(220,38,cs)\n);\n}\n);\nwidth = 581;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (317,-10);\n},\n{\nname = top;\npos = (318,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(363,-12,o),\n(380,97,o),\n(380,97,c),\n(380,37,o),\n(420,0,o),\n(495,0,cs),\n(522,0,o),\n(562,6,o),\n(576,14,c),\n(576,124,l),\n(527,113,o),\n(513,128,o),\n(513,168,cs),\n(513,340,ls),\n(513,451,o),\n(435,520,o),\n(285,520,cs),\n(164,520,o),\n(89,459,o),\n(65,387,c),\n(170,342,l),\n(184,385,o),\n(222,412,o),\n(277,412,cs),\n(345,412,o),\n(380,383,o),\n(380,331,cs),\n(380,327,l),\n(163,327,o),\n(40,273,o),\n(40,144,cs),\n(40,51,o),\n(113,-12,o),\n(227,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(227,93,o),\n(180,109,o),\n(180,151,cs),\n(180,199,o),\n(208,239,o),\n(380,239,c),\n(380,206,ls),\n(380,124,o),\n(318,93,o),\n(248,93,cs)\n);\n}\n);\nwidth = 631;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (297,-10);\n},\n{\nname = top;\npos = (297,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(376,-12,o),\n(417,96,o),\n(417,96,c),\n(420,25,o),\n(459,0,o),\n(511,0,cs),\n(536,0,o),\n(549,4,o),\n(563,12,c),\n(564,80,l),\n(515,69,o),\n(501,87,o),\n(501,127,cs),\n(501,330,ls),\n(501,445,o),\n(427,512,o),\n(290,512,cs),\n(179,512,o),\n(117,462,o),\n(87,392,c),\n(156,356,l),\n(173,413,o),\n(231,442,o),\n(286,442,cs),\n(356,442,o),\n(417,414,o),\n(417,339,cs),\n(417,326,l),\n(161,326,o),\n(68,261,o),\n(68,141,cs),\n(68,49,o),\n(143,-12,o),\n(226,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,62,o),\n(150,96,o),\n(150,141,cs),\n(150,210,o),\n(193,260,o),\n(417,260,c),\n(417,225,ls),\n(417,120,o),\n(304,62,o),\n(242,62,cs)\n);\n}\n);\nwidth = 620;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"75EC2996-E87C-4405-B059-48FBE7BE3912\";\nname = \"6 May 24 at 07:51\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(198,190,o),\n(236,239,o),\n(423,239,c),\n(423,208,ls),\n(423,126,o),\n(351,93,o),\n(281,93,cs),\n(245,93,o),\n(198,109,o),\n(198,142,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(58,51,o),\n(131,-12,o),\n(245,-12,cs),\n(391,-12,o),\n(430,97,o),\n(430,97,c),\n(430,37,o),\n(469,0,o),\n(544,0,cs),\n(569,0,o),\n(613,4,o),\n(627,12,c),\n(627,107,l),\n(577,96,o),\n(563,114,o),\n(563,154,cs),\n(563,340,ls),\n(563,459,o),\n(444,520,o),\n(315,520,cs),\n(135,520,o),\n(71,393,o),\n(71,393,c),\n(175,339,l),\n(192,368,o),\n(237,405,o),\n(307,405,cs),\n(373,405,o),\n(423,366,o),\n(423,331,cs),\n(423,329,l),\n(187,329,o),\n(58,273,o),\n(58,144,cs)\n);\n}\n);\nwidth = 629;\n}\n);\n},\n{\nglyphname = aacute.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (207,0);\nref = acutecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (232,0);\nref = acutecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (196,12);\nref = acutecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = abreve.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (116,0);\nref = brevecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (143,0);\nref = brevecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (119,12);\nref = brevecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = abreveacute.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (143,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (82,0);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (97,12);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevedotbelow.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (223,-9);\nref = dotbelowcomb;\n},\n{\npos = (144,12);\nref = brevecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (209,-10);\nref = dotbelowcomb;\n},\n{\npos = (133,0);\nref = brevecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (222,-10);\nref = dotbelowcomb;\n},\n{\npos = (153,0);\nref = brevecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevegrave.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (143,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (72,0);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (89,12);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevehookabove.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (143,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (91,0);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (97,12);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = abrevetilde.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (143,12);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (49,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (70,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflex.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (136,0);\nref = circumflexcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (140,0);\nref = circumflexcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (114,12);\nref = circumflexcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = acircumflexacute.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (137,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-2,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (16,12);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflexdotbelow.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (223,-9);\nref = dotbelowcomb;\n},\n{\npos = (137,12);\nref = circumflexcomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (209,-10);\nref = dotbelowcomb;\n},\n{\npos = (145,0);\nref = circumflexcomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (222,-10);\nref = dotbelowcomb;\n},\n{\npos = (147,0);\nref = circumflexcomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflexgrave.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (137,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (145,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (148,12);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflexhookabove.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (137,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (145,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (148,12);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = acircumflextilde.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (110,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (143,0);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (141,12);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = adieresis.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (112,0);\nref = dieresiscomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (102,0);\nref = dieresiscomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (90,12);\nref = dieresiscomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = adotbelow.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (223,-9);\nref = dotbelowcomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (209,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (222,-10);\nref = dotbelowcomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = agrave.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (128,0);\nref = gravecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (141,0);\nref = gravecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (107,12);\nref = gravecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = ahookabove.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m003;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (258,12);\nref = hookabovecomb;\n}\n);\nwidth = 631;\n},\n{\nlayerId = m01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (242,12);\nref = hookabovecomb;\n}\n);\nwidth = 581;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (241,12);\nref = hookabovecomb;\n}\n);\nwidth = 620;\n}\n);\n},\n{\nglyphname = amacron.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (130,0);\nref = macroncomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (113,0);\nref = macroncomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (119,12);\nref = macroncomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = aogonek.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (378,14);\nref = ogonekcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (400,12);\nref = ogonekcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (400,14);\nref = ogonekcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = aring.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (185,0);\nref = ringcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (175,0);\nref = ringcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (181,12);\nref = ringcomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = atilde.ss01;\nkernLeft = a2;\nkernRight = a2;\nlastChange = \"2024-11-02 04:39:32 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (96,0);\nref = tildecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (120,0);\nref = tildecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 609;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (83,12);\nref = tildecomb;\n},\n{\nref = a.ss01;\n}\n);\nwidth = 610;\n}\n);\n},\n{\nglyphname = g.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2024-11-22 05:01:58 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (281,-230);\n},\n{\nname = top;\npos = (269,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(448,-230,o),\n(527,-156,o),\n(527,-54,cs),\n(527,17,o),\n(461,77,o),\n(349,77,cs),\n(170,77,ls),\n(128,77,o),\n(114,109,o),\n(114,129,cs),\n(114,159,o),\n(142,182,o),\n(180,192,c),\n(134,218,l),\n(74,192,o),\n(57,157,o),\n(57,115,cs),\n(57,78,o),\n(84,44,o),\n(112,35,c),\n(48,16,o),\n(32,-51,o),\n(32,-74,cs),\n(32,-173,o),\n(117,-230,o),\n(278,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(150,-180,o),\n(90,-140,o),\n(90,-69,cs),\n(90,-24,o),\n(130,27,o),\n(203,27,c),\n(342,27,l),\n(419,28,o),\n(469,-6,o),\n(469,-59,cs),\n(469,-110,o),\n(437,-180,o),\n(273,-180,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(386,176,o),\n(463,243,o),\n(463,345,cs),\n(463,445,o),\n(386,512,o),\n(269,512,cs),\n(155,512,o),\n(76,445,o),\n(76,345,cs),\n(76,243,o),\n(155,176,o),\n(269,176,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(180,226,o),\n(132,279,o),\n(132,345,cs),\n(132,409,o),\n(180,462,o),\n(269,462,cs),\n(359,462,o),\n(407,409,o),\n(407,345,cs),\n(407,279,o),\n(359,226,o),\n(269,226,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(434,484,o),\n(488,508,o),\n(537,495,c),\n(537,553,l),\n(444,569,o),\n(402,516,o),\n(392,475,c),\n(421,455,l)\n);\n}\n);\nwidth = 562;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (301,-230);\n},\n{\nname = top;\npos = (290,520);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(508,-230,o),\n(581,-137,o),\n(581,-35,cs),\n(581,41,o),\n(512,104,o),\n(391,104,cs),\n(223,104,ls),\n(189,104,o),\n(168,112,o),\n(168,137,cs),\n(168,154,o),\n(182,160,o),\n(196,166,c),\n(129,226,l),\n(66,198,o),\n(45,161,o),\n(45,110,cs),\n(45,61,o),\n(69,28,o),\n(114,7,c),\n(61,-10,o),\n(38,-50,o),\n(38,-92,cs),\n(38,-167,o),\n(110,-230,o),\n(294,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(200,-117,o),\n(171,-90,o),\n(171,-55,cs),\n(171,-33,o),\n(195,-6,o),\n(232,-6,c),\n(372,-6,l),\n(413,-6,o),\n(439,-21,o),\n(439,-56,cs),\n(439,-91,o),\n(385,-117,o),\n(289,-117,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(430,145,o),\n(518,226,o),\n(518,333,cs),\n(518,440,o),\n(430,520,o),\n(290,520,cs),\n(154,520,o),\n(64,440,o),\n(64,333,cs),\n(64,226,o),\n(154,145,o),\n(290,145,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,257,o),\n(201,293,o),\n(201,333,cs),\n(201,372,o),\n(232,410,o),\n(290,410,c),\n(352,410,o),\n(381,372,o),\n(381,333,cs),\n(381,293,o),\n(352,257,o),\n(290,257,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(484,471,o),\n(551,469,o),\n(580,456,c),\n(580,568,l),\n(487,584,o),\n(423,525,o),\n(419,480,c),\n(471,442,l)\n);\n}\n);\nwidth = 601;\n},\n{\nanchors = (\n{\nname = bottom;\npos = (290,-230);\n},\n{\nname = top;\npos = (268,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(455,-230,o),\n(534,-156,o),\n(534,-54,cs),\n(534,22,o),\n(484,82,o),\n(354,82,cs),\n(178,82,ls),\n(136,82,o),\n(119,104,o),\n(119,129,cs),\n(119,159,o),\n(150,182,o),\n(188,192,c),\n(117,218,l),\n(57,192,o),\n(31,156,o),\n(31,114,cs),\n(31,77,o),\n(52,37,o),\n(96,16,c),\n(32,-3,o),\n(15,-67,o),\n(15,-93,cs),\n(15,-167,o),\n(95,-230,o),\n(276,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(150,-154,o),\n(99,-114,o),\n(99,-69,cs),\n(99,-23,o),\n(141,6,o),\n(199,6,c),\n(349,6,l),\n(415,6,o),\n(450,-21,o),\n(450,-69,cs),\n(450,-114,o),\n(411,-154,o),\n(271,-154,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(389,162,o),\n(471,236,o),\n(471,338,cs),\n(471,438,o),\n(389,512,o),\n(268,512,cs),\n(150,512,o),\n(66,438,o),\n(66,338,cs),\n(66,236,o),\n(150,162,o),\n(268,162,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(185,238,o),\n(144,281,o),\n(144,338,cs),\n(144,393,o),\n(185,436,o),\n(268,436,cs),\n(353,436,o),\n(393,393,o),\n(393,338,cs),\n(393,281,o),\n(353,238,o),\n(268,238,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(447,471,o),\n(507,473,o),\n(545,467,c),\n(545,555,l),\n(452,571,o),\n(402,520,o),\n(398,475,c),\n(434,442,l)\n);\n}\n);\nwidth = 580;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"3EA75350-8DAD-4CD2-A32D-BF5A6E43F144\";\nname = \"10 Aug 24 at 16:59\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,-229,o),\n(522,-148,o),\n(522,-46,cs),\n(522,20,o),\n(479,87,o),\n(352,87,cs),\n(174,87,ls),\n(105,87,o),\n(113,176,o),\n(173,176,cs),\n(184,176,o),\n(255,176,o),\n(267,176,cs),\n(399,176,o),\n(469,247,o),\n(469,340,cs),\n(469,375,o),\n(457,419,o),\n(424,452,c),\n(437,481,o),\n(481,505,o),\n(530,492,c),\n(530,555,l),\n(437,571,o),\n(399,522,o),\n(395,477,c),\n(369,495,o),\n(335,512,o),\n(260,512,cs),\n(119,512,o),\n(56,420,o),\n(56,340,cs),\n(56,280,o),\n(86,222,o),\n(133,197,c),\n(97,193,o),\n(60,163,o),\n(60,126,cs),\n(60,85,o),\n(89,58,o),\n(122,49,c),\n(58,30,o),\n(37,-31,o),\n(37,-73,cs),\n(37,-172,o),\n(122,-229,o),\n(278,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,-179,o),\n(94,-137,o),\n(94,-66,cs),\n(94,-25,o),\n(116,22,o),\n(173,37,c),\n(345,37,l),\n(426,38,o),\n(464,-2,o),\n(464,-49,cs),\n(464,-100,o),\n(432,-179,o),\n(273,-179,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(154,225,o),\n(114,275,o),\n(114,344,cs),\n(114,408,o),\n(154,463,o),\n(259,463,cs),\n(368,463,o),\n(411,408,o),\n(411,345,cs),\n(411,275,o),\n(368,225,o),\n(259,225,cs)\n);\n}\n);\nwidth = 562;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"C08E6C22-B8C2-4688-8674-8526B1088BC5\";\nname = \"10 Aug 24 at 17:56\";\nshapes = (\n{\nclosed = 0;\nnodes = (\n(408,480,l),\n(390,494,o),\n(346,512,o),\n(262,512,cs),\n(116,512,o),\n(49,424,o),\n(49,337,cs),\n(49,280,o),\n(83,223,o),\n(130,198,c),\n(94,194,o),\n(55,160,o),\n(55,123,cs),\n(55,87,o),\n(79,60,o),\n(113,48,c),\n(54,27,o),\n(30,-31,o),\n(30,-73,cs),\n(30,-172,o),\n(117,-229,o),\n(275,-229,cs),\n(453,-229,o),\n(532,-148,o),\n(532,-46,cs),\n(532,20,o),\n(496,98,o),\n(367,98,cs),\n(192,98,ls),\n(130,98,o),\n(124,177,o),\n(200,177,cs),\n(211,177,o),\n(257,177,o),\n(269,177,cs),\n(404,177,o),\n(478,246,o),\n(479,340,cs),\n(479,375,o),\n(467,417,o),\n(444,447,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,-154,o),\n(108,-122,o),\n(108,-59,cs),\n(108,-22,o),\n(134,16,o),\n(177,26,c),\n(359,26,l),\n(431,26,o),\n(453,-2,o),\n(454,-49,cs),\n(455,-100,o),\n(416,-154,o),\n(275,-154,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(163,247,o),\n(127,289,o),\n(127,344,cs),\n(127,397,o),\n(163,442,o),\n(261,442,cs),\n(365,442,o),\n(401,398,o),\n(401,345,cs),\n(401,287,o),\n(365,247,o),\n(261,247,cs)\n);\n}\n);\nwidth = 580;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"F79AD273-4246-4744-B8B8-59AC46FF7D92\";\nname = \"10 Aug 24 at 19:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(475,-229,o),\n(587,-151,o),\n(587,-46,cs),\n(587,20,o),\n(551,111,o),\n(394,111,cs),\n(218,111,ls),\n(174,111,o),\n(175,166,o),\n(218,166,cs),\n(229,166,o),\n(286,166,o),\n(298,166,cs),\n(435,166,o),\n(534,242,o),\n(534,340,cs),\n(534,375,o),\n(529,414,o),\n(506,444,c),\n(519,473,o),\n(574,469,o),\n(603,456,c),\n(603,568,l),\n(510,584,o),\n(458,533,o),\n(454,488,c),\n(436,502,o),\n(373,520,o),\n(291,520,cs),\n(129,520,o),\n(51,432,o),\n(51,337,cs),\n(51,266,o),\n(89,220,o),\n(136,195,c),\n(100,191,o),\n(55,164,o),\n(55,116,cs),\n(55,75,o),\n(83,46,o),\n(116,37,c),\n(57,16,o),\n(32,-30,o),\n(32,-72,cs),\n(32,-171,o),\n(152,-229,o),\n(304,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(211,-119,o),\n(172,-96,o),\n(172,-59,cs),\n(172,-21,o),\n(200,1,o),\n(234,1,cs),\n(323,1,ls),\n(402,1,o),\n(446,-4,o),\n(446,-51,cs),\n(446,-94,o),\n(394,-119,o),\n(304,-119,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(230,275,o),\n(191,298,o),\n(191,343,cs),\n(191,387,o),\n(230,411,o),\n(290,411,cs),\n(357,411,o),\n(394,386,o),\n(394,343,cs),\n(394,297,o),\n(357,275,o),\n(290,275,cs)\n);\n}\n);\nwidth = 633;\n}\n);\n},\n{\nglyphname = gbreve.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2024-11-22 05:02:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (123,0);\nref = brevecomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (124,0);\nref = brevecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (116,12);\nref = brevecomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = gcommaaccent.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2024-11-22 05:02:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (208,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (182,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (200,12);\nref = commaturnedabovecomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = gdotaccent.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2024-11-22 05:02:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (201,0);\nref = dotaccentcomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (194,0);\nref = dotaccentcomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (194,12);\nref = dotaccentcomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = gmacron.ss01;\nkernLeft = g2;\nkernRight = g2;\nlastChange = \"2024-11-22 05:02:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (127,0);\nref = macroncomb;\n}\n);\nwidth = 562;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (89,0);\nref = macroncomb;\n}\n);\nwidth = 580;\n},\n{\nlayerId = m003;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (114,12);\nref = macroncomb;\n}\n);\nwidth = 601;\n}\n);\n},\n{\nglyphname = ordfeminine;\nlastChange = \"2024-11-09 02:46:36 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (185,370);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(220,370,o),\n(245,441,o),\n(245,441,c),\n(247,395,o),\n(275,378,o),\n(308,378,cs),\n(324,378,o),\n(333,381,o),\n(342,386,c),\n(342,441,l),\n(311,433,o),\n(301,445,o),\n(301,471,cs),\n(301,594,ls),\n(301,668,o),\n(253,712,o),\n(164,712,cs),\n(91,712,o),\n(54,681,o),\n(28,637,c),\n(71,604,l),\n(87,634,o),\n(115,657,o),\n(162,657,cs),\n(205,657,o),\n(245,634,o),\n(245,599,cs),\n(245,591,l),\n(79,591,o),\n(20,549,o),\n(20,471,cs),\n(20,410,o),\n(68,370,o),\n(122,370,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(342,307,l),\n(22,308,l),\n(22,249,l),\n(342,248,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(101,426,o),\n(78,444,o),\n(78,471,cs),\n(78,514,o),\n(103,541,o),\n(245,541,c),\n(245,526,ls),\n(245,466,o),\n(176,426,o),\n(135,426,cs)\n);\n}\n);\nwidth = 362;\n},\n{\nguides = (\n{\npos = (182,354);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(231,353,o),\n(246,427,o),\n(246,427,c),\n(248,379,o),\n(278,361,o),\n(323,361,cs),\n(340,361,o),\n(350,364,o),\n(359,370,c),\n(359,435,l),\n(327,427,o),\n(316,440,o),\n(316,467,cs),\n(316,588,ls),\n(316,666,o),\n(266,712,o),\n(172,712,cs),\n(101,712,o),\n(57,684,o),\n(30,637,c),\n(78,595,l),\n(88,615,o),\n(122,644,o),\n(170,644,cs),\n(215,644,o),\n(246,620,o),\n(246,593,cs),\n(246,585,l),\n(72,585,o),\n(20,533,o),\n(20,459,cs),\n(20,395,o),\n(67,353,o),\n(128,353,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(359,307,l),\n(20,308,l),\n(20,232,l),\n(359,231,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(112,421,o),\n(91,434,o),\n(91,462,cs),\n(91,491,o),\n(110,523,o),\n(246,523,c),\n(246,508,ls),\n(246,454,o),\n(185,421,o),\n(142,421,cs)\n);\n}\n);\nwidth = 379;\n},\n{\nguides = (\n{\npos = (201,349);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(232,349,o),\n(257,420,o),\n(257,420,c),\n(257,380,o),\n(290,357,o),\n(342,357,cs),\n(362,357,o),\n(389,361,o),\n(399,367,c),\n(399,442,l),\n(365,434,o),\n(355,445,o),\n(355,472,cs),\n(355,589,ls),\n(355,665,o),\n(295,712,o),\n(196,712,cs),\n(133,712,o),\n(76,692,o),\n(39,637,c),\n(103,580,l),\n(115,600,o),\n(149,621,o),\n(191,621,cs),\n(231,621,o),\n(257,602,o),\n(257,581,cs),\n(257,578,l),\n(103,580,o),\n(32,537,o),\n(32,456,cs),\n(32,393,o),\n(69,349,o),\n(148,349,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(399,308,l),\n(30,308,l),\n(30,198,l),\n(399,198,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,439,o),\n(142,448,o),\n(142,467,cs),\n(142,487,o),\n(167,501,o),\n(256,501,c),\n(256,497,ls),\n(256,466,o),\n(229,439,o),\n(195,439,cs)\n);\n}\n);\nwidth = 429;\n}\n);\nunicode = 170;\n},\n{\nglyphname = ordmasculine;\nlastChange = \"2024-11-09 02:46:36 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (169,370);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(21,249,l),\n(317,248,l),\n(317,307,l),\n(21,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(252,370,o),\n(320,429,o),\n(320,541,cs),\n(320,653,o),\n(252,712,o),\n(169,712,cs),\n(86,712,o),\n(18,653,o),\n(18,541,cs),\n(18,429,o),\n(86,370,o),\n(169,370,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(111,427,o),\n(77,470,o),\n(77,540,cs),\n(77,610,o),\n(111,656,o),\n(169,656,cs),\n(227,656,o),\n(261,611,o),\n(261,541,cs),\n(261,471,o),\n(227,427,o),\n(169,427,cs)\n);\n}\n);\nwidth = 338;\n},\n{\nguides = (\n{\npos = (181,354);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(20,232,l),\n(342,231,l),\n(342,307,l),\n(20,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(271,354,o),\n(342,416,o),\n(342,533,cs),\n(342,650,o),\n(271,712,o),\n(181,712,cs),\n(91,712,o),\n(20,650,o),\n(20,533,cs),\n(20,416,o),\n(91,354,o),\n(181,354,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(125,428,o),\n(93,468,o),\n(93,532,cs),\n(93,596,o),\n(125,639,o),\n(181,639,cs),\n(237,639,o),\n(269,597,o),\n(269,533,cs),\n(269,469,o),\n(237,428,o),\n(181,428,c)\n);\n}\n);\nwidth = 362;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(25,198,l),\n(378,198,l),\n(378,308,l),\n(25,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(292,349,o),\n(383,405,o),\n(383,530,cs),\n(383,657,o),\n(296,712,o),\n(202,712,cs),\n(114,712,o),\n(20,657,o),\n(20,530,cs),\n(20,405,o),\n(109,349,o),\n(202,349,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(162,456,o),\n(141,485,o),\n(141,530,cs),\n(141,575,o),\n(163,605,o),\n(202,605,cs),\n(244,605,o),\n(262,575,o),\n(262,530,cs),\n(262,485,o),\n(244,456,o),\n(202,456,c)\n);\n}\n);\nwidth = 403;\n}\n);\nunicode = 186;\n},\n{\nglyphname = zero;\nlastChange = \"2025-01-01 06:36:27 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(507,-13,o),\n(570,171,o),\n(570,354,cs),\n(570,547,o),\n(505,712,o),\n(313,712,cs),\n(120,712,o),\n(54,547,o),\n(54,354,cs),\n(54,171,o),\n(118,-13,o),\n(313,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(175,42,o),\n(116,177,o),\n(116,355,cs),\n(116,536,o),\n(175,657,o),\n(314,657,cs),\n(447,657,o),\n(508,536,o),\n(508,355,cs),\n(508,177,o),\n(447,42,o),\n(313,42,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(211,68,l),\n(481,635,l),\n(416,635,l),\n(146,68,l)\n);\n}\n);\nwidth = 624;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(507,-13,o),\n(576,171,o),\n(576,354,cs),\n(576,547,o),\n(505,712,o),\n(313,712,cs),\n(119,712,o),\n(48,547,o),\n(48,354,cs),\n(48,171,o),\n(117,-13,o),\n(313,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(189,67,o),\n(140,197,o),\n(140,355,cs),\n(140,516,o),\n(189,632,o),\n(314,632,cs),\n(433,632,o),\n(484,516,o),\n(484,355,cs),\n(484,197,o),\n(433,67,o),\n(313,67,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(230,75,l),\n(488,625,l),\n(398,625,l),\n(140,75,l)\n);\n}\n);\nwidth = 624;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(538,-13,o),\n(625,161,o),\n(625,354,cs),\n(625,557,o),\n(536,712,o),\n(340,712,cs),\n(141,712,o),\n(52,557,o),\n(52,354,cs),\n(52,161,o),\n(139,-13,o),\n(340,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,117,o),\n(192,213,o),\n(192,355,cs),\n(192,500,o),\n(236,582,o),\n(341,582,cs),\n(440,582,o),\n(485,500,o),\n(485,355,cs),\n(485,213,o),\n(440,117,o),\n(340,117,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(282,86,l),\n(527,610,l),\n(397,610,l),\n(152,86,l)\n);\n}\n);\nwidth = 677;\n}\n);\nunicode = 48;\n},\n{\nglyphname = one;\nlastChange = \"2025-01-01 06:37:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(369,0,l),\n(369,57,l),\n(242,57,l),\n(242,699,l),\n(195,699,l),\n(195,586,o),\n(178,563,o),\n(60,563,c),\n(60,512,l),\n(182,512,l),\n(182,57,l),\n(55,57,l),\n(55,0,l)\n);\n}\n);\nwidth = 424;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(403,0,l),\n(403,80,l),\n(270,80,l),\n(270,699,l),\n(195,699,l),\n(195,606,o),\n(170,592,o),\n(60,592,c),\n(60,512,l),\n(182,512,l),\n(182,80,l),\n(55,80,l),\n(55,0,l)\n);\n}\n);\nwidth = 458;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(459,0,l),\n(459,126,l),\n(330,126,l),\n(330,699,l),\n(197,699,l),\n(197,606,o),\n(174,592,o),\n(57,592,c),\n(57,467,l),\n(184,467,l),\n(184,126,l),\n(53,126,l),\n(53,0,l)\n);\n}\n);\nwidth = 512;\n}\n);\nunicode = 49;\n},\n{\nglyphname = two;\nlastChange = \"2025-01-01 06:36:49 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(468,1,l),\n(468,57,l),\n(128,57,l),\n(128,290,o),\n(455,283,o),\n(455,528,cs),\n(455,647,o),\n(365,712,o),\n(250,712,cs),\n(190,712,o),\n(118,677,o),\n(82,615,cs),\n(67,589,o),\n(58,555,o),\n(58,519,c),\n(118,519,l),\n(118,576,o),\n(159,656,o),\n(252,656,cs),\n(368,656,o),\n(395,584,o),\n(395,528,cs),\n(395,337,o),\n(62,306,o),\n(62,73,cs),\n(62,1,l)\n);\n}\n);\nwidth = 533;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(486,1,l),\n(486,81,l),\n(153,81,l),\n(153,277,o),\n(475,284,o),\n(475,528,cs),\n(475,647,o),\n(384,712,o),\n(269,712,c),\n(189,712,o),\n(117,677,o),\n(81,615,c),\n(66,589,o),\n(57,555,o),\n(57,519,c),\n(145,519,l),\n(145,576,o),\n(190,632,o),\n(268,632,c),\n(346,632,o),\n(389,584,o),\n(389,528,cs),\n(389,335,o),\n(60,332,o),\n(60,81,cs),\n(60,1,l)\n);\n}\n);\nwidth = 546;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(519,1,l),\n(519,127,l),\n(215,127,l),\n(215,253,o),\n(508,276,o),\n(508,518,cs),\n(508,642,o),\n(400,712,o),\n(279,712,c),\n(172,712,o),\n(109,677,o),\n(73,615,c),\n(52,579,o),\n(49,523,o),\n(49,487,c),\n(195,487,l),\n(195,538,o),\n(216,582,o),\n(278,582,cs),\n(330,582,o),\n(354,542,o),\n(354,509,cs),\n(354,341,o),\n(56,332,o),\n(56,107,cs),\n(56,1,l)\n);\n}\n);\nwidth = 574;\n}\n);\nunicode = 50;\n},\n{\nglyphname = three;\nlastChange = \"2025-01-01 06:37:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(417,-12,o),\n(509,69,o),\n(509,208,cs),\n(509,324,o),\n(440,423,o),\n(293,423,c),\n(486,639,l),\n(486,700,l),\n(75,700,l),\n(75,644,l),\n(413,644,l),\n(212,423,l),\n(212,370,l),\n(262,370,ls),\n(384,370,o),\n(448,309,o),\n(448,212,cs),\n(448,128,o),\n(397,44,o),\n(272,44,cs),\n(179,44,o),\n(132,88,o),\n(113,167,cs),\n(110,179,o),\n(107,198,o),\n(107,210,c),\n(48,203,l),\n(48,182,o),\n(51,162,o),\n(56,144,cs),\n(83,44,o),\n(167,-12,o),\n(272,-12,cs)\n);\n}\n);\nwidth = 568;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,-12,o),\n(522,71,o),\n(522,210,cs),\n(522,337,o),\n(444,423,o),\n(321,423,c),\n(496,615,l),\n(496,700,l),\n(69,700,l),\n(69,620,l),\n(390,620,l),\n(203,423,l),\n(203,355,l),\n(282,355,ls),\n(382,355,o),\n(430,299,o),\n(430,212,cs),\n(430,128,o),\n(371,68,o),\n(282,68,cs),\n(209,68,o),\n(150,94,o),\n(130,173,c),\n(127,185,o),\n(125,198,o),\n(125,210,c),\n(35,203,l),\n(35,182,o),\n(38,162,o),\n(42,144,c),\n(69,43,o),\n(166,-12,o),\n(275,-12,cs)\n);\n}\n);\nwidth = 575;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(455,-12,o),\n(551,79,o),\n(551,218,cs),\n(551,347,o),\n(468,414,o),\n(376,423,c),\n(519,574,l),\n(519,700,l),\n(73,700,l),\n(73,574,l),\n(362,574,l),\n(215,423,l),\n(215,318,l),\n(291,318,ls),\n(362,318,o),\n(406,288,o),\n(406,215,cs),\n(406,153,o),\n(353,118,o),\n(293,118,cs),\n(229,118,o),\n(194,144,o),\n(178,197,c),\n(175,209,o),\n(173,222,o),\n(173,234,c),\n(41,203,l),\n(41,182,o),\n(44,162,o),\n(48,144,c),\n(75,43,o),\n(174,-12,o),\n(297,-12,cs)\n);\n}\n);\nwidth = 598;\n}\n);\nunicode = 51;\n},\n{\nglyphname = four;\nlastChange = \"2025-01-01 06:37:37 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(437,1,l),\n(437,140,l),\n(554,140,l),\n(554,200,l),\n(437,200,l),\n(437,701,l),\n(372,701,l),\n(45,205,l),\n(45,140,l),\n(377,140,l),\n(377,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(377,602,l),\n(377,200,l),\n(115,200,l)\n);\n}\n);\nwidth = 599;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(452,1,l),\n(452,131,l),\n(572,131,l),\n(572,212,l),\n(452,212,l),\n(452,701,l),\n(361,701,l),\n(45,212,l),\n(45,132,l),\n(364,132,l),\n(364,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(364,559,l),\n(364,212,l),\n(140,212,l)\n);\n}\n);\nwidth = 612;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(515,1,l),\n(515,121,l),\n(622,121,l),\n(622,248,l),\n(515,248,l),\n(515,701,l),\n(351,701,l),\n(45,238,l),\n(45,121,l),\n(369,121,l),\n(369,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(369,504,l),\n(369,248,l),\n(202,248,l)\n);\n}\n);\nwidth = 661;\n}\n);\nunicode = 52;\n},\n{\nglyphname = five;\nlastChange = \"2025-01-01 06:35:58 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(424,-12,o),\n(524,77,o),\n(524,234,cs),\n(524,387,o),\n(429,469,o),\n(301,469,cs),\n(244,469,o),\n(179,445,o),\n(159,409,c),\n(191,640,l),\n(469,640,l),\n(469,700,l),\n(142,700,l),\n(97,366,l),\n(172,347,l),\n(194,386,o),\n(237,413,o),\n(289,413,cs),\n(404,413,o),\n(462,330,o),\n(462,234,cs),\n(462,126,o),\n(403,44,o),\n(290,44,cs),\n(202,44,o),\n(137,106,o),\n(124,187,c),\n(57,163,l),\n(84,49,o),\n(180,-12,o),\n(289,-12,cs)\n);\n}\n);\nwidth = 569;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(430,-12,o),\n(542,77,o),\n(542,234,cs),\n(542,387,o),\n(435,469,o),\n(307,469,cs),\n(250,469,o),\n(196,448,o),\n(173,417,c),\n(198,620,l),\n(490,620,l),\n(490,700,l),\n(131,700,l),\n(86,343,l),\n(173,322,l),\n(195,361,o),\n(238,388,o),\n(290,388,cs),\n(381,388,o),\n(450,330,o),\n(450,234,cs),\n(450,126,o),\n(385,68,o),\n(296,68,cs),\n(222,68,o),\n(167,123,o),\n(153,195,c),\n(63,163,l),\n(90,49,o),\n(186,-12,o),\n(295,-12,cs)\n);\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(462,-12,o),\n(573,86,o),\n(573,243,cs),\n(573,396,o),\n(466,487,o),\n(328,487,cs),\n(277,487,o),\n(230,472,o),\n(218,461,c),\n(239,574,l),\n(518,574,l),\n(518,700,l),\n(129,700,l),\n(73,333,l),\n(202,302,l),\n(216,338,o),\n(252,367,o),\n(304,367,cs),\n(368,367,o),\n(423,325,o),\n(423,243,cs),\n(423,178,o),\n(376,118,o),\n(314,118,cs),\n(247,118,o),\n(207,155,o),\n(195,216,c),\n(57,172,l),\n(80,74,o),\n(167,-12,o),\n(317,-12,cs)\n);\n}\n);\nwidth = 616;\n}\n);\nunicode = 53;\n},\n{\nglyphname = six;\nlastChange = \"2025-01-01 06:37:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(431,-12,o),\n(522,90,o),\n(522,229,cs),\n(522,367,o),\n(431,462,o),\n(305,462,cs),\n(246,462,o),\n(212,444,o),\n(200,429,c),\n(328,700,l),\n(258,700,l),\n(121,420,ls),\n(96,370,o),\n(63,308,o),\n(63,226,cs),\n(63,87,o),\n(154,-12,o),\n(297,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,44,o),\n(125,116,o),\n(125,226,cs),\n(125,330,o),\n(183,406,o),\n(294,406,cs),\n(399,406,o),\n(460,324,o),\n(460,226,cs),\n(460,110,o),\n(399,44,o),\n(298,44,cs)\n);\n}\n);\nwidth = 567;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(436,-12,o),\n(522,97,o),\n(522,233,cs),\n(522,368,o),\n(430,474,o),\n(294,474,cs),\n(260,474,o),\n(216,464,o),\n(204,449,c),\n(323,700,l),\n(223,700,l),\n(98,426,ls),\n(75,376,o),\n(40,288,o),\n(40,231,cs),\n(40,92,o),\n(126,-12,o),\n(280,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,68,o),\n(132,147,o),\n(132,234,cs),\n(132,309,o),\n(183,393,o),\n(277,393,cs),\n(393,393,o),\n(430,310,o),\n(430,234,cs),\n(430,147,o),\n(386,68,o),\n(281,68,cs)\n);\n}\n);\nwidth = 561;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(459,-12,o),\n(563,94,o),\n(563,233,cs),\n(563,371,o),\n(479,477,o),\n(338,477,cs),\n(292,477,o),\n(265,460,o),\n(265,460,c),\n(376,700,l),\n(224,700,l),\n(99,434,ls),\n(68,367,o),\n(51,298,o),\n(51,233,cs),\n(51,94,o),\n(146,-12,o),\n(308,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,109,o),\n(196,170,o),\n(196,237,cs),\n(196,291,o),\n(229,356,o),\n(305,356,cs),\n(389,356,o),\n(418,291,o),\n(418,237,cs),\n(418,170,o),\n(389,109,o),\n(309,109,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 54;\n},\n{\nglyphname = seven;\nlastChange = \"2025-01-01 06:35:49 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(219,1,l),\n(458,646,l),\n(458,700,l),\n(45,700,l),\n(45,644,l),\n(393,644,l),\n(154,1,l)\n);\n}\n);\nwidth = 493;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(228,1,l),\n(473,622,l),\n(473,700,l),\n(35,700,l),\n(35,620,l),\n(374,620,l),\n(129,1,l)\n);\n}\n);\nwidth = 486;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(262,1,l),\n(492,574,l),\n(492,700,l),\n(35,700,l),\n(35,574,l),\n(354,574,l),\n(119,1,l)\n);\n}\n);\nwidth = 502;\n}\n);\nunicode = 55;\n},\n{\nglyphname = eight;\nlastChange = \"2025-01-01 06:37:19 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(440,-12,o),\n(547,64,o),\n(547,203,cs),\n(547,286,o),\n(492,348,o),\n(429,384,c),\n(471,416,o),\n(511,465,o),\n(511,530,cs),\n(511,649,o),\n(422,712,o),\n(301,712,cs),\n(182,712,o),\n(92,649,o),\n(92,530,cs),\n(92,465,o),\n(134,415,o),\n(174,384,c),\n(112,348,o),\n(58,286,o),\n(58,203,cs),\n(58,64,o),\n(163,-12,o),\n(302,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(179,44,o),\n(120,123,o),\n(120,203,cs),\n(120,278,o),\n(176,350,o),\n(301,350,cs),\n(426,350,o),\n(485,278,o),\n(485,203,cs),\n(485,123,o),\n(428,44,o),\n(303,44,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(197,401,o),\n(154,465,o),\n(154,530,cs),\n(154,586,o),\n(194,656,o),\n(300,656,cs),\n(406,656,o),\n(449,586,o),\n(449,530,cs),\n(449,465,o),\n(406,401,o),\n(302,401,cs)\n);\n}\n);\nwidth = 605;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,-12,o),\n(552,64,o),\n(552,203,cs),\n(552,286,o),\n(509,348,o),\n(446,384,c),\n(488,416,o),\n(516,465,o),\n(516,530,cs),\n(516,649,o),\n(427,712,o),\n(298,712,cs),\n(171,712,o),\n(81,649,o),\n(81,530,cs),\n(81,465,o),\n(111,415,o),\n(151,384,c),\n(89,348,o),\n(47,286,o),\n(47,203,cs),\n(47,64,o),\n(154,-12,o),\n(299,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(200,68,o),\n(139,123,o),\n(139,203,cs),\n(139,278,o),\n(195,340,o),\n(298,340,cs),\n(401,340,o),\n(460,278,o),\n(460,203,cs),\n(460,123,o),\n(401,68,o),\n(300,68,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(212,418,o),\n(169,465,o),\n(169,530,cs),\n(169,586,o),\n(209,636,o),\n(297,636,cs),\n(385,636,o),\n(428,586,o),\n(428,530,cs),\n(428,465,o),\n(385,418,o),\n(299,418,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(478,-12,o),\n(598,74,o),\n(598,203,cs),\n(598,286,o),\n(555,348,o),\n(492,384,c),\n(534,416,o),\n(562,465,o),\n(562,530,cs),\n(562,639,o),\n(473,712,o),\n(325,712,cs),\n(180,712,o),\n(89,639,o),\n(89,530,cs),\n(89,465,o),\n(119,415,o),\n(159,384,c),\n(97,348,o),\n(55,286,o),\n(55,203,cs),\n(55,74,o),\n(166,-12,o),\n(326,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(244,116,o),\n(209,157,o),\n(209,212,cs),\n(209,260,o),\n(244,306,o),\n(325,306,cs),\n(414,306,o),\n(444,260,o),\n(444,212,cs),\n(444,157,o),\n(414,116,o),\n(327,116,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(278,433,o),\n(239,458,o),\n(239,512,cs),\n(239,550,o),\n(275,584,o),\n(324,584,cs),\n(372,584,o),\n(412,550,o),\n(412,512,cs),\n(412,458,o),\n(372,433,o),\n(326,433,cs)\n);\n}\n);\nwidth = 653;\n}\n);\nunicode = 56;\n},\n{\nglyphname = nine;\nlastChange = \"2025-01-01 00:13:20 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,712,o),\n(65,610,o),\n(65,471,cs),\n(65,333,o),\n(156,238,o),\n(282,238,cs),\n(341,238,o),\n(375,256,o),\n(387,271,c),\n(259,0,l),\n(329,0,l),\n(466,280,ls),\n(491,330,o),\n(524,392,o),\n(524,474,cs),\n(524,613,o),\n(433,712,o),\n(290,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(404,656,o),\n(462,584,o),\n(462,474,cs),\n(462,370,o),\n(404,294,o),\n(293,294,cs),\n(188,294,o),\n(127,376,o),\n(127,474,cs),\n(127,590,o),\n(188,656,o),\n(289,656,cs)\n);\n}\n);\nwidth = 587;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(125,712,o),\n(39,603,o),\n(39,467,cs),\n(39,328,o),\n(131,222,o),\n(267,222,cs),\n(301,222,o),\n(345,232,o),\n(357,247,c),\n(238,0,l),\n(338,0,l),\n(463,270,ls),\n(486,320,o),\n(521,408,o),\n(521,469,cs),\n(521,608,o),\n(435,712,o),\n(281,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(378,632,o),\n(429,553,o),\n(429,466,cs),\n(429,386,o),\n(378,303,o),\n(284,303,cs),\n(168,303,o),\n(131,386,o),\n(131,466,cs),\n(131,553,o),\n(175,632,o),\n(280,632,cs)\n);\n}\n);\nwidth = 561;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,712,o),\n(55,606,o),\n(55,467,cs),\n(55,324,o),\n(139,223,o),\n(280,223,cs),\n(326,223,o),\n(353,240,o),\n(353,240,c),\n(242,0,l),\n(394,0,l),\n(519,271,ls),\n(550,338,o),\n(567,407,o),\n(567,467,cs),\n(567,606,o),\n(472,712,o),\n(310,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(389,591,o),\n(422,535,o),\n(422,468,cs),\n(422,414,o),\n(389,344,o),\n(313,344,cs),\n(229,344,o),\n(200,414,o),\n(200,468,cs),\n(200,535,o),\n(229,591,o),\n(309,591,cs)\n);\n}\n);\nwidth = 597;\n}\n);\nunicode = 57;\n},\n{\nglyphname = space;\nlastChange = \"2025-01-08 15:03:30 +0000\";\nlayers = (\n{\nlayerId = m01;\nwidth = 300;\n},\n{\nlayerId = m002;\nwidth = 300;\n},\n{\nlayerId = m003;\nwidth = 300;\n}\n);\nunicode = 32;\n},\n{\nglyphname = nbspace;\nlastChange = \"2025-01-08 15:07:34 +0000\";\nlayers = (\n{\nlayerId = m01;\nwidth = 300;\n},\n{\nlayerId = m002;\nwidth = 300;\n},\n{\nlayerId = m003;\nwidth = 300;\n}\n);\nmetricWidth = space;\nunicode = 160;\n},\n{\nglyphname = .notdef;\nlastChange = \"2025-01-08 15:05:16 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(548,-150,l),\n(548,730,l),\n(90,730,l),\n(90,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(146,678,l),\n(492,678,l),\n(492,-98,l),\n(146,-98,l)\n);\n}\n);\nwidth = 638;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(538,-150,l),\n(538,730,l),\n(80,730,l),\n(80,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(165,652,l),\n(453,652,l),\n(453,-72,l),\n(165,-72,l)\n);\n}\n);\nwidth = 618;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(548,-150,l),\n(548,730,l),\n(60,730,l),\n(60,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,602,l),\n(413,602,l),\n(413,-22,l),\n(195,-22,l)\n);\n}\n);\nwidth = 608;\n}\n);\n},\n{\nglyphname = period;\nkernLeft = \".\";\nkernRight = \".\";\nlastChange = \"2025-01-01 03:18:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,-12,o),\n(186,10,o),\n(186,37,cs),\n(186,66,o),\n(164,88,o),\n(136,88,cs),\n(108,88,o),\n(85,66,o),\n(85,37,cs),\n(85,10,o),\n(108,-12,o),\n(136,-12,cs)\n);\n}\n);\nwidth = 271;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"2626C257-C8D1-4BEC-A76B-04061BD798F2\";\nname = foreground;\nwidth = 309;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(181,-12,o),\n(210,18,o),\n(210,53,cs),\n(210,89,o),\n(181,119,o),\n(146,119,cs),\n(110,119,o),\n(80,89,o),\n(80,53,cs),\n(80,18,o),\n(110,-12,o),\n(146,-12,cs)\n);\n}\n);\nwidth = 290;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(218,-16,o),\n(259,24,o),\n(259,74,cs),\n(259,122,o),\n(218,161,o),\n(170,161,cs),\n(121,161,o),\n(80,122,o),\n(80,74,cs),\n(80,24,o),\n(121,-16,o),\n(170,-16,cs)\n);\n}\n);\nwidth = 328;\n}\n);\nunicode = 46;\n},\n{\nglyphname = comma;\nkernLeft = \".\";\nkernRight = \".\";\nlastChange = \"2024-12-31 20:56:16 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(137,-92,o),\n(173,-35,o),\n(173,27,cs),\n(173,62,o),\n(156,88,o),\n(119,88,cs),\n(90,88,o),\n(71,63,o),\n(71,38,cs),\n(71,14,o),\n(92,-7,o),\n(117,-7,cs),\n(118,-7,o),\n(122,-7,o),\n(123,-7,c),\n(123,-58,o),\n(71,-69,o),\n(71,-69,c),\n(71,-69,o),\n(70,-92,o),\n(71,-92,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"7090993E-1050-418C-BDF4-9BE23E3E6164\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,-119,o),\n(184,-26,o),\n(185,38,c),\n(185,76,o),\n(166,119,o),\n(112,119,cs),\n(75,119,o),\n(50,86,o),\n(50,53,cs),\n(50,21,o),\n(79,-7,o),\n(110,-7,cs),\n(112,-7,o),\n(116,-7,o),\n(119,-6,c),\n(119,-74,o),\n(50,-89,o),\n(50,-89,c),\n(50,-89,o),\n(49,-119,o),\n(50,-119,cs)\n);\n}\n);\nwidth = 235;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(182,-144,o),\n(229,-21,o),\n(229,58,cs),\n(229,106,o),\n(203,160,o),\n(138,160,cs),\n(89,160,o),\n(58,118,o),\n(58,76,cs),\n(58,37,o),\n(91,2,o),\n(135,2,cs),\n(139,2,o),\n(144,2,o),\n(147,3,c),\n(147,-83,o),\n(58,-101,o),\n(58,-101,c),\n(58,-101,o),\n(57,-144,o),\n(58,-144,cs)\n);\n}\n);\nwidth = 293;\n}\n);\nunicode = 44;\n},\n{\nglyphname = colon;\nkernLeft = colon;\nkernRight = colon;\nlastChange = \"2024-12-31 20:57:29 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,-12,o),\n(205,10,o),\n(205,37,cs),\n(205,66,o),\n(183,88,o),\n(155,88,cs),\n(127,88,o),\n(104,66,o),\n(104,37,cs),\n(104,10,o),\n(127,-12,o),\n(155,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,354,o),\n(205,376,o),\n(205,403,cs),\n(205,432,o),\n(183,454,o),\n(155,454,cs),\n(127,454,o),\n(104,432,o),\n(104,403,cs),\n(104,376,o),\n(127,354,o),\n(155,354,cs)\n);\n}\n);\nwidth = 309;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"1129757A-F034-4623-96F5-2C126444C93D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,289,o),\n(229,324,o),\n(229,363,cs),\n(229,405,o),\n(196,440,o),\n(156,440,cs),\n(115,440,o),\n(80,405,o),\n(80,363,cs),\n(80,324,o),\n(115,289,o),\n(156,289,cs)\n);\n}\n);\nwidth = 309;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(191,-12,o),\n(220,18,o),\n(220,53,cs),\n(220,89,o),\n(191,119,o),\n(156,119,cs),\n(120,119,o),\n(90,89,o),\n(90,53,cs),\n(90,18,o),\n(120,-12,o),\n(156,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(191,349,o),\n(220,379,o),\n(220,414,cs),\n(220,450,o),\n(191,480,o),\n(156,480,cs),\n(120,480,o),\n(90,450,o),\n(90,414,cs),\n(90,379,o),\n(120,349,o),\n(156,349,cs)\n);\n}\n);\nwidth = 310;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(214,-12,o),\n(253,27,o),\n(253,75,cs),\n(253,122,o),\n(214,160,o),\n(167,160,cs),\n(119,160,o),\n(80,122,o),\n(80,75,cs),\n(80,27,o),\n(119,-12,o),\n(167,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(214,329,o),\n(253,368,o),\n(253,416,cs),\n(253,463,o),\n(214,501,o),\n(167,501,cs),\n(119,501,o),\n(80,463,o),\n(80,416,cs),\n(80,368,o),\n(119,329,o),\n(167,329,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 58;\n},\n{\nglyphname = semicolon;\nkernLeft = colon;\nkernRight = colon;\nlastChange = \"2024-12-31 20:57:20 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(150,-92,o),\n(186,-35,o),\n(186,27,cs),\n(186,62,o),\n(169,88,o),\n(132,88,cs),\n(103,88,o),\n(84,63,o),\n(84,38,cs),\n(84,14,o),\n(105,-7,o),\n(130,-7,cs),\n(131,-7,o),\n(135,-7,o),\n(136,-7,c),\n(136,-58,o),\n(84,-69,o),\n(84,-69,c),\n(84,-69,o),\n(83,-92,o),\n(84,-92,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,354,o),\n(186,376,o),\n(186,403,cs),\n(186,432,o),\n(164,454,o),\n(136,454,cs),\n(108,454,o),\n(85,432,o),\n(85,403,cs),\n(85,376,o),\n(108,354,o),\n(136,354,cs)\n);\n}\n);\nwidth = 270;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"7C7B3130-D28B-462C-85A7-59917ACED75E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,289,o),\n(213,324,o),\n(213,363,cs),\n(213,405,o),\n(180,440,o),\n(140,440,cs),\n(99,440,o),\n(64,405,o),\n(64,363,cs),\n(64,324,o),\n(99,289,o),\n(140,289,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(171,-119,o),\n(207,-26,o),\n(208,38,c),\n(208,76,o),\n(189,119,o),\n(135,119,cs),\n(98,119,o),\n(73,86,o),\n(73,53,cs),\n(73,21,o),\n(102,-7,o),\n(133,-7,cs),\n(135,-7,o),\n(139,-7,o),\n(142,-6,c),\n(142,-74,o),\n(73,-89,o),\n(73,-89,c),\n(73,-89,o),\n(72,-119,o),\n(73,-119,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(177,349,o),\n(206,379,o),\n(206,414,cs),\n(206,450,o),\n(177,480,o),\n(142,480,cs),\n(106,480,o),\n(76,450,o),\n(76,414,cs),\n(76,379,o),\n(106,349,o),\n(142,349,cs)\n);\n}\n);\nwidth = 265;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,-144,o),\n(252,-21,o),\n(252,58,cs),\n(252,106,o),\n(226,160,o),\n(161,160,cs),\n(112,160,o),\n(81,118,o),\n(81,76,cs),\n(81,37,o),\n(114,2,o),\n(158,2,cs),\n(162,2,o),\n(167,2,o),\n(170,3,c),\n(170,-83,o),\n(81,-101,o),\n(81,-101,c),\n(81,-101,o),\n(80,-144,o),\n(81,-144,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(214,329,o),\n(253,368,o),\n(253,416,cs),\n(253,463,o),\n(214,501,o),\n(167,501,cs),\n(119,501,o),\n(80,463,o),\n(80,416,cs),\n(80,368,o),\n(119,329,o),\n(167,329,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 59;\n},\n{\nglyphname = ellipsis;\nlastChange = \"2024-11-09 02:49:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (230,0);\nref = period;\n},\n{\npos = (460,0);\nref = period;\n},\n{\nref = period;\n}\n);\nwidth = 770;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (230,0);\nref = period;\n},\n{\npos = (460,0);\nref = period;\n},\n{\nref = period;\n}\n);\nwidth = 764;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (262,0);\nref = period;\n},\n{\npos = (537,0);\nref = period;\n},\n{\npos = (-15,0);\nref = period;\n}\n);\nwidth = 876;\n}\n);\nunicode = 8230;\n},\n{\nglyphname = exclam;\nlastChange = \"2024-09-02 03:26:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(178,162,l),\n(192,700,l),\n(117,700,l),\n(134,162,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(181,-12,o),\n(203,10,o),\n(203,36,cs),\n(203,64,o),\n(181,85,o),\n(154,85,cs),\n(127,85,o),\n(105,64,o),\n(105,36,cs),\n(105,10,o),\n(127,-12,o),\n(154,-12,cs)\n);\n}\n);\nwidth = 308;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"A93029F6-5A44-47E5-8EBB-60AEDDECB850\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,215,l),\n(218,720,l),\n(89,720,l),\n(105,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n}\n);\nwidth = 309;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(191,215,l),\n(204,700,l),\n(97,700,l),\n(113,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(185,-12,o),\n(213,17,o),\n(213,51,cs),\n(213,86,o),\n(185,115,o),\n(151,115,cs),\n(116,115,o),\n(87,86,o),\n(87,51,cs),\n(87,17,o),\n(116,-12,o),\n(151,-12,cs)\n);\n}\n);\nwidth = 300;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(242,231,l),\n(256,700,l),\n(105,700,l),\n(120,231,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(228,-12,o),\n(267,27,o),\n(267,75,cs),\n(267,122,o),\n(228,160,o),\n(181,160,cs),\n(133,160,o),\n(94,122,o),\n(94,75,cs),\n(94,27,o),\n(133,-12,o),\n(181,-12,cs)\n);\n}\n);\nwidth = 361;\n}\n);\nunicode = 33;\n},\n{\nglyphname = exclamdown;\nlastChange = \"2024-09-02 03:26:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(117,-200,l),\n(192,-200,l),\n(178,338,l),\n(134,338,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(127,512,o),\n(105,490,o),\n(105,464,cs),\n(105,436,o),\n(127,415,o),\n(154,415,cs),\n(181,415,o),\n(203,436,o),\n(203,464,cs),\n(203,490,o),\n(181,512,o),\n(154,512,cs)\n);\n}\n);\nwidth = 308;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(100,-200,l),\n(207,-200,l),\n(194,285,l),\n(116,285,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(119,512,o),\n(90,483,o),\n(90,449,cs),\n(90,414,o),\n(119,385,o),\n(154,385,cs),\n(188,385,o),\n(216,414,o),\n(216,449,cs),\n(216,483,o),\n(188,512,o),\n(154,512,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(105,-192,l),\n(256,-192,l),\n(242,277,l),\n(120,277,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(133,520,o),\n(94,481,o),\n(94,433,cs),\n(94,386,o),\n(133,348,o),\n(181,348,cs),\n(228,348,o),\n(267,386,o),\n(267,433,cs),\n(267,481,o),\n(228,520,o),\n(181,520,cs)\n);\n}\n);\nwidth = 361;\n}\n);\nunicode = 161;\n},\n{\nglyphname = question;\nlastChange = \"2024-11-02 02:07:58 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,16);\ntarget = (0,6);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (-12,200);\ntarget = (0,22);\ntype = Stem;\n},\n{\norigin = (0,12);\ntarget = (0,13);\ntype = Stem;\n},\n{\norigin = (0,22);\ntarget = (0,1);\ntype = Stem;\n},\n{\norigin = (0,19);\ntarget = (0,3);\ntype = Stem;\n},\n{\norigin = (0,22);\ntarget = (0,1);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(260,188,l),\n(260,392,o),\n(452,332,o),\n(452,537,cs),\n(452,649,o),\n(366,719,o),\n(253,719,cs),\n(180,719,o),\n(117,685,o),\n(81,623,c),\n(66,597,o),\n(57,566,o),\n(57,530,c),\n(119,530,l),\n(119,611,o),\n(181,663,o),\n(252,663,cs),\n(328,663,o),\n(390,616,o),\n(390,536,cs),\n(390,372,o),\n(198,426,o),\n(198,188,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(256,-12,o),\n(278,10,o),\n(278,36,cs),\n(278,64,o),\n(256,85,o),\n(229,85,cs),\n(202,85,o),\n(180,64,o),\n(180,36,cs),\n(180,10,o),\n(202,-12,o),\n(229,-12,cs)\n);\n}\n);\nwidth = 502;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"CB6FE323-AA22-456B-834C-E280C3EC3E3D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(312,380,o),\n(500,311,o),\n(500,530,cs),\n(500,649,o),\n(404,719,o),\n(289,719,c),\n(209,719,o),\n(137,685,o),\n(101,623,c),\n(86,597,o),\n(77,566,o),\n(77,530,c),\n(174,530,l),\n(174,587,o),\n(210,636,o),\n(288,636,c),\n(366,636,o),\n(405,592,o),\n(405,536,cs),\n(405,372,o),\n(208,437,o),\n(208,216,cs),\n(208,216,o),\n(312,216,o),\n(312,216,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(308,-12,o),\n(341,23,o),\n(341,62,cs),\n(341,104,o),\n(308,139,o),\n(268,139,cs),\n(227,139,o),\n(192,104,o),\n(192,62,cs),\n(192,23,o),\n(227,-12,o),\n(268,-12,cs)\n);\n}\n);\nwidth = 587;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(280,200,l),\n(280,371,o),\n(463,322,o),\n(463,536,cs),\n(463,645,o),\n(371,719,o),\n(256,719,cs),\n(180,719,o),\n(108,685,o),\n(72,623,c),\n(57,597,o),\n(48,566,o),\n(48,530,c),\n(130,530,l),\n(130,587,o),\n(181,639,o),\n(255,639,cs),\n(333,639,o),\n(373,592,o),\n(373,536,cs),\n(373,372,o),\n(188,421,o),\n(188,200,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(265,-12,o),\n(293,17,o),\n(293,51,cs),\n(293,86,o),\n(265,115,o),\n(231,115,cs),\n(196,115,o),\n(167,86,o),\n(167,51,cs),\n(167,17,o),\n(196,-12,o),\n(231,-12,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(317,209,l),\n(317,356,o),\n(488,325,o),\n(488,531,cs),\n(488,650,o),\n(398,720,o),\n(266,720,cs),\n(169,720,o),\n(102,686,o),\n(66,624,cs),\n(51,598,o),\n(42,544,o),\n(42,508,c),\n(194,508,l),\n(194,555,o),\n(211,590,o),\n(265,590,cs),\n(312,590,o),\n(334,560,o),\n(334,527,cs),\n(334,383,o),\n(165,427,o),\n(165,209,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(290,-16,o),\n(329,23,o),\n(329,71,cs),\n(329,118,o),\n(290,156,o),\n(243,156,cs),\n(195,156,o),\n(156,118,o),\n(156,71,cs),\n(156,23,o),\n(195,-16,o),\n(243,-16,cs)\n);\n}\n);\nwidth = 528;\n}\n);\nunicode = 63;\n},\n{\nglyphname = questiondown;\nlastChange = \"2024-11-22 04:52:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,-219,o),\n(392,-185,o),\n(428,-123,c),\n(443,-97,o),\n(452,-66,o),\n(452,-30,c),\n(390,-30,l),\n(390,-111,o),\n(328,-163,o),\n(257,-163,cs),\n(181,-163,o),\n(119,-116,o),\n(119,-36,cs),\n(119,128,o),\n(311,74,o),\n(311,312,c),\n(249,312,l),\n(249,108,o),\n(57,168,o),\n(57,-37,cs),\n(57,-149,o),\n(143,-219,o),\n(256,-219,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(307,415,o),\n(329,436,o),\n(329,464,cs),\n(329,490,o),\n(307,512,o),\n(280,512,cs),\n(253,512,o),\n(231,490,o),\n(231,464,cs),\n(231,436,o),\n(253,415,o),\n(280,415,cs)\n);\n}\n);\nwidth = 495;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(331,-219,o),\n(403,-185,o),\n(439,-123,c),\n(454,-97,o),\n(463,-66,o),\n(463,-30,c),\n(381,-30,l),\n(381,-87,o),\n(330,-139,o),\n(256,-139,cs),\n(178,-139,o),\n(138,-92,o),\n(138,-36,cs),\n(138,128,o),\n(323,79,o),\n(323,300,c),\n(231,300,l),\n(231,129,o),\n(48,178,o),\n(48,-36,cs),\n(48,-145,o),\n(140,-219,o),\n(255,-219,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(315,385,o),\n(344,414,o),\n(344,449,cs),\n(344,483,o),\n(315,512,o),\n(280,512,cs),\n(246,512,o),\n(218,483,o),\n(218,449,cs),\n(218,414,o),\n(246,385,o),\n(280,385,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(361,-216,o),\n(428,-182,o),\n(464,-120,cs),\n(479,-94,o),\n(488,-40,o),\n(488,-4,c),\n(336,-4,l),\n(336,-51,o),\n(319,-86,o),\n(265,-86,cs),\n(218,-86,o),\n(196,-56,o),\n(196,-23,cs),\n(196,121,o),\n(365,77,o),\n(365,295,c),\n(213,295,l),\n(213,148,o),\n(42,179,o),\n(42,-27,cs),\n(42,-146,o),\n(132,-216,o),\n(264,-216,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(335,348,o),\n(374,386,o),\n(374,433,cs),\n(374,481,o),\n(335,520,o),\n(287,520,cs),\n(240,520,o),\n(201,481,o),\n(201,433,cs),\n(201,386,o),\n(240,348,o),\n(287,348,cs)\n);\n}\n);\nwidth = 528;\n}\n);\nunicode = 191;\n},\n{\nglyphname = periodcentered;\nlastChange = \"2024-09-10 05:31:18 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(163,255,o),\n(185,277,o),\n(185,304,cs),\n(185,333,o),\n(163,355,o),\n(135,355,cs),\n(107,355,o),\n(84,333,o),\n(84,304,cs),\n(84,277,o),\n(107,255,o),\n(135,255,cs)\n);\n}\n);\nwidth = 269;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,239,o),\n(218,268,o),\n(218,304,cs),\n(218,340,o),\n(189,369,o),\n(153,369,cs),\n(117,369,o),\n(88,340,o),\n(88,304,cs),\n(88,268,o),\n(117,239,o),\n(153,239,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,217,o),\n(256,257,o),\n(256,307,cs),\n(256,355,o),\n(215,394,o),\n(167,394,cs),\n(118,394,o),\n(77,355,o),\n(77,307,cs),\n(77,257,o),\n(118,217,o),\n(167,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 183;\n},\n{\nglyphname = bullet;\nlastChange = \"2024-09-02 03:26:09 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(172,247,o),\n(199,275,o),\n(199,306,cs),\n(199,339,o),\n(172,367,o),\n(141,367,cs),\n(108,367,o),\n(80,339,o),\n(80,306,cs),\n(80,275,o),\n(108,247,o),\n(141,247,cs)\n);\n}\n);\nwidth = 279;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(216,223,o),\n(254,262,o),\n(254,307,cs),\n(254,354,o),\n(216,393,o),\n(171,393,cs),\n(124,393,o),\n(85,354,o),\n(85,307,cs),\n(85,262,o),\n(124,223,o),\n(171,223,cs)\n);\n}\n);\nwidth = 339;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(240,197,o),\n(290,247,o),\n(290,309,cs),\n(290,370,o),\n(240,419,o),\n(179,419,cs),\n(117,419,o),\n(67,370,o),\n(67,309,cs),\n(67,247,o),\n(117,197,o),\n(179,197,cs)\n);\n}\n);\nwidth = 357;\n}\n);\nunicode = 8226;\n},\n{\nglyphname = asterisk;\nlastChange = \"2024-08-14 07:25:26 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(260,489,l),\n(218,489,l),\n(345,339,l),\n(389,374,l),\n(255,533,l),\n(251,488,l),\n(419,567,l),\n(397,616,l),\n(233,540,l),\n(268,522,l),\n(268,712,l),\n(212,712,l),\n(212,519,l),\n(247,536,l),\n(81,613,l),\n(60,567,l),\n(228,488,l),\n(223,533,l),\n(89,374,l),\n(132,339,l)\n);\n}\n);\nwidth = 479;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"52A87255-65B2-4E80-95F9-0AF50A018D84\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,321,l),\n(246,438,l),\n(344,320,l),\n(407,374,l),\n(310,489,l),\n(436,553,l),\n(400,624,l),\n(287,568,l),\n(287,714,l),\n(204,714,l),\n(204,568,l),\n(92,624,l),\n(55,553,l),\n(180,490,l),\n(83,374,l)\n);\n}\n);\nwidth = 491;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(273,489,l),\n(215,489,l),\n(350,330,l),\n(402,374,l),\n(268,533,l),\n(256,480,l),\n(431,562,l),\n(403,624,l),\n(238,548,l),\n(279,522,l),\n(279,712,l),\n(211,712,l),\n(211,519,l),\n(252,545,l),\n(86,622,l),\n(58,561,l),\n(232,480,l),\n(220,533,l),\n(86,374,l),\n(138,330,l)\n);\n}\n);\nwidth = 489;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(307,489,l),\n(207,489,l),\n(361,310,l),\n(437,374,l),\n(303,533,l),\n(270,459,l),\n(462,551,l),\n(418,646,l),\n(252,570,l),\n(315,522,l),\n(315,712,l),\n(205,712,l),\n(205,519,l),\n(266,568,l),\n(95,646,l),\n(50,548,l),\n(246,456,l),\n(214,533,l),\n(80,374,l),\n(159,311,l)\n);\n}\n);\nwidth = 512;\n}\n);\nunicode = 42;\n},\n{\nglyphname = numbersign;\nlastChange = \"2024-10-21 04:20:59 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,3);\ntarget = (1,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (3,3);\ntarget = (3,2);\ntype = Stem;\n},\n{\norigin = (1,3);\ntarget = (3,0);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(462,0,l),\n(635,720,l),\n(573,720,l),\n(400,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(649,183,l),\n(648,239,l),\n(74,239,l),\n(75,183,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(225,0,l),\n(398,720,l),\n(336,720,l),\n(163,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(713,482,l),\n(713,538,l),\n(139,538,l),\n(139,482,l)\n);\n}\n);\nwidth = 787;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"21C28542-C2BA-4EFE-9B17-DE8F14164D30\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(227,0,l),\n(400,720,l),\n(306,720,l),\n(133,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(462,0,l),\n(635,720,l),\n(541,720,l),\n(368,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(707,425,l),\n(707,523,l),\n(133,523,l),\n(133,425,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(644,199,l),\n(644,297,l),\n(70,297,l),\n(70,199,l)\n);\n}\n);\nwidth = 777;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(460,0,l),\n(633,720,l),\n(560,720,l),\n(387,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(646,187,l),\n(646,267,l),\n(72,267,l),\n(72,187,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(232,0,l),\n(405,720,l),\n(332,720,l),\n(159,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(710,457,l),\n(710,537,l),\n(136,537,l),\n(136,457,l)\n);\n}\n);\nwidth = 782;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(509,0,l),\n(682,720,l),\n(548,720,l),\n(375,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(688,152,l),\n(688,278,l),\n(65,278,l),\n(65,152,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(257,0,l),\n(430,720,l),\n(296,720,l),\n(123,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(735,416,l),\n(735,542,l),\n(118,542,l),\n(118,416,l)\n);\n}\n);\nwidth = 800;\n}\n);\nunicode = 35;\n},\n{\nglyphname = slash;\nlastChange = \"2025-01-01 03:23:16 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (208,-160);\n},\n{\npos = (177,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(82,-160,l),\n(430,775,l),\n(365,775,l),\n(17,-160,l)\n);\n}\n);\nwidth = 438;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"B6C497E8-57DB-4813-80B4-1FC1C004D65A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,0,l),\n(390,720,l),\n(303,720,l),\n(10,0,l)\n);\n}\n);\nwidth = 385;\n},\n{\nguides = (\n{\npos = (-230,-160);\n},\n{\npos = (-230,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(106,-160,l),\n(459,776,l),\n(369,776,l),\n(16,-160,l)\n);\n}\n);\nwidth = 460;\n},\n{\nguides = (\n{\npos = (-242,-159);\n},\n{\npos = (6,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,-161,l),\n(502,775,l),\n(362,775,l),\n(8,-161,l)\n);\n}\n);\nwidth = 482;\n}\n);\nunicode = 47;\n},\n{\nglyphname = backslash;\nlastChange = \"2025-01-01 03:27:34 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,-160,l),\n(73,775,l),\n(8,775,l),\n(356,-160,l)\n);\n}\n);\nwidth = 438;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"343D6EAE-1DF2-4E0E-B6B5-032545DCA862\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(82,720,l),\n(-5,720,l),\n(288,0,l),\n(375,0,l)\n);\n}\n);\nwidth = 385;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(444,-160,l),\n(91,776,l),\n(1,776,l),\n(354,-160,l)\n);\n}\n);\nwidth = 460;\n},\n{\nguides = (\n{\npos = (-270,-159);\n},\n{\npos = (-22,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(474,-161,l),\n(120,775,l),\n(-20,775,l),\n(334,-161,l)\n);\n}\n);\nwidth = 482;\n}\n);\nunicode = 92;\n},\n{\nglyphname = periodcentered.loclCAT;\nlastChange = \"2024-09-05 20:47:01 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(157,257,o),\n(178,279,o),\n(178,303,cs),\n(178,329,o),\n(157,351,o),\n(133,351,cs),\n(107,351,o),\n(85,329,o),\n(85,303,cs),\n(85,279,o),\n(107,257,o),\n(133,257,cs)\n);\n}\n);\nwidth = 263;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(179,239,o),\n(208,269,o),\n(208,304,cs),\n(208,340,o),\n(179,370,o),\n(144,370,cs),\n(108,370,o),\n(78,340,o),\n(78,304,cs),\n(78,269,o),\n(108,239,o),\n(144,239,cs)\n);\n}\n);\nwidth = 286;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,217,o),\n(256,257,o),\n(256,307,cs),\n(256,355,o),\n(215,394,o),\n(167,394,cs),\n(118,394,o),\n(77,355,o),\n(77,307,cs),\n(77,257,o),\n(118,217,o),\n(167,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\n},\n{\nglyphname = periodcentered.loclCAT.case;\nlastChange = \"2024-09-02 03:26:04 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(157,257,o),\n(178,279,o),\n(178,303,cs),\n(178,329,o),\n(157,351,o),\n(133,351,cs),\n(107,351,o),\n(85,329,o),\n(85,303,cs),\n(85,279,o),\n(107,257,o),\n(133,257,cs)\n);\n}\n);\nwidth = 263;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(186,239,o),\n(215,269,o),\n(215,304,cs),\n(215,340,o),\n(186,370,o),\n(151,370,cs),\n(115,370,o),\n(85,340,o),\n(85,304,cs),\n(85,269,o),\n(115,239,o),\n(151,239,cs)\n);\n}\n);\nwidth = 300;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,217,o),\n(256,257,o),\n(256,307,cs),\n(256,355,o),\n(215,394,o),\n(167,394,cs),\n(118,394,o),\n(77,355,o),\n(77,307,cs),\n(77,257,o),\n(118,217,o),\n(167,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\n},\n{\nglyphname = hyphen;\nlastChange = \"2024-12-31 20:49:40 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (259,296);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(418,268,l),\n(418,324,l),\n(70,324,l),\n(70,268,l)\n);\n}\n);\nwidth = 488;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"A4E3A6E5-E339-49A3-BA7C-5350A83F40F5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,247,l),\n(428,345,l),\n(80,345,l),\n(80,247,l)\n);\n}\n);\nwidth = 508;\n},\n{\nguides = (\n{\npos = (251,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(418,253,l),\n(418,337,l),\n(70,337,l),\n(70,253,l)\n);\n}\n);\nwidth = 488;\n},\n{\nguides = (\n{\npos = (251,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(461,230,l),\n(461,358,l),\n(65,358,l),\n(65,230,l)\n);\n}\n);\nwidth = 526;\n}\n);\nunicode = 45;\n},\n{\nglyphname = endash;\nlastChange = \"2024-12-31 20:49:55 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(484,270,l),\n(484,322,l),\n(70,322,l),\n(70,270,l)\n);\n}\n);\nwidth = 554;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(483,256,l),\n(483,334,l),\n(70,334,l),\n(70,256,l)\n);\n}\n);\nwidth = 553;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(517,236,l),\n(517,352,l),\n(65,352,l),\n(65,236,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 8211;\n},\n{\nglyphname = emdash;\nlastChange = \"2024-12-31 20:50:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(814,270,l),\n(814,322,l),\n(70,322,l),\n(70,270,l)\n);\n}\n);\nwidth = 884;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(816,254,l),\n(816,332,l),\n(71,332,l),\n(71,254,l)\n);\n}\n);\nwidth = 886;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(853,236,l),\n(853,352,l),\n(65,352,l),\n(65,236,l)\n);\n}\n);\nwidth = 918;\n}\n);\nunicode = 8212;\n},\n{\nglyphname = underscore;\nlastChange = \"2024-08-26 01:53:25 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(456,0,l),\n(456,52,l),\n(-3,52,l),\n(-3,0,l)\n);\n}\n);\nwidth = 453;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"1AB4D43C-2735-4A3F-815D-32BCD16357D5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(546,0,l),\n(546,98,l),\n(60,98,l),\n(60,0,l)\n);\n}\n);\nwidth = 606;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(483,0,l),\n(483,78,l),\n(-3,78,l),\n(-3,0,l)\n);\n}\n);\nwidth = 480;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(532,0,l),\n(532,116,l),\n(-3,116,l),\n(-3,0,l)\n);\n}\n);\nwidth = 529;\n}\n);\nunicode = 95;\n},\n{\nglyphname = parenleft;\nlastChange = \"2025-01-01 06:23:55 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (183,-160);\n},\n{\npos = (152,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(264,-160,l),\n(267,-158,o),\n(134,4,o),\n(134,308,c),\n(134,610,o),\n(267,773,o),\n(264,775,c),\n(202,775,l),\n(203,775,o),\n(70,579,o),\n(70,308,c),\n(70,35,o),\n(203,-160,o),\n(203,-160,c)\n);\n}\n);\nwidth = 299;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"A003329C-BEC9-4397-9AAD-9155A5EADE70\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(62,109,o),\n(172,-60,o),\n(172,-60,c),\n(280,-60,l),\n(283,-58,o),\n(163,82,o),\n(163,345,c),\n(163,607,o),\n(283,748,o),\n(280,750,c),\n(172,750,l),\n(172,750,o),\n(62,580,o),\n(62,345,c)\n);\n}\n);\nwidth = 313;\n},\n{\nguides = (\n{\npos = (-216,-160);\n},\n{\npos = (-216,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(278,-160,l),\n(281,-158,o),\n(158,5,o),\n(158,308,cs),\n(158,610,o),\n(281,774,o),\n(278,776,c),\n(194,776,l),\n(194,776,o),\n(70,580,o),\n(70,308,cs),\n(70,35,o),\n(193,-160,o),\n(193,-160,c)\n);\n}\n);\nwidth = 308;\n},\n{\nguides = (\n{\npos = (-314,-159);\n},\n{\npos = (-66,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(326,-159,l),\n(329,-157,o),\n(198,4,o),\n(198,309,c),\n(198,611,o),\n(328,773,o),\n(325,775,c),\n(186,775,l),\n(186,775,o),\n(48,579,o),\n(48,309,c),\n(48,36,o),\n(187,-159,o),\n(187,-159,c)\n);\n}\n);\nwidth = 394;\n}\n);\nunicode = 40;\n},\n{\nglyphname = parenright;\nlastChange = \"2024-11-22 04:51:58 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(96,-160,o),\n(229,35,o),\n(229,308,c),\n(229,579,o),\n(96,775,o),\n(97,775,c),\n(35,775,l),\n(32,773,o),\n(165,610,o),\n(165,308,c),\n(165,4,o),\n(32,-158,o),\n(35,-160,c),\n(96,-160,l)\n);\n}\n);\nwidth = 299;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"FEA7CF8C-5847-4A35-8A6B-C76339FB953A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(243,580,o),\n(133,750,o),\n(133,750,c),\n(25,750,l),\n(22,748,o),\n(142,607,o),\n(142,345,c),\n(142,82,o),\n(22,-58,o),\n(25,-60,c),\n(133,-60,l),\n(133,-60,o),\n(243,109,o),\n(243,345,c)\n);\n}\n);\nwidth = 303;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(115,-160,o),\n(238,35,o),\n(238,308,cs),\n(238,580,o),\n(114,776,o),\n(114,776,c),\n(30,776,l),\n(27,774,o),\n(150,610,o),\n(150,308,cs),\n(150,5,o),\n(27,-158,o),\n(30,-160,c),\n(115,-160,l)\n);\n}\n);\nwidth = 308;\n},\n{\nguides = (\n{\npos = (-297,-159);\n},\n{\npos = (-49,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,-159,o),\n(346,36,o),\n(346,309,c),\n(346,579,o),\n(208,775,o),\n(208,775,c),\n(69,775,l),\n(66,773,o),\n(196,611,o),\n(196,309,c),\n(196,4,o),\n(65,-157,o),\n(68,-159,c),\n(207,-159,l)\n);\n}\n);\nwidth = 394;\n}\n);\nunicode = 41;\n},\n{\nglyphname = braceleft;\nlastChange = \"2025-01-01 06:26:25 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (238,-160);\n},\n{\npos = (207,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(337,-159,l),\n(337,-105,l),\n(278,-105,ls),\n(230,-105,o),\n(201,-77,o),\n(201,-18,cs),\n(201,205,ls),\n(201,270,o),\n(178,294,o),\n(143,303,c),\n(143,311,l),\n(178,321,o),\n(201,340,o),\n(201,416,cs),\n(201,634,ls),\n(201,693,o),\n(230,721,o),\n(278,721,cs),\n(337,721,l),\n(337,775,l),\n(271,775,ls),\n(171,775,o),\n(141,712,o),\n(141,632,cs),\n(141,416,ls),\n(141,378,o),\n(110,340,o),\n(65,340,c),\n(65,278,l),\n(111,278,o),\n(141,251,o),\n(141,205,cs),\n(141,-16,ls),\n(141,-96,o),\n(171,-159,o),\n(271,-159,cs)\n);\n}\n);\nwidth = 370;\n},\n{\nguides = (\n{\npos = (-216,-160);\n},\n{\npos = (-216,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(367,-159,l),\n(367,-79,l),\n(289,-79,ls),\n(246,-79,o),\n(219,-46,o),\n(219,0,cs),\n(219,209,ls),\n(219,267,o),\n(193,296,o),\n(147,305,c),\n(147,313,l),\n(193,323,o),\n(219,354,o),\n(219,414,cs),\n(219,616,ls),\n(219,673,o),\n(246,695,o),\n(289,695,cs),\n(367,695,l),\n(367,775,l),\n(272,775,ls),\n(191,775,o),\n(131,705,o),\n(131,624,cs),\n(131,444,ls),\n(131,389,o),\n(107,357,o),\n(55,357,c),\n(55,266,l),\n(107,266,o),\n(131,235,o),\n(131,180,cs),\n(131,-9,ls),\n(131,-90,o),\n(191,-159,o),\n(272,-159,cs)\n);\n}\n);\nwidth = 400;\n},\n{\nguides = (\n{\npos = (-253,-159);\n},\n{\npos = (-5,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(420,-159,l),\n(420,-33,l),\n(326,-33,ls),\n(291,-33,o),\n(272,0,o),\n(272,40,cs),\n(272,209,ls),\n(272,267,o),\n(241,296,o),\n(195,305,c),\n(195,313,l),\n(241,323,o),\n(272,354,o),\n(272,414,cs),\n(272,576,ls),\n(272,626,o),\n(291,649,o),\n(326,649,cs),\n(420,649,l),\n(420,775,l),\n(280,775,ls),\n(197,775,o),\n(132,703,o),\n(132,622,cs),\n(132,455,ls),\n(132,400,o),\n(108,376,o),\n(56,376,c),\n(56,246,l),\n(108,246,o),\n(132,223,o),\n(132,168,cs),\n(132,-6,ls),\n(132,-87,o),\n(197,-159,o),\n(280,-159,cs)\n);\n}\n);\nwidth = 442;\n}\n);\nunicode = 123;\n},\n{\nglyphname = braceright;\nlastChange = \"2024-10-11 09:32:47 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(199,-159,o),\n(229,-96,o),\n(229,-16,cs),\n(229,205,ls),\n(229,251,o),\n(259,277,o),\n(305,277,c),\n(305,342,l),\n(260,342,o),\n(229,378,o),\n(229,416,cs),\n(229,632,ls),\n(229,712,o),\n(199,775,o),\n(99,775,cs),\n(33,775,l),\n(33,721,l),\n(92,721,ls),\n(140,721,o),\n(169,693,o),\n(169,634,cs),\n(169,416,ls),\n(169,340,o),\n(192,321,o),\n(227,311,c),\n(227,303,l),\n(192,294,o),\n(169,270,o),\n(169,205,cs),\n(169,-18,ls),\n(169,-77,o),\n(140,-105,o),\n(92,-105,cs),\n(33,-105,l),\n(33,-159,l),\n(99,-159,ls)\n);\n}\n);\nwidth = 370;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(209,-159,o),\n(269,-90,o),\n(269,-9,cs),\n(269,180,ls),\n(269,235,o),\n(293,266,o),\n(345,266,c),\n(345,357,l),\n(293,357,o),\n(269,389,o),\n(269,444,cs),\n(269,624,ls),\n(269,705,o),\n(209,775,o),\n(128,775,cs),\n(33,775,l),\n(33,695,l),\n(111,695,ls),\n(154,695,o),\n(181,673,o),\n(181,616,cs),\n(181,414,ls),\n(181,354,o),\n(204,323,o),\n(250,313,c),\n(250,305,l),\n(204,296,o),\n(181,267,o),\n(181,209,cs),\n(181,0,ls),\n(181,-46,o),\n(154,-79,o),\n(111,-79,cs),\n(33,-79,l),\n(33,-159,l),\n(128,-159,ls)\n);\n}\n);\nwidth = 400;\n},\n{\nguides = (\n{\npos = (-373,-159);\n},\n{\npos = (-125,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(245,-159,o),\n(310,-87,o),\n(310,-6,cs),\n(310,168,ls),\n(310,223,o),\n(334,246,o),\n(386,246,c),\n(386,376,l),\n(334,376,o),\n(310,400,o),\n(310,455,cs),\n(310,622,ls),\n(310,703,o),\n(245,775,o),\n(162,775,cs),\n(22,775,l),\n(22,649,l),\n(116,649,ls),\n(151,649,o),\n(170,626,o),\n(170,576,cs),\n(170,414,ls),\n(170,354,o),\n(201,323,o),\n(247,313,c),\n(247,305,l),\n(201,296,o),\n(170,267,o),\n(170,209,cs),\n(170,40,ls),\n(170,0,o),\n(151,-33,o),\n(116,-33,cs),\n(22,-33,l),\n(22,-159,l),\n(162,-159,ls)\n);\n}\n);\nwidth = 442;\n}\n);\nunicode = 125;\n},\n{\nglyphname = bracketleft;\nlastChange = \"2025-01-01 06:30:26 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (181,-160);\n},\n{\npos = (150,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(315,-160,l),\n(315,-104,l),\n(160,-104,l),\n(160,718,l),\n(316,718,l),\n(316,774,l),\n(100,774,l),\n(100,-160,l)\n);\n}\n);\nwidth = 356;\n},\n{\nguides = (\n{\npos = (-259,-160);\n},\n{\npos = (-259,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,-160,l),\n(344,-84,l),\n(175,-84,l),\n(175,700,l),\n(345,700,l),\n(345,775,l),\n(95,775,l),\n(95,-160,l)\n);\n}\n);\nwidth = 383;\n},\n{\nguides = (\n{\npos = (-305,-159);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(406,-158,l),\n(406,-32,l),\n(230,-32,l),\n(230,649,l),\n(407,649,l),\n(407,775,l),\n(90,775,l),\n(90,-158,l)\n);\n}\n);\nwidth = 439;\n}\n);\nunicode = 91;\n},\n{\nglyphname = bracketright;\nlastChange = \"2024-09-09 06:30:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(256,774,l),\n(40,774,l),\n(40,718,l),\n(196,718,l),\n(196,-104,l),\n(41,-104,l),\n(41,-160,l),\n(256,-160,l)\n);\n}\n);\nwidth = 356;\n},\n{\nguides = (\n{\npos = (-259,-160);\n},\n{\npos = (-259,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(345,775,l),\n(95,775,l),\n(95,700,l),\n(265,700,l),\n(265,-84,l),\n(96,-84,l),\n(96,-160,l),\n(345,-160,l)\n);\n}\n);\nwidth = 383;\n},\n{\nguides = (\n{\npos = (-305,-159);\n},\n{\npos = (-57,750);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(408,775,l),\n(91,775,l),\n(91,649,l),\n(268,649,l),\n(268,-32,l),\n(92,-32,l),\n(92,-158,l),\n(408,-158,l)\n);\n}\n);\nwidth = 439;\n}\n);\nunicode = 93;\n},\n{\nglyphname = quotesinglbase;\nlastChange = \"2024-11-09 02:51:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (-41,0);\nref = comma;\n}\n);\nwidth = 162;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-20,0);\nref = comma;\n}\n);\nwidth = 195;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-8,-15);\nref = comma;\n}\n);\nwidth = 271;\n}\n);\nunicode = 8218;\n},\n{\nglyphname = quotedblbase;\nlastChange = \"2024-11-09 02:51:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (97,0);\nref = comma;\n},\n{\npos = (-41,0);\nref = comma;\n}\n);\nwidth = 300;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (163,0);\nref = comma;\n},\n{\npos = (-20,0);\nref = comma;\n}\n);\nwidth = 378;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (200,-15);\nref = comma;\n},\n{\npos = (-8,-15);\nref = comma;\n}\n);\nwidth = 479;\n}\n);\nunicode = 8222;\n},\n{\nglyphname = quotedblleft;\nkernLeft = quoteleft;\nkernRight = quoteleft;\nlastChange = \"2025-01-01 03:29:03 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(96,712,o),\n(60,655,o),\n(60,593,cs),\n(60,558,o),\n(82,532,o),\n(116,532,cs),\n(141,532,o),\n(162,557,o),\n(162,582,c),\n(162,606,o),\n(141,627,o),\n(116,627,cs),\n(115,627,o),\n(111,627,o),\n(110,627,c),\n(110,678,o),\n(162,689,o),\n(162,689,c),\n(162,689,o),\n(163,712,o),\n(162,712,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(234,712,o),\n(198,655,o),\n(198,593,cs),\n(198,558,o),\n(220,532,o),\n(254,532,cs),\n(279,532,o),\n(300,557,o),\n(300,582,cs),\n(300,606,o),\n(279,627,o),\n(254,627,cs),\n(253,627,o),\n(249,627,o),\n(248,627,c),\n(248,678,o),\n(300,689,o),\n(300,689,c),\n(300,689,o),\n(301,712,o),\n(300,712,cs)\n);\n}\n);\nwidth = 361;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(90,720,o),\n(54,627,o),\n(53,563,c),\n(53,525,o),\n(74,482,o),\n(126,482,cs),\n(160,482,o),\n(188,515,o),\n(188,548,cs),\n(188,580,o),\n(159,608,o),\n(128,608,cs),\n(126,608,o),\n(122,608,o),\n(119,607,c),\n(119,675,o),\n(188,690,o),\n(188,690,c),\n(188,690,o),\n(189,720,o),\n(188,720,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(278,720,o),\n(242,627,o),\n(241,563,c),\n(241,525,o),\n(262,482,o),\n(314,482,cs),\n(348,482,o),\n(376,515,o),\n(376,548,cs),\n(376,580,o),\n(347,608,o),\n(316,608,cs),\n(314,608,o),\n(310,608,o),\n(307,607,c),\n(307,675,o),\n(376,690,o),\n(376,690,c),\n(376,690,o),\n(377,720,o),\n(376,720,cs)\n);\n}\n);\nwidth = 432;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,721,o),\n(50,598,o),\n(50,519,cs),\n(50,471,o),\n(76,417,o),\n(141,417,cs),\n(187,417,o),\n(221,459,o),\n(221,501,cs),\n(221,540,o),\n(185,575,o),\n(144,575,cs),\n(140,575,o),\n(135,575,o),\n(132,574,c),\n(132,660,o),\n(221,678,o),\n(221,678,c),\n(221,678,o),\n(222,721,o),\n(221,721,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(300,721,o),\n(253,598,o),\n(253,519,cs),\n(253,471,o),\n(279,417,o),\n(344,417,cs),\n(390,417,o),\n(424,459,o),\n(424,501,cs),\n(424,540,o),\n(388,575,o),\n(347,575,cs),\n(343,575,o),\n(338,575,o),\n(335,574,c),\n(335,660,o),\n(424,678,o),\n(424,678,c),\n(424,678,o),\n(425,721,o),\n(424,721,cs)\n);\n}\n);\nwidth = 467;\n}\n);\nunicode = 8220;\n},\n{\nglyphname = quotedblright;\nkernLeft = quoteright;\nkernRight = quoteright;\nlastChange = \"2024-12-31 22:56:55 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(265,532,o),\n(301,589,o),\n(301,651,cs),\n(301,686,o),\n(279,712,o),\n(245,712,cs),\n(220,712,o),\n(199,687,o),\n(199,662,c),\n(199,638,o),\n(220,617,o),\n(245,617,cs),\n(246,617,o),\n(250,617,o),\n(251,617,c),\n(251,566,o),\n(199,555,o),\n(199,555,c),\n(199,555,o),\n(199,532,o),\n(199,532,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(131,532,o),\n(167,589,o),\n(167,651,cs),\n(167,686,o),\n(145,712,o),\n(111,712,cs),\n(86,712,o),\n(65,687,o),\n(65,662,cs),\n(65,638,o),\n(86,617,o),\n(111,617,cs),\n(112,617,o),\n(116,617,o),\n(117,617,c),\n(117,566,o),\n(65,555,o),\n(65,555,c),\n(65,555,o),\n(64,532,o),\n(65,532,cs)\n);\n}\n);\nwidth = 361;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(340,482,o),\n(376,575,o),\n(377,639,c),\n(377,677,o),\n(356,720,o),\n(304,720,cs),\n(270,720,o),\n(242,687,o),\n(242,654,cs),\n(242,622,o),\n(271,594,o),\n(302,594,cs),\n(304,594,o),\n(308,594,o),\n(311,595,c),\n(311,527,o),\n(242,512,o),\n(242,512,c),\n(242,512,o),\n(241,482,o),\n(242,482,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(152,482,o),\n(188,575,o),\n(189,639,c),\n(189,677,o),\n(168,720,o),\n(116,720,cs),\n(82,720,o),\n(54,687,o),\n(54,654,cs),\n(54,622,o),\n(83,594,o),\n(114,594,cs),\n(116,594,o),\n(120,594,o),\n(123,595,c),\n(123,527,o),\n(54,512,o),\n(54,512,c),\n(54,512,o),\n(53,482,o),\n(54,482,cs)\n);\n}\n);\nwidth = 432;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(372,417,o),\n(419,540,o),\n(419,619,cs),\n(419,667,o),\n(393,721,o),\n(328,721,cs),\n(282,721,o),\n(248,679,o),\n(248,637,cs),\n(248,598,o),\n(284,563,o),\n(325,563,cs),\n(329,563,o),\n(334,563,o),\n(337,564,c),\n(337,478,o),\n(248,460,o),\n(248,460,c),\n(248,460,o),\n(247,417,o),\n(248,417,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(169,417,o),\n(216,540,o),\n(216,619,cs),\n(216,667,o),\n(190,721,o),\n(125,721,cs),\n(79,721,o),\n(45,679,o),\n(45,637,cs),\n(45,598,o),\n(81,563,o),\n(122,563,cs),\n(126,563,o),\n(131,563,o),\n(134,564,c),\n(134,478,o),\n(45,460,o),\n(45,460,c),\n(45,460,o),\n(44,417,o),\n(45,417,cs)\n);\n}\n);\nwidth = 469;\n}\n);\nunicode = 8221;\n},\n{\nglyphname = quoteleft;\nkernLeft = quoteleft;\nkernRight = quoteleft;\nlastChange = \"2025-01-01 06:09:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(141,540,o),\n(162,565,o),\n(162,590,c),\n(162,614,o),\n(141,635,o),\n(116,635,cs),\n(115,635,o),\n(111,635,o),\n(110,635,c),\n(110,686,o),\n(162,697,o),\n(162,697,c),\n(162,697,o),\n(163,720,o),\n(162,720,cs),\n(96,720,o),\n(60,663,o),\n(60,601,cs),\n(60,566,o),\n(82,540,o),\n(116,540,cs)\n);\n}\n);\nwidth = 212;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,482,o),\n(180,515,o),\n(180,548,cs),\n(180,580,o),\n(151,608,o),\n(120,608,cs),\n(118,608,o),\n(114,608,o),\n(111,607,c),\n(111,675,o),\n(180,690,o),\n(180,690,c),\n(180,690,o),\n(181,720,o),\n(180,720,cs),\n(82,720,o),\n(46,627,o),\n(45,563,c),\n(45,525,o),\n(66,482,o),\n(118,482,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,416,o),\n(214,458,o),\n(214,500,cs),\n(214,539,o),\n(178,574,o),\n(137,574,cs),\n(133,574,o),\n(128,574,o),\n(125,573,c),\n(125,659,o),\n(214,677,o),\n(214,677,c),\n(214,677,o),\n(215,720,o),\n(214,720,cs),\n(90,720,o),\n(43,597,o),\n(43,518,cs),\n(43,470,o),\n(69,416,o),\n(134,416,cs)\n);\n}\n);\nwidth = 264;\n}\n);\nunicode = 8216;\n},\n{\nglyphname = quoteright;\nkernLeft = quoteright;\nkernRight = quoteright;\nlastChange = \"2025-01-01 06:20:34 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(116,532,o),\n(152,589,o),\n(152,651,cs),\n(152,686,o),\n(130,712,o),\n(96,712,cs),\n(71,712,o),\n(50,687,o),\n(50,662,c),\n(50,638,o),\n(71,617,o),\n(96,617,cs),\n(97,617,o),\n(101,617,o),\n(102,617,c),\n(102,566,o),\n(50,555,o),\n(50,555,c),\n(50,555,o),\n(49,532,o),\n(50,532,cs)\n);\n}\n);\nwidth = 212;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,482,o),\n(192,575,o),\n(193,639,c),\n(193,677,o),\n(172,720,o),\n(120,720,cs),\n(86,720,o),\n(58,687,o),\n(58,654,cs),\n(58,622,o),\n(87,594,o),\n(118,594,cs),\n(120,594,o),\n(124,594,o),\n(127,595,c),\n(127,527,o),\n(58,512,o),\n(58,512,c),\n(58,512,o),\n(57,482,o),\n(58,482,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(174,417,o),\n(221,540,o),\n(221,619,cs),\n(221,667,o),\n(195,721,o),\n(130,721,cs),\n(84,721,o),\n(50,679,o),\n(50,637,cs),\n(50,598,o),\n(86,563,o),\n(127,563,cs),\n(131,563,o),\n(136,563,o),\n(139,564,c),\n(139,478,o),\n(50,460,o),\n(50,460,c),\n(50,460,o),\n(49,417,o),\n(50,417,cs)\n);\n}\n);\nwidth = 264;\n}\n);\nunicode = 8217;\n},\n{\nglyphname = guillemetleft;\nlastChange = \"2024-11-09 02:52:13 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(633,99,l),\n(347,291,l),\n(347,283,l),\n(633,475,l),\n(633,545,l),\n(306,326,l),\n(306,250,l),\n(633,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(377,99,l),\n(91,291,l),\n(91,283,l),\n(377,475,l),\n(377,545,l),\n(50,326,l),\n(50,250,l),\n(377,31,l)\n);\n}\n);\nwidth = 693;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(631,120,l),\n(345,312,l),\n(345,262,l),\n(631,454,l),\n(631,544,l),\n(304,325,l),\n(304,249,l),\n(631,30,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(375,121,l),\n(89,313,l),\n(89,263,l),\n(375,455,l),\n(375,545,l),\n(48,326,l),\n(48,250,l),\n(375,31,l)\n);\n}\n);\nwidth = 687;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(674,145,l),\n(388,337,l),\n(388,240,l),\n(674,432,l),\n(674,571,l),\n(347,352,l),\n(347,222,l),\n(674,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(372,145,l),\n(86,337,l),\n(86,240,l),\n(372,432,l),\n(372,571,l),\n(45,352,l),\n(45,222,l),\n(372,3,l)\n);\n}\n);\nwidth = 715;\n}\n);\nunicode = 171;\n},\n{\nglyphname = guillemetright;\nlastChange = \"2024-11-22 04:53:25 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(643,250,l),\n(643,326,l),\n(316,545,l),\n(316,475,l),\n(602,283,l),\n(602,291,l),\n(316,99,l),\n(316,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(387,250,l),\n(387,326,l),\n(60,545,l),\n(60,475,l),\n(346,283,l),\n(346,291,l),\n(60,99,l),\n(60,31,l)\n);\n}\n);\nwidth = 693;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(639,250,l),\n(639,326,l),\n(312,545,l),\n(312,455,l),\n(598,263,l),\n(598,313,l),\n(312,121,l),\n(312,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(383,249,l),\n(383,325,l),\n(56,544,l),\n(56,454,l),\n(342,262,l),\n(342,312,l),\n(56,120,l),\n(56,30,l)\n);\n}\n);\nwidth = 687;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(674,222,l),\n(674,352,l),\n(347,571,l),\n(347,432,l),\n(633,240,l),\n(633,337,l),\n(347,145,l),\n(347,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(372,222,l),\n(372,352,l),\n(45,571,l),\n(45,432,l),\n(331,240,l),\n(331,337,l),\n(45,145,l),\n(45,3,l)\n);\n}\n);\nwidth = 715;\n}\n);\nunicode = 187;\n},\n{\nglyphname = guilsinglleft;\nlastChange = \"2024-10-21 04:23:00 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(347,100,l),\n(88,294,l),\n(88,281,l),\n(347,475,l),\n(347,545,l),\n(50,326,l),\n(50,250,l),\n(347,31,l)\n);\n}\n);\nwidth = 407;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(345,121,l),\n(86,315,l),\n(86,261,l),\n(345,455,l),\n(345,545,l),\n(48,326,l),\n(48,250,l),\n(345,31,l)\n);\n}\n);\nwidth = 401;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,145,l),\n(85,337,l),\n(85,240,l),\n(371,432,l),\n(371,571,l),\n(44,352,l),\n(44,222,l),\n(371,3,l)\n);\n}\n);\nwidth = 421;\n}\n);\nunicode = 8249;\n},\n{\nglyphname = guilsinglright;\nlastChange = \"2024-10-21 04:23:00 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(357,250,l),\n(357,326,l),\n(60,545,l),\n(60,475,l),\n(319,281,l),\n(319,294,l),\n(60,100,l),\n(60,31,l)\n);\n}\n);\nwidth = 407;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,250,l),\n(353,326,l),\n(56,545,l),\n(56,455,l),\n(315,261,l),\n(315,315,l),\n(56,121,l),\n(56,31,l)\n);\n}\n);\nwidth = 401;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,222,l),\n(371,352,l),\n(44,571,l),\n(44,432,l),\n(330,240,l),\n(330,337,l),\n(44,145,l),\n(44,3,l)\n);\n}\n);\nwidth = 421;\n}\n);\nunicode = 8250;\n},\n{\nglyphname = quotedbl;\nlastChange = \"2024-11-21 10:01:53 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(298,490,l),\n(305,519,o),\n(336,635,o),\n(336,667,c),\n(336,699,o),\n(313,720,o),\n(286,720,cs),\n(257,720,o),\n(234,699,o),\n(234,667,c),\n(234,635,o),\n(266,519,o),\n(273,490,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(149,490,l),\n(156,519,o),\n(187,635,o),\n(187,667,c),\n(187,699,o),\n(164,720,o),\n(137,720,cs),\n(108,720,o),\n(85,699,o),\n(85,667,c),\n(85,635,o),\n(117,519,o),\n(124,490,c)\n);\n}\n);\nwidth = 421;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"24C34471-2878-49D9-AC64-055C689381E7\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(354,459,l),\n(387,579,o),\n(401,624,o),\n(401,651,cs),\n(401,689,o),\n(371,721,o),\n(335,721,cs),\n(298,721,o),\n(266,689,o),\n(266,651,cs),\n(266,625,o),\n(280,579,o),\n(314,459,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(153,459,l),\n(186,579,o),\n(200,624,o),\n(200,651,cs),\n(200,689,o),\n(170,721,o),\n(134,721,cs),\n(97,721,o),\n(65,689,o),\n(65,651,cs),\n(65,625,o),\n(79,579,o),\n(113,459,c)\n);\n}\n);\nwidth = 473;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(320,465,l),\n(328,499,o),\n(364,621,o),\n(364,658,c),\n(364,696,o),\n(337,720,o),\n(306,720,cs),\n(273,720,o),\n(246,696,o),\n(246,658,c),\n(246,621,o),\n(283,499,o),\n(291,465,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(154,465,l),\n(162,499,o),\n(198,621,o),\n(198,658,c),\n(198,696,o),\n(171,720,o),\n(140,720,cs),\n(107,720,o),\n(80,696,o),\n(80,658,c),\n(80,621,o),\n(117,499,o),\n(125,465,c)\n);\n}\n);\nwidth = 444;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,401,l),\n(434,449,o),\n(486,579,o),\n(486,632,c),\n(486,687,o),\n(447,721,o),\n(402,721,cs),\n(356,721,o),\n(317,687,o),\n(317,632,c),\n(317,579,o),\n(371,449,o),\n(381,401,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,401,l),\n(197,449,o),\n(249,579,o),\n(249,632,c),\n(249,687,o),\n(210,721,o),\n(167,721,cs),\n(119,721,o),\n(80,687,o),\n(80,632,c),\n(80,579,o),\n(134,449,o),\n(145,401,c)\n);\n}\n);\nwidth = 566;\n}\n);\nunicode = 34;\n},\n{\nglyphname = quotesingle;\nlastChange = \"2024-10-21 04:23:48 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(149,490,l),\n(156,519,o),\n(187,635,o),\n(187,667,c),\n(187,699,o),\n(164,720,o),\n(137,720,cs),\n(108,720,o),\n(85,699,o),\n(85,667,c),\n(85,635,o),\n(117,519,o),\n(124,490,c)\n);\n}\n);\nwidth = 272;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(158,459,l),\n(191,579,o),\n(205,624,o),\n(205,651,cs),\n(205,689,o),\n(175,721,o),\n(139,721,cs),\n(102,721,o),\n(70,689,o),\n(70,651,cs),\n(70,625,o),\n(84,579,o),\n(118,459,c)\n);\n}\n);\nwidth = 282;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(154,465,l),\n(162,499,o),\n(198,621,o),\n(198,658,c),\n(198,696,o),\n(171,720,o),\n(140,720,cs),\n(107,720,o),\n(80,696,o),\n(80,658,c),\n(80,621,o),\n(117,499,o),\n(125,465,c)\n);\n}\n);\nwidth = 278;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(186,401,l),\n(197,449,o),\n(249,579,o),\n(249,632,c),\n(249,687,o),\n(210,721,o),\n(167,721,cs),\n(119,721,o),\n(80,687,o),\n(80,632,c),\n(80,579,o),\n(134,449,o),\n(145,401,c)\n);\n}\n);\nwidth = 329;\n}\n);\nunicode = 39;\n},\n{\nglyphname = baht;\nlastChange = \"2024-11-07 17:16:35 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(330,0,ls),\n(482,0,o),\n(567,70,o),\n(567,197,cs),\n(567,283,o),\n(519,343,o),\n(425,365,c),\n(484,383,o),\n(528,437,o),\n(528,524,cs),\n(528,637,o),\n(455,701,o),\n(319,701,cs),\n(100,701,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(337,-91,l),\n(337,791,l),\n(277,791,l),\n(277,-91,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,330,l),\n(160,330,o),\n(349,330,o),\n(349,330,cs),\n(438,330,o),\n(505,275,o),\n(505,197,cs),\n(505,108,o),\n(442,56,o),\n(340,56,cs),\n(160,56,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,645,l),\n(160,645,o),\n(314,645,o),\n(314,645,cs),\n(425,645,o),\n(466,596,o),\n(466,523,cs),\n(466,437,o),\n(412,386,o),\n(315,386,cs),\n(160,386,l)\n);\n}\n);\nwidth = 627;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(343,0,ls),\n(508,0,o),\n(587,73,o),\n(587,200,cs),\n(587,287,o),\n(539,344,o),\n(445,366,c),\n(504,384,o),\n(548,424,o),\n(548,521,cs),\n(548,637,o),\n(472,701,o),\n(335,701,cs),\n(110,701,l),\n(110,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(365,-91,l),\n(365,791,l),\n(285,791,l),\n(285,-91,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(198,319,l),\n(198,319,o),\n(353,319,o),\n(353,319,cs),\n(445,319,o),\n(495,267,o),\n(495,200,cs),\n(495,120,o),\n(440,80,o),\n(343,80,cs),\n(198,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(198,621,l),\n(198,621,o),\n(330,621,o),\n(330,621,cs),\n(403,621,o),\n(457,587,o),\n(457,520,cs),\n(457,435,o),\n(404,399,o),\n(331,399,cs),\n(198,399,l)\n);\n}\n);\nwidth = 645;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,0,ls),\n(573,0,o),\n(657,77,o),\n(657,204,cs),\n(657,283,o),\n(610,341,o),\n(532,363,c),\n(577,386,o),\n(618,434,o),\n(618,518,cs),\n(618,620,o),\n(542,701,o),\n(394,701,cs),\n(109,701,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(413,-112,l),\n(413,812,l),\n(273,812,l),\n(273,-112,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,293,l),\n(255,293,o),\n(392,293,o),\n(392,293,c),\n(459,293,o),\n(503,264,o),\n(503,211,cs),\n(503,145,o),\n(459,126,o),\n(382,126,cs),\n(255,126,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,575,l),\n(255,575,o),\n(376,575,o),\n(376,575,cs),\n(432,575,o),\n(465,549,o),\n(465,504,cs),\n(465,441,o),\n(432,419,o),\n(377,419,cs),\n(255,419,l)\n);\n}\n);\nwidth = 679;\n},\n{\nassociatedMasterId = m003;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"146F865F-F0A7-457A-8702-6F6D77ADE7D3\";\nname = \"7 Nov 24 at 18:15\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,0,ls),\n(573,0,o),\n(657,77,o),\n(657,204,cs),\n(657,283,o),\n(610,341,o),\n(532,363,c),\n(577,386,o),\n(618,434,o),\n(618,518,cs),\n(618,620,o),\n(542,701,o),\n(394,701,cs),\n(109,701,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(413,653,l),\n(413,812,l),\n(273,812,l),\n(273,653,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,293,l),\n(255,293,o),\n(392,293,o),\n(392,293,c),\n(459,293,o),\n(503,264,o),\n(503,211,cs),\n(503,145,o),\n(459,126,o),\n(382,126,cs),\n(255,126,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(255,575,l),\n(255,575,o),\n(376,575,o),\n(376,575,cs),\n(432,575,o),\n(465,549,o),\n(465,504,cs),\n(465,441,o),\n(432,419,o),\n(377,419,cs),\n(255,419,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(273,25,l),\n(273,-112,l),\n(413,-112,l),\n(413,25,l)\n);\n}\n);\nwidth = 679;\n},\n{\nassociatedMasterId = m002;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"58BBDCE9-3238-4861-830D-775DCFB9C0AA\";\nname = \"7 Nov 24 at 18:15\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(343,0,ls),\n(508,0,o),\n(587,73,o),\n(587,200,cs),\n(587,287,o),\n(539,344,o),\n(445,366,c),\n(504,384,o),\n(548,424,o),\n(548,521,cs),\n(548,637,o),\n(472,701,o),\n(335,701,cs),\n(110,701,l),\n(110,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(365,649,l),\n(365,791,l),\n(285,791,l),\n(285,649,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(198,319,l),\n(198,319,o),\n(353,319,o),\n(353,319,cs),\n(445,319,o),\n(495,267,o),\n(495,200,cs),\n(495,120,o),\n(440,80,o),\n(343,80,cs),\n(198,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(198,621,l),\n(198,621,o),\n(330,621,o),\n(330,621,cs),\n(403,621,o),\n(457,587,o),\n(457,520,cs),\n(457,435,o),\n(404,399,o),\n(331,399,cs),\n(198,399,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(285,49,l),\n(285,-91,l),\n(365,-91,l),\n(365,49,l)\n);\n}\n);\nwidth = 645;\n},\n{\nassociatedMasterId = m01;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"D6CB5547-73D4-4B35-8ABC-68B8B3C69349\";\nname = \"7 Nov 24 at 18:15\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(330,0,ls),\n(482,0,o),\n(567,70,o),\n(567,197,cs),\n(567,283,o),\n(519,343,o),\n(425,365,c),\n(484,383,o),\n(528,437,o),\n(528,524,cs),\n(528,637,o),\n(455,701,o),\n(319,701,cs),\n(100,701,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(337,671,l),\n(337,791,l),\n(277,791,l),\n(277,671,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,330,l),\n(160,330,o),\n(349,330,o),\n(349,330,cs),\n(438,330,o),\n(505,275,o),\n(505,197,cs),\n(505,108,o),\n(442,56,o),\n(340,56,cs),\n(160,56,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,645,l),\n(160,645,o),\n(314,645,o),\n(314,645,cs),\n(425,645,o),\n(466,596,o),\n(466,523,cs),\n(466,437,o),\n(412,386,o),\n(315,386,cs),\n(160,386,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(277,31,l),\n(277,-91,l),\n(337,-91,l),\n(337,31,l)\n);\n}\n);\nwidth = 627;\n}\n);\nunicode = 3647;\n},\n{\nglyphname = at;\nlastChange = \"2024-11-02 00:31:58 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,129,o),\n(300,180,o),\n(310,287,cs),\n(317,373,o),\n(373,442,o),\n(446,442,cs),\n(493,442,o),\n(559,396,o),\n(547,285,cs),\n(536,176,o),\n(464,129,o),\n(402,129,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(786,80,o),\n(839,213,o),\n(839,348,cs),\n(839,529,o),\n(714,712,o),\n(456,712,cs),\n(193,712,o),\n(50,512,o),\n(50,279,cs),\n(50,57,o),\n(196,-141,o),\n(460,-141,cs),\n(601,-141,o),\n(696,-94,o),\n(773,-35,c),\n(743,17,l),\n(663,-45,o),\n(572,-85,o),\n(460,-85,cs),\n(259,-85,o),\n(112,67,o),\n(112,281,cs),\n(112,502,o),\n(259,656,o),\n(456,656,cs),\n(648,656,o),\n(777,530,o),\n(777,348,cs),\n(777,210,o),\n(727,134,o),\n(662,134,cs),\n(628,134,o),\n(591,155,o),\n(596,207,c),\n(635,481,l),\n(568,481,l),\n(560,406,l),\n(548,450,o),\n(502,492,o),\n(441,492,cs),\n(346,492,o),\n(264,418,o),\n(251,285,cs),\n(237,155,o),\n(310,79,o),\n(397,79,cs),\n(455,79,o),\n(522,114,o),\n(541,161,c),\n(552,116,o),\n(590,80,o),\n(654,80,cs)\n);\n}\n);\nwidth = 889;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(366,148,o),\n(338,214,o),\n(346,284,cs),\n(355,354,o),\n(396,416,o),\n(466,416,cs),\n(542,416,o),\n(571,350,o),\n(563,280,cs),\n(555,211,o),\n(512,148,o),\n(434,148,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(837,72,o),\n(884,249,o),\n(884,348,cs),\n(884,539,o),\n(735,712,o),\n(481,712,cs),\n(219,712,o),\n(60,512,o),\n(60,279,cs),\n(60,57,o),\n(201,-151,o),\n(481,-151,cs),\n(618,-151,o),\n(700,-118,o),\n(787,-56,c),\n(745,14,l),\n(670,-45,o),\n(587,-70,o),\n(481,-70,cs),\n(268,-70,o),\n(147,84,o),\n(147,281,cs),\n(147,478,o),\n(285,632,o),\n(481,632,cs),\n(665,632,o),\n(800,512,o),\n(800,348,cs),\n(800,264,o),\n(766,149,o),\n(682,149,cs),\n(658,149,o),\n(632,170,o),\n(634,204,c),\n(667,483,l),\n(593,483,l),\n(584,404,l),\n(568,461,o),\n(513,492,o),\n(463,492,cs),\n(343,492,o),\n(274,388,o),\n(260,293,cs),\n(243,175,o),\n(307,72,o),\n(412,72,cs),\n(467,72,o),\n(536,102,o),\n(560,144,c),\n(573,106,o),\n(608,72,o),\n(672,72,cs)\n);\n}\n);\nwidth = 944;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(424,162,o),\n(399,217,o),\n(407,280,cs),\n(415,335,o),\n(448,372,o),\n(497,372,cs),\n(559,372,o),\n(577,322,o),\n(570,270,cs),\n(562,201,o),\n(530,162,o),\n(479,162,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(818,55,o),\n(944,171,o),\n(944,340,cs),\n(944,550,o),\n(782,712,o),\n(504,712,cs),\n(229,712,o),\n(52,519,o),\n(52,264,cs),\n(52,23,o),\n(222,-183,o),\n(507,-183,cs),\n(649,-183,o),\n(751,-149,o),\n(839,-88,c),\n(781,14,l),\n(693,-39,o),\n(617,-61,o),\n(507,-61,cs),\n(320,-61,o),\n(190,70,o),\n(190,267,cs),\n(190,435,o),\n(323,590,o),\n(504,590,cs),\n(674,590,o),\n(806,519,o),\n(806,340,cs),\n(806,248,o),\n(768,176,o),\n(723,176,cs),\n(690,176,o),\n(687,207,o),\n(691,245,cs),\n(712,469,l),\n(593,469,l),\n(587,403,l),\n(571,445,o),\n(535,478,o),\n(476,478,cs),\n(384,478,o),\n(289,407,o),\n(275,276,cs),\n(262,150,o),\n(339,54,o),\n(443,54,cs),\n(541,54,o),\n(574,126,o),\n(590,167,c),\n(582,106,o),\n(651,55,o),\n(700,55,cs)\n);\n}\n);\nwidth = 996;\n}\n);\nunicode = 64;\n},\n{\nglyphname = ampersand;\nlastChange = \"2024-11-02 04:44:51 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(510,-13,o),\n(588,171,o),\n(588,336,c),\n(530,336,l),\n(530,187,o),\n(460,43,o),\n(310,43,cs),\n(204,43,o),\n(144,109,o),\n(144,173,cs),\n(144,255,o),\n(206,299,o),\n(302,364,cs),\n(408,435,o),\n(463,504,o),\n(463,570,cs),\n(463,653,o),\n(404,712,o),\n(308,712,cs),\n(207,712,o),\n(149,638,o),\n(149,556,cs),\n(149,465,o),\n(198,416,o),\n(232,376,c),\n(582,0,l),\n(626,40,l),\n(279,413,l),\n(242,453,o),\n(211,492,o),\n(211,556,cs),\n(211,602,o),\n(237,656,o),\n(307,656,cs),\n(365,656,o),\n(401,622,o),\n(401,570,cs),\n(401,525,o),\n(365,480,o),\n(265,411,cs),\n(134,321,o),\n(82,271,o),\n(82,173,cs),\n(82,62,o),\n(172,-13,o),\n(314,-13,cs)\n);\n}\n);\nwidth = 693;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(524,-12,o),\n(616,180,o),\n(618,347,c),\n(536,347,l),\n(534,214,o),\n(464,70,o),\n(316,70,cs),\n(220,70,o),\n(172,124,o),\n(172,188,cs),\n(172,270,o),\n(227,306,o),\n(316,343,cs),\n(422,387,o),\n(487,485,o),\n(487,556,cs),\n(487,650,o),\n(411,713,o),\n(314,713,cs),\n(198,713,o),\n(140,638,o),\n(140,544,cs),\n(140,460,o),\n(180,420,o),\n(214,380,c),\n(595,0,l),\n(654,56,l),\n(288,424,l),\n(255,463,o),\n(232,491,o),\n(232,540,cs),\n(232,585,o),\n(261,633,o),\n(313,633,cs),\n(353,633,o),\n(395,603,o),\n(395,556,cs),\n(395,510,o),\n(369,449,o),\n(278,412,cs),\n(139,355,o),\n(80,290,o),\n(80,184,cs),\n(80,73,o),\n(170,-12,o),\n(316,-12,cs)\n);\n}\n);\nwidth = 706;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(556,-12,o),\n(656,210,o),\n(656,375,c),\n(524,375,l),\n(524,238,o),\n(447,113,o),\n(332,113,cs),\n(251,113,o),\n(216,150,o),\n(216,194,cs),\n(216,243,o),\n(243,263,o),\n(336,317,cs),\n(458,388,o),\n(533,467,o),\n(533,542,cs),\n(533,656,o),\n(441,713,o),\n(328,713,cs),\n(205,713,o),\n(123,635,o),\n(123,542,cs),\n(123,457,o),\n(152,420,o),\n(186,380,c),\n(607,-12,l),\n(696,80,l),\n(332,426,l),\n(298,466,o),\n(272,488,o),\n(272,535,cs),\n(272,568,o),\n(296,592,o),\n(327,592,cs),\n(358,592,o),\n(383,568,o),\n(383,535,cs),\n(383,506,o),\n(344,462,o),\n(273,418,cs),\n(145,339,o),\n(66,290,o),\n(66,188,cs),\n(66,70,o),\n(154,-12,o),\n(332,-12,cs)\n);\n}\n);\nwidth = 732;\n}\n);\nunicode = 38;\n},\n{\nglyphname = paragraph;\nlastChange = \"2024-10-21 04:24:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(544,0,l),\n(544,56,l),\n(457,56,l),\n(457,644,l),\n(544,644,l),\n(544,700,l),\n(212,700,ls),\n(142,700,o),\n(60,637,o),\n(60,535,cs),\n(60,429,o),\n(142,371,o),\n(212,371,c),\n(212,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(272,644,l),\n(397,644,l),\n(397,54,l),\n(272,54,l)\n);\n}\n);\nwidth = 612;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(603,0,l),\n(603,80,l),\n(484,80,l),\n(484,620,l),\n(603,620,l),\n(603,700,l),\n(224,700,ls),\n(142,700,o),\n(60,637,o),\n(60,535,cs),\n(60,429,o),\n(142,371,o),\n(224,371,c),\n(224,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(312,620,l),\n(396,620,l),\n(396,78,l),\n(312,78,l)\n);\n}\n);\nwidth = 669;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(747,0,l),\n(747,126,l),\n(628,126,l),\n(628,574,l),\n(747,574,l),\n(747,700,l),\n(219,700,ls),\n(137,700,o),\n(54,628,o),\n(54,526,cs),\n(54,420,o),\n(137,352,o),\n(219,352,c),\n(219,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(365,574,l),\n(482,574,l),\n(482,124,l),\n(365,124,l)\n);\n}\n);\nwidth = 807;\n}\n);\nunicode = 182;\n},\n{\nglyphname = section;\nlastChange = \"2024-11-02 04:46:33 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,85,o),\n(445,170,o),\n(445,241,cs),\n(445,443,o),\n(122,445,o),\n(122,562,cs),\n(122,605,o),\n(153,657,o),\n(244,657,cs),\n(316,657,o),\n(368,614,o),\n(368,565,c),\n(427,565,l),\n(427,628,o),\n(372,712,o),\n(245,712,cs),\n(123,712,o),\n(60,649,o),\n(60,559,cs),\n(60,395,o),\n(383,400,o),\n(383,241,cs),\n(383,188,o),\n(311,131,o),\n(270,124,c),\n(288,76,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(360,-184,o),\n(420,-121,o),\n(420,-31,cs),\n(420,131,o),\n(106,129,o),\n(106,288,cs),\n(106,344,o),\n(172,400,o),\n(213,407,c),\n(201,452,l),\n(111,443,o),\n(44,360,o),\n(44,288,cs),\n(44,86,o),\n(358,83,o),\n(358,-34,cs),\n(358,-77,o),\n(330,-129,o),\n(239,-129,cs),\n(164,-129,o),\n(112,-86,o),\n(112,-37,c),\n(53,-37,l),\n(53,-100,o),\n(108,-184,o),\n(238,-184,cs)\n);\n}\n);\nwidth = 489;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,82,o),\n(473,156,o),\n(473,240,cs),\n(473,417,o),\n(161,439,o),\n(161,552,cs),\n(161,595,o),\n(193,635,o),\n(258,635,cs),\n(330,635,o),\n(368,599,o),\n(368,565,c),\n(454,565,l),\n(454,628,o),\n(404,712,o),\n(259,712,cs),\n(137,712,o),\n(77,623,o),\n(77,549,cs),\n(77,358,o),\n(388,363,o),\n(388,240,cs),\n(388,187,o),\n(335,146,o),\n(294,139,c),\n(314,73,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(388,-205,o),\n(448,-116,o),\n(448,-42,cs),\n(448,150,o),\n(137,150,o),\n(137,271,cs),\n(137,320,o),\n(174,356,o),\n(226,373,c),\n(211,434,l),\n(121,425,o),\n(52,351,o),\n(52,271,cs),\n(52,95,o),\n(364,69,o),\n(364,-45,cs),\n(364,-87,o),\n(332,-128,o),\n(267,-128,cs),\n(195,-128,o),\n(157,-92,o),\n(157,-58,c),\n(71,-58,l),\n(71,-121,o),\n(121,-205,o),\n(266,-205,cs)\n);\n}\n);\nwidth = 525;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(530,90,o),\n(594,146,o),\n(594,221,cs),\n(594,472,o),\n(205,428,o),\n(205,519,cs),\n(205,564,o),\n(252,583,o),\n(313,583,cs),\n(369,583,o),\n(421,554,o),\n(435,479,c),\n(591,479,l),\n(578,594,o),\n(507,713,o),\n(313,713,cs),\n(154,713,o),\n(51,651,o),\n(51,514,cs),\n(51,322,o),\n(450,340,o),\n(450,212,cs),\n(450,143,o),\n(357,124,o),\n(357,124,c),\n(485,72,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(474,-230,o),\n(577,-166,o),\n(577,-29,cs),\n(577,156,o),\n(180,150,o),\n(180,270,cs),\n(180,342,o),\n(271,359,o),\n(271,359,c),\n(143,411,l),\n(98,393,o),\n(36,336,o),\n(36,261,cs),\n(36,18,o),\n(423,43,o),\n(423,-41,cs),\n(423,-90,o),\n(376,-100,o),\n(315,-100,cs),\n(259,-100,o),\n(207,-71,o),\n(193,4,c),\n(37,4,l),\n(50,-111,o),\n(121,-230,o),\n(315,-230,cs)\n);\n}\n);\nwidth = 630;\n}\n);\nunicode = 167;\n},\n{\nglyphname = copyright;\nlastChange = \"2024-11-07 17:16:42 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(602,-12,o),\n(730,164,o),\n(730,353,cs),\n(730,544,o),\n(602,720,o),\n(380,720,cs),\n(158,720,o),\n(30,544,o),\n(30,353,cs),\n(30,164,o),\n(158,-12,o),\n(380,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(214,44,o),\n(92,170,o),\n(92,354,cs),\n(92,532,o),\n(213,664,o),\n(380,664,cs),\n(547,664,o),\n(668,532,o),\n(668,354,cs),\n(668,170,o),\n(546,44,o),\n(380,44,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(463,153,o),\n(509,191,o),\n(536,253,c),\n(482,274,l),\n(466,231,o),\n(431,206,o),\n(385,206,cs),\n(307,206,o),\n(264,269,o),\n(264,353,cs),\n(264,435,o),\n(306,498,o),\n(385,498,cs),\n(431,498,o),\n(466,474,o),\n(482,431,c),\n(536,451,l),\n(509,515,o),\n(454,551,o),\n(387,551,cs),\n(291,551,o),\n(206,484,o),\n(206,351,cs),\n(206,219,o),\n(291,153,o),\n(387,153,cs)\n);\n}\n);\nwidth = 760;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(650,-12,o),\n(778,164,o),\n(778,353,cs),\n(778,544,o),\n(650,720,o),\n(424,720,cs),\n(198,720,o),\n(70,544,o),\n(70,353,cs),\n(70,164,o),\n(198,-12,o),\n(424,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(268,69,o),\n(157,184,o),\n(157,353,cs),\n(157,518,o),\n(267,640,o),\n(424,640,cs),\n(581,640,o),\n(692,518,o),\n(692,353,cs),\n(692,184,o),\n(580,69,o),\n(424,69,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(496,151,o),\n(555,188,o),\n(581,252,c),\n(514,279,l),\n(500,242,o),\n(472,227,o),\n(429,227,cs),\n(368,227,o),\n(332,279,o),\n(332,353,cs),\n(332,423,o),\n(363,478,o),\n(429,478,cs),\n(468,478,o),\n(500,463,o),\n(514,425,c),\n(581,448,l),\n(555,512,o),\n(497,554,o),\n(429,554,cs),\n(333,554,o),\n(248,477,o),\n(248,351,cs),\n(248,228,o),\n(333,151,o),\n(429,151,cs)\n);\n}\n);\nwidth = 848;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(671,-13,o),\n(799,164,o),\n(799,353,cs),\n(799,544,o),\n(671,719,o),\n(430,720,cs),\n(188,721,o),\n(60,545,o),\n(60,354,cs),\n(60,165,o),\n(188,-11,o),\n(430,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(293,109,o),\n(183,211,o),\n(183,354,cs),\n(183,493,o),\n(282,601,o),\n(430,600,cs),\n(577,599,o),\n(676,492,o),\n(676,353,cs),\n(676,210,o),\n(576,107,o),\n(430,108,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(504,175,o),\n(564,214,o),\n(587,274,c),\n(499,314,l),\n(488,289,o),\n(464,279,o),\n(439,279,cs),\n(396,279,o),\n(374,312,o),\n(374,355,cs),\n(374,394,o),\n(396,428,o),\n(439,428,cs),\n(463,428,o),\n(485,420,o),\n(499,392,c),\n(586,433,l),\n(563,493,o),\n(505,532,o),\n(440,532,cs),\n(338,532,o),\n(264,466,o),\n(264,352,cs),\n(264,241,o),\n(336,175,o),\n(440,175,cs)\n);\n}\n);\nwidth = 859;\n}\n);\nunicode = 169;\n},\n{\nglyphname = registered;\nlastChange = \"2024-11-02 00:32:34 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,276,o),\n(450,382,o),\n(450,494,cs),\n(450,607,o),\n(371,712,o),\n(236,712,cs),\n(101,712,o),\n(22,607,o),\n(22,494,cs),\n(22,382,o),\n(101,276,o),\n(236,276,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(139,318,o),\n(66,387,o),\n(66,494,cs),\n(66,596,o),\n(139,670,o),\n(236,670,cs),\n(333,670,o),\n(405,596,o),\n(405,494,cs),\n(405,387,o),\n(333,318,o),\n(236,318,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(288,381,l),\n(332,381,l),\n(273,475,l),\n(234,471,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,381,l),\n(195,465,l),\n(243,465,ls),\n(291,465,o),\n(322,493,o),\n(322,537,cs),\n(322,585,o),\n(288,613,o),\n(244,613,cs),\n(156,613,l),\n(156,381,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,573,l),\n(247,573,ls),\n(267,573,o),\n(282,559,o),\n(282,538,cs),\n(282,515,o),\n(267,505,o),\n(247,505,cs),\n(195,505,l)\n);\n}\n);\nwidth = 472;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,276,o),\n(450,382,o),\n(450,494,cs),\n(450,607,o),\n(371,712,o),\n(236,712,cs),\n(101,712,o),\n(22,607,o),\n(22,494,cs),\n(22,382,o),\n(101,276,o),\n(236,276,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(143,326,o),\n(76,391,o),\n(76,494,cs),\n(76,592,o),\n(143,662,o),\n(236,662,cs),\n(329,662,o),\n(396,592,o),\n(396,494,cs),\n(396,391,o),\n(329,326,o),\n(236,326,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(285,381,l),\n(337,381,l),\n(278,475,l),\n(231,471,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(200,381,l),\n(200,464,l),\n(245,464,ls),\n(293,464,o),\n(324,494,o),\n(324,538,cs),\n(324,586,o),\n(288,613,o),\n(244,613,cs),\n(155,613,l),\n(155,381,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(200,568,l),\n(244,568,ls),\n(264,568,o),\n(277,555,o),\n(277,539,cs),\n(277,519,o),\n(264,508,o),\n(244,508,cs),\n(200,508,l)\n);\n}\n);\nwidth = 472;\n},\n{\nguides = (\n{\npos = (-293,319);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(376,262,o),\n(457,371,o),\n(457,490,cs),\n(457,604,o),\n(376,712,o),\n(236,712,cs),\n(96,712,o),\n(15,612,o),\n(15,490,cs),\n(15,379,o),\n(96,262,o),\n(236,262,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,325,o),\n(81,389,o),\n(81,490,cs),\n(81,582,o),\n(147,650,o),\n(236,650,cs),\n(325,650,o),\n(391,582,o),\n(391,490,cs),\n(391,389,o),\n(325,325,o),\n(236,325,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(278,374,l),\n(337,374,l),\n(278,466,l),\n(224,462,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(208,374,l),\n(208,452,l),\n(248,452,ls),\n(296,452,o),\n(323,485,o),\n(323,531,cs),\n(323,581,o),\n(289,606,o),\n(246,606,cs),\n(154,606,l),\n(154,374,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(207,555,l),\n(240,555,ls),\n(259,555,o),\n(269,543,o),\n(270,530,cs),\n(271,513,o),\n(260,503,o),\n(240,503,cs),\n(208,503,l)\n);\n}\n);\nwidth = 472;\n}\n);\nunicode = 174;\n},\n{\nglyphname = trademark;\nlastChange = \"2024-11-02 00:33:15 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(406,319,l),\n(406,609,l),\n(501,367,l),\n(537,367,l),\n(646,609,l),\n(646,319,l),\n(704,319,l),\n(704,700,l),\n(632,700,l),\n(521,453,l),\n(419,700,l),\n(348,700,l),\n(348,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(184,319,l),\n(184,648,l),\n(290,648,l),\n(290,700,l),\n(20,700,l),\n(20,648,l),\n(124,648,l),\n(124,319,l)\n);\n}\n);\nwidth = 724;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(446,319,l),\n(446,570,l),\n(541,351,l),\n(582,351,l),\n(677,570,l),\n(677,319,l),\n(753,319,l),\n(753,700,l),\n(663,700,l),\n(562,475,l),\n(461,700,l),\n(370,700,l),\n(370,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(212,319,l),\n(212,636,l),\n(319,636,l),\n(319,700,l),\n(30,700,l),\n(30,636,l),\n(134,636,l),\n(134,319,l)\n);\n}\n);\nwidth = 783;\n},\n{\nguides = (\n{\npos = (-112,319);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(508,319,l),\n(508,522,l),\n(588,349,l),\n(633,349,l),\n(713,522,l),\n(713,319,l),\n(819,319,l),\n(819,700,l),\n(710,700,l),\n(611,492,l),\n(511,700,l),\n(402,700,l),\n(402,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(240,319,l),\n(240,604,l),\n(345,604,l),\n(345,700,l),\n(30,700,l),\n(30,604,l),\n(132,604,l),\n(132,319,l)\n);\n}\n);\nwidth = 849;\n}\n);\nunicode = 8482;\n},\n{\nglyphname = degree;\nlastChange = \"2024-11-22 04:55:03 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(273,444,o),\n(322,511,o),\n(322,582,cs),\n(322,655,o),\n(273,720,o),\n(188,720,cs),\n(104,720,o),\n(55,655,o),\n(55,582,cs),\n(55,511,o),\n(104,444,o),\n(188,444,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(139,495,o),\n(104,531,o),\n(104,582,cs),\n(104,632,o),\n(139,670,o),\n(188,670,cs),\n(238,670,o),\n(273,632,o),\n(273,582,cs),\n(273,531,o),\n(238,495,o),\n(188,495,cs)\n);\n}\n);\nwidth = 377;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(274,434,o),\n(325,503,o),\n(325,576,cs),\n(325,652,o),\n(274,720,o),\n(186,720,cs),\n(99,720,o),\n(48,652,o),\n(48,576,cs),\n(48,503,o),\n(99,434,o),\n(186,434,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(141,496,o),\n(109,529,o),\n(109,576,cs),\n(109,624,o),\n(141,658,o),\n(186,658,cs),\n(232,658,o),\n(264,624,o),\n(264,576,cs),\n(264,529,o),\n(232,496,o),\n(186,496,cs)\n);\n}\n);\nwidth = 373;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(279,419,o),\n(332,492,o),\n(332,569,cs),\n(332,649,o),\n(279,720,o),\n(186,720,cs),\n(94,720,o),\n(41,649,o),\n(41,569,cs),\n(41,492,o),\n(94,419,o),\n(186,419,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(150,504,o),\n(123,532,o),\n(123,569,cs),\n(123,606,o),\n(150,634,o),\n(186,634,c),\n(223,634,o),\n(250,606,o),\n(250,569,c),\n(250,532,o),\n(223,504,o),\n(186,504,cs)\n);\n}\n);\nwidth = 373;\n}\n);\nunicode = 176;\n},\n{\nglyphname = bar;\nlastChange = \"2024-09-09 06:20:25 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (175,-160);\n},\n{\npos = (144,775);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(155,-160,l),\n(155,775,l),\n(100,775,l),\n(100,-160,l)\n);\n}\n);\nwidth = 255;\n},\n{\nguides = (\n{\npos = (-259,-160);\n},\n{\npos = (-259,776);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(177,-160,l),\n(177,776,l),\n(97,776,l),\n(97,-160,l)\n);\n}\n);\nwidth = 274;\n},\n{\nguides = (\n{\npos = (-305,-159);\n},\n{\npos = (-57,775);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(230,-159,l),\n(230,775,l),\n(100,775,l),\n(100,-159,l)\n);\n}\n);\nwidth = 330;\n}\n);\nunicode = 124;\n},\n{\nglyphname = numero;\nlastChange = \"2024-11-09 02:52:27 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,0,l),\n(160,656,l),\n(129,656,l),\n(506,0,l),\n(581,0,l),\n(581,700,l),\n(521,700,l),\n(521,44,l),\n(552,44,l),\n(176,700,l),\n(100,700,l),\n(100,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(683,249,l),\n(977,248,l),\n(977,307,l),\n(683,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(909,370,o),\n(977,429,o),\n(977,541,cs),\n(977,653,o),\n(909,712,o),\n(828,712,cs),\n(747,712,o),\n(679,653,o),\n(679,541,cs),\n(679,429,o),\n(747,370,o),\n(828,370,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(772,427,o),\n(738,470,o),\n(738,540,cs),\n(738,610,o),\n(772,656,o),\n(828,656,cs),\n(884,656,o),\n(918,611,o),\n(918,541,cs),\n(918,471,o),\n(884,427,o),\n(828,427,cs)\n);\n}\n);\nwidth = 1094;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,0,l),\n(184,623,l),\n(154,623,l),\n(494,0,l),\n(603,0,l),\n(603,700,l),\n(515,700,l),\n(515,77,l),\n(545,77,l),\n(218,700,l),\n(96,700,l),\n(96,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(700,232,l),\n(1022,231,l),\n(1022,307,l),\n(700,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(951,354,o),\n(1022,416,o),\n(1022,533,cs),\n(1022,650,o),\n(951,712,o),\n(861,712,cs),\n(771,712,o),\n(700,650,o),\n(700,533,cs),\n(700,416,o),\n(771,354,o),\n(861,354,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(805,428,o),\n(773,468,o),\n(773,532,cs),\n(773,596,o),\n(805,639,o),\n(861,639,cs),\n(917,639,o),\n(949,597,o),\n(949,533,cs),\n(949,469,o),\n(917,428,o),\n(861,428,c)\n);\n}\n);\nwidth = 1124;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(230,0,l),\n(230,504,l),\n(198,504,l),\n(505,0,l),\n(649,0,l),\n(649,700,l),\n(503,700,l),\n(503,204,l),\n(535,204,l),\n(240,700,l),\n(84,700,l),\n(84,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(743,198,l),\n(1096,198,l),\n(1096,308,l),\n(743,308,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(1010,349,o),\n(1101,405,o),\n(1101,530,cs),\n(1101,657,o),\n(1014,712,o),\n(920,712,cs),\n(832,712,o),\n(738,657,o),\n(738,530,cs),\n(738,405,o),\n(827,349,o),\n(920,349,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(880,456,o),\n(859,485,o),\n(859,530,cs),\n(859,575,o),\n(881,605,o),\n(920,605,cs),\n(962,605,o),\n(980,575,o),\n(980,530,cs),\n(980,485,o),\n(962,456,o),\n(920,456,c)\n);\n}\n);\nwidth = 1208;\n}\n);\nunicode = 8470;\n},\n{\nglyphname = cent;\nlastChange = \"2024-11-07 17:19:31 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,91,o),\n(442,138,o),\n(481,224,c),\n(429,245,l),\n(408,189,o),\n(361,141,o),\n(284,141,cs),\n(172,141,o),\n(113,224,o),\n(113,353,cs),\n(113,482,o),\n(172,565,o),\n(284,565,cs),\n(360,565,o),\n(411,516,o),\n(432,466,c),\n(484,486,l),\n(445,571,o),\n(373,615,o),\n(284,615,cs),\n(159,615,o),\n(55,525,o),\n(55,353,cs),\n(55,181,o),\n(159,91,o),\n(284,91,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(302,0,l),\n(302,700,l),\n(246,700,l),\n(246,0,l)\n);\n}\n);\nwidth = 538;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(384,95,o),\n(461,143,o),\n(496,226,c),\n(420,256,l),\n(399,205,o),\n(356,171,o),\n(296,171,cs),\n(195,171,o),\n(144,255,o),\n(144,359,cs),\n(144,463,o),\n(195,544,o),\n(296,544,cs),\n(356,544,o),\n(399,510,o),\n(420,459,c),\n(496,489,l),\n(461,572,o),\n(386,620,o),\n(298,620,cs),\n(172,620,o),\n(60,520,o),\n(60,356,cs),\n(60,195,o),\n(172,95,o),\n(298,95,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(328,0,l),\n(328,700,l),\n(248,700,l),\n(248,0,l)\n);\n}\n);\nwidth = 556;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(411,87,o),\n(489,134,o),\n(528,226,c),\n(412,272,l),\n(400,240,o),\n(364,207,o),\n(318,207,cs),\n(246,207,o),\n(200,262,o),\n(200,354,cs),\n(200,446,o),\n(246,499,o),\n(318,499,cs),\n(364,499,o),\n(400,466,o),\n(412,434,c),\n(528,480,l),\n(489,572,o),\n(411,619,o),\n(323,619,cs),\n(160,619,o),\n(54,519,o),\n(54,353,cs),\n(54,187,o),\n(160,87,o),\n(323,87,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(374,1,l),\n(374,700,l),\n(234,700,l),\n(234,1,l)\n);\n}\n);\nwidth = 582;\n},\n{\nassociatedMasterId = m003;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"280F69CE-47B6-4046-8CCF-B9C082780243\";\nname = \"7 Nov 24 at 18:17\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(411,87,o),\n(489,134,o),\n(528,226,c),\n(412,272,l),\n(400,240,o),\n(364,207,o),\n(318,207,cs),\n(246,207,o),\n(200,262,o),\n(200,354,cs),\n(200,446,o),\n(246,499,o),\n(318,499,cs),\n(364,499,o),\n(400,466,o),\n(412,434,c),\n(528,480,l),\n(489,572,o),\n(411,619,o),\n(323,619,cs),\n(160,619,o),\n(54,519,o),\n(54,353,cs),\n(54,187,o),\n(160,87,o),\n(323,87,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(374,601,l),\n(374,700,l),\n(234,700,l),\n(234,601,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(234,100,l),\n(234,1,l),\n(374,1,l),\n(374,100,l)\n);\n}\n);\nwidth = 582;\n},\n{\nassociatedMasterId = m002;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"3A6FAC1D-FADA-40F9-92A1-43A177BC82EB\";\nname = \"7 Nov 24 at 18:18\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(384,95,o),\n(461,143,o),\n(496,226,c),\n(420,256,l),\n(399,205,o),\n(356,171,o),\n(296,171,cs),\n(195,171,o),\n(144,255,o),\n(144,359,cs),\n(144,463,o),\n(195,544,o),\n(296,544,cs),\n(356,544,o),\n(399,510,o),\n(420,459,c),\n(496,489,l),\n(461,572,o),\n(386,620,o),\n(298,620,cs),\n(172,620,o),\n(60,520,o),\n(60,356,cs),\n(60,195,o),\n(172,95,o),\n(298,95,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(328,572,l),\n(328,700,l),\n(248,700,l),\n(248,572,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(248,152,l),\n(248,0,l),\n(328,0,l),\n(328,152,l)\n);\n}\n);\nwidth = 556;\n},\n{\nassociatedMasterId = m01;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"A3A43FF9-CB49-45E8-8740-D4BD55CCC712\";\nname = \"7 Nov 24 at 18:18\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,91,o),\n(442,138,o),\n(481,224,c),\n(429,245,l),\n(408,189,o),\n(361,141,o),\n(284,141,cs),\n(172,141,o),\n(113,224,o),\n(113,353,cs),\n(113,482,o),\n(172,565,o),\n(284,565,cs),\n(360,565,o),\n(411,516,o),\n(432,466,c),\n(484,486,l),\n(445,571,o),\n(373,615,o),\n(284,615,cs),\n(159,615,o),\n(55,525,o),\n(55,353,cs),\n(55,181,o),\n(159,91,o),\n(284,91,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(302,593,l),\n(302,700,l),\n(246,700,l),\n(246,593,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(246,123,l),\n(246,0,l),\n(302,0,l),\n(302,123,l)\n);\n}\n);\nwidth = 538;\n}\n);\nunicode = 162;\n},\n{\nglyphname = dollar;\nlastChange = \"2024-11-07 17:21:10 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(437,-12,o),\n(541,58,o),\n(541,195,cs),\n(541,437,o),\n(125,337,o),\n(125,521,cs),\n(125,591,o),\n(183,656,o),\n(290,656,cs),\n(408,656,o),\n(458,580,o),\n(467,513,c),\n(533,513,l),\n(528,603,o),\n(442,712,o),\n(297,712,cs),\n(140,712,o),\n(65,618,o),\n(65,516,cs),\n(65,259,o),\n(481,379,o),\n(481,186,cs),\n(481,114,o),\n(421,44,o),\n(300,44,cs),\n(174,44,o),\n(125,121,o),\n(109,214,c),\n(42,214,l),\n(55,99,o),\n(133,-12,o),\n(300,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(324,-91,l),\n(324,791,l),\n(264,791,l),\n(264,-91,l)\n);\n}\n);\nwidth = 594;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(453,-12,o),\n(559,58,o),\n(559,195,cs),\n(559,457,o),\n(165,344,o),\n(165,521,cs),\n(165,591,o),\n(233,632,o),\n(303,632,cs),\n(398,632,o),\n(446,572,o),\n(456,513,c),\n(549,513,l),\n(544,603,o),\n(463,712,o),\n(310,712,cs),\n(150,712,o),\n(73,618,o),\n(73,516,cs),\n(73,246,o),\n(467,371,o),\n(467,186,cs),\n(467,114,o),\n(396,68,o),\n(313,68,cs),\n(218,68,o),\n(163,129,o),\n(149,214,c),\n(52,214,l),\n(65,99,o),\n(143,-12,o),\n(313,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(348,-91,l),\n(348,791,l),\n(268,791,l),\n(268,-91,l)\n);\n}\n);\nwidth = 597;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(472,-12,o),\n(575,58,o),\n(575,195,c),\n(575,460,o),\n(212,385,o),\n(212,508,cs),\n(212,567,o),\n(270,582,o),\n(314,582,cs),\n(370,582,o),\n(407,554,o),\n(416,505,c),\n(569,505,l),\n(564,595,o),\n(492,712,o),\n(314,712,cs),\n(137,712,o),\n(59,618,o),\n(59,516,c),\n(59,226,o),\n(421,338,o),\n(421,186,c),\n(421,142,o),\n(374,118,o),\n(313,118,c),\n(257,118,o),\n(205,147,o),\n(191,222,c),\n(35,222,l),\n(48,107,o),\n(119,-12,o),\n(313,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(388,-112,l),\n(388,812,l),\n(248,812,l),\n(248,-112,l)\n);\n}\n);\nwidth = 639;\n},\n{\nassociatedMasterId = m003;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"A228A55F-5D4A-4BFE-9EA2-05026646E7A9\";\nname = \"7 Nov 24 at 18:19\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(472,-12,o),\n(575,58,o),\n(575,195,c),\n(575,460,o),\n(212,385,o),\n(212,508,cs),\n(212,567,o),\n(270,582,o),\n(314,582,cs),\n(370,582,o),\n(407,554,o),\n(416,505,c),\n(569,505,l),\n(564,595,o),\n(492,712,o),\n(314,712,cs),\n(137,712,o),\n(59,618,o),\n(59,516,c),\n(59,226,o),\n(421,338,o),\n(421,186,c),\n(421,142,o),\n(374,118,o),\n(313,118,c),\n(257,118,o),\n(205,147,o),\n(191,222,c),\n(35,222,l),\n(48,107,o),\n(119,-12,o),\n(313,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(388,653,l),\n(388,812,l),\n(248,812,l),\n(248,653,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(248,25,l),\n(248,-112,l),\n(388,-112,l),\n(388,25,l)\n);\n}\n);\nwidth = 639;\n},\n{\nassociatedMasterId = m002;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"977ED246-DC2B-4AB2-93BE-62ADE115E105\";\nname = \"7 Nov 24 at 18:19\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(453,-12,o),\n(559,58,o),\n(559,195,cs),\n(559,457,o),\n(165,344,o),\n(165,521,cs),\n(165,591,o),\n(233,632,o),\n(303,632,cs),\n(398,632,o),\n(446,572,o),\n(456,513,c),\n(549,513,l),\n(544,603,o),\n(463,712,o),\n(310,712,cs),\n(150,712,o),\n(73,618,o),\n(73,516,cs),\n(73,246,o),\n(467,371,o),\n(467,186,cs),\n(467,114,o),\n(396,68,o),\n(313,68,cs),\n(218,68,o),\n(163,129,o),\n(149,214,c),\n(52,214,l),\n(65,99,o),\n(143,-12,o),\n(313,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(348,660,l),\n(348,791,l),\n(268,791,l),\n(268,660,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(268,30,l),\n(268,-91,l),\n(348,-91,l),\n(348,30,l)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = m01;\nattr = {\naxisRules = (\n{\nmin = 600;\n}\n);\n};\nlayerId = \"1E7D3510-5BD8-4C64-BDAD-4DBB14FDB730\";\nname = \"7 Nov 24 at 18:20\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(437,-12,o),\n(541,58,o),\n(541,195,cs),\n(541,437,o),\n(125,337,o),\n(125,521,cs),\n(125,591,o),\n(183,656,o),\n(290,656,cs),\n(408,656,o),\n(458,580,o),\n(467,513,c),\n(533,513,l),\n(528,603,o),\n(442,712,o),\n(297,712,cs),\n(140,712,o),\n(65,618,o),\n(65,516,cs),\n(65,259,o),\n(481,379,o),\n(481,186,cs),\n(481,114,o),\n(421,44,o),\n(300,44,cs),\n(174,44,o),\n(125,121,o),\n(109,214,c),\n(42,214,l),\n(55,99,o),\n(133,-12,o),\n(300,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(324,679,l),\n(324,791,l),\n(264,791,l),\n(264,679,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(264,19,l),\n(264,-91,l),\n(324,-91,l),\n(324,19,l)\n);\n}\n);\nwidth = 594;\n}\n);\nunicode = 36;\n},\n{\nglyphname = euro;\nlastChange = \"2024-08-26 00:31:22 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(406,396,l),\n(406,452,l),\n(34,452,l),\n(34,396,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(507,-13,o),\n(596,76,o),\n(624,199,c),\n(564,211,l),\n(539,117,o),\n(474,43,o),\n(385,43,cs),\n(258,43,o),\n(173,167,o),\n(173,357,cs),\n(173,542,o),\n(270,657,o),\n(381,657,cs),\n(464,657,o),\n(542,581,o),\n(560,488,c),\n(624,501,l),\n(596,624,o),\n(511,713,o),\n(381,713,cs),\n(198,713,o),\n(111,541,o),\n(111,355,cs),\n(111,163,o),\n(197,-13,o),\n(385,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(406,260,l),\n(406,316,l),\n(34,316,l),\n(34,260,l)\n);\n}\n);\nwidth = 668;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(416,385,l),\n(416,465,l),\n(20,465,l),\n(20,385,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(503,-13,o),\n(607,75,o),\n(635,198,c),\n(546,216,l),\n(523,130,o),\n(456,67,o),\n(386,67,cs),\n(269,67,o),\n(196,194,o),\n(196,357,cs),\n(196,512,o),\n(269,633,o),\n(386,633,cs),\n(456,633,o),\n(523,570,o),\n(546,484,c),\n(635,502,l),\n(607,625,o),\n(503,713,o),\n(386,713,cs),\n(194,713,o),\n(106,548,o),\n(106,355,cs),\n(106,171,o),\n(193,-13,o),\n(386,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(416,241,l),\n(416,321,l),\n(20,321,l),\n(20,241,l)\n);\n}\n);\nwidth = 660;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,376,l),\n(429,486,l),\n(26,486,l),\n(26,376,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(525,-12,o),\n(623,76,o),\n(651,199,c),\n(510,227,l),\n(496,161,o),\n(446,119,o),\n(396,119,cs),\n(297,119,o),\n(250,198,o),\n(250,357,cs),\n(250,499,o),\n(291,583,o),\n(390,583,cs),\n(446,583,o),\n(495,532,o),\n(510,474,c),\n(651,502,l),\n(623,625,o),\n(496,713,o),\n(390,713,cs),\n(188,713,o),\n(96,549,o),\n(96,355,cs),\n(96,171,o),\n(172,-12,o),\n(396,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(429,211,l),\n(429,321,l),\n(26,321,l),\n(26,211,l)\n);\n}\n);\nwidth = 677;\n},\n{\nassociatedMasterId = m002;\nlayerId = \"7BD3C881-F3A6-4A11-830F-50E4BCAEA752\";\nname = \"5 Aug 24 at 14:37\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,-13,o),\n(575,171,o),\n(575,354,cs),\n(575,547,o),\n(504,712,o),\n(296,712,cs),\n(86,712,o),\n(15,547,o),\n(15,354,cs),\n(15,171,o),\n(84,-13,o),\n(296,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(156,67,o),\n(107,197,o),\n(107,355,cs),\n(107,516,o),\n(156,632,o),\n(297,632,cs),\n(432,632,o),\n(483,516,o),\n(483,355,cs),\n(483,197,o),\n(432,67,o),\n(296,67,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"EA768BBE-DB56-4D11-87BD-F07499E3EA9D\";\nname = \"5 Aug 24 at 14:41\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,-13,o),\n(-37,161,o),\n(-37,354,cs),\n(-37,557,o),\n(52,712,o),\n(267,712,cs),\n(479,712,o),\n(568,557,o),\n(568,354,cs),\n(568,161,o),\n(481,-13,o),\n(267,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(147,582,o),\n(103,500,o),\n(103,355,cs),\n(103,213,o),\n(147,117,o),\n(267,117,cs),\n(383,117,o),\n(428,213,o),\n(428,355,cs),\n(428,500,o),\n(383,582,o),\n(268,582,cs)\n);\n}\n);\nwidth = 600;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"8C681B85-91CA-4D47-BC45-2B848EF584BC\";\nname = \"5 Aug 24 at 14:47\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(512,-13,o),\n(575,171,o),\n(575,354,cs),\n(575,547,o),\n(510,712,o),\n(296,712,cs),\n(81,712,o),\n(15,547,o),\n(15,354,cs),\n(15,171,o),\n(79,-13,o),\n(296,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(136,42,o),\n(77,177,o),\n(77,355,cs),\n(77,536,o),\n(136,657,o),\n(297,657,cs),\n(452,657,o),\n(513,536,o),\n(513,355,cs),\n(513,177,o),\n(452,42,o),\n(296,42,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8364;\n},\n{\nglyphname = rupeeIndian;\nlastChange = \"2025-01-01 00:12:51 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(480,0,l),\n(174,298,l),\n(241,298,ls),\n(382,297,o),\n(470,388,o),\n(470,500,cs),\n(470,643,o),\n(360,682,o),\n(241,682,cs),\n(90,682,l),\n(90,644,l),\n(237,644,ls),\n(341,644,o),\n(408,602,o),\n(408,500,cs),\n(408,413,o),\n(339,353,o),\n(241,353,cs),\n(90,353,l),\n(90,301,l),\n(399,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(537,468,l),\n(537,524,l),\n(90,524,l),\n(90,468,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(537,644,l),\n(537,700,l),\n(90,700,l),\n(90,644,l)\n);\n}\n);\nwidth = 591;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(494,0,l),\n(191,267,l),\n(259,267,ls),\n(394,266,o),\n(476,362,o),\n(476,485,cs),\n(476,585,o),\n(394,685,o),\n(218,685,cs),\n(82,685,l),\n(82,620,l),\n(242,620,ls),\n(331,620,o),\n(386,558,o),\n(386,485,cs),\n(386,389,o),\n(331,346,o),\n(241,346,cs),\n(76,346,l),\n(76,270,l),\n(380,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(545,443,l),\n(545,523,l),\n(77,523,l),\n(77,443,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(545,620,l),\n(545,700,l),\n(78,700,l),\n(78,620,l)\n);\n}\n);\nwidth = 578;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(531,0,l),\n(255,225,l),\n(261,225,l),\n(398,237,o),\n(482,322,o),\n(482,464,cs),\n(482,606,o),\n(356,679,o),\n(213,679,cs),\n(80,679,l),\n(80,578,l),\n(230,578,ls),\n(293,578,o),\n(334,531,o),\n(334,464,cs),\n(334,390,o),\n(294,350,o),\n(230,350,cs),\n(80,350,l),\n(80,225,l),\n(350,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(568,409,l),\n(568,519,l),\n(80,519,l),\n(80,409,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(568,591,l),\n(568,701,l),\n(80,701,l),\n(80,591,l)\n);\n}\n);\nwidth = 588;\n}\n);\nunicode = 8377;\n},\n{\nglyphname = sterling;\nlastChange = \"2024-08-26 00:11:05 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(488,0,l),\n(488,56,l),\n(129,56,l),\n(153,73,o),\n(228,161,o),\n(228,285,cs),\n(228,406,o),\n(129,440,o),\n(129,528,cs),\n(129,608,o),\n(187,656,o),\n(265,656,cs),\n(349,656,o),\n(416,600,o),\n(416,519,c),\n(476,519,l),\n(476,555,o),\n(467,589,o),\n(452,615,cs),\n(416,677,o),\n(344,712,o),\n(264,712,cs),\n(149,712,o),\n(69,647,o),\n(69,528,cs),\n(69,413,o),\n(166,377,o),\n(166,285,cs),\n(166,163,o),\n(101,95,o),\n(48,56,c),\n(48,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(370,276,l),\n(370,332,l),\n(36,332,l),\n(36,276,l)\n);\n}\n);\nwidth = 513;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(492,0,l),\n(492,80,l),\n(156,80,l),\n(180,97,o),\n(245,175,o),\n(245,274,cs),\n(245,395,o),\n(146,440,o),\n(146,528,cs),\n(146,584,o),\n(195,632,o),\n(273,632,c),\n(351,632,o),\n(396,576,o),\n(396,519,c),\n(484,519,l),\n(484,555,o),\n(475,589,o),\n(460,615,c),\n(424,677,o),\n(352,712,o),\n(272,712,c),\n(157,712,o),\n(60,647,o),\n(60,528,cs),\n(60,413,o),\n(157,377,o),\n(157,285,cs),\n(157,188,o),\n(98,119,o),\n(45,80,c),\n(45,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(392,266,l),\n(392,346,l),\n(37,346,l),\n(37,266,l)\n);\n}\n);\nwidth = 516;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(515,0,l),\n(515,126,l),\n(216,126,l),\n(240,143,o),\n(292,197,o),\n(292,296,cs),\n(292,417,o),\n(206,437,o),\n(206,513,cs),\n(206,519,o),\n(210,582,o),\n(288,582,cs),\n(350,582,o),\n(372,545,o),\n(372,494,c),\n(502,494,l),\n(502,530,o),\n(493,589,o),\n(478,615,cs),\n(442,677,o),\n(361,712,o),\n(287,712,cs),\n(149,712,o),\n(52,649,o),\n(52,528,cs),\n(52,413,o),\n(138,399,o),\n(138,307,cs),\n(138,210,o),\n(90,165,o),\n(37,126,c),\n(37,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(424,254,l),\n(424,364,l),\n(34,364,l),\n(34,254,l)\n);\n}\n);\nwidth = 533;\n}\n);\nunicode = 163;\n},\n{\nglyphname = yen;\nlastChange = \"2024-11-21 09:59:10 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(307,0,l),\n(304,294,l),\n(538,700,l),\n(471,700,l),\n(276,350,l),\n(80,700,l),\n(6,700,l),\n(247,294,l),\n(244,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(461,130,l),\n(461,186,l),\n(84,186,l),\n(84,130,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(461,266,l),\n(461,322,l),\n(84,322,l),\n(84,266,l)\n);\n}\n);\nwidth = 544;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(327,0,l),\n(324,309,l),\n(553,700,l),\n(460,700,l),\n(281,390,l),\n(105,700,l),\n(5,700,l),\n(242,309,l),\n(239,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(482,134,l),\n(482,214,l),\n(77,214,l),\n(77,134,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(482,278,l),\n(482,358,l),\n(77,358,l),\n(77,278,l)\n);\n}\n);\nwidth = 558;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(387,0,l),\n(384,289,l),\n(625,700,l),\n(467,700,l),\n(313,411,l),\n(161,700,l),\n(0,700,l),\n(243,289,l),\n(240,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(553,109,l),\n(553,219,l),\n(73,219,l),\n(73,109,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(553,274,l),\n(553,384,l),\n(73,384,l),\n(73,274,l)\n);\n}\n);\nwidth = 625;\n}\n);\nunicode = 165;\n},\n{\nglyphname = dotmath;\nlastChange = \"2024-10-11 09:39:13 +0000\";\nlayers = (\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,239,o),\n(218,268,o),\n(218,304,cs),\n(218,340,o),\n(189,369,o),\n(153,369,cs),\n(117,369,o),\n(88,340,o),\n(88,304,cs),\n(88,268,o),\n(117,239,o),\n(153,239,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,255,o),\n(181,277,o),\n(181,304,cs),\n(181,333,o),\n(159,355,o),\n(131,355,cs),\n(103,355,o),\n(80,333,o),\n(80,304,cs),\n(80,277,o),\n(103,255,o),\n(131,255,cs)\n);\n}\n);\nwidth = 261;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,217,o),\n(256,257,o),\n(256,307,cs),\n(256,355,o),\n(215,394,o),\n(167,394,cs),\n(118,394,o),\n(77,355,o),\n(77,307,cs),\n(77,257,o),\n(118,217,o),\n(167,217,cs)\n);\n}\n);\nwidth = 333;\n}\n);\nunicode = 8901;\n},\n{\nglyphname = plus;\nlastChange = \"2024-11-09 02:53:14 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (266,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(325,47,l),\n(325,547,l),\n(269,547,l),\n(269,47,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(533,272,l),\n(533,322,l),\n(60,322,l),\n(60,272,l)\n);\n}\n);\nwidth = 593;\n},\n{\nguides = (\n{\npos = (308,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(351,45,l),\n(351,545,l),\n(263,545,l),\n(263,45,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(550,255,l),\n(550,335,l),\n(64,335,l),\n(64,255,l)\n);\n}\n);\nwidth = 614;\n},\n{\nguides = (\n{\npos = (273,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(382,41,l),\n(382,549,l),\n(247,549,l),\n(247,41,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(561,232,l),\n(561,358,l),\n(68,358,l),\n(68,232,l)\n);\n}\n);\nwidth = 629;\n}\n);\nunicode = 43;\n},\n{\nglyphname = minus;\nlastChange = \"2024-11-09 02:53:14 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (249,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(503,270,l),\n(503,320,l),\n(60,320,l),\n(60,270,l)\n);\n}\n);\nwidth = 563;\n},\n{\nguides = (\n{\npos = (249,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(509,255,l),\n(509,335,l),\n(64,335,l),\n(64,255,l)\n);\n}\n);\nwidth = 573;\n},\n{\nguides = (\n{\npos = (259,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(547,231,l),\n(547,357,l),\n(68,357,l),\n(68,231,l)\n);\n}\n);\nwidth = 615;\n}\n);\nunicode = 8722;\n},\n{\nglyphname = multiply;\nlastChange = \"2024-11-21 09:59:22 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (249,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(434,93,l),\n(470,130,l),\n(97,497,l),\n(60,461,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(433,497,l),\n(60,130,l),\n(96,93,l),\n(470,461,l)\n);\n}\n);\nwidth = 530;\n},\n{\nguides = (\n{\npos = (251,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,85,l),\n(491,139,l),\n(118,506,l),\n(65,453,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(438,506,l),\n(65,139,l),\n(117,85,l),\n(491,453,l)\n);\n}\n);\nwidth = 556;\n},\n{\nguides = (\n{\npos = (259,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,71,l),\n(514,146,l),\n(143,517,l),\n(68,442,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(439,517,l),\n(68,146,l),\n(143,71,l),\n(514,442,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 215;\n},\n{\nglyphname = divide;\nlastChange = \"2024-11-21 09:59:28 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (238,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(289,41,o),\n(311,63,o),\n(311,90,cs),\n(311,124,o),\n(290,141,o),\n(261,141,cs),\n(233,141,o),\n(210,119,o),\n(210,90,cs),\n(210,63,o),\n(233,41,o),\n(261,41,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(289,453,o),\n(311,475,o),\n(311,502,cs),\n(311,531,o),\n(289,553,o),\n(261,553,cs),\n(233,553,o),\n(210,531,o),\n(210,502,cs),\n(210,475,o),\n(233,453,o),\n(261,453,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(460,272,l),\n(460,322,l),\n(60,322,l),\n(60,272,l)\n);\n}\n);\nwidth = 520;\n},\n{\nguides = (\n{\npos = (262,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(322,26,o),\n(350,55,o),\n(350,89,cs),\n(350,124,o),\n(322,153,o),\n(288,153,cs),\n(253,153,o),\n(224,124,o),\n(224,89,cs),\n(224,55,o),\n(253,26,o),\n(288,26,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(322,436,o),\n(350,465,o),\n(350,499,cs),\n(350,534,o),\n(322,563,o),\n(288,563,cs),\n(253,563,o),\n(224,534,o),\n(224,499,cs),\n(224,465,o),\n(253,436,o),\n(288,436,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(509,256,l),\n(509,336,l),\n(64,336,l),\n(64,256,l)\n);\n}\n);\nwidth = 573;\n},\n{\nguides = (\n{\npos = (277,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(360,3,o),\n(399,42,o),\n(399,90,cs),\n(399,137,o),\n(360,175,o),\n(313,175,cs),\n(265,175,o),\n(226,137,o),\n(226,90,cs),\n(226,42,o),\n(265,3,o),\n(313,3,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(360,414,o),\n(399,453,o),\n(399,501,cs),\n(399,548,o),\n(360,586,o),\n(313,586,cs),\n(265,586,o),\n(226,548,o),\n(226,501,cs),\n(226,453,o),\n(265,414,o),\n(313,414,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(556,235,l),\n(556,361,l),\n(68,361,l),\n(68,235,l)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 247;\n},\n{\nglyphname = equal;\nlastChange = \"2024-11-22 03:06:09 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (246,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(524,349,l),\n(524,399,l),\n(60,399,l),\n(60,349,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(524,193,l),\n(524,243,l),\n(60,243,l),\n(60,193,l)\n);\n}\n);\nwidth = 584;\n},\n{\nguides = (\n{\npos = (271,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(550,336,l),\n(550,416,l),\n(65,416,l),\n(65,336,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(549,173,l),\n(549,253,l),\n(64,253,l),\n(64,173,l)\n);\n}\n);\nwidth = 614;\n},\n{\nguides = (\n{\npos = (245,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(558,347,l),\n(558,473,l),\n(68,473,l),\n(68,347,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(558,117,l),\n(558,243,l),\n(68,243,l),\n(68,117,l)\n);\n}\n);\nwidth = 626;\n}\n);\nunicode = 61;\n},\n{\nglyphname = greater;\nlastChange = \"2024-11-22 03:04:22 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (237,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(475,271,l),\n(475,316,l),\n(40,538,l),\n(40,468,l),\n(437,271,l),\n(437,315,l),\n(40,124,l),\n(40,55,l)\n);\n}\n);\nwidth = 535;\n},\n{\nguides = (\n{\npos = (245,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(488,267,l),\n(488,325,l),\n(44,544,l),\n(44,454,l),\n(432,262,l),\n(432,330,l),\n(44,138,l),\n(44,48,l)\n);\n}\n);\nwidth = 552;\n},\n{\nguides = (\n{\npos = (249,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(515,247,l),\n(515,344,l),\n(48,563,l),\n(48,432,l),\n(456,252,l),\n(456,342,l),\n(48,162,l),\n(48,28,l)\n);\n}\n);\nwidth = 583;\n}\n);\nunicode = 62;\n},\n{\nglyphname = less;\nlastChange = \"2024-11-09 02:53:14 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (263,296);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(495,123,l),\n(98,314,l),\n(98,270,l),\n(495,467,l),\n(495,537,l),\n(60,315,l),\n(60,270,l),\n(495,54,l)\n);\n}\n);\nwidth = 535;\n},\n{\nguides = (\n{\npos = (260,295);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(508,136,l),\n(120,328,l),\n(120,260,l),\n(508,452,l),\n(508,542,l),\n(64,323,l),\n(64,265,l),\n(508,46,l)\n);\n}\n);\nwidth = 552;\n},\n{\nguides = (\n{\npos = (274,295);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(535,162,l),\n(127,342,l),\n(127,252,l),\n(535,432,l),\n(535,563,l),\n(68,344,l),\n(68,247,l),\n(535,28,l)\n);\n}\n);\nwidth = 583;\n}\n);\nunicode = 60;\n},\n{\nglyphname = plusminus;\nlastChange = \"2024-11-09 02:53:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(310,171,l),\n(310,586,l),\n(254,586,l),\n(254,171,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(503,354,l),\n(503,404,l),\n(60,404,l),\n(60,354,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(503,0,l),\n(503,50,l),\n(60,50,l),\n(60,0,l)\n);\n}\n);\nwidth = 563;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(331,183,l),\n(331,594,l),\n(243,594,l),\n(243,183,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(509,349,l),\n(509,429,l),\n(64,429,l),\n(64,349,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(509,0,l),\n(509,80,l),\n(64,80,l),\n(64,0,l)\n);\n}\n);\nwidth = 573;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(375,194,l),\n(375,625,l),\n(240,625,l),\n(240,194,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(547,347,l),\n(547,473,l),\n(68,473,l),\n(68,347,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(547,0,l),\n(547,126,l),\n(68,126,l),\n(68,0,l)\n);\n}\n);\nwidth = 615;\n}\n);\nunicode = 177;\n},\n{\nglyphname = asciitilde;\nlastChange = \"2024-11-09 02:53:14 +0000\";\nlayers = (\n{\nguides = (\n{\npos = (202,296);\n},\n{\npos = (202,239);\n},\n{\npos = (202,354);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(399,239,o),\n(434,281,o),\n(451,313,c),\n(413,345,l),\n(401,329,o),\n(383,291,o),\n(337,291,cs),\n(291,291,o),\n(242,354,o),\n(180,354,cs),\n(122,354,o),\n(76,308,o),\n(60,278,c),\n(95,247,l),\n(109,264,o),\n(131,302,o),\n(175,302,cs),\n(223,302,o),\n(264,239,o),\n(340,239,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nguides = (\n{\npos = (251,366);\n},\n{\npos = (162,223);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,223,o),\n(464,274,o),\n(481,306,c),\n(424,357,l),\n(410,341,o),\n(390,303,o),\n(344,303,cs),\n(300,303,o),\n(262,366,o),\n(185,366,cs),\n(122,366,o),\n(70,310,o),\n(54,280,c),\n(108,231,l),\n(122,248,o),\n(146,286,o),\n(190,286,cs),\n(232,286,o),\n(273,223,o),\n(351,223,cs)\n);\n}\n);\nwidth = 506;\n},\n{\nguides = (\n{\npos = (239,391);\n},\n{\npos = (239,198);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(518,195,o),\n(581,271,o),\n(599,303,c),\n(514,385,l),\n(503,369,o),\n(483,325,o),\n(423,325,cs),\n(378,325,o),\n(314,394,o),\n(243,394,cs),\n(137,394,o),\n(86,315,o),\n(68,283,c),\n(150,206,l),\n(161,221,o),\n(182,264,o),\n(242,264,cs),\n(286,264,o),\n(348,195,o),\n(430,195,cs)\n);\n}\n);\nwidth = 667;\n}\n);\nunicode = 126;\n},\n{\nglyphname = asciicircum;\nlastChange = \"2024-11-09 02:53:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(265,700,l),\n(227,700,l),\n(52,407,l),\n(132,408,l),\n(263,646,l),\n(229,645,l),\n(361,406,l),\n(439,406,l)\n);\n}\n);\nwidth = 547;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(317,700,l),\n(255,700,l),\n(80,407,l),\n(170,407,l),\n(299,645,l),\n(275,645,l),\n(407,406,l),\n(491,406,l)\n);\n}\n);\nwidth = 571;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(319,700,l),\n(236,700,l),\n(50,407,l),\n(187,407,l),\n(302,624,l),\n(252,624,l),\n(369,406,l),\n(505,406,l)\n);\n}\n);\nwidth = 555;\n}\n);\nunicode = 94;\n},\n{\nglyphname = percent;\nlastChange = \"2024-11-09 02:53:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(248,0,l),\n(626,700,l),\n(561,700,l),\n(183,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(284,383,o),\n(358,439,o),\n(358,548,cs),\n(358,655,o),\n(288,712,o),\n(204,712,cs),\n(123,712,o),\n(50,655,o),\n(50,547,cs),\n(50,439,o),\n(120,383,o),\n(204,383,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(141,433,o),\n(107,487,o),\n(107,547,cs),\n(107,604,o),\n(141,662,o),\n(204,662,cs),\n(267,662,o),\n(301,606,o),\n(301,548,cs),\n(301,489,o),\n(264,433,o),\n(204,433,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(706,-12,o),\n(780,44,o),\n(780,153,cs),\n(780,260,o),\n(710,317,o),\n(626,317,cs),\n(545,317,o),\n(472,260,o),\n(472,152,cs),\n(472,44,o),\n(542,-12,o),\n(626,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(563,38,o),\n(529,92,o),\n(529,152,cs),\n(529,209,o),\n(563,267,o),\n(626,267,cs),\n(689,267,o),\n(723,211,o),\n(723,153,cs),\n(723,94,o),\n(686,38,o),\n(626,38,cs)\n);\n}\n);\nwidth = 830;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(275,0,l),\n(661,700,l),\n(570,700,l),\n(184,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(302,383,o),\n(376,442,o),\n(376,548,cs),\n(376,651,o),\n(306,712,o),\n(222,712,cs),\n(141,712,o),\n(68,650,o),\n(68,547,cs),\n(68,441,o),\n(138,383,o),\n(222,383,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(172,454,o),\n(145,498,o),\n(145,547,cs),\n(145,594,o),\n(172,641,o),\n(222,641,cs),\n(272,641,o),\n(299,595,o),\n(299,548,cs),\n(299,500,o),\n(269,454,o),\n(222,454,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(704,-13,o),\n(778,46,o),\n(778,152,cs),\n(778,255,o),\n(708,316,o),\n(624,316,cs),\n(543,316,o),\n(470,254,o),\n(470,151,cs),\n(470,45,o),\n(540,-13,o),\n(624,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(574,58,o),\n(547,102,o),\n(547,151,cs),\n(547,198,o),\n(574,245,o),\n(624,245,cs),\n(674,245,o),\n(701,199,o),\n(701,152,cs),\n(701,104,o),\n(671,58,o),\n(624,58,cs)\n);\n}\n);\nwidth = 846;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(352,0,l),\n(736,700,l),\n(599,700,l),\n(215,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(320,353,o),\n(402,417,o),\n(402,533,cs),\n(402,645,o),\n(325,712,o),\n(233,712,cs),\n(145,712,o),\n(64,644,o),\n(64,533,cs),\n(64,416,o),\n(141,353,o),\n(233,353,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(190,455,o),\n(167,492,o),\n(167,533,cs),\n(167,573,o),\n(190,610,o),\n(233,610,cs),\n(276,610,o),\n(299,574,o),\n(299,533,cs),\n(299,494,o),\n(274,455,o),\n(233,455,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(804,-12,o),\n(886,52,o),\n(886,168,cs),\n(886,280,o),\n(809,347,o),\n(717,347,cs),\n(629,347,o),\n(548,279,o),\n(548,168,cs),\n(548,51,o),\n(625,-12,o),\n(717,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(674,89,o),\n(651,127,o),\n(651,168,cs),\n(651,208,o),\n(674,246,o),\n(717,246,cs),\n(760,246,o),\n(783,209,o),\n(783,168,cs),\n(783,129,o),\n(758,89,o),\n(717,89,cs)\n);\n}\n);\nwidth = 950;\n}\n);\nunicode = 37;\n},\n{\nglyphname = upArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(651,337,l),\n(693,379,l),\n(372,700,l),\n(330,658,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(372,700,l),\n(50,378,l),\n(93,336,l),\n(414,658,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(402,0,l),\n(402,653,l),\n(342,653,l),\n(342,0,l)\n);\n}\n);\nwidth = 743;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(633,321,l),\n(692,380,l),\n(371,700,l),\n(313,641,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(371,700,l),\n(50,378,l),\n(108,320,l),\n(429,642,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(411,0,l),\n(411,592,l),\n(328,591,l),\n(328,0,l)\n);\n}\n);\nwidth = 742;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(605,288,l),\n(694,377,l),\n(373,698,l),\n(284,609,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(371,700,l),\n(50,379,l),\n(139,290,l),\n(460,611,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(439,0,l),\n(439,611,l),\n(299,610,l),\n(299,0,l)\n);\n}\n);\nwidth = 744;\n}\n);\nunicode = 8593;\n},\n{\nglyphname = northEastArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(493,47,l),\n(553,47,l),\n(553,500,l),\n(493,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(98,500,l),\n(98,440,l),\n(553,441,l),\n(553,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(92,0,l),\n(541,446,l),\n(498,488,l),\n(50,42,l)\n);\n}\n);\nwidth = 603;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(477,47,l),\n(560,47,l),\n(559,500,l),\n(477,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(105,500,l),\n(105,418,l),\n(559,418,l),\n(559,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(109,0,l),\n(511,396,l),\n(452,454,l),\n(50,59,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(427,54,l),\n(553,54,l),\n(553,508,l),\n(427,508,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(96,508,l),\n(96,382,l),\n(550,382,l),\n(550,508,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(133,0,l),\n(540,394,l),\n(442,493,l),\n(34,99,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8599;\n},\n{\nglyphname = rightArrow;\nlastChange = \"2024-11-21 09:59:46 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(750,359,l),\n(428,681,l),\n(386,638,l),\n(708,317,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(703,329,l),\n(703,389,l),\n(50,389,l),\n(50,329,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(750,359,l),\n(708,401,l),\n(387,80,l),\n(429,38,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(750,357,l),\n(428,678,l),\n(370,620,l),\n(692,299,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(642,317,l),\n(641,400,l),\n(50,400,l),\n(50,317,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(750,357,l),\n(691,415,l),\n(371,95,l),\n(430,36,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(750,361,l),\n(429,682,l),\n(340,593,l),\n(661,272,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(661,293,l),\n(660,433,l),\n(50,433,l),\n(50,293,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(748,359,l),\n(659,448,l),\n(338,127,l),\n(427,38,l)\n);\n}\n);\nwidth = 800;\n}\n);\nunicode = 8594;\n},\n{\nglyphname = southEastArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,458,l),\n(496,12,l),\n(538,55,l),\n(92,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(550,0,l),\n(550,455,l),\n(490,455,l),\n(491,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(97,60,l),\n(97,0,l),\n(550,0,l),\n(550,60,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,441,l),\n(452,46,l),\n(511,104,l),\n(109,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(559,0,l),\n(560,453,l),\n(477,453,l),\n(477,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(105,82,l),\n(105,0,l),\n(559,0,l),\n(559,82,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,410,l),\n(438,13,l),\n(537,111,l),\n(149,509,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(552,3,l),\n(552,457,l),\n(426,457,l),\n(426,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(98,126,l),\n(98,0,l),\n(552,0,l),\n(552,126,l)\n);\n}\n);\nwidth = 602;\n}\n);\nunicode = 8600;\n},\n{\nglyphname = downArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(341,700,l),\n(341,47,l),\n(401,47,l),\n(401,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(371,0,l),\n(693,322,l),\n(650,364,l),\n(329,42,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(92,363,l),\n(50,321,l),\n(371,0,l),\n(413,42,l)\n);\n}\n);\nwidth = 743;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(328,700,l),\n(328,109,l),\n(411,108,l),\n(411,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(371,0,l),\n(692,320,l),\n(633,379,l),\n(313,59,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(108,380,l),\n(50,322,l),\n(371,0,l),\n(429,58,l)\n);\n}\n);\nwidth = 742;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(299,700,l),\n(299,90,l),\n(439,89,l),\n(439,700,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(373,2,l),\n(694,323,l),\n(605,412,l),\n(284,91,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(139,410,l),\n(50,321,l),\n(371,0,l),\n(460,89,l)\n);\n}\n);\nwidth = 744;\n}\n);\nunicode = 8595;\n},\n{\nglyphname = southWestArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(62,55,l),\n(104,12,l),\n(550,458,l),\n(508,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(110,455,l),\n(50,455,l),\n(50,0,l),\n(109,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,0,l),\n(503,0,l),\n(503,60,l),\n(50,60,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(99,104,l),\n(158,46,l),\n(560,441,l),\n(501,500,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(133,453,l),\n(50,453,l),\n(51,0,l),\n(133,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(51,0,l),\n(505,0,l),\n(505,82,l),\n(51,82,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(65,111,l),\n(164,13,l),\n(552,410,l),\n(453,509,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,457,l),\n(50,457,l),\n(50,3,l),\n(176,3,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,0,l),\n(504,0,l),\n(504,126,l),\n(50,126,l)\n);\n}\n);\nwidth = 602;\n}\n);\nunicode = 8601;\n},\n{\nglyphname = leftArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,389,l),\n(97,329,l),\n(750,329,l),\n(750,389,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,359,l),\n(371,38,l),\n(413,80,l),\n(92,401,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(414,638,l),\n(372,681,l),\n(50,359,l),\n(92,317,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(159,400,l),\n(158,317,l),\n(750,317,l),\n(750,400,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,357,l),\n(370,36,l),\n(429,95,l),\n(109,415,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(430,620,l),\n(372,678,l),\n(50,357,l),\n(108,299,l)\n);\n}\n);\nwidth = 800;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(140,433,l),\n(139,293,l),\n(750,293,l),\n(750,433,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(52,359,l),\n(373,38,l),\n(462,127,l),\n(141,448,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(460,593,l),\n(371,682,l),\n(50,361,l),\n(139,272,l)\n);\n}\n);\nwidth = 800;\n}\n);\nunicode = 8592;\n},\n{\nglyphname = northWestArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(550,42,l),\n(104,488,l),\n(62,445,l),\n(508,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(503,500,l),\n(50,500,l),\n(50,440,l),\n(503,440,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(109,500,l),\n(50,500,l),\n(50,45,l),\n(110,45,l)\n);\n}\n);\nwidth = 600;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(560,59,l),\n(158,454,l),\n(99,396,l),\n(501,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(505,500,l),\n(51,500,l),\n(51,418,l),\n(505,418,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(133,500,l),\n(51,500,l),\n(50,47,l),\n(133,47,l)\n);\n}\n);\nwidth = 610;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(569,99,l),\n(161,493,l),\n(63,394,l),\n(470,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(507,508,l),\n(53,508,l),\n(53,382,l),\n(507,382,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,508,l),\n(50,508,l),\n(50,54,l),\n(176,54,l)\n);\n}\n);\nwidth = 619;\n}\n);\nunicode = 8598;\n},\n{\nglyphname = leftRightArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(88,388,l),\n(88,328,l),\n(928,328,l),\n(928,388,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(668,591,l),\n(943,316,l),\n(986,358,l),\n(711,633,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(667,124,l),\n(710,82,l),\n(986,358,l),\n(943,399,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(325,633,l),\n(50,358,l),\n(93,316,l),\n(368,591,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(326,82,l),\n(369,124,l),\n(93,399,l),\n(50,358,l)\n);\n}\n);\nwidth = 1036;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(158,400,l),\n(158,317,l),\n(878,317,l),\n(877,400,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(647,575,l),\n(928,299,l),\n(986,357,l),\n(705,633,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(647,133,l),\n(706,74,l),\n(986,357,l),\n(927,415,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(331,633,l),\n(50,357,l),\n(108,299,l),\n(389,575,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(330,74,l),\n(389,133,l),\n(109,415,l),\n(50,357,l)\n);\n}\n);\nwidth = 1036;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,428,l),\n(210,288,l),\n(929,288,l),\n(929,428,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(637,564,l),\n(927,270,l),\n(1016,359,l),\n(726,653,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(637,154,l),\n(726,65,l),\n(1016,359,l),\n(927,448,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(340,653,l),\n(50,359,l),\n(139,270,l),\n(429,564,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(340,65,l),\n(429,154,l),\n(139,448,l),\n(50,359,l)\n);\n}\n);\nwidth = 1066;\n}\n);\nunicode = 8596;\n},\n{\nglyphname = upDownArrow;\nlastChange = \"2024-11-09 03:05:07 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(295,654,l),\n(295,-186,l),\n(355,-186,l),\n(355,654,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(367,669,l),\n(325,712,l),\n(50,437,l),\n(92,394,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(325,712,l),\n(284,669,l),\n(559,393,l),\n(601,436,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,51,l),\n(325,-224,l),\n(367,-181,l),\n(92,94,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(601,52,l),\n(559,95,l),\n(284,-181,l),\n(325,-224,l)\n);\n}\n);\nwidth = 651;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(293,604,l),\n(293,-116,l),\n(376,-115,l),\n(376,604,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(391,653,l),\n(333,712,l),\n(50,432,l),\n(109,373,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(333,712,l),\n(275,654,l),\n(551,373,l),\n(609,431,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,56,l),\n(333,-224,l),\n(391,-165,l),\n(109,115,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(609,57,l),\n(551,115,l),\n(275,-166,l),\n(333,-224,l)\n);\n}\n);\nwidth = 659;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(232,613,l),\n(232,-57,l),\n(372,-57,l),\n(372,613,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(390,611,l),\n(301,700,l),\n(7,410,l),\n(96,321,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(301,700,l),\n(212,611,l),\n(506,321,l),\n(595,410,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(7,60,l),\n(301,-230,l),\n(390,-141,l),\n(96,149,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(595,60,l),\n(506,149,l),\n(212,-141,l),\n(301,-230,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8597;\n},\n{\nglyphname = dieresiscomb;\nlastChange = \"2024-11-21 09:59:56 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (154,512);\n}\n);\nguides = (\n{\npos = (-33,679);\n},\n{\npos = (-28,584);\n},\n{\npos = (-33,631);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(256,584,o),\n(277,606,o),\n(277,631,cs),\n(277,657,o),\n(256,679,o),\n(231,679,cs),\n(205,679,o),\n(183,657,o),\n(183,631,cs),\n(183,606,o),\n(205,584,o),\n(231,584,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(107,584,o),\n(128,606,o),\n(128,631,cs),\n(128,657,o),\n(107,679,o),\n(82,679,cs),\n(56,679,o),\n(34,657,o),\n(34,631,cs),\n(34,606,o),\n(56,584,o),\n(82,584,cs)\n);\n}\n);\nwidth = 312;\n},\n{\nanchors = (\n{\nname = _top;\npos = (161,512);\n}\n);\nguides = (\n{\npos = (-27,700);\n},\n{\npos = (-26,590);\n},\n{\npos = (-27,645);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(280,590,o),\n(304,615,o),\n(304,645,cs),\n(304,675,o),\n(280,700,o),\n(250,700,cs),\n(220,700,o),\n(195,675,o),\n(195,645,cs),\n(195,615,o),\n(220,590,o),\n(250,590,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(105,590,o),\n(129,615,o),\n(129,645,cs),\n(129,675,o),\n(105,700,o),\n(75,700,cs),\n(45,700,o),\n(20,675,o),\n(20,645,cs),\n(20,615,o),\n(45,590,o),\n(75,590,cs)\n);\n}\n);\nwidth = 324;\n},\n{\nanchors = (\n{\nname = _top;\npos = (204,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,559,o),\n(407,598,o),\n(407,644,cs),\n(407,690,o),\n(371,729,o),\n(323,729,cs),\n(278,729,o),\n(239,690,o),\n(239,644,cs),\n(239,598,o),\n(278,559,o),\n(323,559,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(144,559,o),\n(180,598,o),\n(180,644,cs),\n(180,690,o),\n(144,729,o),\n(96,729,cs),\n(51,729,o),\n(12,690,o),\n(12,644,cs),\n(12,598,o),\n(51,559,o),\n(96,559,cs)\n);\n}\n);\nwidth = 419;\n}\n);\nunicode = 776;\n},\n{\nglyphname = dotaccentcomb;\nlastChange = \"2024-11-21 09:43:56 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (68,512);\n}\n);\nguides = (\n{\npos = (-47,680);\n},\n{\npos = (-42,585);\n},\n{\npos = (-47,632);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(93,595,o),\n(114,617,o),\n(114,642,cs),\n(114,668,o),\n(93,690,o),\n(68,690,cs),\n(42,690,o),\n(20,668,o),\n(20,642,cs),\n(20,617,o),\n(42,595,o),\n(68,595,cs)\n);\n}\n);\nwidth = 137;\n},\n{\nanchors = (\n{\nname = _top;\npos = (74,512);\n}\n);\nguides = (\n{\npos = (-27,700);\n},\n{\npos = (-26,590);\n},\n{\npos = (-27,645);\n},\n{\npos = (-27,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(105,590,o),\n(129,615,o),\n(129,645,cs),\n(129,675,o),\n(105,700,o),\n(75,700,cs),\n(45,700,o),\n(20,675,o),\n(20,645,cs),\n(20,615,o),\n(45,590,o),\n(75,590,cs)\n);\n}\n);\nwidth = 147;\n},\n{\nanchors = (\n{\nname = _top;\npos = (96,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(144,559,o),\n(180,598,o),\n(180,644,cs),\n(180,690,o),\n(144,729,o),\n(96,729,cs),\n(51,729,o),\n(12,690,o),\n(12,644,cs),\n(12,598,o),\n(51,559,o),\n(96,559,cs)\n);\n}\n);\nwidth = 192;\n}\n);\nunicode = 775;\n},\n{\nglyphname = gravecomb;\nlastChange = \"2025-01-07 17:10:40 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (150,512);\n}\n);\nguides = (\n{\npos = (-42,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,681);\n},\n{\npos = (-47,704);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(174,586,l),\n(123,704,l),\n(30,704,l),\n(124,586,l)\n);\n}\n);\nwidth = 208;\n},\n{\nanchors = (\n{\nname = _top;\npos = (157,512);\n}\n);\nguides = (\n{\npos = (-49,700);\n},\n{\npos = (-48,590);\n},\n{\npos = (-49,645);\n},\n{\npos = (-49,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(181,590,l),\n(120,727,l),\n(10,727,l),\n(109,590,l)\n);\n}\n);\nwidth = 191;\n},\n{\nanchors = (\n{\nname = _top;\npos = (187,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(237,559,l),\n(167,729,l),\n(13,729,l),\n(134,559,l)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 768;\n},\n{\nglyphname = acutecomb;\nlastChange = \"2024-11-09 06:45:33 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (50,512);\n}\n);\nguides = (\n{\npos = (-42,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,681);\n},\n{\npos = (-47,704);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(174,704,l),\n(81,704,l),\n(30,586,l),\n(80,586,l)\n);\n}\n);\nwidth = 208;\n},\n{\nanchors = (\n{\nname = _top;\npos = (34,512);\n}\n);\nguides = (\n{\npos = (-49,700);\n},\n{\npos = (-48,590);\n},\n{\npos = (-49,645);\n},\n{\npos = (-49,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(181,727,l),\n(71,727,l),\n(10,590,l),\n(82,590,l)\n);\n}\n);\nwidth = 191;\n},\n{\nanchors = (\n{\nname = _top;\npos = (61,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(237,729,l),\n(83,729,l),\n(13,559,l),\n(116,559,l)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 769;\n},\n{\nglyphname = hungarumlautcomb;\nlastChange = \"2024-11-01 01:01:54 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (119,512);\n}\n);\nguides = (\n{\npos = (-42,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,704);\n},\n{\npos = (-47,681);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(174,704,l),\n(81,704,l),\n(30,586,l),\n(80,586,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(307,704,l),\n(214,704,l),\n(163,586,l),\n(213,586,l)\n);\n}\n);\nwidth = 374;\n},\n{\nanchors = (\n{\nname = _top;\npos = (123,512);\n}\n);\nguides = (\n{\npos = (-68,700);\n},\n{\npos = (-67,590);\n},\n{\npos = (-68,645);\n},\n{\npos = (-68,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(181,727,l),\n(71,727,l),\n(10,590,l),\n(82,590,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(337,727,l),\n(227,727,l),\n(166,590,l),\n(238,590,l)\n);\n}\n);\nwidth = 347;\n},\n{\nanchors = (\n{\nname = _top;\npos = (166,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(242,729,l),\n(88,729,l),\n(18,559,l),\n(121,559,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(441,729,l),\n(287,729,l),\n(217,559,l),\n(320,559,l)\n);\n}\n);\nwidth = 440;\n}\n);\nunicode = 779;\n},\n{\nglyphname = caroncomb.alt;\nlastChange = \"2024-11-07 17:17:11 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (52,508);\n}\n);\nguides = (\n{\npos = (-46,586);\n},\n{\npos = (-47,633);\n},\n{\npos = (-47,681);\n},\n{\npos = (-47,704);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(91,586,l),\n(147,704,l),\n(54,704,l),\n(41,586,l)\n);\n}\n);\nwidth = 155;\n},\n{\nanchors = (\n{\nname = _top;\npos = (52,508);\n}\n);\nguides = (\n{\npos = (-60,700);\n},\n{\npos = (-59,590);\n},\n{\npos = (-60,645);\n},\n{\npos = (-60,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(82,590,l),\n(131,727,l),\n(21,727,l),\n(10,590,l)\n);\n}\n);\nwidth = 141;\n},\n{\nanchors = (\n{\nname = _top;\npos = (52,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(127,559,l),\n(181,729,l),\n(51,729,l),\n(32,559,l)\n);\n}\n);\nwidth = 196;\n}\n);\n},\n{\nglyphname = circumflexcomb;\nlastChange = \"2024-11-09 06:52:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (134,512);\n}\n);\nguides = (\n{\npos = (-86,591);\n},\n{\npos = (-87,638);\n},\n{\npos = (-87,686);\n},\n{\npos = (-87,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(82,591,l),\n(161,694,l),\n(106,694,l),\n(187,591,l),\n(258,591,l),\n(161,709,l),\n(107,709,l),\n(10,591,l)\n);\n}\n);\nwidth = 268;\n},\n{\nassociatedMasterId = m01;\nlayerId = \"20458CA3-7F03-4177-ABD8-708FA8DF63BB\";\nname = \"3 Aug 21, 16:24\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n}\n);\nwidth = 600;\n},\n{\nanchors = (\n{\nname = _top;\npos = (150,512);\n}\n);\nguides = (\n{\npos = (-88,700);\n},\n{\npos = (-87,590);\n},\n{\npos = (-88,645);\n},\n{\npos = (-88,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(93,590,l),\n(177,695,l),\n(121,695,l),\n(205,590,l),\n(288,590,l),\n(173,727,l),\n(126,727,l),\n(10,590,l)\n);\n}\n);\nwidth = 298;\n},\n{\nanchors = (\n{\nname = _top;\npos = (181,508);\n}\n);\nguides = (\n{\npos = (-9,729);\n},\n{\npos = (-4,559);\n},\n{\npos = (-7,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(130,559,l),\n(216,690,l),\n(147,690,l),\n(231,559,l),\n(352,559,l),\n(229,729,l),\n(132,729,l),\n(10,559,l)\n);\n}\n);\nwidth = 362;\n}\n);\nunicode = 770;\n},\n{\nglyphname = caroncomb;\nlastChange = \"2024-11-22 05:01:03 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (134,512);\n}\n);\nguides = (\n{\npos = (-86,591);\n},\n{\npos = (-87,638);\n},\n{\npos = (-87,686);\n},\n{\npos = (-87,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(161,591,l),\n(258,709,l),\n(187,709,l),\n(106,606,l),\n(161,605,l),\n(82,709,l),\n(10,709,l),\n(107,591,l)\n);\n}\n);\nwidth = 268;\n},\n{\nanchors = (\n{\nname = _top;\npos = (152,512);\n}\n);\nguides = (\n{\npos = (-88,700);\n},\n{\npos = (-87,590);\n},\n{\npos = (-88,645);\n},\n{\npos = (-88,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(173,590,l),\n(288,727,l),\n(205,727,l),\n(121,622,l),\n(177,622,l),\n(93,727,l),\n(10,727,l),\n(126,590,l)\n);\n}\n);\nwidth = 298;\n},\n{\nanchors = (\n{\nname = _top;\npos = (181,508);\n}\n);\nguides = (\n{\npos = (-5,729);\n},\n{\npos = (0,559);\n},\n{\npos = (-3,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(229,559,l),\n(352,729,l),\n(231,729,l),\n(147,598,l),\n(216,598,l),\n(130,729,l),\n(10,729,l),\n(132,559,l)\n);\n}\n);\nwidth = 362;\n}\n);\nunicode = 780;\n},\n{\nglyphname = brevecomb;\nlastChange = \"2024-11-01 01:02:29 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (146,512);\n}\n);\nguides = (\n{\npos = (-2,592);\n},\n{\npos = (-3,639);\n},\n{\npos = (-3,687);\n},\n{\npos = (-3,710);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(219,590,o),\n(258,645,o),\n(258,709,c),\n(201,709,l),\n(201,663,o),\n(176,641,o),\n(146,641,cs),\n(117,641,o),\n(91,663,o),\n(91,709,c),\n(34,709,l),\n(34,645,o),\n(73,590,o),\n(146,590,cs)\n);\n}\n);\nwidth = 298;\n},\n{\nanchors = (\n{\nname = _top;\npos = (144,512);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(228,588,o),\n(277,655,o),\n(277,727,c),\n(204,727,l),\n(204,688,o),\n(185,651,o),\n(143,651,cs),\n(103,651,o),\n(83,688,o),\n(83,727,c),\n(10,727,l),\n(10,655,o),\n(59,588,o),\n(143,588,cs)\n);\n}\n);\nwidth = 287;\n},\n{\nanchors = (\n{\nname = _top;\npos = (174,508);\n}\n);\nguides = (\n{\npos = (20,729);\n},\n{\npos = (25,559);\n},\n{\npos = (22,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(278,556,o),\n(337,639,o),\n(337,729,c),\n(238,729,l),\n(238,683,o),\n(223,643,o),\n(175,643,cs),\n(129,643,o),\n(111,683,o),\n(111,729,c),\n(12,729,l),\n(12,639,o),\n(73,556,o),\n(175,556,cs)\n);\n}\n);\nwidth = 349;\n}\n);\nunicode = 774;\n},\n{\nglyphname = ringcomb;\nlastChange = \"2024-11-01 01:02:42 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (119,512);\n}\n);\nguides = (\n{\npos = (2,592);\n},\n{\npos = (1,639);\n},\n{\npos = (1,687);\n},\n{\npos = (1,710);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(189,588,o),\n(235,645,o),\n(235,705,cs),\n(235,768,o),\n(189,822,o),\n(118,822,cs),\n(48,822,o),\n(2,768,o),\n(2,705,cs),\n(2,645,o),\n(48,588,o),\n(118,588,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(84,641,o),\n(55,667,o),\n(55,705,cs),\n(55,741,o),\n(84,770,o),\n(118,770,cs),\n(153,770,o),\n(182,741,o),\n(182,705,cs),\n(182,667,o),\n(153,641,o),\n(118,641,cs)\n);\n}\n);\nwidth = 237;\n},\n{\nanchors = (\n{\nname = _top;\npos = (123,512);\n}\n);\nguides = (\n{\npos = (-246,700);\n},\n{\npos = (-245,590);\n},\n{\npos = (-246,645);\n},\n{\npos = (-246,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,589,o),\n(247,649,o),\n(247,712,cs),\n(247,776,o),\n(200,834,o),\n(125,834,cs),\n(51,834,o),\n(4,776,o),\n(4,712,cs),\n(4,649,o),\n(51,589,o),\n(125,589,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(93,651,o),\n(65,675,o),\n(65,712,cs),\n(65,746,o),\n(93,772,o),\n(125,772,cs),\n(158,772,o),\n(186,746,o),\n(186,712,cs),\n(186,675,o),\n(158,651,o),\n(125,651,cs)\n);\n}\n);\nwidth = 251;\n},\n{\nanchors = (\n{\nname = _top;\npos = (136,508);\n}\n);\nguides = (\n{\npos = (27,729);\n},\n{\npos = (32,559);\n},\n{\npos = (29,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(221,556,o),\n(270,619,o),\n(270,686,cs),\n(270,753,o),\n(221,814,o),\n(142,814,cs),\n(64,814,o),\n(15,753,o),\n(15,686,cs),\n(15,619,o),\n(64,556,o),\n(142,556,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(119,640,o),\n(98,658,o),\n(98,686,cs),\n(98,710,o),\n(119,730,o),\n(142,730,cs),\n(166,730,o),\n(187,710,o),\n(187,686,cs),\n(187,658,o),\n(166,640,o),\n(142,640,cs)\n);\n}\n);\nwidth = 285;\n}\n);\nunicode = 778;\n},\n{\nglyphname = tildecomb;\nlastChange = \"2025-01-08 14:10:21 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (163,512);\n}\n);\nguides = (\n{\npos = (-17,591);\n},\n{\npos = (-18,638);\n},\n{\npos = (-18,686);\n},\n{\npos = (-18,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(142,628,o),\n(172,591,o),\n(210,591,cs),\n(260,591,o),\n(288,623,o),\n(288,682,c),\n(231,682,l),\n(232,660,o),\n(228,646,o),\n(202,646,cs),\n(182,646,o),\n(152,682,o),\n(115,682,cs),\n(65,682,o),\n(37,652,o),\n(37,591,c),\n(94,591,l),\n(94,614,o),\n(100,628,o),\n(123,628,cs)\n);\n}\n);\nwidth = 351;\n},\n{\nanchors = (\n{\nname = _top;\npos = (163,512);\n}\n);\nguides = (\n{\npos = (-387,700);\n},\n{\npos = (-386,590);\n},\n{\npos = (-387,645);\n},\n{\npos = (-387,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(142,633,o),\n(185,587,o),\n(230,587,cs),\n(275,587,o),\n(308,632,o),\n(308,700,c),\n(242,700,l),\n(242,672,o),\n(235,658,o),\n(214,658,cs),\n(182,658,o),\n(140,703,o),\n(94,703,cs),\n(50,703,o),\n(17,663,o),\n(17,590,c),\n(82,590,l),\n(82,619,o),\n(91,633,o),\n(111,633,cs)\n);\n}\n);\nwidth = 325;\n},\n{\nanchors = (\n{\nname = _top;\npos = (208,508);\n}\n);\nguides = (\n{\npos = (22,729);\n},\n{\npos = (27,559);\n},\n{\npos = (24,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,620,o),\n(213,556,o),\n(283,556,cs),\n(369,556,o),\n(405,619,o),\n(405,714,c),\n(306,714,l),\n(306,676,o),\n(292,662,o),\n(268,662,cs),\n(237,662,o),\n(200,717,o),\n(132,717,cs),\n(47,717,o),\n(10,660,o),\n(10,559,c),\n(109,559,l),\n(109,596,o),\n(118,620,o),\n(147,620,cs)\n);\n}\n);\nwidth = 415;\n},\n{\nanchors = (\n{\nname = _top;\npos = (209,508);\n}\n);\nassociatedMasterId = m003;\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = \"BBFD4248-F8E1-451A-B1D3-0F4A06B581F3\";\nname = \"12 Sep 24 at 16:05\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(212,579,o),\n(271,579,cs),\n(365,579,o),\n(384,675,o),\n(384,708,c),\n(290,708,l),\n(290,687,o),\n(277,671,o),\n(254,671,cs),\n(206,671,o),\n(198,708,o),\n(122,708,cs),\n(29,708,o),\n(8,612,o),\n(8,579,c),\n(103,579,l),\n(103,602,o),\n(121,619,o),\n(143,619,cs),\n(180,619,o)\n);\n},\n{\nclosed = 1;\nnodes = (\n(605,1725,l),\n(605,1757,o),\n(621,1778,o),\n(645,1778,cs),\n(663,1778,o),\n(677,1768,o),\n(692,1756,cs),\n(712,1742,o),\n(734,1725,o),\n(773,1726,cs),\n(835,1726,o),\n(884,1775,o),\n(885,1862,c),\n(804,1865,l),\n(804,1833,o),\n(790,1812,o),\n(763,1811,cs),\n(746,1811,o),\n(731,1821,o),\n(715,1833,cs),\n(695,1847,o),\n(671,1863,o),\n(635,1863,cs),\n(573,1863,o),\n(523,1814,o),\n(523,1726,c)\n);\n}\n);\nwidth = 389;\n},\n{\nanchors = (\n{\nname = _top;\npos = (194,508);\n}\n);\nassociatedMasterId = m003;\nguides = (\n{\npos = (8,729);\n},\n{\npos = (13,559);\n},\n{\npos = (10,644);\n}\n);\nlayerId = \"45818B1E-5F7D-4BC1-B8BA-26BE04D49AE9\";\nname = \"23 Sep 24 at 16:04\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(168,619,o),\n(215,559,o),\n(273,559,cs),\n(353,559,o),\n(386,625,o),\n(386,720,c),\n(292,720,l),\n(292,685,o),\n(284,660,o),\n(250,660,cs),\n(219,660,o),\n(171,720,o),\n(115,720,cs),\n(36,720,o),\n(2,660,o),\n(2,559,c),\n(96,559,l),\n(96,594,o),\n(106,619,o),\n(138,619,cs)\n);\n}\n);\nwidth = 387;\n}\n);\nunicode = 771;\n},\n{\nglyphname = macroncomb;\nlastChange = \"2024-11-21 09:43:48 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (142,512);\n}\n);\nguides = (\n{\npos = (-27,592);\n},\n{\npos = (-28,639);\n},\n{\npos = (-28,687);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(274,612,l),\n(274,666,l),\n(10,666,l),\n(10,612,l)\n);\n}\n);\nwidth = 284;\n},\n{\nanchors = (\n{\nname = _top;\npos = (179,512);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,612,l),\n(329,680,l),\n(30,680,l),\n(30,612,l)\n);\n}\n);\nwidth = 359;\n},\n{\nanchors = (\n{\nname = _top;\npos = (176,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(337,579,l),\n(337,671,l),\n(11,671,l),\n(11,579,l)\n);\n}\n);\nwidth = 346;\n}\n);\nunicode = 772;\n},\n{\nglyphname = hookabovecomb;\nlastChange = \"2025-01-07 17:10:03 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (37,500);\n}\n);\nguides = (\n{\npos = (-17,591);\n},\n{\npos = (-18,638);\n},\n{\npos = (-18,686);\n},\n{\npos = (-18,709);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(64,571,l),\n(64,597,l),\n(108,603,o),\n(133,629,o),\n(133,668,cs),\n(133,727,o),\n(83,748,o),\n(10,743,c),\n(10,697,l),\n(62,702,o),\n(86,686,o),\n(86,668,cs),\n(86,651,o),\n(67,637,o),\n(16,637,c),\n(16,571,l)\n);\n}\n);\nwidth = 143;\n},\n{\nanchors = (\n{\nname = _top;\npos = (56,500);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(94,590,l),\n(94,618,l),\n(136,623,o),\n(177,654,o),\n(177,698,cs),\n(177,769,o),\n(107,790,o),\n(30,785,c),\n(30,726,l),\n(73,730,o),\n(110,718,o),\n(110,698,cs),\n(110,676,o),\n(73,665,o),\n(30,665,c),\n(30,590,l)\n);\n}\n);\nwidth = 194;\n},\n{\nanchors = (\n{\nname = _top;\npos = (60,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(100,559,l),\n(100,593,l),\n(144,597,o),\n(183,630,o),\n(183,677,cs),\n(183,762,o),\n(97,780,o),\n(16,775,c),\n(16,702,l),\n(68,706,o),\n(101,698,o),\n(101,677,cs),\n(101,656,o),\n(69,646,o),\n(16,646,c),\n(16,559,l)\n);\n}\n);\nwidth = 193;\n}\n);\nunicode = 777;\n},\n{\nglyphname = commaturnedabovecomb;\nlastChange = \"2024-11-09 06:46:14 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (61,512);\n}\n);\nguides = (\n{\npos = (-102,592);\n},\n{\npos = (-103,639);\n},\n{\npos = (-103,687);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(43,772,o),\n(7,715,o),\n(7,653,cs),\n(7,618,o),\n(29,592,o),\n(63,592,cs),\n(88,592,o),\n(109,617,o),\n(109,642,c),\n(109,666,o),\n(88,687,o),\n(63,687,cs),\n(62,687,o),\n(58,687,o),\n(57,687,c),\n(57,738,o),\n(109,749,o),\n(109,749,c),\n(109,749,o),\n(110,772,o),\n(109,772,cs)\n);\n}\n);\nwidth = 122;\n},\n{\nanchors = (\n{\nname = _top;\npos = (86,512);\n}\n);\nguides = (\n{\npos = (-251,700);\n},\n{\npos = (-250,590);\n},\n{\npos = (-251,645);\n},\n{\npos = (-251,727);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(80,788,o),\n(22,742,o),\n(22,662,cs),\n(22,624,o),\n(47,590,o),\n(87,590,cs),\n(124,590,o),\n(141,619,o),\n(141,647,cs),\n(141,673,o),\n(115,699,o),\n(88,699,cs),\n(87,699,o),\n(82,699,o),\n(80,698,c),\n(80,756,o),\n(140,761,o),\n(140,761,c),\n(140,761,o),\n(141,788,o),\n(140,788,cs)\n);\n}\n);\nwidth = 162;\n},\n{\nanchors = (\n{\nname = _top;\npos = (90,508);\n}\n);\nguides = (\n{\npos = (10,729);\n},\n{\npos = (15,559);\n},\n{\npos = (12,644);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(49,802,o),\n(10,709,o),\n(10,644,cs),\n(10,604,o),\n(34,559,o),\n(90,559,cs),\n(130,559,o),\n(159,587,o),\n(159,628,cs),\n(159,661,o),\n(128,690,o),\n(92,690,cs),\n(88,690,o),\n(84,690,o),\n(81,689,c),\n(81,752,o),\n(157,766,o),\n(157,766,c),\n(157,766,o),\n(158,802,o),\n(157,802,cs)\n);\n}\n);\nwidth = 169;\n}\n);\nunicode = 786;\n},\n{\nglyphname = horncomb;\nlastChange = \"2024-11-09 06:46:14 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,451,o),\n(181,529,o),\n(132,651,c),\n(71,632,l),\n(102,562,o),\n(74,500,o),\n(10,500,c),\n(10,451,l)\n);\n}\n);\nwidth = 156;\n},\n{\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,446,o),\n(195,529,o),\n(146,651,c),\n(66,629,l),\n(95,570,o),\n(91,500,o),\n(10,500,c),\n(10,446,l)\n);\n}\n);\nwidth = 173;\n},\n{\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,434,o),\n(236,543,o),\n(182,678,c),\n(68,647,l),\n(97,588,o),\n(96,515,o),\n(15,515,c),\n(15,434,l)\n);\n}\n);\nwidth = 208;\n}\n);\nunicode = 795;\n},\n{\nglyphname = dotbelowcomb;\nlastChange = \"2024-11-09 06:46:14 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (70,0);\n}\n);\nguides = (\n{\npos = (-58,-119);\n},\n{\npos = (-58,-71);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(96,-166,o),\n(117,-144,o),\n(117,-119,cs),\n(117,-93,o),\n(96,-71,o),\n(71,-71,cs),\n(45,-71,o),\n(23,-93,o),\n(23,-119,cs),\n(23,-144,o),\n(45,-166,o),\n(71,-166,cs)\n);\n}\n);\nwidth = 141;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (75,0);\n}\n);\nguides = (\n{\npos = (75,-119);\n},\n{\npos = (75,-64);\n},\n{\npos = (75,-174);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(105,-174,o),\n(129,-149,o),\n(129,-119,cs),\n(129,-89,o),\n(105,-64,o),\n(75,-64,cs),\n(45,-64,o),\n(20,-89,o),\n(20,-119,cs),\n(20,-149,o),\n(45,-174,o),\n(75,-174,cs)\n);\n}\n);\nwidth = 149;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (94,-1);\n}\n);\nguides = (\n{\npos = (-261,-137);\n},\n{\npos = (-261,-52);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(142,-222,o),\n(178,-183,o),\n(178,-137,cs),\n(178,-91,o),\n(142,-52,o),\n(94,-52,cs),\n(49,-52,o),\n(10,-91,o),\n(10,-137,cs),\n(10,-183,o),\n(49,-222,o),\n(94,-222,cs)\n);\n}\n);\nwidth = 188;\n}\n);\nunicode = 803;\n},\n{\nglyphname = commaaccentcomb;\nlastChange = \"2024-11-09 08:09:46 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (61,-12);\n}\n);\nguides = (\n{\npos = (-121,-120);\n},\n{\npos = (-119,-120);\n},\n{\npos = (-119,-71);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(76,-248,o),\n(112,-191,o),\n(112,-129,cs),\n(112,-94,o),\n(95,-68,o),\n(58,-68,cs),\n(29,-68,o),\n(10,-93,o),\n(10,-118,cs),\n(10,-142,o),\n(31,-163,o),\n(56,-163,cs),\n(57,-163,o),\n(61,-163,o),\n(62,-163,c),\n(62,-214,o),\n(10,-225,o),\n(10,-225,c),\n(10,-225,o),\n(9,-248,o),\n(10,-248,cs)\n);\n}\n);\nwidth = 122;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (77,-12);\n}\n);\nguides = (\n{\npos = (75,-119);\n},\n{\npos = (75,-64);\n},\n{\npos = (75,-174);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(90,-269,o),\n(139,-214,o),\n(139,-134,cs),\n(139,-96,o),\n(111,-64,o),\n(74,-64,cs),\n(45,-64,o),\n(21,-93,o),\n(21,-121,cs),\n(21,-147,o),\n(46,-173,o),\n(73,-173,cs),\n(74,-173,o),\n(79,-173,o),\n(81,-172,c),\n(81,-230,o),\n(21,-242,o),\n(21,-242,c),\n(21,-242,o),\n(20,-269,o),\n(21,-269,cs)\n);\n}\n);\nwidth = 158;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (95,-1);\n}\n);\nguides = (\n{\npos = (-309,-137);\n},\n{\npos = (-309,-52);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(134,-354,o),\n(181,-231,o),\n(181,-152,cs),\n(181,-104,o),\n(155,-50,o),\n(90,-50,cs),\n(41,-50,o),\n(10,-92,o),\n(10,-134,cs),\n(10,-173,o),\n(43,-208,o),\n(87,-208,cs),\n(91,-208,o),\n(96,-208,o),\n(99,-207,c),\n(99,-293,o),\n(10,-311,o),\n(10,-311,c),\n(10,-311,o),\n(9,-354,o),\n(10,-354,cs)\n);\n}\n);\nwidth = 191;\n}\n);\nunicode = 806;\n},\n{\nglyphname = commaaccentcomb.loclMAH;\nlastChange = \"2024-11-21 10:00:16 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (109,2);\n}\n);\nguides = (\n{\npos = (-73,-204);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(161,-204,o),\n(207,-169,o),\n(207,-122,cs),\n(207,-65,o),\n(157,-40,o),\n(110,-40,cs),\n(96,-40,o),\n(84,-42,o),\n(73,-45,c),\n(83,-91,l),\n(83,-91,o),\n(96,-87,o),\n(111,-87,c),\n(135,-87,o),\n(154,-100,o),\n(154,-121,cs),\n(154,-139,o),\n(140,-157,o),\n(108,-157,cs),\n(78,-157,o),\n(53,-135,o),\n(43,-122,c),\n(12,-158,l),\n(33,-186,o),\n(67,-204,o),\n(111,-204,cs)\n);\n}\n);\nwidth = 215;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (125,2);\n}\n);\nguides = (\n{\npos = (63,-119);\n},\n{\npos = (63,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(168,-207,o),\n(213,-172,o),\n(213,-119,cs),\n(213,-66,o),\n(169,-41,o),\n(123,-41,cs),\n(104,-41,o),\n(92,-43,o),\n(81,-46,c),\n(94,-95,l),\n(100,-93,o),\n(108,-91,o),\n(116,-91,cs),\n(144,-91,o),\n(157,-101,o),\n(157,-118,cs),\n(157,-136,o),\n(140,-146,o),\n(115,-146,cs),\n(79,-146,o),\n(57,-124,o),\n(47,-111,c),\n(10,-157,l),\n(31,-185,o),\n(71,-207,o),\n(116,-207,cs)\n);\n}\n);\nwidth = 223;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (135,-1);\n}\n);\nguides = (\n{\npos = (-309,-137);\n},\n{\npos = (-309,-52);\n},\n{\npos = (-309,-227);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(198,-227,o),\n(250,-188,o),\n(250,-127,cs),\n(250,-67,o),\n(199,-39,o),\n(144,-39,cs),\n(123,-39,o),\n(102,-44,o),\n(90,-48,c),\n(107,-112,l),\n(112,-109,o),\n(123,-105,o),\n(137,-105,cs),\n(168,-105,o),\n(178,-119,o),\n(178,-129,cs),\n(178,-151,o),\n(159,-159,o),\n(135,-159,cs),\n(95,-159,o),\n(71,-134,o),\n(60,-120,c),\n(19,-172,l),\n(42,-203,o),\n(86,-227,o),\n(137,-227,cs)\n);\n}\n);\nwidth = 263;\n}\n);\n},\n{\nglyphname = cedillacomb;\nlastChange = \"2025-01-08 14:08:50 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (107,2);\n}\n);\nguides = (\n{\npos = (-69,-120);\n},\n{\npos = (-73,-204);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(165,-208,o),\n(210,-174,o),\n(210,-123,cs),\n(210,-66,o),\n(158,-31,o),\n(111,-45,c),\n(136,9,l),\n(89,9,l),\n(49,-77,l),\n(79,-102,l),\n(83,-97,o),\n(94,-88,o),\n(114,-88,cs),\n(135,-88,o),\n(156,-100,o),\n(156,-125,cs),\n(156,-153,o),\n(136,-165,o),\n(111,-165,cs),\n(78,-165,o),\n(53,-144,o),\n(43,-131,c),\n(12,-162,l),\n(33,-190,o),\n(67,-208,o),\n(111,-208,cs)\n);\n}\n);\nwidth = 215;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (117,2);\n}\n);\nguides = (\n{\npos = (75,-119);\n},\n{\npos = (75,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(192,-214,o),\n(234,-180,o),\n(234,-124,cs),\n(234,-61,o),\n(180,-33,o),\n(127,-46,c),\n(154,8,l),\n(88,8,l),\n(47,-73,l),\n(91,-104,l),\n(95,-99,o),\n(110,-90,o),\n(128,-90,cs),\n(146,-90,o),\n(164,-102,o),\n(164,-121,cs),\n(164,-145,o),\n(146,-153,o),\n(125,-153,cs),\n(94,-153,o),\n(69,-131,o),\n(59,-118,c),\n(22,-164,l),\n(43,-192,o),\n(83,-214,o),\n(128,-214,cs)\n);\n}\n);\nwidth = 247;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (128,-1);\n}\n);\nguides = (\n{\npos = (-305,-237);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(224,-239,o),\n(272,-197,o),\n(272,-135,cs),\n(272,-69,o),\n(214,-25,o),\n(151,-37,c),\n(177,13,l),\n(91,13,l),\n(45,-74,l),\n(100,-118,l),\n(106,-114,o),\n(118,-104,o),\n(139,-104,cs),\n(159,-104,o),\n(174,-116,o),\n(174,-132,cs),\n(174,-150,o),\n(158,-160,o),\n(139,-160,cs),\n(104,-160,o),\n(74,-134,o),\n(63,-123,c),\n(16,-184,l),\n(39,-216,o),\n(94,-239,o),\n(145,-239,cs)\n);\n}\n);\nwidth = 288;\n},\n{\nassociatedMasterId = m003;\nlayerId = \"D7FDC5D9-E24B-404A-97F7-033D7CD42960\";\nname = \"2 Sep 24 at 17:10\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(359,-216,o),\n(409,-177,o),\n(409,-118,cs),\n(409,-60,o),\n(360,-32,o),\n(305,-32,cs),\n(284,-32,o),\n(263,-37,o),\n(251,-41,c),\n(268,-103,l),\n(273,-100,o),\n(284,-96,o),\n(298,-96,cs),\n(329,-96,o),\n(339,-110,o),\n(339,-120,cs),\n(339,-142,o),\n(320,-150,o),\n(296,-150,cs),\n(256,-150,o),\n(232,-125,o),\n(221,-111,c),\n(180,-161,l),\n(203,-192,o),\n(247,-216,o),\n(298,-216,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 807;\n},\n{\nglyphname = ogonekcomb;\nlastChange = \"2024-11-01 00:25:07 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _ogonek;\npos = (132,25);\n}\n);\nguides = (\n{\npos = (-73,-204);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(152,-204,o),\n(177,-195,o),\n(191,-182,c),\n(167,-131,l),\n(138,-153,o),\n(91,-139,o),\n(91,-101,cs),\n(91,-65,o),\n(113,-36,o),\n(159,-5,c),\n(132,25,l),\n(58,-12,o),\n(28,-61,o),\n(28,-116,cs),\n(28,-171,o),\n(72,-204,o),\n(126,-204,cs)\n);\n}\n);\nwidth = 185;\n},\n{\nanchors = (\n{\nname = _ogonek;\npos = (132,34);\n}\n);\nguides = (\n{\npos = (77,-119);\n},\n{\npos = (77,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(149,-206,o),\n(180,-194,o),\n(194,-181,c),\n(171,-118,l),\n(129,-145,o),\n(87,-133,o),\n(87,-93,cs),\n(87,-63,o),\n(109,-29,o),\n(163,-1,c),\n(132,34,l),\n(46,-1,o),\n(14,-58,o),\n(14,-113,cs),\n(14,-170,o),\n(60,-206,o),\n(113,-206,cs)\n);\n}\n);\nwidth = 192;\n},\n{\nanchors = (\n{\nname = _ogonek;\npos = (133,41);\n}\n);\nguides = (\n{\npos = (-309,-237);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(171,-237,o),\n(201,-219,o),\n(222,-199,c),\n(184,-124,l),\n(147,-155,o),\n(103,-132,o),\n(103,-89,cs),\n(103,-56,o),\n(123,-26,o),\n(175,0,c),\n(133,42,l),\n(36,-4,o),\n(1,-51,o),\n(0,-128,cs),\n(-1,-193,o),\n(56,-237,o),\n(123,-237,cs)\n);\n}\n);\nwidth = 214;\n}\n);\nunicode = 808;\n},\n{\nglyphname = macronbelowcomb;\nlastChange = \"2024-10-21 04:17:01 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (142,-12);\n}\n);\nguides = (\n{\npos = (-102,-120);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(274,-147,l),\n(274,-93,l),\n(10,-93,l),\n(10,-147,l)\n);\n}\n);\nwidth = 284;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (160,-12);\n}\n);\nguides = (\n{\npos = (41,-119);\n},\n{\npos = (41,-207);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(309,-153,l),\n(309,-85,l),\n(10,-85,l),\n(10,-153,l)\n);\n}\n);\nwidth = 319;\n},\n{\nanchors = (\n{\nname = _bottom;\npos = (180,-1);\n}\n);\nguides = (\n{\npos = (-261,-137);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(343,-182,l),\n(343,-90,l),\n(17,-90,l),\n(17,-182,l)\n);\n}\n);\nwidth = 359;\n}\n);\nunicode = 817;\n},\n{\nglyphname = brevecomb_acutecomb;\nlastChange = \"2024-10-21 04:17:01 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (197,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (51,0);\nref = brevecomb;\n},\n{\npos = (141,138);\nref = acutecomb;\n}\n);\nwidth = 408;\n},\n{\nanchors = (\n{\nname = _top;\npos = (200,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (55,0);\nref = brevecomb;\n},\n{\npos = (145,160);\nref = acutecomb;\n}\n);\nwidth = 410;\n},\n{\nanchors = (\n{\nname = _top;\npos = (175,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (104,201);\nref = acutecomb;\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = brevecomb_gravecomb;\nlastChange = \"2024-10-21 04:17:01 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (207,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (61,0);\nref = brevecomb;\n},\n{\npos = (64,134);\nref = gravecomb;\n}\n);\nwidth = 410;\n},\n{\nanchors = (\n{\nname = _top;\npos = (208,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (64,0);\nref = brevecomb;\n},\n{\npos = (63,161);\nref = gravecomb;\n}\n);\nwidth = 410;\n},\n{\nanchors = (\n{\nname = _top;\npos = (175,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (-8,201);\nref = gravecomb;\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = brevecomb_hookabovecomb;\nlastChange = \"2024-11-07 17:17:16 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (188,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(261,590,o),\n(300,645,o),\n(300,709,c),\n(243,709,l),\n(243,663,o),\n(218,641,o),\n(188,641,cs),\n(159,641,o),\n(133,663,o),\n(133,709,c),\n(76,709,l),\n(76,645,o),\n(115,590,o),\n(188,590,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(220,739,l),\n(220,767,l),\n(262,772,o),\n(298,802,o),\n(298,847,cs),\n(298,918,o),\n(229,939,o),\n(152,934,c),\n(152,881,l),\n(195,885,o),\n(238,874,o),\n(238,847,cs),\n(238,816,o),\n(201,805,o),\n(158,805,c),\n(158,739,l)\n);\n}\n);\nwidth = 376;\n},\n{\nanchors = (\n{\nname = _top;\npos = (200,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(284,588,o),\n(333,655,o),\n(333,727,c),\n(260,727,l),\n(260,688,o),\n(241,651,o),\n(199,651,cs),\n(159,651,o),\n(139,688,o),\n(139,727,c),\n(66,727,l),\n(66,655,o),\n(115,588,o),\n(199,588,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(229,739,l),\n(229,767,l),\n(271,772,o),\n(307,802,o),\n(307,847,cs),\n(307,918,o),\n(238,939,o),\n(161,934,c),\n(161,881,l),\n(204,885,o),\n(247,874,o),\n(247,847,cs),\n(247,816,o),\n(210,805,o),\n(167,805,c),\n(167,739,l)\n);\n}\n);\nwidth = 401;\n},\n{\nanchors = (\n{\nname = _top;\npos = (175,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(278,556,o),\n(337,639,o),\n(337,729,c),\n(238,729,l),\n(238,683,o),\n(223,643,o),\n(175,643,cs),\n(129,643,o),\n(111,683,o),\n(111,729,c),\n(12,729,l),\n(12,639,o),\n(73,556,o),\n(175,556,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,736,l),\n(216,770,l),\n(260,774,o),\n(299,807,o),\n(299,854,cs),\n(299,939,o),\n(213,957,o),\n(132,952,c),\n(132,879,l),\n(184,883,o),\n(217,875,o),\n(217,854,cs),\n(217,833,o),\n(185,823,o),\n(132,823,c),\n(132,736,l)\n);\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = brevecomb_tildecomb;\nlastChange = \"2024-10-21 04:17:01 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (230,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (84,0);\nref = brevecomb;\n},\n{\npos = (68,161);\nref = tildecomb;\n}\n);\nwidth = 441;\n},\n{\nanchors = (\n{\nname = _top;\npos = (227,512);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (84,12);\nref = brevecomb;\n},\n{\npos = (65,173);\nref = tildecomb;\n}\n);\nwidth = 441;\n},\n{\nanchors = (\n{\nname = _top;\npos = (175,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (-33,208);\nref = tildecomb;\n}\n);\nwidth = 329;\n}\n);\n},\n{\nglyphname = circumflexcomb_acutecomb;\nlastChange = \"2024-11-09 06:47:52 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (281,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (147,0);\nref = circumflexcomb;\n},\n{\npos = (332,98);\nref = acutecomb;\n}\n);\nwidth = 585;\n},\n{\nanchors = (\n{\nname = _top;\npos = (281,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (132,0);\nref = circumflexcomb;\n},\n{\npos = (348,98);\nref = acutecomb;\n}\n);\nwidth = 585;\n},\n{\nanchors = (\n{\nname = _top;\npos = (181,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (267,134);\nref = acutecomb;\n}\n);\nwidth = 396;\n}\n);\n},\n{\nglyphname = circumflexcomb_gravecomb;\nlastChange = \"2024-11-09 06:47:52 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (134,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (99,99);\nref = gravecomb;\n}\n);\nwidth = 283;\n},\n{\nanchors = (\n{\nname = _top;\npos = (149,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (148,99);\nref = gravecomb;\n}\n);\nwidth = 339;\n},\n{\nanchors = (\n{\nname = _top;\npos = (181,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (178,136);\nref = gravecomb;\n}\n);\nwidth = 425;\n}\n);\n},\n{\nglyphname = circumflexcomb_hookabovecomb;\nlastChange = \"2025-01-07 17:14:14 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (134,512);\n}\n);\nguides = (\n{\nangle = 90;\npos = (134,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (209,101);\nref = hookabovecomb;\n}\n);\nwidth = 342;\n},\n{\nanchors = (\n{\nname = _top;\npos = (149,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (214,92);\nref = hookabovecomb;\n}\n);\nwidth = 401;\n},\n{\nanchors = (\n{\nname = _top;\npos = (181,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (281,119);\nref = hookabovecomb;\n}\n);\nwidth = 474;\n}\n);\n},\n{\nglyphname = circumflexcomb_tildecomb;\nlastChange = \"2024-11-09 06:47:52 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (136,512);\n}\n);\nlayerId = m01;\nshapes = (\n{\npos = (2,0);\nref = circumflexcomb;\n},\n{\npos = (-27,153);\nref = tildecomb;\n}\n);\nwidth = 271;\n},\n{\nanchors = (\n{\nname = _top;\npos = (156,500);\n}\n);\nlayerId = m002;\nshapes = (\n{\npos = (7,0);\nref = circumflexcomb;\n},\n{\npos = (-7,168);\nref = tildecomb;\n}\n);\nwidth = 311;\n},\n{\nanchors = (\n{\nname = _top;\npos = (208,508);\n}\n);\nlayerId = m003;\nshapes = (\n{\npos = (27,0);\nref = circumflexcomb;\n},\n{\npos = (0,200);\nref = tildecomb;\n}\n);\nwidth = 415;\n}\n);\n},\n{\nglyphname = dieresis;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (16,0);\nref = dieresiscomb;\n}\n);\nwidth = 343;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = dieresiscomb;\n}\n);\nwidth = 324;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-43,0);\nref = dieresiscomb;\n}\n);\nwidth = 332;\n}\n);\nunicode = 168;\n},\n{\nglyphname = dotaccent;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (30,0);\nref = dotaccentcomb;\n}\n);\nwidth = 194;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-1,0);\nref = dotaccentcomb;\n}\n);\nwidth = 147;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-16,0);\nref = dotaccentcomb;\n}\n);\nwidth = 159;\n}\n);\nunicode = 729;\n},\n{\nglyphname = grave;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (20,0);\nref = gravecomb;\n}\n);\nwidth = 244;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (24,0);\nref = gravecomb;\n}\n);\nwidth = 238;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-3,0);\nref = gravecomb;\n}\n);\nwidth = 244;\n}\n);\nunicode = 96;\n},\n{\nglyphname = acute;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (20,0);\nref = acutecomb;\n}\n);\nwidth = 244;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (26,0);\nref = acutecomb;\n}\n);\nwidth = 242;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-3,0);\nref = acutecomb;\n}\n);\nwidth = 244;\n}\n);\nunicode = 180;\n},\n{\nglyphname = hungarumlaut;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (20,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 377;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (47,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 440;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-9,0);\nref = hungarumlautcomb;\n}\n);\nwidth = 440;\n}\n);\nunicode = 733;\n},\n{\nglyphname = circumflex;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (40,0);\nref = circumflexcomb;\n}\n);\nwidth = 348;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (62,0);\nref = circumflexcomb;\n}\n);\nwidth = 421;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (17,0);\nref = circumflexcomb;\n}\n);\nwidth = 396;\n}\n);\nunicode = 710;\n},\n{\nglyphname = caron;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (40,0);\nref = caroncomb;\n}\n);\nwidth = 348;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (62,0);\nref = caroncomb;\n}\n);\nwidth = 421;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (17,0);\nref = caroncomb;\n}\n);\nwidth = 396;\n}\n);\nunicode = 711;\n},\n{\nglyphname = breve;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (16,0);\nref = brevecomb;\n}\n);\nwidth = 324;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (157,0);\nref = brevecomb;\n}\n);\nwidth = 600;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-10,0);\nref = brevecomb;\n}\n);\nwidth = 329;\n}\n);\nunicode = 728;\n},\n{\nglyphname = ring;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (48,0);\nref = ringcomb;\n}\n);\nwidth = 333;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-7,0);\nref = ringcomb;\n}\n);\nwidth = 237;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-24,0);\nref = ringcomb;\n}\n);\nwidth = 237;\n}\n);\nunicode = 730;\n},\n{\nglyphname = tilde;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (13,0);\nref = tildecomb;\n}\n);\nwidth = 351;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (138,0);\nref = tildecomb;\n}\n);\nwidth = 601;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-13,0);\nref = tildecomb;\n}\n);\nwidth = 389;\n}\n);\nunicode = 732;\n},\n{\nglyphname = macron;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (40,0);\nref = macroncomb;\n}\n);\nwidth = 364;\n},\n{\nlayerId = m002;\nshapes = (\n{\nref = macroncomb;\n}\n);\nwidth = 359;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-1,0);\nref = macroncomb;\n}\n);\nwidth = 346;\n}\n);\nunicode = 175;\n},\n{\nglyphname = cedilla;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (38,0);\nref = cedillacomb;\n}\n);\nwidth = 298;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (-4,0);\nref = cedillacomb;\n}\n);\nwidth = 247;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-13,0);\nref = cedillacomb;\n}\n);\nwidth = 262;\n}\n);\nunicode = 184;\n},\n{\nglyphname = ogonek;\nlastChange = \"2024-11-21 10:00:45 +0000\";\nlayers = (\n{\nlayerId = m01;\nshapes = (\n{\npos = (22,0);\nref = ogonekcomb;\n}\n);\nwidth = 263;\n},\n{\nlayerId = m002;\nshapes = (\n{\npos = (4,0);\nref = ogonekcomb;\n}\n);\nwidth = 215;\n},\n{\nlayerId = m003;\nshapes = (\n{\npos = (-15,0);\nref = ogonekcomb;\n}\n);\nwidth = 191;\n}\n);\nunicode = 731;\n}\n);\ninstances = (\n{\naxesValues = (\n300\n);\ninstanceInterpolations = {\nm01 = 1;\n};\nname = Light;\nweightClass = 300;\n},\n{\naxesValues = (\n400\n);\ninstanceInterpolations = {\nm002 = 1;\n};\nname = Regular;\n},\n{\naxesValues = (\n500\n);\ninstanceInterpolations = {\nm002 = 0.66667;\nm003 = 0.33333;\n};\nname = Medium;\nweightClass = 500;\n},\n{\naxesValues = (\n600\n);\ninstanceInterpolations = {\nm002 = 0.33333;\nm003 = 0.66667;\n};\nname = SemiBold;\nweightClass = 600;\n},\n{\naxesValues = (\n700\n);\ninstanceInterpolations = {\nm003 = 1;\n};\nisBold = 1;\nname = Bold;\nweightClass = 700;\n}\n);\nkerningLTR = {\nm01 = {\n\"@MMK_L_A\" = {\n\"@MMK_R_A\" = 50;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = -20;\n\"@MMK_R_o\" = -10;\nJ = 20;\nT = -30;\nX = 30;\nY = -30;\nZ = 40;\nquestion = -10;\nquotedblright = -80;\nquoteright = -80;\nv = -23;\nw = -29;\nx = 10;\ny = -17;\n};\n\"@MMK_L_B\" = {\n\"@MMK_R_O\" = 10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\nN = 10;\nb = -10;\nh = -10;\ni = -10;\nj = -10;\nk = -10;\nl = -10;\np = -10;\nperiod = -20;\nquotedblright = -10;\nr = -6;\nu = -13;\nw = -10;\nx = -10;\n};\n\"@MMK_L_E\" = {\n\"@MMK_R_A\" = 0;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -57;\nJ = 10;\nZ = 10;\naacute = -47;\nacircumflex = -56;\nadieresis = -72;\nagrave = -34;\naring = -49;\natilde = -58;\nbraceright = 20;\nbracketright = 20;\neacute = -58;\necircumflex = -58;\nedieresis = -58;\negrave = -58;\nf = -20;\niacute = -50;\nicircumflex = -50;\nigrave = -50;\noacute = -58;\nocircumflex = -58;\nodieresis = -61;\nograve = -58;\notilde = -58;\nparenright = 10;\nperiod = 0;\nr = -48;\nu = -40;\nuacute = -58;\nucircumflex = -58;\nudieresis = -58;\nugrave = -58;\nv = -20;\nw = -20;\ny = -34;\nydieresis = -58;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_A\" = -90;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -80;\nD = -10;\nH = -20;\nJ = -80;\nL = -20;\nS = -30;\nb = -20;\nbackslash = 20;\nbraceright = 20;\ncomma = -100;\nf = -20;\nh = -10;\ni = -30;\nj = -30;\nk = -10;\nm = -40;\nn = -40;\np = -50;\nparenright = 10;\nperiod = -120;\nr = -50;\ns = -50;\nt = -20;\nu = -50;\nw = -20;\nx = -30;\ny = -30;\nz = -30;\n};\n\"@MMK_L_G\" = {\n\"@MMK_R_A\" = 40;\nLslash = 10;\nX = 10;\nbraceright = 20;\nbracketright = 20;\nparenright = 30;\n};\n\"@MMK_L_O\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_B\" = 10;\n\"@MMK_R_E\" = 10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_a\" = -10;\nI = -30;\nJ = 10;\nM = 0;\nS = 10;\nX = -10;\nY = -20;\nbraceright = 20;\ncomma = -50;\ni = -10;\nj = -20;\nk = -10;\nm = -10;\nn = -10;\np = -20;\nperiod = -40;\nquotedblright = -10;\nquoteright = -30;\nu = -10;\nx = -10;\n};\n\"@MMK_L_Q\" = {\nparenright = 20;\nperiod = -30;\nquotedblright = -30;\nquoteright = -30;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a2\" = -80;\nI = 10;\nJ = -40;\nL = 10;\nY = 20;\nZ = 20;\nbackslash = 50;\nbraceright = 30;\nbracketright = 30;\ncolon = -20;\ncomma = -100;\nhyphen = -50;\nicircumflex = 20;\nigrave = 50;\nimacron = 50;\nitilde = 30;\nm = -40;\nn = -30;\np = -20;\nparenright = 20;\nperiod = -80;\nquoteright = 40;\nsemicolon = -20;\nubreve = -30;\nv = -30;\nx = -20;\n};\n\"@MMK_L_Uhorn\" = {\n\"@MMK_R_O\" = 0;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_A\" = -30;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -59;\n\"@MMK_R_a2\" = -30;\n\"@MMK_R_o\" = -65;\nJ = -40;\naacute = -20;\nabreve = -40;\nacircumflex = -30;\nadieresis = -20;\nagrave = -30;\naring = -20;\natilde = -30;\nbackslash = 50;\nbraceright = 30;\nbracketright = 30;\ncolon = -60;\ncomma = -60;\neacute = -30;\necircumflex = -30;\nedieresis = -20;\negrave = -20;\nhyphen = -20;\ni = -20;\nicircumflex = 48;\nidieresis = 48;\nigrave = 48;\nm = -30;\nn = -30;\noacute = -30;\nocircumflex = -30;\nodieresis = -30;\nograve = -30;\nohornacute = -50;\notilde = -30;\np = -30;\nparenright = 30;\nperiod = -60;\nquoteright = 50;\nr = -45;\ns = -40;\nu = -40;\nv = -16;\ny = -17;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_T\" = -60;\n\"@MMK_R_V\" = -20;\nY = -40;\nbracketright = -20;\ncomma = -30;\nemdash = 20;\nendash = 20;\nf = -10;\ni = -10;\nj = -20;\nl = -10;\nlslash = 30;\nparenright = 10;\nperiod = -30;\nquestion = -10;\nquotedblright = -80;\nquoteright = -30;\ns = 10;\nslash = 10;\nw = -10;\nx = -10;\n};\nC = {\nJ = 10;\nbraceright = 20;\nparenright = 10;\nquotedblright = 20;\nquoteright = 20;\n};\nH = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nD = -10;\ni = -10;\nj = -10;\nm = -10;\nn = -10;\np = -20;\nperiod = -50;\n};\nI = {\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = 10;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nJ = -10;\nbackslash = 50;\nf = -30;\nquoteright = 10;\nu = -20;\nv = -20;\nw = -20;\ny = -30;\nz = 10;\n};\nJ = {\n\"@MMK_R_V\" = 20;\nL = 0;\nX = 10;\nY = 20;\nZ = 10;\nbackslash = 50;\nbraceright = 30;\nperiod = -30;\nquotedblright = 20;\nquoteright = 20;\n};\nK = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nP = 10;\nZ = 20;\nbackslash = 50;\nbraceright = 20;\nidieresis = 23;\nigrave = 25;\nsemicolon = 20;\nv = -23;\nw = -19;\ny = -21;\n};\nL = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = -50;\n\"@MMK_R_V\" = -30;\nU = -20;\nX = 10;\nY = -80;\nZ = 20;\nbraceright = 20;\nbracketright = 20;\ncolon = 20;\nemdash = -40;\nendash = -30;\nhyphen = -40;\nparenright = 20;\nquotedblright = -60;\nquoteright = -100;\nsemicolon = 20;\nv = -20;\nw = -30;\nx = 20;\ny = -40;\n};\nLslash = {\n\"@MMK_R_A\" = 50;\n\"@MMK_R_O\" = -40;\nU = -20;\nY = -80;\n};\nM = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nD = -10;\n};\nN = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\np = -10;\n};\nP = {\n\"@MMK_R_A\" = -45;\n\"@MMK_R_a\" = -27;\n\"@MMK_R_a2\" = -20;\n\"@MMK_R_o\" = -24;\nJ = -50;\nbraceright = 10;\ncomma = -150;\nperiod = -120;\nquotedblright = 20;\n};\nR = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nD = -10;\nf = -10;\nquotedblright = -10;\nu = -20;\nw = -20;\ny = -10;\n};\nS = {\nL = 10;\nquoteright = 30;\nw = -10;\n};\nT = {\n\"@MMK_R_A\" = -40;\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -80;\naacute = -60;\nacircumflex = -60;\nadieresis = -60;\nagrave = -60;\naring = -60;\natilde = -60;\neacute = -60;\necircumflex = -60;\nedieresis = -60;\negrave = -60;\ni = -12;\nidieresis = 30;\nidotless = -14;\noacute = -60;\nocircumflex = -60;\nodieresis = -60;\nograve = -60;\notilde = -60;\nr = -60;\ns = -68;\nu = -60;\nuacute = -60;\nucircumflex = -60;\nudieresis = -60;\nugrave = -60;\nuhorn = -60;\nw = -60;\ny = -60;\n};\nU = {\n\"@MMK_R_A\" = -14;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nD = -10;\nX = -10;\nbackslash = 40;\ncolon = -20;\ncomma = -50;\nperiod = -30;\n};\nX = {\n\"@MMK_R_A\" = 30;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nperiod = 20;\nquoteright = 20;\nsemicolon = 20;\nu = -20;\nv = -20;\nw = -20;\n};\nY = {\n\"@MMK_R_A\" = -30;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = 40;\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -70;\nJ = -80;\naacute = -60;\nacircumflex = -30;\nadieresis = -30;\nagrave = -30;\naring = -30;\natilde = -30;\nbackslash = 50;\nbraceright = 30;\nbracketright = 30;\ncolon = -30;\ncomma = -120;\neacute = -30;\necircumflex = -30;\nedieresis = -30;\negrave = -30;\nhyphen = -50;\nicircumflex = 50;\nidieresis = 50;\nidotless = -6;\nigrave = 50;\nm = -30;\nn = -30;\noacute = -60;\nocircumflex = -60;\nodieresis = -60;\nograve = -60;\notilde = -60;\np = -60;\nparenright = 30;\nperiod = -150;\nquotedblbase = -70;\nquoteright = 60;\nr = -40;\ns = -40;\nsemicolon = -20;\nu = -40;\nuacute = -60;\nw = -50;\nx = -30;\nz = -20;\n};\nZ = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_E\" = -20;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\nY = 20;\nbackslash = 50;\nbraceright = 20;\nbracketright = 20;\nparenright = 20;\nquoteright = 30;\n};\na = {\nbraceright = 20;\nbracketright = 20;\nj = -10;\nl = 10;\nparenright = 30;\ns = 20;\nslash = 20;\nz = 20;\n};\nadieresis = {\ngermandbls = 20;\n};\nb = {\nf = -20;\nj = -10;\nperiod = -20;\nw = -20;\ny = -10;\n};\nbackslash = {\n\"@MMK_R_A\" = 30;\n\"@MMK_R_a\" = 40;\nj = 50;\np = 40;\ny = 50;\nz = 20;\n};\nbraceleft = {\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_o\" = -30;\nY = 30;\nZ = 20;\nf = -20;\nj = 20;\nm = -10;\nn = -10;\nw = -20;\n};\nbracketleft = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -30;\nY = 30;\nZ = 20;\nj = 30;\nu = -20;\n};\nc = {\nparenright = 20;\nquoteright = -20;\ny = 10;\n};\ncaroncomb = {\n\"@MMK_R_a\" = -60;\n\"@MMK_R_a2\" = -100;\nu = -60;\n};\ncomma = {\nX = 20;\nx = 20;\n};\nd = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_a\" = -20;\nbraceright = 30;\nbracketright = 20;\nhyphen = -20;\nparenright = 30;\nslash = 20;\nw = -10;\nx = 20;\nz = 20;\n};\ndcaron = {\n\"@MMK_R_a\" = -50;\n\"@MMK_R_o\" = -50;\na.ss01 = -40;\nn = -50;\ns = -40;\nu = -40;\n};\ndegree = {\n\"@MMK_R_O\" = -40;\n\"@MMK_R_o\" = -60;\n};\neight = {\ndegree = -30;\neight = -20;\nfive = -30;\nfour = -20;\nnine = -40;\none = -20;\npercent = -20;\nseven = -70;\nsix = -50;\nthree = -30;\ntwo = -20;\nzero = -20;\n};\nendash = {\nspace = -150;\n};\nf = {\n\"@MMK_R_T\" = 30;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nI = 20;\nY = 30;\nb = 30;\nbackslash = 60;\nbraceright = 50;\nbracketright = 60;\nexclam = 20;\nh = 20;\nk = 10;\nl = 10;\nm = 10;\nparenright = 50;\nperiod = -30;\nquotedblright = 50;\nquoteright = 70;\nt = 20;\nv = 20;\nx = 20;\ny = 20;\nz = 20;\n};\nfive = {\ndegree = -10;\nnine = -30;\n};\nfour = {\ndegree = -50;\nnine = -30;\nordfeminine = -30;\npercent = -40;\nseven = -20;\nzero = -20;\n};\ng = {\n\"@MMK_R_o\" = 10;\nnhookleft = 20;\nparenright = 10;\nquoteright = -10;\n};\ng.ss01 = {\nj = 40;\n};\nh = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\nh = -10;\nj = -20;\nk = -10;\nquotedblright = -80;\nquoteright = -50;\nu = -20;\nw = -10;\n};\nhyphen = {\nf = -20;\n};\ni = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -30;\nD = -20;\nj = -20;\np = -10;\nquoteright = 20;\nspace = 0;\n};\niacute = {\nl = 20;\n};\nicircumflex = {\nl = 20;\n};\nidieresis = {\nl = 20;\n};\nj = {\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -20;\nD = -20;\nb = 10;\nbraceright = 20;\ni = -20;\nquoteright = 20;\ny = 10;\n};\nk = {\nb = 10;\nk = 10;\nl = 10;\nparenright = 10;\nr = 10;\n};\nl = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\ni = -10;\nicircumflex = 20;\nidieresis = 20;\nquoteright = 10;\nv = 10;\n};\nlcaron = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -60;\na.ss01 = -50;\nn = -60;\ns = -60;\nu = -60;\n};\nlslash = {\nw = 20;\ny = 20;\n};\nm = {\n\"@MMK_R_o\" = -10;\nf = -20;\nquotedblright = -80;\nquoteright = -70;\nw = -20;\ny = -20;\n};\nn = {\n\"@MMK_R_a\" = -10;\nf = -20;\nperiod = -20;\nquotedblright = -80;\nquoteright = -40;\nw = -10;\n};\nnhookleft = {\n\"@MMK_R_o\" = -20;\n\"@MMK_R_w\" = -30;\np = -10;\n};\nnhookretroflex = {\n\"@MMK_R_g\" = 40;\nj = 40;\np = 30;\n};\nnine = {\ncomma = -100;\neight = -20;\nfive = -50;\nfour = -50;\nnine = -20;\none = -20;\nperiod = -90;\nseven = -50;\nsix = -50;\nthree = -30;\ntwo = -30;\nzero = -10;\n};\nohorn = {\ni = 20;\n};\nohornacute = {\ni = 20;\n};\none = {\ndegree = -90;\neight = -50;\nfive = -30;\nfour = -50;\nnine = -50;\nordfeminine = -80;\nordmasculine = -50;\npercent = -60;\nseven = -50;\nsix = -30;\nthree = -30;\nzero = -50;\n};\nparenleft = {\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_o\" = -20;\nY = 30;\nZ = 20;\neight = -10;\nj = 30;\n};\nperiod = {\nX = 50;\nx = 20;\n};\nq = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\nbraceright = 30;\nj = 10;\nk = -10;\nm = -10;\nn = -10;\nnhookleft = 20;\nperiod = -20;\nquotedblright = -20;\nslash = 20;\nu = -10;\nw = -10;\n};\nquestiondown = {\n\"@MMK_R_o\" = -30;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -90;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -40;\nJ = -70;\nm = -20;\n};\nquoteleft = {\n\"@MMK_R_A\" = -80;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nJ = -50;\nY = 40;\nZ = 30;\ns = -10;\n};\nquoteright = {\n\"@MMK_R_O\" = -50;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -60;\n\"@MMK_R_o\" = -60;\nJ = -80;\nY = 20;\nj = 20;\nk = 20;\nn = -30;\np = -20;\ns = -80;\nu = -30;\nw = -30;\nz = -30;\n};\nr = {\nb = 10;\nbraceright = 20;\ncomma = -80;\nf = 20;\nl = 10;\nperiod = -80;\nquoteright = 40;\nt = 20;\n};\ns = {\nbraceright = 10;\nslash = 10;\n};\nseven = {\ncomma = -120;\neight = -30;\nfive = -40;\nfour = -60;\nnine = -30;\none = -10;\nordfeminine = 10;\nparenright = 20;\nperiod = -120;\nsix = -60;\ntwo = -20;\n};\nsix = {\ndegree = -40;\nfive = -30;\nfour = -20;\nnine = -50;\none = -20;\npercent = -30;\nseven = -80;\nsix = -30;\ntwo = -30;\nzero = 10;\n};\nslash = {\n\"@MMK_R_T\" = 40;\n\"@MMK_R_V\" = 50;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\nU = 30;\nY = 50;\nZ = 50;\nb = 20;\n};\nspace = {\n\"@MMK_R_A\" = -2;\n\"@MMK_R_V\" = -30;\n};\nt = {\n\"@MMK_R_a\" = 10;\nslash = 20;\n};\ntcaron = {\n\"@MMK_R_o\" = -20;\nn = -20;\n};\nthree = {\ndegree = -10;\nordfeminine = -10;\n};\ntwo = {\neight = -50;\nfive = -30;\nfour = -50;\nnine = -30;\nordfeminine = -20;\npercent = -10;\nseven = -50;\nsix = -50;\nthree = -20;\nzero = -20;\n};\nu = {\n\"@MMK_R_a\" = -20;\nbraceright = 10;\nbracketright = -20;\nf = -20;\nperiod = -20;\nquoteright = -30;\n};\nuhorn = {\nohorn = -30;\nohorndotbelow = -20;\n};\nv = {\n\"@MMK_R_o\" = -10;\ncomma = -60;\nperiod = -60;\nquoteright = 20;\n};\nw = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\ncomma = -70;\nf = -10;\nhyphen = -20;\nj = -10;\nlslash = 20;\np = -10;\nperiod = -70;\nquotedblright = -10;\ns = -10;\nspace = -11;\nu = -10;\n};\nx = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\nexclam = 20;\nslash = 20;\n};\ny = {\n\"@MMK_R_T\" = -50;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\ncomma = -100;\nlslash = 20;\nperiod = -100;\nquoteright = 30;\n};\nz = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -10;\nperiod = -20;\n};\n};\nm002 = {\n\"@MMK_L_A\" = {\n\"@MMK_R_A\" = 50;\n\"@MMK_R_E\" = 10;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -20;\nJ = 10;\nX = 20;\nY = -50;\nZ = 10;\nbracketright = -30;\ncomma = 20;\nquestion = -10;\nquotedblright = -50;\nquoteright = -70;\ns = 10;\nslash = 50;\nv = -10;\nw = -20;\nx = 30;\nz = 10;\n};\n\"@MMK_L_B\" = {\n\"@MMK_R_T\" = -60;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\nY = -20;\nZ = 10;\nbackslash = 20;\nbraceright = -10;\nbracketright = -40;\ncomma = -20;\nh = -10;\nicircumflex = 10;\nigrave = 10;\nj = -10;\nn = -10;\np = -10;\nperiod = -30;\nquestion = -10;\nquotedblright = -10;\nw = -20;\n};\n\"@MMK_L_E\" = {\n\"@MMK_R_A\" = 0;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -30;\nP = 10;\nX = 20;\nb = -10;\nbackslash = 40;\nicircumflex = 50;\nidieresis = 50;\nigrave = 50;\nm = -10;\nperiod = -20;\nquotedblright = 10;\nslash = 40;\nu = -30;\nudieresis = -20;\nv = -20;\nw = -30;\nx = 10;\ny = -20;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_A\" = -70;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_a\" = -60;\n\"@MMK_R_o\" = -60;\nJ = -80;\nbackslash = 50;\ncomma = -100;\ni = -20;\nj = -30;\nk = -10;\nm = -30;\nn = -40;\np = -40;\nperiod = -100;\nr = -40;\ns = -50;\nu = -40;\nv = -30;\nw = -30;\nx = -20;\ny = 0;\nz = -20;\n};\n\"@MMK_L_G\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_T\" = -70;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\nK = 10;\nY = -20;\nbracketright = -60;\nl = 20;\nx = 10;\n};\n\"@MMK_L_K\" = {\n\"@MMK_R_quoteright\" = -20;\nbackslash = 30;\nslash = 30;\n};\n\"@MMK_L_O\" = {\n\"@MMK_R_A\" = -10;\n\"@MMK_R_T\" = -70;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -30;\nI = -20;\nY = -40;\nbackslash = 10;\nbraceright = -20;\nbracketright = -60;\ncomma = -30;\nemdash = 20;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nj = -20;\nk = -20;\nn = -10;\np = -10;\nperiod = -60;\nquotedblright = -10;\nu = -20;\n};\n\"@MMK_L_Q\" = {\n\"@MMK_R_T\" = -80;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -30;\nY = -20;\nquestion = -10;\nquotedblright = -20;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_a2\" = -80;\n\"@MMK_R_colon\" = -40;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_u\" = -70;\n\"@MMK_R_v\" = -40;\nJ = -80;\nS = -10;\ncomma = -100;\nemdash = -20;\nfour = -50;\nh = -10;\nhyphen = -70;\ni = -30;\niacute = -10;\nimacron = 40;\nitilde = 40;\nj = -40;\nn = -50;\np = -60;\nperiod = -100;\nslash = -40;\nubreve = -70;\nx = -30;\nz = -30;\n};\n\"@MMK_L_Uhorn\" = {\n\"@MMK_R_O\" = -40;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_.\" = -100;\n\"@MMK_R_A\" = -30;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_a2\" = -60;\n\"@MMK_R_colon\" = -20;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_w\" = -20;\nD = 10;\nJ = -50;\nLslash = -10;\nX = 30;\nY = 10;\nabreve = -50;\nbackslash = 100;\nbracketright = -20;\ncolon = -30;\nhyphen = -30;\nicircumflex = 50;\nidieresis = 50;\nigrave = 50;\np = -20;\nperiod = -100;\nr = -20;\ns = -20;\nslash = -40;\nu = -20;\n};\n\"@MMK_L_i\" = {\n\"@MMK_R_quoteright\" = 10;\nbracketright = -50;\n};\n\"@MMK_L_n\" = {\n\"@MMK_R_quoteright\" = -40;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\nbracketright = -80;\nquestion = -20;\nquotedblright = -50;\nslash = 20;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_T\" = -100;\n\"@MMK_R_V\" = -30;\n\"@MMK_R_j\" = -20;\n\"@MMK_R_quoteright\" = -60;\nY = -50;\nb = -10;\nbraceright = -20;\nbracketright = -60;\ncomma = -30;\nf = -10;\nh = -10;\nj = -30;\nlslash = 20;\nm = -10;\nperiod = -40;\nquestion = -20;\nquotedblright = -40;\nr = -10;\nw = -30;\n};\n\"@MMK_L_quoteleft\" = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_o\" = -60;\nD = -10;\nJ = -100;\np = -20;\nr = -20;\ns = -20;\nu = -30;\n};\n\"@MMK_L_quoteright\" = {\n\"@MMK_R_A\" = -70;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_n\" = -50;\n\"@MMK_R_o\" = -80;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\ns = -80;\nu = -50;\nz = -10;\n};\n\"@MMK_L_u\" = {\n\"@MMK_R_o\" = -50;\n};\n\"@MMK_L_uhorn\" = {\n\"@MMK_R_o\" = -50;\n};\n\"@MMK_L_v\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_j\" = -10;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = 10;\n\"@MMK_R_v\" = -30;\nX = 20;\nY = 20;\nZ = 20;\nbraceright = -30;\nbracketright = -40;\nperiod = -20;\nslash = 0;\n};\n\"@MMK_L_w\" = {\n\"@MMK_R_j\" = -20;\n\"@MMK_R_quoteright\" = 0;\nbraceright = -60;\nbracketright = -80;\ncomma = -70;\nendash = -10;\nperiod = -60;\nslash = -20;\n};\nAE = {\n\"@MMK_R_A\" = 10;\n};\nC = {\n\"@MMK_R_T\" = -40;\n\"@MMK_R_o\" = -10;\nbackslash = 30;\nbraceright = -20;\nbracketright = -30;\ncomma = -30;\nj = -20;\nperiod = -40;\nquotedblright = 10;\nx = 10;\ny = 20;\n};\nH = {\n\"@MMK_R_T\" = -30;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -20;\nbackslash = 30;\nbracketright = -50;\nj = -20;\nperiod = -30;\nu = -20;\n};\nI = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nbackslash = 50;\nbracketright = -20;\np = -20;\nperiod = -20;\nr = -20;\nslash = 20;\nu = -30;\nv = -20;\nw = -30;\ny = -30;\n};\nJ = {\n\"@MMK_R_T\" = -30;\n\"@MMK_R_o\" = -10;\nY = 20;\nbackslash = 30;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nm = -10;\np = -10;\nperiod = -50;\nslash = 20;\nu = -10;\nv = 10;\ny = 10;\n};\nK = {\n\"@MMK_R_a\" = -25;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_w\" = -20;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nj = -10;\nu = -15;\nv = -30;\nw = -30;\nx = 20;\n};\nL = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -30;\n\"@MMK_R_quoteright\" = -100;\n\"@MMK_R_v\" = -10;\nY = -60;\nZ = 30;\nendash = -50;\nhyphen = -50;\nquestion = -20;\nquotedblright = -100;\nslash = 40;\nw = -30;\nx = 30;\ny = -10;\nz = 10;\n};\nLslash = {\n\"@MMK_R_A\" = 40;\n\"@MMK_R_O\" = -30;\nOacute = -20;\nU = -20;\nY = -70;\n};\nM = {\n\"@MMK_R_T\" = -40;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -20;\nbraceright = -10;\nbracketright = -40;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nperiod = -30;\nslash = 10;\n};\nN = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -40;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_w\" = -10;\nb = -10;\nbracketright = -30;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nj = -10;\nperiod = -40;\n};\nP = {\n\"@MMK_R_A\" = -40;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_v\" = 20;\nJ = -50;\nbracketright = -40;\ncomma = -120;\nfour = -20;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nj = -20;\nperiod = -150;\nslash = -40;\nt = 10;\nx = 10;\n};\nR = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -70;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -30;\nLslash = -20;\nbraceright = -20;\nicircumflex = 30;\nidieresis = 30;\nigrave = 30;\nquestion = -20;\nquotedblright = -10;\nu = -10;\nx = 10;\n};\nS = {\n\"@MMK_R_O\" = 10;\n\"@MMK_R_T\" = -30;\nJ = 30;\nN = 20;\nP = 10;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nparenright = 20;\nperiod = -10;\nquotedblright = -10;\n};\nT = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -100;\nicircumflex = 40;\nidieresis = 60;\nigrave = 40;\nr = -70;\ns = -80;\nu = -70;\nuhorn = -100;\nw = -70;\ny = -40;\n};\nThorn = {\nY = -20;\n};\nU = {\n\"@MMK_R_A\" = -20;\n\"@MMK_R_T\" = -40;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_quoteright\" = -20;\nbracketright = -40;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nk = -10;\np = -10;\nperiod = -50;\nv = 20;\n};\nX = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -30;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -10;\nJ = 20;\nZ = 30;\nbackslash = 50;\nbracketright = -50;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nx = 10;\n};\nY = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_T\" = -10;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_a\" = -60;\n\"@MMK_R_colon\" = -30;\n\"@MMK_R_n\" = -40;\n\"@MMK_R_o\" = -80;\nJ = -80;\nbackslash = 80;\nbracketright = -30;\ncomma = -100;\nf = -10;\nhyphen = -70;\ni = -10;\nicircumflex = 60;\nidieresis = 60;\nigrave = 70;\nj = -20;\nn = -40;\np = -50;\nperiod = -130;\nquotedblbase = -100;\nr = -50;\ns = -60;\nslash = -50;\nu = -60;\nw = -50;\n};\nZ = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_o\" = -20;\nbackslash = 60;\nicircumflex = 60;\nidieresis = 60;\nigrave = 60;\n};\na = {\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_quoteright\" = -10;\nbracketright = -40;\nj = -10;\np = -10;\nperiod = -20;\nquestion = -10;\nw = -10;\nx = 10;\nz = 10;\n};\naogonek = {\nlslash = 10;\n};\nbackslash = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = -20;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nY = -40;\nZ = 20;\nj = 50;\n};\nbraceleft = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_T\" = -10;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -60;\nD = -10;\nL = -10;\nM = -10;\nR = -20;\nS = -20;\nf = -50;\nj = 20;\nu = -50;\n};\nbracketleft = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_n\" = -50;\n\"@MMK_R_o\" = -50;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nj = 20;\nk = -20;\ns = -30;\nu = -40;\n};\nc = {\n\"@MMK_R_j\" = -20;\nbracketright = -50;\nw = -10;\n};\ncaroncomb = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_a2\" = -120;\nu = -70;\n};\ncomma = {\nx = 40;\n};\nd = {\ncaroncomb = -10;\nhyphen = -20;\nslash = 20;\nw = -20;\nz = 10;\n};\ndcaron = {\n\"@MMK_R_a\" = -60;\n\"@MMK_R_o\" = -60;\na.ss01 = -60;\nn = -50;\ns = -50;\nu = -50;\n};\neight = {\n\"@MMK_R_.\" = -60;\nfive = -30;\nfour = -30;\npercent = -30;\nseven = -40;\nthree = -10;\ntwo = -20;\n};\nemdash = {\n\"@MMK_R_E\" = 20;\n\"@MMK_R_T\" = -100;\n};\nendash = {\n\"@MMK_R_T\" = -70;\nspace = -100;\n};\nequal = {\nseven = -20;\n};\nf = {\n\"@MMK_R_E\" = 30;\n\"@MMK_R_V\" = 50;\nI = 10;\nY = 40;\nbackslash = 70;\nbraceright = 50;\nbracketright = 50;\ncomma = -30;\nl = 20;\np = 10;\nparenright = 50;\nperiod = -40;\nquotedblright = 50;\nquoteright = 40;\nt = 30;\nv = 40;\nx = 30;\ny = 30;\nz = 20;\n};\nfive = {\n\"@MMK_R_.\" = -80;\ndegree = -20;\nfive = -20;\nfour = -30;\ngreater = 10;\nnine = -30;\none = -20;\npercent = -40;\nseven = -20;\nthree = -20;\ntwo = -20;\n};\nfour = {\n\"@MMK_R_.\" = -50;\n\"@MMK_R_T\" = -50;\ncent = -30;\ndegree = -30;\nequal = 20;\npercent = -50;\n};\ng = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -50;\nbracketright = -90;\ncomma = -10;\np = -10;\nperiod = -40;\nw = -10;\n};\nh = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_j\" = -20;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = -80;\nbracketright = -60;\nperiod = -20;\nquotedblright = -50;\nw = -25;\n};\nhyphen = {\n\"@MMK_R_T\" = -100;\n};\ni = {\nj = -30;\n};\niacute = {\nl = 50;\n};\nicircumflex = {\nl = 40;\n};\nidieresis = {\nl = 60;\n};\nigrave = {\nspace = 0;\n};\nj = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_o\" = -10;\nbracketright = -30;\nslash = 20;\nx = 20;\ny = 20;\n};\nk = {\nbracketright = -60;\nn = 10;\nslash = 20;\nv = 10;\nx = 20;\ny = 20;\nz = 10;\n};\nl = {\n\"@MMK_R_O\" = 10;\n\"@MMK_R_V\" = 30;\nbackslash = 40;\nbracketright = -40;\nicircumflex = 50;\nidieresis = 40;\nquotedblright = 10;\nt = 10;\n};\nlcaron = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -70;\na.ss01 = -70;\nn = -60;\ns = -60;\nu = -60;\n};\nlslash = {\n\"@MMK_R_o\" = 10;\nw = 20;\ny = 20;\n};\nm = {\n\"@MMK_R_o\" = -10;\nh = -10;\nt = -10;\nv = -10;\nw = -20;\n};\nn = {\n\"@MMK_R_o\" = -10;\nperiod = -20;\nw = -10;\n};\nnhookretroflex = {\n\"@MMK_R_g\" = 30;\n\"@MMK_R_w\" = -20;\nj = 30;\np = 30;\nx = 10;\n};\nnine = {\ncent = -20;\ncomma = -70;\nfive = -30;\nfour = -40;\nnine = -10;\nperiod = -100;\nseven = -40;\nsix = -20;\nthree = -20;\n};\none = {\n\"@MMK_R_.\" = -30;\ncent = -50;\ndegree = -80;\neight = -50;\nfive = -50;\nfour = -50;\nnine = -50;\nordfeminine = -90;\nordmasculine = -50;\npercent = -80;\nseven = -50;\nsix = -30;\nthree = -30;\nzero = -20;\n};\nparenleft = {\n\"@MMK_R_a\" = -20;\neight = -10;\nj = 20;\n};\nq = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_j\" = 30;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -30;\nj = 30;\nslash = 40;\nx = 10;\ny = 20;\n};\nquestiondown = {\n\"@MMK_R_o\" = -50;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -80;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -60;\nJ = -80;\nS = -20;\np = -10;\ns = -30;\nt = 10;\nu = -10;\n};\nquoteleft = {\n\"@MMK_R_A\" = -80;\n};\nr = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = 20;\nbackslash = 30;\ncomma = -80;\nf = 20;\nperiod = -100;\nquotedblright = 20;\nt = 30;\nv = 20;\nw = 20;\nx = 20;\ny = 40;\nz = 10;\n};\nrupeeIndian = {\nnine = 20;\nseven = 20;\n};\ns = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -40;\nJ = 20;\nbracketright = -60;\nj = -30;\nlslash = 10;\nquestion = -10;\n};\nseven = {\ncent = -30;\ncomma = -80;\ndegree = 30;\nfour = -50;\nordfeminine = 20;\nparenright = 20;\nperiod = -120;\nsix = -30;\nthree = 20;\n};\nsix = {\n\"@MMK_R_.\" = -30;\ndegree = -40;\nfive = -30;\nfour = -30;\nnine = -30;\none = -20;\npercent = -60;\nseven = -50;\ntwo = -20;\n};\nslash = {\n\"@MMK_R_E\" = 10;\n\"@MMK_R_T\" = 40;\n\"@MMK_R_V\" = 50;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -50;\n\"@MMK_R_w\" = -20;\nI = 20;\nJ = -50;\nK = 20;\nM = 20;\nP = 20;\nX = 70;\nY = 70;\nZ = 40;\n};\nt = {\n\"@MMK_R_o\" = -10;\nf = 0;\nl = 10;\nquotedblright = 10;\nv = 10;\nx = 20;\ny = 10;\n};\ntcaron = {\n\"@MMK_R_a\" = -20;\na.ss01 = -20;\nh = 20;\n};\nthree = {\n\"@MMK_R_.\" = -50;\ncent = -30;\ndegree = -10;\npercent = -10;\n};\ntwo = {\n\"@MMK_R_.\" = -30;\ncent = -30;\ndegree = -10;\neight = -20;\nfive = -30;\nfour = -50;\nnine = -10;\npercent = -20;\nseven = -50;\nsix = -30;\nthree = -30;\nx = 20;\nzero = -10;\n};\nu = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -50;\nD = -20;\nbraceright = -20;\nbracketright = -60;\nj = -20;\nperiod = -20;\nquotedblright = -20;\n};\nuhorn = {\nn = -30;\nohorn = -50;\n};\nuhorntilde = {\nn = -30;\n};\nv = {\nf = 20;\nj = -20;\nt = 20;\nv = 30;\nw = 10;\nx = 20;\ny = 30;\n};\nw = {\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -30;\nj = -10;\nlslash = 10;\np = -10;\nr = -10;\nt = 10;\nx = 10;\n};\nx = {\n\"@MMK_R_A\" = 40;\n\"@MMK_R_o\" = -10;\nJ = 20;\nbracketright = -30;\nl = 20;\np = 10;\nt = 20;\nv = 20;\ny = 10;\n};\ny = {\n\"@MMK_R_T\" = -60;\n\"@MMK_R_o\" = -10;\ncomma = -80;\nk = -10;\nlslash = 20;\nperiod = -100;\nr = -10;\nt = 20;\nv = 30;\n};\nz = {\n\"@MMK_R_o\" = -10;\n};\nzero = {\n\"@MMK_R_.\" = -80;\ndegree = -10;\npercent = -20;\n};\n};\nm003 = {\n\"@MMK_L_.\" = {\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -60;\nX = 30;\nY = -80;\nZ = 50;\n};\n\"@MMK_L_0\" = {\nicircumflex = 50;\nidieresis = 50;\nigrave = 30;\n};\n\"@MMK_L_A\" = {\n\"@MMK_R_A\" = 80;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -80;\n\"@MMK_R_V\" = -40;\n\"@MMK_R_o\" = -10;\nJ = 40;\nLslash = -10;\nX = 20;\nY = -50;\nZ = 20;\nbackslash = -20;\nicircumflex = 40;\nidieresis = 40;\nigrave = 40;\nquestion = -10;\nquestiondown = 20;\nquotedblright = -50;\nquoteright = -60;\nslash = 30;\nt = -10;\nw = -30;\nx = 10;\n};\n\"@MMK_L_B\" = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_T\" = -10;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_w\" = -10;\nJ = 30;\nY = -20;\nZ = 10;\nbackslash = 20;\nicircumflex = 30;\nidieresis = 30;\nigrave = 40;\n};\n\"@MMK_L_E\" = {\n\"@MMK_R_A\" = 30;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\nJ = 30;\nX = 20;\nZ = 20;\nZdotaccent = 20;\nbackslash = 50;\nicircumflex = 70;\nidieresis = 100;\nigrave = 70;\nparenright = 20;\nperiod = 0;\nr = -30;\nslash = 20;\nu = -30;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_.\" = -100;\n\"@MMK_R_A\" = -70;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_T\" = 10;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_w\" = -20;\nJ = -70;\nY = 20;\nZ = 30;\nbackslash = 60;\nparenright = 10;\nr = -20;\ns = -20;\nu = -20;\n};\n\"@MMK_L_G\" = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_w\" = -20;\nY = -20;\nbackslash = 20;\n};\n\"@MMK_L_K\" = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 10;\n\"@MMK_R_v\" = -20;\nbackslash = 60;\nx = 20;\nz = 10;\n};\n\"@MMK_L_O\" = {\n\"@MMK_R_.\" = -40;\n\"@MMK_R_A\" = -10;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_w\" = -20;\nI = -10;\nJ = 10;\nX = -10;\nY = -40;\nbackslash = 30;\nicircumflex = 40;\nidieresis = 40;\nigrave = 20;\nquestion = -10;\nquestiondown = -20;\nslash = -20;\n};\n\"@MMK_L_Q\" = {\n\"@MMK_R_A\" = 10;\n\"@MMK_R_O\" = 10;\nJ = 20;\nLslash = 10;\nM = 10;\nY = -10;\nZ = 30;\nslash = 30;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_.\" = -80;\n\"@MMK_R_A\" = -50;\n\"@MMK_R_E\" = -20;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_a2\" = -70;\n\"@MMK_R_n\" = -50;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_v\" = -40;\nJ = -80;\nLslash = -30;\nbackslash = 60;\nbraceright = 30;\nbracketright = -20;\ncomma = -100;\nfour = -40;\nhyphen = -40;\nimacron = 80;\nitilde = 80;\nn = -50;\np = -50;\nslash = -40;\nubreve = -30;\nx = -20;\ny = -20;\nz = -20;\n};\n\"@MMK_L_Uhorn\" = {\n\"@MMK_R_O\" = -50;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_.\" = -50;\n\"@MMK_R_A\" = -40;\n\"@MMK_R_E\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 50;\n\"@MMK_R_a\" = -40;\n\"@MMK_R_a2\" = -50;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -60;\n\"@MMK_R_quoteright\" = 30;\n\"@MMK_R_w\" = -30;\nJ = -40;\nLslash = -20;\nU = 20;\nX = 50;\nY = 40;\nZ = 20;\nabreve = -30;\nbackslash = 100;\nbraceright = 40;\nbracketright = -20;\ncolon = -20;\nicircumflex = 70;\nidieresis = 100;\nigrave = 70;\np = -10;\nquestiondown = -70;\nr = -30;\ns = -50;\nslash = -20;\nu = -30;\nx = -10;\nz = -20;\n};\n\"@MMK_L_i\" = {\n\"@MMK_R_o\" = -5;\n\"@MMK_R_quoteright\" = 20;\nbackslash = 40;\nbracketright = -10;\nslash = 10;\n};\n\"@MMK_L_n\" = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -40;\n\"@MMK_R_w\" = -40;\nbracketright = -30;\nf = -20;\nk = -10;\nparenright = -10;\nquestion = -30;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_V\" = -30;\n\"@MMK_R_colon\" = -10;\n\"@MMK_R_i\" = -10;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nH = -20;\nJ = 20;\nY = -80;\nb = -20;\nbracketright = -30;\nf = -20;\nh = -10;\nk = -20;\nl = -10;\nlslash = 40;\nnhookretroflex = -20;\nparenright = -20;\nquestion = -30;\nr = -20;\ns = -10;\nx = -20;\n};\n\"@MMK_L_quoteleft\" = {\n\"@MMK_R_O\" = -10;\n\"@MMK_R_o\" = -20;\n};\n\"@MMK_L_quoteright\" = {\n\"@MMK_R_A\" = -70;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_o\" = -60;\n\"@MMK_R_w\" = -20;\nJ = -80;\nr = -30;\ns = -80;\nu = -20;\n};\n\"@MMK_L_uhorn\" = {\n\"@MMK_R_o\" = -60;\n};\n\"@MMK_L_v\" = {\n\"@MMK_R_.\" = -80;\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = 20;\nI = -30;\nbackslash = 20;\nbracketright = -50;\nf = 20;\nk = -20;\nnhookretroflex = -10;\nparenright = -10;\nr = -10;\ns = -20;\nslash = -10;\nx = 20;\n};\n\"@MMK_L_w\" = {\n\"@MMK_R_.\" = -80;\n\"@MMK_R_colon\" = -30;\n\"@MMK_R_j\" = -40;\n\"@MMK_R_n\" = -30;\nI = -30;\nJ = -20;\nb = -20;\nbracketright = -70;\nh = -20;\nk = -40;\nl = -20;\nnhookretroflex = -10;\nparenright = -10;\nr = -20;\ns = -30;\nu = -10;\n};\nAE = {\n\"@MMK_R_A\" = 30;\n};\nC = {\nJ = 20;\nZ = 10;\nbackslash = 20;\nicircumflex = 50;\nidieresis = 50;\nigrave = 30;\nslash = 10;\n};\nH = {\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = -10;\n\"@MMK_R_w\" = -20;\nbackslash = 20;\nicircumflex = 30;\nidieresis = 50;\nigrave = 30;\nperiod = -20;\ns = -10;\nu = -20;\n};\nI = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_v\" = -30;\n\"@MMK_R_w\" = -30;\nLslash = -30;\nb = -10;\nbackslash = 40;\nbraceright = 10;\nf = -20;\nicircumflex = 40;\nidieresis = 50;\nigrave = 40;\nr = -20;\ns = -30;\nt = -10;\nu = -30;\ny = -20;\n};\nJ = {\n\"@MMK_R_.\" = -40;\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_V\" = 30;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_w\" = -10;\nX = 20;\nZ = 20;\nbackslash = 50;\nicircumflex = 30;\nidieresis = 50;\nigrave = 30;\n};\nK = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -20;\nicircumflex = 30;\nidieresis = 70;\nigrave = 50;\nv = -30;\nw = -40;\n};\nL = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_T\" = -90;\n\"@MMK_R_V\" = -50;\n\"@MMK_R_quoteright\" = -40;\n\"@MMK_R_v\" = -30;\nI = 20;\nJ = 40;\nX = 30;\nY = -60;\nZ = 40;\nw = -40;\nx = 30;\n};\nLslash = {\n\"@MMK_R_A\" = 40;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -50;\n\"@MMK_R_V\" = -30;\nJ = 40;\nX = 40;\nY = -70;\nZ = 30;\n};\nM = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -20;\nLslash = -10;\nb = -10;\nbackslash = 20;\nh = -10;\nicircumflex = 30;\nidieresis = 60;\nigrave = 30;\ns = -20;\nu = -10;\n};\nN = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_w\" = -20;\nLslash = -10;\nbackslash = 30;\nicircumflex = 20;\nidieresis = 50;\nigrave = 20;\ns = -20;\n};\nP = {\n\"@MMK_R_.\" = -120;\n\"@MMK_R_A\" = -40;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = 20;\n\"@MMK_R_v\" = 10;\nJ = -40;\nLslash = -10;\nbackslash = 30;\ncomma = -120;\nfour = -10;\nicircumflex = 50;\nidieresis = 60;\nigrave = 20;\ns = -10;\nslash = -30;\ny = 20;\n};\nR = {\n\"@MMK_R_O\" = -20;\n\"@MMK_R_T\" = -30;\n\"@MMK_R_V\" = -10;\n\"@MMK_R_a\" = -20;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_v\" = -20;\nLslash = -20;\nU = -20;\nY = -30;\nZ = 20;\nbracketright = -50;\nicircumflex = 20;\nidieresis = 20;\nu = -20;\n};\nS = {\nJ = 10;\nLslash = 10;\nbackslash = 30;\nbracketright = -40;\nicircumflex = 30;\nidieresis = 50;\nigrave = 20;\n};\nT = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -100;\n\"@MMK_R_u\" = -50;\nicircumflex = 60;\nidieresis = 100;\nigrave = 80;\nr = -50;\ns = -70;\nu = -50;\nuhorn = -50;\nw = -60;\n};\nU = {\n\"@MMK_R_.\" = -10;\n\"@MMK_R_A\" = -10;\n\"@MMK_R_B\" = -10;\nJ = 10;\nbackslash = 40;\nbracketright = -30;\nicircumflex = 50;\nidieresis = 60;\nigrave = 40;\nslash = -30;\n};\nX = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_O\" = -20;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_w\" = -50;\nJ = 20;\nLslash = -10;\nX = 40;\nY = 40;\nZ = 50;\nbackslash = 50;\nbraceright = 40;\nbracketright = -30;\nidieresis = 90;\nigrave = 50;\n};\nY = {\n\"@MMK_R_A\" = -60;\n\"@MMK_R_O\" = -40;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -100;\nJ = -80;\nX = 40;\nbackslash = 100;\nbraceright = 40;\nbracketright = -20;\ncomma = -130;\nhyphen = -100;\nicircumflex = 50;\nidieresis = 100;\nigrave = 60;\nn = -30;\np = -20;\nperiod = -100;\nquestiondown = -70;\nquotedblbase = -100;\nr = -50;\ns = -80;\nslash = -60;\nu = -40;\nw = -50;\n};\nZ = {\n\"@MMK_R_A\" = 20;\n\"@MMK_R_V\" = 30;\nJ = 20;\nY = 20;\nbackslash = 80;\nbraceright = 40;\nbracketright = -20;\nicircumflex = 60;\nidieresis = 90;\nigrave = 60;\n};\na = {\n\"@MMK_R_i\" = 10;\n\"@MMK_R_quoteright\" = 20;\nJ = 20;\nbracketright = -10;\nslash = 40;\nx = 20;\ny = 20;\n};\nbackslash = {\n\"@MMK_R_B\" = -10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = -20;\n\"@MMK_R_V\" = -20;\n\"@MMK_R_v\" = 40;\n\"@MMK_R_w\" = -30;\nU = -20;\nX = 10;\nY = -40;\nZ = 20;\nf = -20;\nj = 100;\np = 20;\n};\nbraceleft = {\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 40;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -20;\nX = 40;\nY = 40;\nZ = 40;\nf = -20;\nj = 80;\np = 20;\ns = -10;\n};\nbracketleft = {\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 20;\n\"@MMK_R_i\" = 20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_w\" = -20;\nX = 20;\nY = 20;\nZ = 10;\nj = 80;\np = 30;\nx = 10;\n};\nc = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_j\" = -30;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = 10;\n\"@MMK_R_w\" = -30;\nH = -30;\nb = -10;\nbracketright = -20;\nk = -20;\nquestion = -20;\n};\ncaroncomb = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_a2\" = -100;\nu = -70;\n};\nccaron = {\nr = -10;\n};\nd = {\n\"@MMK_R_o\" = -10;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -40;\nbackslash = 30;\nbraceright = 20;\nslash = 20;\nx = 10;\n};\ndcaron = {\n\"@MMK_R_a\" = -70;\n\"@MMK_R_o\" = -60;\na.ss01 = -70;\nn = -50;\ns = -50;\nu = -20;\n};\neight = {\ndegree = -20;\neight = -30;\nfive = -20;\nfour = -20;\nnine = -50;\none = -10;\nordfeminine = -10;\npercent = -30;\nperiod = -40;\nseven = -50;\nsix = -30;\nthree = -20;\ntwo = -10;\nzero = -10;\n};\nendash = {\nspace = -150;\n};\nf = {\n\"@MMK_R_.\" = -50;\n\"@MMK_R_v\" = 30;\n\"@MMK_R_w\" = 10;\nN = 10;\nbackslash = 60;\nbraceright = 70;\nbracketright = 60;\ni = 10;\nj = 10;\nl = 10;\np = 30;\nparenright = 60;\nquotedblright = 40;\nquoteright = 50;\nt = 30;\nu = 20;\nx = 10;\n};\nfive = {\n\"@MMK_R_.\" = -40;\nfive = -10;\nnine = -30;\npercent = -30;\nseven = -10;\n};\nfour = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_T\" = -40;\nequal = 20;\npercent = -40;\n};\ng = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_w\" = -20;\nH = -10;\nj = 40;\nnhookretroflex = -10;\nr = -20;\ns = -20;\nslash = 20;\n};\ngreater = {\ntwo = -20;\n};\nguillemetright = {\nfour = 30;\n};\nh = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -40;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -20;\nb = -10;\nbracketright = -20;\nnhookretroflex = -10;\nr = -10;\n};\nhyphen = {\n\"@MMK_R_O\" = 20;\n};\niacute = {\nb = 10;\nl = 40;\n};\nicircumflex = {\nl = 60;\n};\nidieresis = {\nl = 90;\n};\nj = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = 20;\nbracketright = -20;\nl = -20;\nlslash = 20;\nslash = 30;\n};\nk = {\n\"@MMK_R_j\" = 20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = 10;\nendash = -40;\nhyphen = -30;\nv = 20;\nx = 20;\nz = 10;\n};\nl = {\n\"@MMK_R_.\" = -10;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_w\" = -20;\nbackslash = 30;\nbracketright = -20;\nh = -20;\nicircumflex = 60;\nidieresis = 70;\ns = -20;\n};\nlcaron = {\n\"@MMK_R_a\" = -80;\n\"@MMK_R_o\" = -80;\na.ss01 = -80;\nn = -50;\ns = -60;\nu = -30;\n};\nlslash = {\n\"@MMK_R_o\" = -10;\np = 10;\nw = 20;\ny = 40;\n};\nn = {\nperiod = -20;\n};\nnhookretroflex = {\n\"@MMK_R_g\" = 20;\n\"@MMK_R_n\" = -10;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_v\" = 0;\n\"@MMK_R_w\" = -60;\nf = -30;\nh = -20;\nj = 100;\nx = 20;\n};\nnine = {\ncomma = -80;\neight = -10;\nfive = -20;\nfour = -30;\nperiod = -80;\nseven = -10;\nsix = -20;\nthree = -20;\n};\nohorn = {\nn = -50;\n};\none = {\ndegree = -80;\neight = -50;\nfive = -30;\nfour = -30;\nnine = -80;\nordfeminine = -80;\nordmasculine = -70;\npercent = -80;\nseven = -50;\nthree = -30;\nzero = -30;\n};\nparenleft = {\n\"@MMK_R_E\" = -20;\n\"@MMK_R_O\" = -30;\n\"@MMK_R_a\" = -30;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_o\" = -40;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -30;\nM = -10;\neight = -40;\nf = -20;\nj = 30;\nu = -20;\nx = -10;\n};\nperiod = {\nzero = -20;\n};\nq = {\n\"@MMK_R_.\" = -30;\n\"@MMK_R_i\" = -10;\n\"@MMK_R_j\" = 30;\n\"@MMK_R_o\" = -30;\n\"@MMK_R_quoteright\" = -30;\n\"@MMK_R_v\" = -10;\n\"@MMK_R_w\" = -40;\nH = -10;\nb = -20;\nf = -20;\nh = -20;\nj = 50;\nk = -20;\nl = -20;\nnhookretroflex = -20;\nr = -20;\ns = -20;\nslash = 20;\nu = -10;\n};\nquestion = {\n\"@MMK_R_A\" = -40;\n};\nquestiondown = {\n\"@MMK_R_o\" = -30;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -70;\nJ = -80;\n};\nquoteleft = {\n\"@MMK_R_A\" = -50;\n};\nr = {\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = 30;\n\"@MMK_R_v\" = 30;\n\"@MMK_R_w\" = 20;\nbackslash = 30;\nbraceright = 20;\ncomma = -80;\nf = 20;\np = 10;\nperiod = -90;\nt = 30;\nx = 20;\nz = 20;\n};\ns = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -10;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_v\" = -20;\n\"@MMK_R_w\" = -30;\nbracketright = -60;\nf = -10;\nlslash = 20;\nr = -10;\nx = -10;\n};\nseven = {\ncomma = -80;\ndegree = 30;\nfour = -40;\nordfeminine = 20;\npercent = 20;\nperiod = -90;\nseven = 30;\nsix = -20;\n};\nsix = {\n\"@MMK_R_.\" = -40;\ndegree = -40;\nfive = -20;\nnine = -50;\npercent = -50;\nseven = -30;\nsix = -10;\n};\nslash = {\n\"@MMK_R_A\" = -20;\n\"@MMK_R_E\" = 10;\n\"@MMK_R_O\" = -10;\n\"@MMK_R_T\" = 20;\n\"@MMK_R_V\" = 60;\n\"@MMK_R_i\" = 20;\n\"@MMK_R_n\" = -30;\n\"@MMK_R_o\" = -30;\nX = 40;\nY = 50;\nZ = 40;\nb = 20;\nh = 20;\nj = 20;\ns = -20;\nu = -20;\nx = -20;\n};\nt = {\n\"@MMK_R_quoteright\" = 20;\nI = 20;\nbackslash = 20;\nbraceright = 20;\n};\ntcaron = {\n\"@MMK_R_a\" = -40;\n\"@MMK_R_o\" = -10;\na.ss01 = -30;\ns = -20;\n};\nthree = {\n\"@MMK_R_.\" = -40;\npercent = -30;\n};\ntwo = {\ndegree = -10;\neight = -20;\nfive = -20;\nfour = -30;\nnine = -40;\nordfeminine = -10;\npercent = -40;\nseven = -20;\nsix = -20;\nthree = -20;\nx = 30;\nzero = -20;\n};\nu = {\n\"@MMK_R_.\" = -20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_quoteright\" = -20;\n\"@MMK_R_w\" = -10;\nb = -10;\nbracketright = -20;\nf = -20;\nh = -10;\nparenright = -10;\ns = -20;\n};\nuhorn = {\nn = -50;\nohorn = -100;\n};\nuhorntilde = {\nn = -50;\n};\nv = {\n\"@MMK_R_o\" = -30;\nn = 10;\nquestiondown = -50;\nw = 20;\n};\nw = {\n\"@MMK_R_a\" = -30;\n\"@MMK_R_o\" = -40;\nat = -10;\nx = 10;\n};\nx = {\n\"@MMK_R_j\" = 20;\n\"@MMK_R_o\" = -20;\n\"@MMK_R_v\" = 20;\nbracketright = -40;\nk = -20;\nminus = -30;\ns = -10;\nx = 20;\ny = 20;\n};\ny = {\n\"@MMK_R_T\" = -70;\ncomma = -100;\nlslash = 20;\nperiod = -110;\nquestiondown = -50;\nz = 20;\n};\nz = {\n\"@MMK_R_o\" = -20;\nk = -20;\n};\nzero = {\n\"@MMK_R_.\" = -50;\npercent = -40;\nzero = -10;\n};\n};\n};\nmetrics = (\n{\ntype = ascender;\n},\n{\ntype = \"cap height\";\n},\n{\ntype = \"x-height\";\n},\n{\ntype = baseline;\n},\n{\ntype = descender;\n},\n{\nname = \"Overshoot X\";\n},\n{\nname = \"Overshoot Base\";\n},\n{\nname = \"Overshoot Cap\";\n},\n{\n}\n);\nproperties = (\n{\nkey = copyrights;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Copyright 2024 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)\";\n}\n);\n},\n{\nkey = designers;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Olivia King\";\n}\n);\n},\n{\nkey = designerURL;\nvalue = \"https://www.oliviaking.com\";\n},\n{\nkey = licenses;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://openfontlicense.org\";\n}\n);\n},\n{\nkey = licenseURL;\nvalue = \"https://openfontlicense.org\";\n},\n{\nkey = manufacturers;\nvalues = (\n{\nlanguage = dflt;\nvalue = \"Olivia King\";\n}\n);\n},\n{\nkey = manufacturerURL;\nvalue = \"https://www.oliviaking.com\";\n}\n);\nunitsPerEm = 1000;\nuserData = {\nGSDimensionPlugin.Dimensions = {\nm002 = {\nHH = \"80\";\nHV = \"88\";\nOH = \"80\";\nOV = \"92\";\nnV = \"84\";\nnd = \"63\";\noH = \"76\";\noV = \"84\";\ntH = \"76\";\n};\nm003 = {\nHH = \"126\";\nHV = \"146\";\nOH = \"130\";\nOV = \"154\";\nnV = \"140\";\nnd = \"100\";\noH = \"120\";\noV = \"146\";\ntH = \"120\";\n};\nm01 = {\nHH = \"56\";\nHV = \"60\";\nOH = \"56\";\nOV = \"62\";\nnV = \"56\";\nnd = \"48\";\noH = \"50\";\noV = \"58\";\ntH = \"50\";\n};\n};\n};\nversionMajor = 2;\nversionMinor = 5;\n}\n"
  },
  {
    "path": "sources/V1.0/InclusiveSans.glyphs",
    "content": "{\n.appVersion = \"3208\";\n.formatVersion = 3;\ncustomParameters = (\n{\ndisabled = 1;\nname = glyphOrder;\nvalue = (\nspace,\nexclam,\nquotesingle,\nquotedbl,\nnumbersign,\ndollar,\npercent,\nampersand,\nparenleft,\nparenright,\nasterisk,\nplus,\ncomma,\nhyphen,\nperiod,\nslash,\nzero,\none,\ntwo,\nthree,\nfour,\nfive,\nsix,\nseven,\neight,\nnine,\ncolon,\nsemicolon,\nless,\nequal,\ngreater,\nquestion,\nat,\nA,\nB,\nC,\nD,\nE,\nF,\nG,\nH,\nI,\nJ,\nK,\nL,\nM,\nN,\nO,\nP,\nQ,\nR,\nS,\nT,\nU,\nV,\nW,\nX,\nY,\nZ,\nbracketleft,\nbackslash,\nbracketright,\nasciicircum,\nunderscore,\ngrave,\na,\nb,\nc,\nd,\ne,\nf,\ng,\nh,\ni,\nj,\nk,\nl,\nm,\nn,\no,\np,\nq,\nr,\ns,\nt,\nu,\nv,\nw,\nx,\ny,\nz,\nbraceleft,\nbar,\nbraceright,\nasciitilde,\nexclamdown,\ncent,\nsterling,\ncurrency,\nyen,\nbrokenbar,\nsection,\ndieresis,\ncopyright,\nordfeminine,\nguillemetleft,\nlogicalnot,\nregistered,\nmacron,\ndegree,\nplusminus,\ntwosuperior,\nthreesuperior,\nacute,\nmu,\nparagraph,\nperiodcentered,\ncedilla,\nonesuperior,\nordmasculine,\nguillemetright,\nonequarter,\nonehalf,\nthreequarters,\nquestiondown,\nAgrave,\nAacute,\nAcircumflex,\nAtilde,\nAdieresis,\nAring,\nAE,\nCcedilla,\nEgrave,\nEacute,\nEcircumflex,\nEdieresis,\nIgrave,\nIacute,\nIcircumflex,\nIdieresis,\nEth,\nNtilde,\nOgrave,\nOacute,\nOcircumflex,\nOtilde,\nOdieresis,\nmultiply,\nOslash,\nUgrave,\nUacute,\nUcircumflex,\nUdieresis,\nYacute,\nThorn,\ngermandbls,\nagrave,\naacute,\nacircumflex,\natilde,\nadieresis,\naring,\nae,\nccedilla,\negrave,\neacute,\necircumflex,\nedieresis,\nigrave,\niacute,\nicircumflex,\nidieresis,\neth,\nntilde,\nograve,\noacute,\nocircumflex,\notilde,\nodieresis,\ndivide,\noslash,\nugrave,\nuacute,\nucircumflex,\nudieresis,\nyacute,\nthorn,\nydieresis,\ndotlessi,\ncircumflex,\ncaron,\nbreve,\ndotaccent,\nring,\nogonek,\ntilde,\nhungarumlaut,\nquoteleft,\nquoteright,\nminus,\ng.ss01,\na.ss01\n);\n},\n{\nname = \"Use Typo Metrics\";\nvalue = 1;\n},\n{\nname = fsType;\nvalue = (\n);\n}\n);\ndate = \"2023-06-07 06:02:52 +0000\";\nfamilyName = \"Inclusive Sans\";\nfeaturePrefixes = (\n{\nautomatic = 1;\ncode = \"languagesystem DFLT dflt;\nlanguagesystem DFLT MAH;\n\nlanguagesystem latn dflt;\nlanguagesystem latn AZE;\nlanguagesystem latn CRT;\nlanguagesystem latn KAZ;\nlanguagesystem latn TAT;\nlanguagesystem latn TRK;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn MAH;\nlanguagesystem latn CAT;\nlanguagesystem latn NLD;\n\";\nname = Languagesystems;\n}\n);\nfeatures = (\n{\nautomatic = 1;\ncode = \"feature locl;\nfeature ordn;\nfeature case;\nfeature ss01;\n\";\ntag = aalt;\n},\n{\ncode = \"lookup ccmp_DFLT_1 {\n\tlookupflag 0;\n\tsub brevecomb acutecomb by brevecomb_acutecomb;\n\tsub brevecomb gravecomb by brevecomb_gravecomb;\n\tsub brevecomb hookabovecomb by brevecomb_hookabovecomb;\n\tsub brevecomb tildecomb by brevecomb_tildecomb;\n\tsub circumflexcomb acutecomb by circumflexcomb_acutecomb;\n\tsub circumflexcomb gravecomb by circumflexcomb_gravecomb;\n\tsub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb;\n\tsub circumflexcomb tildecomb by circumflexcomb_tildecomb;\n} ccmp_DFLT_1;\n\nlookup ccmp_Other_1 {\n\t@CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb];\n\t@CombiningNonTopAccents = [cedillacomb dotbelowcomb macronbelowcomb ogonekcomb];\n\tlookupflag UseMarkFilteringSet @CombiningTopAccents;\n\tsub i' @CombiningTopAccents by idotless;\n\tsub j' @CombiningTopAccents by jdotless;\n\tsub idotbelow' @CombiningTopAccents by idotless dotbelowcomb;\n\tsub iogonek' @CombiningTopAccents by idotless ogonekcomb;\n\tsub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb;\n\tsub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb;\n} ccmp_Other_1;\n\";\ntag = ccmp;\n},\n{\nautomatic = 1;\ncode = \"language MAH;\nlookup locl_noScript_0 {\n\tsub commaaccentcomb by commaaccentcomb.loclMAH;\n} locl_noScript_0;\n\nscript latn;\nlanguage AZE;\nlookup locl_latn_0 {\n\tsub i by idotaccent;\n} locl_latn_0;\nlanguage CRT;\nlookup locl_latn_0;\nlanguage KAZ;\nlookup locl_latn_0;\nlanguage TAT;\nlookup locl_latn_0;\nlanguage TRK;\nlookup locl_latn_0;\n\nscript latn;\nlanguage ROM;\nlookup locl_latn_1 {\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_1;\nlanguage MOL;\nlookup locl_latn_1;\n\nscript latn;\nlanguage MAH;\nlookup locl_latn_2 {\n\tsub Lcommaaccent by Lcommaaccent.loclMAH;\n\tsub Ncommaaccent by Ncommaaccent.loclMAH;\n\tsub lcommaaccent by lcommaaccent.loclMAH;\n\tsub ncommaaccent by ncommaaccent.loclMAH;\n} locl_latn_2;\n\nscript latn;\nlanguage CAT;\nlookup locl_latn_3 {\n\tsub l periodcentered' l by periodcentered.loclCAT;\n\tsub L periodcentered' L by periodcentered.loclCAT.case;\n} locl_latn_3;\n\nscript latn;\nlanguage NLD;\nlookup locl_latn_4 {\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_4;\n\";\ntag = locl;\n},\n{\nautomatic = 1;\ncode = \"sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\n\";\ntag = ordn;\n},\n{\nautomatic = 1;\ncode = \"sub periodcentered.loclCAT by periodcentered.loclCAT.case;\n\";\ntag = case;\n},\n{\nautomatic = 1;\ncode = \"sub a by a.ss01;\nsub aacute by aacute.ss01;\nsub abreve by abreve.ss01;\nsub abreveacute by abreveacute.ss01;\nsub abrevedotbelow by abrevedotbelow.ss01;\nsub abrevegrave by abrevegrave.ss01;\nsub abrevehookabove by abrevehookabove.ss01;\nsub abrevetilde by abrevetilde.ss01;\nsub acircumflex by acircumflex.ss01;\nsub acircumflexacute by acircumflexacute.ss01;\nsub acircumflexdotbelow by acircumflexdotbelow.ss01;\nsub acircumflexgrave by acircumflexgrave.ss01;\nsub acircumflexhookabove by acircumflexhookabove.ss01;\nsub acircumflextilde by acircumflextilde.ss01;\nsub adieresis by adieresis.ss01;\nsub adotbelow by adotbelow.ss01;\nsub agrave by agrave.ss01;\nsub ahookabove by ahookabove.ss01;\nsub amacron by amacron.ss01;\nsub aogonek by aogonek.ss01;\nsub aring by aring.ss01;\nsub atilde by atilde.ss01;\nsub g by g.ss01;\nsub gbreve by gbreve.ss01;\nsub gcommaaccent by gcommaaccent.ss01;\nsub gdotaccent by gdotaccent.ss01;\nsub gmacron by gmacron.ss01;\n\";\nlabels = (\n{\nlanguage = dflt;\nvalue = ss01;\n}\n);\ntag = ss01;\n}\n);\nfontMaster = (\n{\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1137;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\nid = master01;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 500;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 512;\n},\n{\npos = -12;\n},\n{\npos = 712;\n}\n);\nname = Regular;\nvisible = 1;\n}\n);\nglyphs = (\n{\nglyphname = A;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:33:25 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (303,0);\n},\n{\nname = ogonek;\npos = (549,0);\n},\n{\nname = top;\npos = (303,712);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(595,0,l),\n(346,700,l),\n(262,700,l),\n(511,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(96,0,l),\n(345,700,l),\n(261,700,l),\n(12,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(455,195,l),\n(455,275,l),\n(134,275,l),\n(134,195,l)\n);\n}\n);\nwidth = 607;\n}\n);\nunicode = 65;\n},\n{\nglyphname = Aacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (247,200);\nref = acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 193;\n},\n{\nglyphname = Abreve;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (-4,200);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 258;\n},\n{\nglyphname = Abreveacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (-4,200);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7854;\n},\n{\nglyphname = Abrevedotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n},\n{\npos = (-4,200);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7862;\n},\n{\nglyphname = Abrevegrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (-4,200);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7856;\n},\n{\nglyphname = Abrevehookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (-4,200);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7858;\n},\n{\nglyphname = Abrevetilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (-4,200);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7860;\n},\n{\nglyphname = Acircumflex;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (92,200);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 194;\n},\n{\nglyphname = Acircumflexacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (91,200);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7844;\n},\n{\nglyphname = Acircumflexdotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n},\n{\npos = (92,200);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7852;\n},\n{\nglyphname = Acircumflexgrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (92,200);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7846;\n},\n{\nglyphname = Acircumflexhookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (92,200);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7848;\n},\n{\nglyphname = Acircumflextilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (92,200);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7850;\n},\n{\nglyphname = Adieresis;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (142,200);\nref = dieresiscomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 196;\n},\n{\nglyphname = Adotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7840;\n},\n{\nglyphname = Agrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (125,200);\nref = gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 192;\n},\n{\nglyphname = Ahookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (11,212);\nref = hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7842;\n},\n{\nglyphname = Amacron;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (2,200);\nref = macroncomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 256;\n},\n{\nglyphname = Aogonek;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (193,0);\nref = ogonekcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 260;\n},\n{\nglyphname = Aring;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (185,200);\nref = ringcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 197;\n},\n{\nglyphname = Atilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (4,200);\nref = tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 195;\n},\n{\nglyphname = AE;\nkernLeft = A;\nkernRight = E;\nlastChange = \"2023-07-09 23:16:39 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(98,0,l),\n(413,700,l),\n(325,700,l),\n(10,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(401,195,l),\n(401,275,l),\n(155,275,l),\n(155,195,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(774,0,l),\n(774,80,l),\n(474,80,l),\n(474,320,l),\n(713,320,l),\n(713,400,l),\n(474,400,l),\n(474,620,l),\n(774,620,l),\n(774,700,l),\n(386,700,l),\n(386,0,l)\n);\n}\n);\nwidth = 832;\n}\n);\nunicode = 198;\n},\n{\nglyphname = B;\nkernLeft = B;\nkernRight = B;\nlastChange = \"2023-07-09 23:16:45 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,14);\ntarget = (1,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,0);\ntarget = (2,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (2,0);\ntarget = (0,13);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (1,10);\ntype = Stem;\n},\n{\norigin = (1,6);\ntarget = (0,3);\ntype = Stem;\n},\n{\norigin = (2,6);\ntarget = (0,9);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(354,0,ls),\n(514,0,o),\n(598,79,o),\n(598,206,cs),\n(598,309,o),\n(550,360,o),\n(456,382,c),\n(515,400,o),\n(559,444,o),\n(559,525,cs),\n(559,641,o),\n(483,701,o),\n(346,701,cs),\n(97,701,l),\n(97,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(185,335,l),\n(185,335,o),\n(364,335,o),\n(364,335,c),\n(456,335,o),\n(506,289,o),\n(506,206,cs),\n(506,126,o),\n(446,80,o),\n(354,80,cs),\n(185,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(185,621,l),\n(185,621,o),\n(341,621,o),\n(341,621,cs),\n(414,621,o),\n(468,591,o),\n(468,524,cs),\n(468,455,o),\n(415,415,o),\n(342,415,cs),\n(185,415,l)\n);\n}\n);\nwidth = 652;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B2778AA9-272F-47DA-B672-36E0A49462E6\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(201,608,o),\n(362,608,o),\n(362,608,c),\n(428,608,o),\n(473,575,o),\n(473,515,cs),\n(473,461,o),\n(427,419,o),\n(362,419,cs),\n(201,419,l),\n(201,608,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(95,0,l),\n(394,0,ls),\n(546,0,o),\n(621,101,o),\n(621,194,cs),\n(621,315,o),\n(554,363,o),\n(486,382,c),\n(529,387,o),\n(582,456,o),\n(582,536,cs),\n(582,620,o),\n(516,701,o),\n(379,701,cs),\n(95,701,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(201,326,o),\n(374,326,o),\n(374,326,c),\n(461,326,o),\n(506,283,o),\n(506,209,cs),\n(506,146,o),\n(459,93,o),\n(374,93,cs),\n(201,93,l),\n(201,326,l)\n);\n}\n);\nwidth = 671;\n}\n);\nunicode = 66;\n},\n{\nglyphname = C;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-07-09 23:16:52 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (366,0);\n},\n{\nname = top;\npos = (364,713);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(523,-13,o),\n(625,75,o),\n(653,198,c),\n(564,216,l),\n(541,130,o),\n(469,67,o),\n(364,67,cs),\n(220,67,o),\n(145,194,o),\n(145,357,cs),\n(145,512,o),\n(220,633,o),\n(364,633,c),\n(469,633,o),\n(541,570,o),\n(564,484,c),\n(653,502,l),\n(625,625,o),\n(523,713,o),\n(364,713,c),\n(145,713,o),\n(55,548,o),\n(55,355,cs),\n(55,171,o),\n(144,-13,o),\n(364,-13,cs)\n);\n}\n);\nwidth = 697;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B03B6E58-C7A4-4549-B5DA-7F61DFFF8AA1\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,540,o),\n(156,713,o),\n(386,713,c),\n(551,713,o),\n(653,623,o),\n(683,503,c),\n(574,481,l),\n(548,565,o),\n(477,616,o),\n(386,616,c),\n(252,616,o),\n(164,504,o),\n(164,349,c),\n(164,194,o),\n(252,86,o),\n(386,86,c),\n(477,86,o),\n(549,147,o),\n(576,223,c),\n(683,198,l),\n(648,82,o),\n(551,-12,o),\n(386,-12,c),\n(156,-12,o),\n(50,158,o),\n(50,347,c)\n);\n}\n);\nwidth = 718;\n}\n);\nunicode = 67;\n},\n{\nglyphname = Cacute;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-07-09 23:16:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (308,201);\nref = acutecomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 262;\n},\n{\nglyphname = Ccaron;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-07-09 23:16:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (151,201);\nref = caroncomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 268;\n},\n{\nglyphname = Ccedilla;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-07-09 23:16:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (76,-2);\nref = cedillacomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 199;\n},\n{\nglyphname = Cdotaccent;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-07-09 23:16:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (290,201);\nref = dotaccentcomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 266;\n},\n{\nglyphname = D;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (323,712);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(289,0,ls),\n(519,0,o),\n(626,141,o),\n(626,349,cs),\n(626,560,o),\n(519,700,o),\n(289,700,cs),\n(97,700,l),\n(97,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,620,l),\n(292,620,ls),\n(453,620,o),\n(534,507,o),\n(534,350,cs),\n(534,192,o),\n(453,80,o),\n(292,80,cs),\n(183,80,l)\n);\n}\n);\nwidth = 676;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"06695B29-B584-4CFA-B58E-873EFBF25244\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(535,700,o),\n(646,542,o),\n(646,356,cs),\n(646,178,o),\n(539,0,o),\n(308,0,cs),\n(95,0,l),\n(95,700,l),\n(305,700,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(445,91,o),\n(532,200,o),\n(532,356,cs),\n(532,504,o),\n(441,609,o),\n(308,609,cs),\n(205,609,l),\n(205,91,l),\n(308,91,ls)\n);\n}\n);\nwidth = 696;\n}\n);\nunicode = 68;\n},\n{\nglyphname = Eth;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(289,0,ls),\n(519,0,o),\n(626,141,o),\n(626,349,cs),\n(626,560,o),\n(519,700,o),\n(289,700,cs),\n(97,700,l),\n(97,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(268,302,l),\n(268,386,l),\n(14,386,l),\n(14,302,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,620,l),\n(292,620,ls),\n(453,620,o),\n(534,507,o),\n(534,350,cs),\n(534,192,o),\n(453,80,o),\n(292,80,cs),\n(183,80,l)\n);\n}\n);\nwidth = 676;\n}\n);\nunicode = 208;\n},\n{\nglyphname = Dcaron;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = D;\n},\n{\npos = (110,200);\nref = caroncomb;\n}\n);\nwidth = 676;\n}\n);\nunicode = 270;\n},\n{\nglyphname = Dcroat;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 676;\n}\n);\nunicode = 272;\n},\n{\nglyphname = Ddotbelow;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = D;\n},\n{\npos = (235,0);\nref = dotbelowcomb;\n}\n);\nwidth = 676;\n}\n);\nunicode = 7692;\n},\n{\nglyphname = Dmacronbelow;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = D;\n},\n{\nref = macronbelowcomb;\n}\n);\nwidth = 676;\n}\n);\nunicode = 7694;\n},\n{\nglyphname = E;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (302,0);\n},\n{\nname = ogonek;\npos = (462,0);\n},\n{\nname = top;\npos = (302,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(507,0,l),\n(507,80,l),\n(185,80,l),\n(185,320,l),\n(446,320,l),\n(446,398,l),\n(185,398,l),\n(185,620,l),\n(507,620,l),\n(507,700,l),\n(97,700,l),\n(97,0,l)\n);\n}\n);\nwidth = 564;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A977A26C-359E-4C6D-9AFD-AF1AE6B4AD04\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(90,700,l),\n(546,700,l),\n(546,608,l),\n(196,608,l),\n(196,405,l),\n(485,405,l),\n(485,313,l),\n(196,313,l),\n(196,92,l),\n(546,92,l),\n(546,0,l),\n(90,0,l)\n);\n}\n);\nwidth = 596;\n}\n);\nunicode = 69;\n},\n{\nglyphname = Eacute;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (246,208);\nref = acutecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 201;\n},\n{\nglyphname = Ecaron;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (89,208);\nref = caroncomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 282;\n},\n{\nglyphname = Ecircumflex;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (91,208);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 202;\n},\n{\nglyphname = Ecircumflexacute;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (90,208);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7870;\n},\n{\nglyphname = Ecircumflexdotbelow;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n},\n{\npos = (91,208);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7878;\n},\n{\nglyphname = Ecircumflexgrave;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (91,208);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7872;\n},\n{\nglyphname = Ecircumflexhookabove;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (91,208);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7874;\n},\n{\nglyphname = Ecircumflextilde;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (91,208);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7876;\n},\n{\nglyphname = Edieresis;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (141,208);\nref = dieresiscomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 203;\n},\n{\nglyphname = Edotaccent;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (228,208);\nref = dotaccentcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 278;\n},\n{\nglyphname = Edotbelow;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7864;\n},\n{\nglyphname = Egrave;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (124,208);\nref = gravecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 200;\n},\n{\nglyphname = Ehookabove;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (10,220);\nref = hookabovecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7866;\n},\n{\nglyphname = Emacron;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (1,208);\nref = macroncomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 274;\n},\n{\nglyphname = Eogonek;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (106,0);\nref = ogonekcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 280;\n},\n{\nglyphname = Etilde;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (3,208);\nref = tildecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7868;\n},\n{\nglyphname = F;\nkernLeft = F;\nkernRight = F;\nlastChange = \"2023-08-03 09:26:02 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(185,320,l),\n(446,320,l),\n(446,400,l),\n(185,400,l),\n(185,620,l),\n(507,620,l),\n(507,700,l),\n(97,700,l),\n(97,0,l)\n);\n}\n);\nwidth = 541;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A8DBB783-FE60-44AC-AE41-AD44FD5FD283\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(95,0,l),\n(95,700,l),\n(551,700,l),\n(551,608,l),\n(201,608,l),\n(201,404,l),\n(490,404,l),\n(490,312,l),\n(201,312,l),\n(201,0,l)\n);\n}\n);\nwidth = 581;\n}\n);\nunicode = 70;\n},\n{\nglyphname = G;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-07-09 23:17:17 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (363,724);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(458,-12,o),\n(535,30,o),\n(575,107,c),\n(575,107,o),\n(588,0,o),\n(588,0,c),\n(657,0,l),\n(657,368,l),\n(410,368,l),\n(410,284,l),\n(568,284,l),\n(568,158,o),\n(466,67,o),\n(361,67,cs),\n(217,67,o),\n(145,194,o),\n(145,357,cs),\n(145,512,o),\n(220,633,o),\n(364,633,c),\n(469,633,o),\n(541,570,o),\n(564,484,c),\n(653,502,l),\n(625,625,o),\n(523,713,o),\n(364,713,c),\n(145,713,o),\n(55,548,o),\n(55,355,cs),\n(55,158,o),\n(147,-12,o),\n(374,-12,c)\n);\n}\n);\nwidth = 723;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CB3D37D9-D998-4BEF-81F7-6BF9414937DB\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,-12,o),\n(50,158,o),\n(50,347,c),\n(50,540,o),\n(156,713,o),\n(386,713,c),\n(551,713,o),\n(652,623,o),\n(683,503,c),\n(570,481,l),\n(548,553,o),\n(477,618,o),\n(386,618,c),\n(252,618,o),\n(165,504,o),\n(165,349,c),\n(165,194,o),\n(250,94,o),\n(391,94,c),\n(487,94,o),\n(577,179,o),\n(577,274,c),\n(419,274,l),\n(419,368,l),\n(704,368,l),\n(704,0,l),\n(608,0,l),\n(608,0,o),\n(608,143,o),\n(608,143,c),\n(583,27,o),\n(467,-12,o),\n(383,-12,c)\n);\n}\n);\nwidth = 768;\n}\n);\nunicode = 71;\n},\n{\nglyphname = Gbreve;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-07-09 23:17:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (56,212);\nref = brevecomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 286;\n},\n{\nglyphname = Gcommaaccent;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-07-09 23:17:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (48,0);\nref = commaaccentcomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 290;\n},\n{\nglyphname = Gdotaccent;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-07-09 23:17:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (289,212);\nref = dotaccentcomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 288;\n},\n{\nglyphname = Gmacron;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-07-09 23:17:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (62,212);\nref = macroncomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 7712;\n},\n{\nglyphname = H;\nkernLeft = H;\nkernRight = H;\nlastChange = \"2023-08-02 08:48:15 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,4);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(183,324,l),\n(517,324,l),\n(517,0,l),\n(605,0,l),\n(605,700,l),\n(517,700,l),\n(517,404,l),\n(183,404,l),\n(183,700,l),\n(95,700,l),\n(95,0,l)\n);\n}\n);\nwidth = 700;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"767EE966-09EE-4F15-A2D2-031D2049D6EC\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(534,0,l),\n(640,0,l),\n(640,700,l),\n(534,700,l),\n(534,404,l),\n(196,404,l),\n(196,700,l),\n(90,700,l),\n(90,0,l),\n(196,0,l),\n(196,312,l),\n(534,312,l)\n);\n}\n);\nwidth = 730;\n}\n);\nunicode = 72;\n},\n{\nglyphname = Hbar;\nkernLeft = H;\nkernRight = H;\nlastChange = \"2023-07-09 23:17:24 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(659,492,l),\n(659,562,l),\n(44,562,l),\n(44,492,l)\n);\n},\n{\npos = (2,0);\nref = H;\n}\n);\nwidth = 700;\n}\n);\nunicode = 294;\n},\n{\nglyphname = I;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:29 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (238,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,6);\ntarget = (0,7);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(401,0,l),\n(401,76,l),\n(282,76,l),\n(282,624,l),\n(401,624,l),\n(401,700,l),\n(75,700,l),\n(75,624,l),\n(194,624,l),\n(194,74,l),\n(75,74,l),\n(75,0,l)\n);\n}\n);\nwidth = 476;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7531A638-AF93-42CE-98F8-0983E097DA89\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(416,94,l),\n(306,94,l),\n(306,608,l),\n(416,608,l),\n(416,700,l),\n(90,700,l),\n(90,608,l),\n(200,608,l),\n(200,92,l),\n(90,92,l),\n(90,0,l),\n(416,0,l)\n);\n}\n);\nwidth = 506;\n}\n);\nunicode = 73;\n},\n{\nglyphname = IJ;\nkernLeft = I;\nkernRight = J;\nlastChange = \"2023-07-09 23:17:35 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (844,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (476,0);\nref = J;\n}\n);\nwidth = 971;\n}\n);\nunicode = 306;\n},\n{\nglyphname = Iacute;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (182,200);\nref = acutecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 205;\n},\n{\nglyphname = Icircumflex;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (27,200);\nref = circumflexcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 206;\n},\n{\nglyphname = Idieresis;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (77,200);\nref = dieresiscomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 207;\n},\n{\nglyphname = Idotaccent;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (164,200);\nref = dotaccentcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 304;\n},\n{\nglyphname = Idotbelow;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (163,0);\nref = dotbelowcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 7882;\n},\n{\nglyphname = Igrave;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (60,200);\nref = gravecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 204;\n},\n{\nglyphname = Ihookabove;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-54,212);\nref = hookabovecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 7880;\n},\n{\nglyphname = Imacron;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-63,200);\nref = macroncomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 298;\n},\n{\nglyphname = Iogonek;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-116,0);\nref = ogonekcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 302;\n},\n{\nglyphname = Itilde;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-61,200);\nref = tildecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 296;\n},\n{\nglyphname = J;\nkernLeft = J;\nkernRight = J;\nlastChange = \"2023-07-09 23:17:46 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (368,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(357,-12,o),\n(413,70,o),\n(413,241,cs),\n(413,700,l),\n(325,700,l),\n(325,240,ls),\n(325,133,o),\n(298,72,o),\n(207,72,c),\n(142,72,o),\n(108,120,o),\n(94,200,c),\n(10,173,l),\n(28,56,o),\n(97,-12,o),\n(211,-12,c)\n);\n}\n);\nwidth = 495;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7D5A962D-9C0D-4DF1-88D2-B6BD600C45BA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(126,118,o),\n(160,85,o),\n(214,86,c),\n(307,86,o),\n(327,162,o),\n(327,229,cs),\n(327,700,l),\n(433,700,l),\n(433,230,ls),\n(433,134,o),\n(410,-12,o),\n(218,-12,c),\n(113,-12,o),\n(29,48,o),\n(10,164,c),\n(109,197,l)\n);\n}\n);\nwidth = 513;\n}\n);\nunicode = 74;\n},\n{\nglyphname = Jacute;\nkernLeft = J;\nkernRight = J;\nlastChange = \"2023-07-09 23:17:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = J;\n},\n{\npos = (312,208);\nref = acutecomb;\n}\n);\nwidth = 495;\n}\n);\n},\n{\nglyphname = K;\nkernLeft = K;\nkernRight = K;\nlastChange = \"2023-07-09 23:17:51 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,10);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(183,242,l),\n(271,343,l),\n(488,0,l),\n(600,0,l),\n(332,404,l),\n(582,700,l),\n(475,700,l),\n(183,361,l),\n(183,700,l),\n(95,700,l),\n(95,0,l)\n);\n}\n);\nwidth = 615;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"08AA5D7D-8610-445E-8CED-4DCF5FBF5B32\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(94,0,l),\n(200,0,l),\n(200,248,l),\n(278,333,l),\n(515,0,l),\n(645,0,l),\n(349,408,l),\n(621,700,l),\n(491,700,l),\n(200,381,l),\n(200,700,l),\n(94,700,l)\n);\n}\n);\nwidth = 655;\n}\n);\nunicode = 75;\n},\n{\nglyphname = Kcommaaccent;\nkernLeft = K;\nkernRight = K;\nlastChange = \"2023-07-09 23:17:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = K;\n},\n{\nref = commaaccentcomb;\n}\n);\nwidth = 615;\n}\n);\nunicode = 310;\n},\n{\nglyphname = L;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-22 07:18:11 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (139,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,5);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,0,l),\n(506,80,l),\n(183,80,l),\n(183,700,l),\n(95,700,l),\n(95,0,l)\n);\n}\n);\nwidth = 524;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"709592C3-DB4C-47AA-8876-5A583F256C89\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(513,96,l),\n(513,0,l),\n(90,0,l),\n(90,700,l),\n(196,700,l),\n(196,96,l)\n);\n}\n);\nwidth = 528;\n}\n);\nunicode = 76;\n},\n{\nglyphname = Lacute;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (83,200);\nref = acutecomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 313;\n},\n{\nglyphname = Lcaron;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (-46,0);\nref = caroncomb.alt;\n}\n);\nwidth = 524;\n}\n);\nunicode = 317;\n},\n{\nglyphname = Lcommaaccent;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\nref = commaaccentcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 315;\n},\n{\nglyphname = Ldotbelow;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (220,0);\nref = dotbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7734;\n},\n{\nglyphname = Lmacronbelow;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (-19,0);\nref = macronbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7738;\n},\n{\nglyphname = Lslash;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (139,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,5);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,0,l),\n(506,80,l),\n(183,80,l),\n(183,700,l),\n(95,700,l),\n(95,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(336,398,l),\n(301,462,l),\n(-15,294,l),\n(19,229,l)\n);\n}\n);\nwidth = 524;\n}\n);\nunicode = 321;\n},\n{\nglyphname = M;\nkernLeft = M;\nkernRight = M;\nlastChange = \"2023-07-09 23:18:04 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,11);\ntype = Stem;\n},\n{\norigin = (0,12);\ntarget = (0,0);\ntype = Stem;\n},\n{\nplace = (672,88);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(183,562,l),\n(389,62,l),\n(484,62,l),\n(685,562,l),\n(685,0,l),\n(773,0,l),\n(773,700,l),\n(651,700,l),\n(434,164,l),\n(217,700,l),\n(95,700,l),\n(95,0,l)\n);\n}\n);\nwidth = 868;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CA1B1FD6-294F-47BB-99AD-78D1808B8BBA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,0,l),\n(200,538,l),\n(368,137,l),\n(481,137,l),\n(649,535,l),\n(649,0,l),\n(755,0,l),\n(755,700,l),\n(607,700,l),\n(426,268,l),\n(243,700,l),\n(94,700,l),\n(94,0,l)\n);\n}\n);\nwidth = 849;\n}\n);\nunicode = 77;\n},\n{\nglyphname = N;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (367,0);\n},\n{\nname = top;\npos = (363,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,6);\ntarget = (0,3);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,0,l),\n(183,578,l),\n(503,0,l),\n(618,0,l),\n(618,700,l),\n(530,700,l),\n(530,126,l),\n(223,700,l),\n(95,700,l),\n(95,0,l)\n);\n}\n);\nwidth = 713;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"0588BE4C-E1DC-4D10-B2ED-A5B0C3E90302\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,0,l),\n(200,542,l),\n(502,0,l),\n(635,0,l),\n(635,700,l),\n(529,700,l),\n(529,158,l),\n(240,700,l),\n(94,700,l),\n(94,0,l)\n);\n}\n);\nwidth = 729;\n}\n);\nunicode = 78;\n},\n{\nglyphname = Nacute;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (307,200);\nref = acutecomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 323;\n},\n{\nglyphname = Ncaron;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (150,200);\nref = caroncomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 327;\n},\n{\nglyphname = Ncommaaccent;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (61,12);\nref = commaaccentcomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 325;\n},\n{\nglyphname = Ndotbelow;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (292,0);\nref = dotbelowcomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 7750;\n},\n{\nglyphname = Nmacronbelow;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (52,12);\nref = macronbelowcomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 7752;\n},\n{\nglyphname = Ntilde;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (64,200);\nref = tildecomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 209;\n},\n{\nglyphname = Eng;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,7);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,9);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(571,-188,o),\n(618,-137,o),\n(618,-44,cs),\n(618,700,l),\n(530,700,l),\n(530,193,l),\n(223,700,l),\n(95,700,l),\n(95,0,l),\n(183,0,l),\n(183,578,l),\n(530,26,l),\n(530,-43,ls),\n(530,-97,o),\n(502,-116,o),\n(453,-116,cs),\n(440,-116,o),\n(422,-115,o),\n(406,-112,c),\n(406,-180,l),\n(423,-185,o),\n(446,-188,o),\n(462,-188,cs)\n);\n}\n);\nwidth = 713;\n}\n);\nunicode = 330;\n},\n{\nglyphname = O;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (372,721);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(596,-11,o),\n(689,158,o),\n(689,351,cs),\n(689,544,o),\n(596,713,o),\n(372,713,cs),\n(148,713,o),\n(55,544,o),\n(55,351,cs),\n(55,158,o),\n(148,-11,o),\n(372,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(225,69,o),\n(147,196,o),\n(147,351,cs),\n(147,506,o),\n(225,633,o),\n(372,633,cs),\n(529,633,o),\n(597,506,o),\n(597,351,cs),\n(597,196,o),\n(529,69,o),\n(372,69,cs)\n);\n}\n);\nwidth = 744;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"1E35F290-6AA7-4BE9-AB09-67F845E701DA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(155,-13,o),\n(50,171,o),\n(50,355,cs),\n(50,548,o),\n(156,713,o),\n(386,713,c),\n(616,713,o),\n(722,548,o),\n(722,355,cs),\n(722,171,o),\n(617,-13,o),\n(386,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(252,617,o),\n(162,512,o),\n(162,357,cs),\n(162,194,o),\n(248,83,o),\n(386,83,c),\n(524,83,o),\n(610,194,o),\n(610,357,cs),\n(610,512,o),\n(520,617,o),\n(386,617,c)\n);\n}\n);\nwidth = 772;\n}\n);\nunicode = 79;\n},\n{\nglyphname = Oacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (316,209);\nref = acutecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 211;\n},\n{\nglyphname = Ocircumflex;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (161,209);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 212;\n},\n{\nglyphname = Ocircumflexacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (160,209);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7888;\n},\n{\nglyphname = Ocircumflexdotbelow;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (298,0);\nref = dotbelowcomb;\n},\n{\npos = (161,209);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7896;\n},\n{\nglyphname = Ocircumflexgrave;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (161,209);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7890;\n},\n{\nglyphname = Ocircumflexhookabove;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (161,209);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7892;\n},\n{\nglyphname = Ocircumflextilde;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (161,209);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7894;\n},\n{\nglyphname = Odieresis;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (211,209);\nref = dieresiscomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 214;\n},\n{\nglyphname = Odotbelow;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (298,0);\nref = dotbelowcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7884;\n},\n{\nglyphname = Ograve;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (194,209);\nref = gravecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 210;\n},\n{\nglyphname = Ohookabove;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (80,221);\nref = hookabovecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7886;\n},\n{\nglyphname = Ohorn;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(633,641,o),\n(640,762,o),\n(620,824,c),\n(533,818,l),\n(545,774,o),\n(548,709,o),\n(471,707,cs),\n(399,704,o),\n(383,713,o),\n(307,713,c),\n(336,674,l),\n(367,674,o),\n(372,641,o),\n(498,641,cs)\n);\n},\n{\npos = (-71,0);\nref = O;\n}\n);\nwidth = 600;\n}\n);\nunicode = 416;\n},\n{\nglyphname = Ohornacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (245,209);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7898;\n},\n{\nglyphname = Ohorndotbelow;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7906;\n},\n{\nglyphname = Ohorngrave;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (123,209);\nref = gravecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7900;\n},\n{\nglyphname = Ohornhookabove;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (9,221);\nref = hookabovecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7902;\n},\n{\nglyphname = Ohorntilde;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (2,209);\nref = tildecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7904;\n},\n{\nglyphname = Ohungarumlaut;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (119,209);\nref = hungarumlautcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 336;\n},\n{\nglyphname = Omacron;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (71,209);\nref = macroncomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 332;\n},\n{\nglyphname = Oslash;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(683,688,l),\n(626,734,l),\n(53,12,l),\n(107,-36,l)\n);\n},\n{\nref = O;\n}\n);\nwidth = 744;\n}\n);\nunicode = 216;\n},\n{\nglyphname = Otilde;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (73,209);\nref = tildecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 213;\n},\n{\nglyphname = OE;\nkernLeft = O;\nkernRight = E;\nlastChange = \"2023-07-09 23:18:24 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(591,-11,o),\n(679,158,o),\n(679,351,cs),\n(679,544,o),\n(591,713,o),\n(367,713,cs),\n(148,713,o),\n(55,544,o),\n(55,351,cs),\n(55,158,o),\n(143,-11,o),\n(367,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(220,69,o),\n(147,196,o),\n(147,351,cs),\n(147,506,o),\n(220,633,o),\n(367,633,cs),\n(524,633,o),\n(587,506,o),\n(587,351,cs),\n(587,196,o),\n(524,69,o),\n(367,69,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(1011,0,l),\n(1011,80,l),\n(677,80,l),\n(677,320,l),\n(950,320,l),\n(950,400,l),\n(677,400,l),\n(677,620,l),\n(1011,620,l),\n(1011,700,l),\n(589,700,l),\n(589,0,l)\n);\n}\n);\nwidth = 1069;\n}\n);\nunicode = 338;\n},\n{\nglyphname = P;\nkernLeft = P;\nkernRight = P;\nlastChange = \"2023-07-09 23:18:30 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,0);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (1,8);\ntype = Stem;\n},\n{\norigin = (1,4);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,-1,l),\n(185,252,l),\n(344,252,l),\n(485,252,o),\n(567,342,o),\n(567,471,cs),\n(567,615,o),\n(476,701,o),\n(346,701,cs),\n(95,701,l),\n(95,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,621,l),\n(344,621,ls),\n(417,621,o),\n(477,573,o),\n(477,473,cs),\n(477,376,o),\n(417,332,o),\n(343,332,cs),\n(183,332,l)\n);\n}\n);\nwidth = 602;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7FCCACBF-61D8-41EB-96D9-CCFCE935C285\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(335,614,ls),\n(408,614,o),\n(463,573,o),\n(463,473,cs),\n(463,376,o),\n(408,343,o),\n(334,343,cs),\n(200,343,l),\n(200,614,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(491,252,o),\n(573,342,o),\n(573,471,cs),\n(573,615,o),\n(482,701,o),\n(352,701,cs),\n(94,701,l),\n(94,-1,l),\n(202,-1,l),\n(202,252,l),\n(350,252,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 80;\n},\n{\nglyphname = Thorn;\nkernLeft = P;\nkernRight = P;\nlastChange = \"2023-07-09 23:18:30 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,0);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (1,8);\ntype = Stem;\n},\n{\norigin = (1,4);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,-1,l),\n(185,164,l),\n(307,164,l),\n(459,164,o),\n(530,234,o),\n(530,358,cs),\n(530,487,o),\n(459,553,o),\n(309,553,cs),\n(95,553,l),\n(95,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,473,l),\n(307,473,ls),\n(392,473,o),\n(440,445,o),\n(440,360,cs),\n(440,263,o),\n(392,244,o),\n(306,244,cs),\n(183,244,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,464,l),\n(183,700,l),\n(95,700,l),\n(95,464,l)\n);\n}\n);\nwidth = 565;\n}\n);\nunicode = 222;\n},\n{\nglyphname = Q;\nkernLeft = Q;\nkernRight = Q;\nlastChange = \"2023-07-09 23:18:35 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(596,-11,o),\n(689,158,o),\n(689,351,cs),\n(689,544,o),\n(596,713,o),\n(372,713,cs),\n(148,713,o),\n(55,544,o),\n(55,351,cs),\n(55,158,o),\n(148,-11,o),\n(372,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(702,37,l),\n(492,264,l),\n(438,217,l),\n(437,216,o),\n(646,-8,o),\n(646,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(215,69,o),\n(147,196,o),\n(147,351,cs),\n(147,506,o),\n(215,633,o),\n(372,633,cs),\n(529,633,o),\n(597,506,o),\n(597,351,cs),\n(597,196,o),\n(529,69,o),\n(372,69,cs)\n);\n}\n);\nwidth = 752;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"EFBC5A6F-D367-4A7A-A5FC-DD2D16B712CA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,270,l),\n(486,340,l),\n(758,54,l),\n(681,-12,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,-13,o),\n(50,171,o),\n(50,355,cs),\n(50,548,o),\n(156,713,o),\n(386,713,c),\n(616,713,o),\n(722,548,o),\n(722,355,cs),\n(722,171,o),\n(617,-13,o),\n(386,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(252,617,o),\n(162,512,o),\n(162,357,cs),\n(162,194,o),\n(248,83,o),\n(386,83,c),\n(524,83,o),\n(610,194,o),\n(610,357,cs),\n(610,512,o),\n(520,617,o),\n(386,617,c)\n);\n}\n);\nwidth = 817;\n}\n);\nunicode = 81;\n},\n{\nglyphname = R;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-07-09 23:18:41 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (309,720);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (1,0);\ntype = Stem;\n},\n{\norigin = (0,13);\ntarget = (1,8);\ntype = Stem;\n},\n{\norigin = (1,4);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,13);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(185,292,l),\n(336,292,l),\n(500,0,l),\n(604,0,l),\n(426,306,l),\n(520,340,o),\n(565,421,o),\n(565,498,cs),\n(565,588,o),\n(515,700,o),\n(348,700,cs),\n(95,700,l),\n(95,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,620,l),\n(349,620,ls),\n(423,620,o),\n(475,561,o),\n(475,498,c),\n(475,427,o),\n(421,372,o),\n(348,372,cs),\n(183,372,l)\n);\n}\n);\nwidth = 646;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"AC853CD9-4D5C-4A9A-82EA-746798F3E6E3\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(346,606,ls),\n(420,606,o),\n(463,561,o),\n(463,498,c),\n(463,427,o),\n(418,386,o),\n(345,386,cs),\n(200,386,l),\n(200,606,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(487,0,l),\n(612,0,l),\n(434,306,l),\n(528,340,o),\n(573,421,o),\n(573,498,cs),\n(573,588,o),\n(523,700,o),\n(356,700,cs),\n(94,700,l),\n(94,0,l),\n(202,0,l),\n(202,292,l),\n(323,292,l)\n);\n}\n);\nwidth = 652;\n}\n);\nunicode = 82;\n},\n{\nglyphname = Racute;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-07-09 23:18:48 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\npos = (253,208);\nref = acutecomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 340;\n},\n{\nglyphname = Rcaron;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-07-09 23:18:48 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\npos = (96,208);\nref = caroncomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 344;\n},\n{\nglyphname = Rcommaaccent;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-07-09 23:18:48 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\nref = commaaccentcomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 342;\n},\n{\nglyphname = Rmacronbelow;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-07-09 23:18:41 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\npos = (27,0);\nref = macronbelowcomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 7774;\n},\n{\nglyphname = S;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-07-09 23:18:57 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (316,-12);\n},\n{\nname = top;\npos = (314,720);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,31);\ntarget = (0,24);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,15);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,18);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(461,-12,o),\n(564,58,o),\n(564,195,c),\n(564,462,o),\n(162,336,o),\n(162,521,cs),\n(162,591,o),\n(231,632,o),\n(306,632,cs),\n(406,632,o),\n(454,572,o),\n(464,513,c),\n(557,513,l),\n(552,603,o),\n(466,712,o),\n(313,712,c),\n(148,712,o),\n(74,618,o),\n(74,516,c),\n(74,240,o),\n(476,375,o),\n(476,186,c),\n(477,114,o),\n(404,68,o),\n(316,68,c),\n(222,70,o),\n(161,129,o),\n(147,214,c),\n(50,214,l),\n(63,99,o),\n(141,-12,o),\n(316,-12,c)\n);\n}\n);\nwidth = 621;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"917E4443-A1CA-4121-BF2B-9D5AF53FD226\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(271,419,o),\n(184,433,o),\n(184,521,cs),\n(184,591,o),\n(247,623,o),\n(322,623,cs),\n(422,623,o),\n(473,572,o),\n(483,513,c),\n(585,513,l),\n(580,603,o),\n(502,712,o),\n(329,712,c),\n(164,712,o),\n(82,618,o),\n(82,516,c),\n(82,368,o),\n(176,334,o),\n(286,313,c),\n(397,296,o),\n(492,287,o),\n(492,186,c),\n(493,114,o),\n(422,79,o),\n(334,79,c),\n(240,81,o),\n(175,129,o),\n(161,214,c),\n(58,214,l),\n(71,99,o),\n(159,-12,o),\n(334,-12,c),\n(479,-12,o),\n(592,58,o),\n(592,195,c),\n(592,340,o),\n(493,376,o),\n(364,401,c)\n);\n}\n);\nwidth = 643;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"C07C9857-C18C-48E6-9123-EFA8357277D3\";\nname = \"8 Jul 21, 13:25\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(271,419,o),\n(184,433,o),\n(184,521,cs),\n(184,591,o),\n(247,623,o),\n(322,623,cs),\n(422,623,o),\n(473,572,o),\n(483,513,c),\n(585,513,l),\n(580,603,o),\n(502,712,o),\n(329,712,c),\n(164,712,o),\n(82,618,o),\n(82,516,c),\n(82,368,o),\n(176,334,o),\n(286,313,c),\n(397,296,o),\n(492,287,o),\n(492,186,c),\n(493,114,o),\n(422,79,o),\n(334,79,c),\n(240,81,o),\n(175,129,o),\n(161,214,c),\n(58,214,l),\n(71,99,o),\n(159,-12,o),\n(334,-12,c),\n(479,-12,o),\n(592,58,o),\n(592,195,c),\n(592,340,o),\n(493,376,o),\n(364,401,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(271,419,o),\n(184,433,o),\n(184,521,cs),\n(184,591,o),\n(247,623,o),\n(322,623,cs),\n(422,623,o),\n(473,572,o),\n(483,513,c),\n(585,513,l),\n(580,603,o),\n(502,712,o),\n(329,712,c),\n(164,712,o),\n(82,618,o),\n(82,516,c),\n(82,368,o),\n(176,334,o),\n(286,313,c),\n(397,296,o),\n(492,287,o),\n(492,186,c),\n(493,114,o),\n(422,79,o),\n(334,79,c),\n(240,81,o),\n(175,129,o),\n(161,214,c),\n(58,214,l),\n(71,99,o),\n(159,-12,o),\n(334,-12,c),\n(479,-12,o),\n(592,58,o),\n(592,195,c),\n(592,340,o),\n(493,376,o),\n(364,401,c)\n);\n}\n);\nwidth = 643;\n},\n{\nanchors = (\n{\nname = top;\npos = (311,720);\n}\n);\nassociatedMasterId = master01;\nhints = (\n{\nhorizontal = 1;\norigin = (0,31);\ntarget = (0,24);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,15);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,34);\ntype = Stem;\n}\n);\nlayerId = \"AA6848CB-AEE8-43E1-A86C-A0496DF06434\";\nname = \"1 Oct 21, 07:21\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(253,413,o),\n(162,433,o),\n(162,521,cs),\n(162,591,o),\n(231,632,o),\n(306,632,cs),\n(406,632,o),\n(451,572,o),\n(461,513,c),\n(557,513,l),\n(552,603,o),\n(486,712,o),\n(313,712,c),\n(148,712,o),\n(74,618,o),\n(74,516,c),\n(74,380,o),\n(168,338,o),\n(268,317,c),\n(379,291,o),\n(476,287,o),\n(476,186,c),\n(477,114,o),\n(404,68,o),\n(316,68,c),\n(222,70,o),\n(161,129,o),\n(147,214,c),\n(50,214,l),\n(63,99,o),\n(141,-12,o),\n(316,-12,c),\n(461,-12,o),\n(564,58,o),\n(564,195,c),\n(564,340,o),\n(465,370,o),\n(346,395,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(253,413,o),\n(162,433,o),\n(162,521,cs),\n(162,591,o),\n(231,632,o),\n(306,632,cs),\n(406,632,o),\n(451,572,o),\n(461,513,c),\n(557,513,l),\n(552,603,o),\n(486,712,o),\n(313,712,c),\n(148,712,o),\n(74,618,o),\n(74,516,c),\n(74,380,o),\n(168,338,o),\n(268,317,c),\n(379,291,o),\n(476,287,o),\n(476,186,c),\n(477,114,o),\n(404,68,o),\n(316,68,c),\n(222,70,o),\n(161,129,o),\n(147,214,c),\n(50,214,l),\n(63,99,o),\n(141,-12,o),\n(316,-12,c),\n(461,-12,o),\n(564,58,o),\n(564,195,c),\n(564,340,o),\n(465,370,o),\n(346,395,c)\n);\n}\n);\nvisible = 1;\nwidth = 621;\n}\n);\nunicode = 83;\n},\n{\nglyphname = Sacute;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-07-09 23:18:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (258,208);\nref = acutecomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 346;\n},\n{\nglyphname = Scaron;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-07-09 23:18:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (101,208);\nref = caroncomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 352;\n},\n{\nglyphname = Scedilla;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-07-09 23:18:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (26,-14);\nref = cedillacomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 350;\n},\n{\nglyphname = Scommaaccent;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-07-09 23:18:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (10,0);\nref = commaaccentcomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 536;\n},\n{\nglyphname = Germandbls;\nkernLeft = B;\nkernRight = B;\nlastChange = \"2023-08-03 09:20:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(519,-12,o),\n(628,69,o),\n(628,199,cs),\n(628,300,o),\n(538,382,o),\n(413,382,c),\n(573,600,l),\n(548,662,o),\n(453,712,o),\n(345,712,cs),\n(181,712,o),\n(97,605,o),\n(97,416,c),\n(97,0,l),\n(185,0,l),\n(185,407,ls),\n(185,563,o),\n(255,631,o),\n(344,631,cs),\n(407,631,o),\n(450,612,o),\n(459,592,c),\n(308,382,l),\n(308,313,l),\n(402,313,ls),\n(462,313,o),\n(542,275,o),\n(542,203,cs),\n(542,128,o),\n(485,68,o),\n(406,68,cs),\n(366,68,o),\n(330,78,o),\n(302,98,c),\n(255,30,l),\n(297,2,o),\n(349,-12,o),\n(405,-12,cs)\n);\n}\n);\nwidth = 682;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"F21A90D2-DE7B-4C42-8F88-BC0E7842DBD9\";\nname = \"7 Jun 23, 15:00\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(97,0,l),\n(97,416,l),\n(97,601,o),\n(174,700,o),\n(329,700,cs),\n(437,700,o),\n(530,630,o),\n(555,568,c),\n(404,407,l),\n(559,407,o),\n(636,315,o),\n(636,199,cs),\n(636,60,o),\n(524,-12,o),\n(395,-12,cs),\n(339,-12,o),\n(287,2,o),\n(245,30,c),\n(292,96,l),\n(320,76,o),\n(356,68,o),\n(396,68,cs),\n(485,68,o),\n(550,119,o),\n(550,203,cs),\n(550,300,o),\n(480,338,o),\n(381,338,cs),\n(290,338,l),\n(290,407,l),\n(441,560,l),\n(432,580,o),\n(393,615,o),\n(330,615,cs),\n(218,615,o),\n(185,521,o),\n(185,407,cs)\n);\n}\n);\nwidth = 690;\n}\n);\nunicode = 7838;\n},\n{\nglyphname = T;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-08-03 12:23:18 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (247,0);\n},\n{\nname = top;\npos = (248,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,4);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,7);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(293,0,l),\n(293,620,l),\n(483,620,l),\n(483,700,l),\n(15,700,l),\n(15,620,l),\n(205,620,l),\n(205,0,l)\n);\n}\n);\nwidth = 499;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B6AB5140-E37C-42F2-A30F-777986DD981C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(318,608,l),\n(517,608,l),\n(517,700,l),\n(5,700,l),\n(5,608,l),\n(212,608,l),\n(212,0,l),\n(318,0,l)\n);\n}\n);\nwidth = 522;\n}\n);\nunicode = 84;\n},\n{\nglyphname = Tcaron;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-07-09 23:28:14 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (35,200);\nref = caroncomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 356;\n},\n{\nglyphname = Tcedilla;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-07-09 23:28:14 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (-43,-2);\nref = cedillacomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 354;\n},\n{\nglyphname = Tcommaaccent;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-07-09 23:28:14 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (-59,12);\nref = commaaccentcomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 538;\n},\n{\nglyphname = Tdotbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-07-09 23:28:14 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (172,0);\nref = dotbelowcomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 7788;\n},\n{\nglyphname = Tmacronbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-07-09 23:28:14 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (-68,12);\nref = macronbelowcomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 7790;\n},\n{\nglyphname = U;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (341,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (0,11);\ntype = Stem;\n},\n{\nplace = (507,113);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(507,-12,o),\n(592,98,o),\n(592,275,cs),\n(592,701,l),\n(504,701,l),\n(504,275,ls),\n(504,139,o),\n(430,73,o),\n(337,73,cs),\n(240,73,o),\n(170,139,o),\n(170,275,cs),\n(170,701,l),\n(82,701,l),\n(82,275,ls),\n(82,98,o),\n(178,-12,o),\n(341,-12,cs)\n);\n}\n);\nwidth = 674;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"5FB1FA1A-EB05-444A-B8AE-D1ED2DC196B0\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(258,91,o),\n(181,142,o),\n(181,278,cs),\n(181,701,l),\n(70,701,l),\n(70,278,ls),\n(70,101,o),\n(156,-12,o),\n(356,-12,c),\n(523,-12,o),\n(620,102,o),\n(620,280,cs),\n(620,700,l),\n(507,700,l),\n(507,279,ls),\n(507,142,o),\n(447,91,o),\n(352,91,c)\n);\n}\n);\nwidth = 690;\n}\n);\nunicode = 85;\n},\n{\nglyphname = Uacute;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (285,200);\nref = acutecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 218;\n},\n{\nglyphname = Ubreve;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (34,200);\nref = brevecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 364;\n},\n{\nglyphname = Ucircumflex;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (130,200);\nref = circumflexcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 219;\n},\n{\nglyphname = Udieresis;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (180,200);\nref = dieresiscomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 220;\n},\n{\nglyphname = Udotbelow;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (265,0);\nref = dotbelowcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7908;\n},\n{\nglyphname = Ugrave;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (163,200);\nref = gravecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 217;\n},\n{\nglyphname = Uhookabove;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (49,212);\nref = hookabovecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7910;\n},\n{\nglyphname = Uhorn;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(726,634,o),\n(733,755,o),\n(713,817,c),\n(626,811,l),\n(638,767,o),\n(641,702,o),\n(564,700,c),\n(586,634,l)\n);\n},\n{\npos = (0,-1);\nref = U;\n}\n);\nwidth = 674;\n}\n);\nunicode = 431;\n},\n{\nglyphname = Uhornacute;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (285,199);\nref = acutecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7912;\n},\n{\nglyphname = Uhorndotbelow;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (265,0);\nref = dotbelowcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7920;\n},\n{\nglyphname = Uhorngrave;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (163,199);\nref = gravecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7914;\n},\n{\nglyphname = Uhornhookabove;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (49,211);\nref = hookabovecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7916;\n},\n{\nglyphname = Uhorntilde;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (42,199);\nref = tildecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7918;\n},\n{\nglyphname = Uhungarumlaut;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (88,200);\nref = hungarumlautcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 368;\n},\n{\nglyphname = Umacron;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (40,200);\nref = macroncomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 362;\n},\n{\nglyphname = Uogonek;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\nref = ogonekcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 370;\n},\n{\nglyphname = Uring;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (223,200);\nref = ringcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 366;\n},\n{\nglyphname = Utilde;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (42,200);\nref = tildecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 360;\n},\n{\nglyphname = V;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2023-08-03 09:35:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(337,0,l),\n(92,700,l),\n(8,700,l),\n(253,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(338,0,l),\n(582,700,l),\n(498,700,l),\n(254,0,l)\n);\n}\n);\nwidth = 590;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"0FF30111-47E3-4533-B04A-7E0F4FCC8B75\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(246,0,l),\n(356,0,l),\n(120,701,l),\n(10,701,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(515,701,l),\n(279,0,l),\n(385,0,l),\n(621,701,l)\n);\n}\n);\nwidth = 631;\n}\n);\nunicode = 86;\n},\n{\nglyphname = W;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-08-03 09:35:49 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (463,712);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(293,0,l),\n(463,569,l),\n(633,0,l),\n(748,0,l),\n(898,700,l),\n(805,700,l),\n(688,116,l),\n(517,700,l),\n(409,700,l),\n(238,116,l),\n(121,700,l),\n(28,700,l),\n(178,0,l)\n);\n}\n);\nwidth = 926;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D6814062-5E09-4D1C-9A77-973156DD01C6\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(347,563,l),\n(209,162,l),\n(127,700,l),\n(24,700,l),\n(137,0,l),\n(260,0,l),\n(398,432,l),\n(536,0,l),\n(659,0,l),\n(772,700,l),\n(671,700,l),\n(591,162,l),\n(451,563,l)\n);\n}\n);\nwidth = 796;\n}\n);\nunicode = 87;\n},\n{\nglyphname = Wacute;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-07-09 23:19:27 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (407,200);\nref = acutecomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 7810;\n},\n{\nglyphname = Wcircumflex;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-07-09 23:19:27 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (252,200);\nref = circumflexcomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 372;\n},\n{\nglyphname = Wdieresis;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-07-09 23:19:27 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (302,200);\nref = dieresiscomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 7812;\n},\n{\nglyphname = Wgrave;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-07-09 23:19:27 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (285,200);\nref = gravecomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 7808;\n},\n{\nglyphname = X;\nkernLeft = X;\nkernRight = X;\nlastChange = \"2023-07-09 23:19:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(557,0,l),\n(128,700,l),\n(27,700,l),\n(457,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(116,0,l),\n(546,700,l),\n(446,700,l),\n(17,0,l)\n);\n}\n);\nwidth = 574;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"246BAF68-6253-4F28-9414-8F7B7433EFF2\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(620,0,l),\n(149,700,l),\n(22,700,l),\n(494,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(620,700,l),\n(497,700,l),\n(26,0,l),\n(148,0,l)\n);\n}\n);\nwidth = 649;\n}\n);\nunicode = 88;\n},\n{\nglyphname = Y;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 12:32:08 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (299,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,6);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(339,0,l),\n(336,309,l),\n(577,700,l),\n(484,700,l),\n(293,390,l),\n(105,700,l),\n(5,700,l),\n(254,309,l),\n(251,0,l)\n);\n}\n);\nwidth = 582;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"8B946DEB-BFC8-4419-BD29-DE4D27CA2D95\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(345,0,l),\n(345,309,l),\n(580,700,l),\n(462,700,l),\n(296,404,l),\n(127,700,l),\n(2,700,l),\n(239,309,l),\n(239,0,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 89;\n},\n{\nglyphname = Yacute;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (243,200);\nref = acutecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 221;\n},\n{\nglyphname = Ycircumflex;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (88,200);\nref = circumflexcomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 374;\n},\n{\nglyphname = Ydieresis;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (138,200);\nref = dieresiscomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 376;\n},\n{\nglyphname = Ydotbelow;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (218,0);\nref = dotbelowcomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7924;\n},\n{\nglyphname = Ygrave;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (121,200);\nref = gravecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7922;\n},\n{\nglyphname = Yhookabove;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (7,212);\nref = hookabovecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7926;\n},\n{\nglyphname = Ytilde;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (0,200);\nref = tildecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7928;\n},\n{\nglyphname = Z;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-07-09 23:19:52 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (280,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,6);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(504,1,l),\n(504,81,l),\n(149,81,l),\n(504,618,l),\n(504,700,l),\n(45,700,l),\n(45,620,l),\n(400,620,l),\n(45,83,l),\n(45,1,l)\n);\n}\n);\nwidth = 554;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"2E06CB95-C68F-4397-AF31-B6A751E83E1E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(529,1,l),\n(529,93,l),\n(162,93,l),\n(529,606,l),\n(529,700,l),\n(40,700,l),\n(40,608,l),\n(407,608,l),\n(40,95,l),\n(40,1,l)\n);\n}\n);\nwidth = 569;\n}\n);\nunicode = 90;\n},\n{\nglyphname = Zacute;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-07-09 23:19:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (224,200);\nref = acutecomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 377;\n},\n{\nglyphname = Zcaron;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-07-09 23:19:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (67,200);\nref = caroncomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 381;\n},\n{\nglyphname = Zdotaccent;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-07-09 23:19:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (206,200);\nref = dotaccentcomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 379;\n},\n{\nglyphname = Lcommaaccent.loclMAH;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:19:56 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\nref = cedillacomb;\n}\n);\nwidth = 524;\n}\n);\n},\n{\nglyphname = Ncommaaccent.loclMAH;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:19:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (57,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 713;\n}\n);\n},\n{\nglyphname = a;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:38:36 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (275,-12);\n},\n{\nname = ogonek;\npos = (476,0);\n},\n{\nname = top;\npos = (299,516);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (-12,76);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (239,76);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (512,76);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (0,95);\ntype = Stem;\n},\n{\nplace = (56,84);\ntype = Stem;\n},\n{\nplace = (365,84);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,-12,o),\n(417,27,o),\n(438,96,c),\n(438,0,l),\n(521,0,l),\n(521,500,l),\n(441,500,l),\n(441,402,l),\n(420,457,o),\n(368,512,o),\n(280,512,cs),\n(149,512,o),\n(54,419,o),\n(54,250,cs),\n(54,86,o),\n(144,-12,o),\n(275,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(521,0,l),\n(438,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,64,o),\n(138,148,o),\n(138,252,cs),\n(138,356,o),\n(186,437,o),\n(284,437,cs),\n(383,437,o),\n(437,360,o),\n(437,250,cs),\n(437,148,o),\n(383,64,o),\n(287,64,cs)\n);\n}\n);\nwidth = 607;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"3B5242A6-E9B9-4106-A318-25CEEEEB8629\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(131,199,o),\n(196,247,o),\n(349,247,c),\n(349,226,ls),\n(349,127,o),\n(247,78,o),\n(195,78,cs),\n(152,78,o),\n(131,114,o),\n(131,148,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(355,67,o),\n(377,0,o),\n(448,0,cs),\n(473,0,o),\n(496,6,o),\n(510,16,c),\n(510,95,l),\n(470,91,o),\n(447,107,o),\n(447,147,c),\n(447,340,ls),\n(447,414,o),\n(408,512,o),\n(257,512,cs),\n(115,512,o),\n(56,404,o),\n(56,404,cs),\n(132,355,l),\n(132,355,o),\n(167,425,o),\n(250,426,cs),\n(315,427,o),\n(347,388,o),\n(349,344,c),\n(349,328,l),\n(165,328,o),\n(40,262,o),\n(40,135,cs),\n(40,43,o),\n(103,-12,o),\n(192,-12,cs),\n(318,-12,o),\n(356,106,o),\n(356,106,c)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 97;\n},\n{\nglyphname = aacute;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (243,4);\nref = acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 225;\n},\n{\nglyphname = abreve;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 259;\n},\n{\nglyphname = abreveacute;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7855;\n},\n{\nglyphname = abrevedotbelow;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (200,-12);\nref = dotbelowcomb;\n},\n{\npos = (-8,4);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7863;\n},\n{\nglyphname = abrevegrave;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7857;\n},\n{\nglyphname = abrevehookabove;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7859;\n},\n{\nglyphname = abrevetilde;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7861;\n},\n{\nglyphname = acircumflex;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 226;\n},\n{\nglyphname = acircumflexacute;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (87,4);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7845;\n},\n{\nglyphname = acircumflexdotbelow;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (200,-12);\nref = dotbelowcomb;\n},\n{\npos = (88,4);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7853;\n},\n{\nglyphname = acircumflexgrave;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7847;\n},\n{\nglyphname = acircumflexhookabove;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7849;\n},\n{\nglyphname = acircumflextilde;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7851;\n},\n{\nglyphname = adieresis;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (138,4);\nref = dieresiscomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 228;\n},\n{\nglyphname = adotbelow;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (200,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7841;\n},\n{\nglyphname = agrave;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (121,4);\nref = gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 224;\n},\n{\nglyphname = ahookabove;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (7,16);\nref = hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7843;\n},\n{\nglyphname = amacron;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-2,4);\nref = macroncomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 257;\n},\n{\nglyphname = aogonek;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (120,0);\nref = ogonekcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 261;\n},\n{\nglyphname = aring;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (181,4);\nref = ringcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 229;\n},\n{\nglyphname = atilde;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (0,4);\nref = tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 227;\n},\n{\nglyphname = ae;\nkernLeft = a;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:13 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(719,-13,o),\n(789,30,o),\n(830,113,c),\n(756,143,l),\n(728,92,o),\n(682,63,o),\n(622,63,c),\n(521,63,o),\n(476,141,o),\n(476,245,cs),\n(476,349,o),\n(521,436,o),\n(622,436,c),\n(713,436,o),\n(762,360,o),\n(762,304,c),\n(473,304,l),\n(473,233,l),\n(846,233,l),\n(846,261,l),\n(846,434,o),\n(745,512,o),\n(624,512,c),\n(498,512,o),\n(393,412,o),\n(393,248,cs),\n(393,87,o),\n(498,-13,o),\n(624,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(170,64,o),\n(140,91,o),\n(140,142,cs),\n(140,223,o),\n(221,239,o),\n(393,239,c),\n(393,219,ls),\n(393,120,o),\n(283,64,o),\n(221,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(345,-12,o),\n(422,113,o),\n(422,113,c),\n(441,155,o),\n(475,173,o),\n(477,340,cs),\n(478,429,o),\n(397,512,o),\n(279,512,cs),\n(113,512,o),\n(71,393,o),\n(71,393,c),\n(139,356,l),\n(139,356,o),\n(170,436,o),\n(272,436,cs),\n(340,436,o),\n(393,390,o),\n(393,336,cs),\n(393,305,l),\n(160,305,o),\n(56,262,o),\n(56,135,cs),\n(56,43,o),\n(119,-12,o),\n(200,-12,cs)\n);\n}\n);\nwidth = 896;\n}\n);\nunicode = 230;\n},\n{\nglyphname = b;\nkernLeft = l;\nkernRight = b;\nlastChange = \"2023-08-03 11:59:44 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (334,-11);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,16);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (1,5);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,12);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(465,-12,o),\n(560,81,o),\n(560,250,cs),\n(560,414,o),\n(470,512,o),\n(339,512,cs),\n(270,512,o),\n(197,473,o),\n(176,404,c),\n(176,720,l),\n(92,720,l),\n(92,0,l),\n(173,0,l),\n(173,98,l),\n(194,43,o),\n(246,-12,o),\n(334,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(231,63,o),\n(177,140,o),\n(177,250,cs),\n(177,352,o),\n(231,435,o),\n(327,436,cs),\n(428,437,o),\n(476,352,o),\n(476,248,cs),\n(476,144,o),\n(428,63,o),\n(330,63,cs)\n);\n}\n);\nwidth = 614;\n},\n{\nassociatedMasterId = master01;\nhints = (\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (0,5);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (0,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,2);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,8);\ntype = Stem;\n}\n);\nlayerId = \"67A6802E-0ADA-4E35-B6DE-2FB806E7B19C\";\nname = \"21 Jul 21, 11:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(419,436,o),\n(473,339,o),\n(473,252,cs),\n(473,165,o),\n(421,64,o),\n(327,64,c),\n(231,64,o),\n(173,165,o),\n(173,252,cs),\n(173,339,o),\n(223,436,o),\n(321,436,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(460,-13,o),\n(576,81,o),\n(576,250,cs),\n(576,414,o),\n(465,512,o),\n(336,512,c),\n(207,512,o),\n(92,412,o),\n(92,248,cs),\n(92,79,o),\n(202,-13,o),\n(331,-13,c)\n);\n}\n);\nwidth = 613;\n}\n);\nunicode = 98;\n},\n{\nglyphname = c;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-07-09 23:20:23 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (292,-13);\n},\n{\nname = top;\npos = (292,521);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,-13,o),\n(455,35,o),\n(490,118,c),\n(414,148,l),\n(393,97,o),\n(350,63,o),\n(290,63,c),\n(189,63,o),\n(138,147,o),\n(138,251,cs),\n(138,355,o),\n(189,436,o),\n(290,436,c),\n(350,436,o),\n(393,402,o),\n(414,351,c),\n(490,381,l),\n(455,464,o),\n(380,512,o),\n(292,512,c),\n(166,512,o),\n(54,412,o),\n(54,248,cs),\n(54,87,o),\n(166,-13,o),\n(292,-13,c)\n);\n}\n);\nwidth = 536;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D5044F65-6BC5-444E-BECC-015FB8AF7D9F\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(150,338,o),\n(200,429,o),\n(294,429,c),\n(356,429,o),\n(397,384,o),\n(413,331,c),\n(502,360,l),\n(479,465,o),\n(389,512,o),\n(293,512,c),\n(162,512,o),\n(50,421,o),\n(50,251,c),\n(50,81,o),\n(162,-12,o),\n(293,-12,c),\n(389,-12,o),\n(481,38,o),\n(506,147,c),\n(417,176,l),\n(401,123,o),\n(356,72,o),\n(294,72,c),\n(200,72,o),\n(150,164,o),\n(150,250,c)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"5E179671-36B7-481B-ACDA-F3411599AAD9\";\nname = \"22 Jul 21, 10:29\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(54,87,o),\n(166,-13,o),\n(292,-13,c),\n(380,-13,o),\n(457,35,o),\n(492,118,c),\n(416,148,l),\n(395,97,o),\n(350,63,o),\n(290,63,c),\n(189,63,o),\n(137,147,o),\n(137,251,cs),\n(137,355,o),\n(189,436,o),\n(290,436,c),\n(350,436,o),\n(395,402,o),\n(416,351,c),\n(492,381,l),\n(457,464,o),\n(380,512,o),\n(292,512,c),\n(166,512,o),\n(54,412,o),\n(54,248,cs)\n);\n}\n);\nwidth = 536;\n}\n);\nunicode = 99;\n},\n{\nglyphname = cacute;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-07-09 23:20:23 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (236,9);\nref = acutecomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 263;\n},\n{\nglyphname = ccaron;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-07-09 23:20:23 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (79,9);\nref = caroncomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 269;\n},\n{\nglyphname = ccedilla;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-07-09 23:20:23 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (2,-15);\nref = cedillacomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 231;\n},\n{\nglyphname = cdotaccent;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-07-09 23:20:23 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (218,9);\nref = dotaccentcomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 267;\n},\n{\nglyphname = d;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-07-09 23:20:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (280,-12);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(368,-12,o),\n(420,43,o),\n(442,98,c),\n(442,27,o),\n(481,-1,o),\n(533,-1,cs),\n(558,-1,o),\n(571,3,o),\n(585,11,c),\n(585,79,l),\n(536,68,o),\n(522,86,o),\n(522,126,cs),\n(522,712,l),\n(438,712,l),\n(438,404,l),\n(417,473,o),\n(344,512,o),\n(275,512,cs),\n(144,512,o),\n(54,414,o),\n(54,250,cs),\n(54,81,o),\n(149,-12,o),\n(280,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,63,o),\n(138,144,o),\n(138,248,cs),\n(138,352,o),\n(186,436,o),\n(287,436,cs),\n(383,436,o),\n(437,352,o),\n(437,250,cs),\n(437,140,o),\n(383,63,o),\n(284,63,cs)\n);\n}\n);\nwidth = 627;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7399E59F-C8CF-444F-A145-6D2B7F7CF480\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(397,426,o),\n(440,339,o),\n(440,252,cs),\n(440,165,o),\n(391,75,o),\n(299,75,c),\n(205,75,o),\n(156,165,o),\n(156,252,cs),\n(156,339,o),\n(203,426,o),\n(299,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(443,62,o),\n(477,2,o),\n(536,1,cs),\n(578,0,o),\n(614,18,o),\n(614,18,c),\n(614,18,o),\n(614,101,o),\n(614,101,cs),\n(564,90,o),\n(537,105,o),\n(537,150,c),\n(537,720,l),\n(437,720,l),\n(437,422,l),\n(414,475,o),\n(343,512,o),\n(274,512,c),\n(141,512,o),\n(54,397,o),\n(54,250,cs),\n(54,123,o),\n(122,-12,o),\n(274,-11,c),\n(349,-11,o),\n(419,25,o),\n(444,101,c)\n);\n}\n);\nwidth = 664;\n}\n);\nunicode = 100;\n},\n{\nglyphname = eth;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-07-09 23:20:28 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,-12,o),\n(511,78,o),\n(515,250,cs),\n(518,388,o),\n(488,617,o),\n(182,738,c),\n(142,677,l),\n(269,636,o),\n(376,526,o),\n(390,470,c),\n(364,507,o),\n(292,512,o),\n(282,512,cs),\n(162,512,o),\n(54,422,o),\n(54,250,cs),\n(54,78,o),\n(162,-12,o),\n(282,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,64,o),\n(135,133,o),\n(135,250,cs),\n(135,367,o),\n(186,436,o),\n(282,436,cs),\n(379,436,o),\n(433,367,o),\n(433,250,cs),\n(433,133,o),\n(379,64,o),\n(282,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(452,644,l),\n(431,701,l),\n(132,597,l),\n(154,540,l)\n);\n}\n);\nwidth = 569;\n}\n);\nunicode = 240;\n},\n{\nglyphname = dcaron;\nkernLeft = d;\nkernRight = lcaron;\nlastChange = \"2023-08-03 12:00:20 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = d;\n},\n{\npos = (290,0);\nref = caroncomb.alt;\n}\n);\nwidth = 627;\n}\n);\nunicode = 271;\n},\n{\nglyphname = dcroat;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-07-09 23:20:28 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(587,582,l),\n(587,650,l),\n(294,650,l),\n(294,582,l)\n);\n},\n{\nref = d;\n}\n);\nwidth = 627;\n}\n);\nunicode = 273;\n},\n{\nglyphname = ddotbelow;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-07-09 23:20:28 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = d;\n},\n{\npos = (205,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7693;\n},\n{\nglyphname = dmacronbelow;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-07-09 23:20:28 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = d;\n},\n{\npos = (-35,0);\nref = macronbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7695;\n},\n{\nglyphname = e;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (291,-13);\n},\n{\nname = top;\npos = (291,515);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,28);\ntarget = (0,6);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (0,15);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,22);\ntarget = (0,12);\ntype = Stem;\n},\n{\norigin = (0,25);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,15);\ntarget = (0,18);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(392,-13,o),\n(462,30,o),\n(503,113,c),\n(429,143,l),\n(401,92,o),\n(349,63,o),\n(289,63,c),\n(188,63,o),\n(137,141,o),\n(137,245,cs),\n(137,349,o),\n(188,436,o),\n(289,436,c),\n(386,436,o),\n(435,360,o),\n(435,304,c),\n(134,304,l),\n(134,230,l),\n(519,230,l),\n(519,261,l),\n(519,434,o),\n(418,512,o),\n(291,512,c),\n(165,512,o),\n(54,412,o),\n(54,248,cs),\n(54,87,o),\n(165,-13,o),\n(291,-13,c)\n);\n}\n);\nwidth = 569;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"169FF446-F214-45AF-87EB-12250BF5A1D5\";\nname = foreground;\nvisible = 1;\nwidth = 543;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"E0E72D27-D989-452C-96DA-744C8CBAEC4B\";\nname = \"10 Jul 21, 15:30\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(41,87,o),\n(153,-13,o),\n(279,-13,c),\n(367,-13,o),\n(444,35,o),\n(479,118,c),\n(403,148,l),\n(382,97,o),\n(337,63,o),\n(277,63,c),\n(176,63,o),\n(124,147,o),\n(124,251,cs),\n(124,355,o),\n(176,436,o),\n(277,436,c),\n(337,436,o),\n(382,402,o),\n(403,351,c),\n(479,381,l),\n(444,464,o),\n(367,512,o),\n(279,512,c),\n(153,512,o),\n(41,412,o),\n(41,248,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(406,-13,o),\n(521,81,o),\n(521,250,cs),\n(521,414,o),\n(411,512,o),\n(283,512,c),\n(156,512,o),\n(42,412,o),\n(42,248,cs),\n(42,79,o),\n(151,-13,o),\n(278,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(377,435,o),\n(437,352,o),\n(437,250,cs),\n(437,140,o),\n(377,63,o),\n(278,63,c),\n(179,63,o),\n(126,144,o),\n(126,248,cs),\n(126,352,o),\n(179,436,o),\n(281,436,c)\n);\n}\n);\nvisible = 1;\nwidth = 543;\n}\n);\nunicode = 101;\n},\n{\nglyphname = eacute;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (235,3);\nref = acutecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 233;\n},\n{\nglyphname = ecaron;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (78,3);\nref = caroncomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 283;\n},\n{\nglyphname = ecircumflex;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 234;\n},\n{\nglyphname = ecircumflexacute;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (79,3);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7871;\n},\n{\nglyphname = ecircumflexdotbelow;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (216,-13);\nref = dotbelowcomb;\n},\n{\npos = (80,3);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7879;\n},\n{\nglyphname = ecircumflexgrave;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7873;\n},\n{\nglyphname = ecircumflexhookabove;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7875;\n},\n{\nglyphname = ecircumflextilde;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7877;\n},\n{\nglyphname = edieresis;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (130,3);\nref = dieresiscomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 235;\n},\n{\nglyphname = edotaccent;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (217,3);\nref = dotaccentcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 279;\n},\n{\nglyphname = edotbelow;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (216,-13);\nref = dotbelowcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7865;\n},\n{\nglyphname = egrave;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (113,3);\nref = gravecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 232;\n},\n{\nglyphname = ehookabove;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (-1,15);\nref = hookabovecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7867;\n},\n{\nglyphname = emacron;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (-10,3);\nref = macroncomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 275;\n},\n{\nglyphname = eogonek;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(465,-197,o),\n(497,-193,o),\n(514,-182,c),\n(514,-112,l),\n(473,-133,o),\n(419,-124,o),\n(419,-68,cs),\n(419,-18,o),\n(471,58,o),\n(503,113,c),\n(401,33,l),\n(381,21,o),\n(343,-33,o),\n(343,-83,cs),\n(343,-140,o),\n(381,-197,o),\n(452,-197,cs)\n);\n},\n{\nref = e;\n}\n);\nwidth = 569;\n}\n);\nunicode = 281;\n},\n{\nglyphname = etilde;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (-8,3);\nref = tildecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7869;\n},\n{\nglyphname = f;\nkernLeft = f;\nkernRight = f;\nlastChange = \"2023-08-03 09:33:54 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,20);\ntarget = (0,21);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,15);\ntype = Stem;\n},\n{\norigin = (0,23);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(227,0,l),\n(227,424,l),\n(355,424,l),\n(355,500,l),\n(227,500,l),\n(227,575,ls),\n(227,629,o),\n(254,648,o),\n(303,648,cs),\n(316,648,o),\n(334,647,o),\n(350,644,c),\n(350,712,l),\n(333,717,o),\n(310,720,o),\n(294,720,cs),\n(185,720,o),\n(143,669,o),\n(143,576,cs),\n(143,500,l),\n(47,500,l),\n(47,424,l),\n(143,424,l),\n(143,0,l)\n);\n}\n);\nwidth = 375;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"05947023-CF81-4962-BA32-552EF9D46824\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(134,409,l),\n(134,0,l),\n(233,0,l),\n(233,409,l),\n(365,409,l),\n(365,500,l),\n(233,500,l),\n(232,602,o),\n(245,630,o),\n(294,635,cs),\n(332,639,o),\n(364,630,o),\n(364,630,c),\n(364,720,l),\n(349,725,o),\n(321,728,o),\n(305,728,cs),\n(164,728,o),\n(134,664,o),\n(134,500,c),\n(40,500,l),\n(40,409,l)\n);\n}\n);\nwidth = 375;\n}\n);\nunicode = 102;\n},\n{\nglyphname = g;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-08-03 09:36:51 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (280,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(412,-232,o),\n(521,-171,o),\n(521,17,cs),\n(521,500,l),\n(441,500,l),\n(441,402,l),\n(420,457,o),\n(368,512,o),\n(280,512,cs),\n(149,512,o),\n(54,419,o),\n(54,250,cs),\n(54,86,o),\n(144,-12,o),\n(275,-12,cs),\n(344,-12,o),\n(417,27,o),\n(438,96,c),\n(438,17,ls),\n(438,-96,o),\n(391,-156,o),\n(281,-156,cs),\n(214,-156,o),\n(163,-125,o),\n(138,-66,c),\n(72,-107,l),\n(111,-195,o),\n(193,-229,o),\n(280,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,64,o),\n(138,148,o),\n(138,252,cs),\n(138,356,o),\n(186,437,o),\n(284,437,cs),\n(383,437,o),\n(437,360,o),\n(437,250,cs),\n(437,148,o),\n(383,64,o),\n(287,64,cs)\n);\n}\n);\nwidth = 607;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"79240F66-912C-4E1A-A3E4-4F79DFA0CFDD\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(394,426,o),\n(437,339,o),\n(437,252,cs),\n(437,165,o),\n(392,75,o),\n(296,75,c),\n(202,75,o),\n(160,165,o),\n(160,252,cs),\n(160,339,o),\n(200,426,o),\n(296,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(534,499,l),\n(434,499,l),\n(434,422,l),\n(411,475,o),\n(340,512,o),\n(271,512,c),\n(138,512,o),\n(51,397,o),\n(51,250,cs),\n(51,123,o),\n(119,-13,o),\n(271,-12,c),\n(346,-12,o),\n(406,27,o),\n(434,98,c),\n(434,5,ls),\n(434,-112,o),\n(388,-165,o),\n(275,-166,cs),\n(201,-167,o),\n(153,-122,o),\n(128,-63,c),\n(50,-106,l),\n(95,-207,o),\n(187,-249,o),\n(274,-250,cs),\n(390,-252,o),\n(534,-200,o),\n(534,-12,cs)\n);\n}\n);\nwidth = 614;\n}\n);\nunicode = 103;\n},\n{\nglyphname = gbreve;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (-27,0);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 287;\n},\n{\nglyphname = gcommaaccent;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (-40,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 291;\n},\n{\nglyphname = gdotaccent;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (206,0);\nref = dotaccentcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 289;\n},\n{\nglyphname = gmacron;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (-21,0);\nref = macroncomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7713;\n},\n{\nglyphname = h;\nkernLeft = l;\nkernRight = h;\nlastChange = \"2023-08-03 11:59:50 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,13);\ntarget = (0,4);\ntype = Stem;\n},\n{\nplace = (92,84);\ntype = Stem;\n},\n{\nplace = (421,84);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,0,l),\n(511,0,l),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,712,l),\n(92,712,l),\n(92,0,l)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CD505587-AC72-48CE-8408-6BA3826A3B3C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(185,259,ls),\n(185,355,o),\n(232,425,o),\n(314,425,cs),\n(371,425,o),\n(423,392,o),\n(423,306,c),\n(423,0,l),\n(523,0,l),\n(523,328,ls),\n(523,448,o),\n(439,512,o),\n(352,512,cs),\n(249,512,o),\n(205,455,o),\n(185,402,c),\n(185,720,l),\n(85,720,l),\n(85,0,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 104;\n},\n{\nglyphname = hbar;\nkernLeft = h;\nkernRight = h;\nlastChange = \"2023-07-09 23:20:48 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(357,582,l),\n(357,650,l),\n(64,650,l),\n(64,582,l)\n);\n},\n{\npos = (37,0);\nref = h;\n}\n);\nwidth = 634;\n}\n);\nunicode = 295;\n},\n{\nglyphname = i;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:00 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (131,0);\n},\n{\nname = top;\npos = (126,500);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(162,595,o),\n(188,622,o),\n(188,653,cs),\n(188,685,o),\n(162,712,o),\n(131,712,cs),\n(99,712,o),\n(72,685,o),\n(72,653,cs),\n(72,622,o),\n(99,595,o),\n(131,595,cs)\n);\n},\n{\nref = idotless;\n}\n);\nwidth = 260;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"6625A516-8D1C-4BE4-BEF2-383D9616A379\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(193,0,l),\n(193,500,l),\n(93,500,l),\n(93,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(178,571,o),\n(206,600,o),\n(206,634,cs),\n(206,669,o),\n(178,698,o),\n(144,698,cs),\n(109,698,o),\n(80,669,o),\n(80,634,cs),\n(80,600,o),\n(109,571,o),\n(144,571,cs)\n);\n}\n);\nwidth = 286;\n}\n);\nunicode = 105;\n},\n{\nglyphname = idotless;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:00 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (129,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(172,0,l),\n(172,500,l),\n(88,500,l),\n(88,0,l)\n);\n}\n);\nwidth = 260;\n}\n);\nunicode = 305;\n},\n{\nglyphname = iacute;\nlastChange = \"2023-08-03 12:24:56 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (73,0);\nref = acutecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 237;\n},\n{\nglyphname = icircumflex;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-08-03 12:24:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-82,0);\nref = circumflexcomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 238;\n},\n{\nglyphname = idieresis;\nkernLeft = id;\nlastChange = \"2023-08-03 12:24:28 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-32,0);\nref = dieresiscomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 239;\n},\n{\nglyphname = idotaccent;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:00 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,593,o),\n(188,622,o),\n(188,656,cs),\n(188,691,o),\n(160,720,o),\n(126,720,cs),\n(91,720,o),\n(62,691,o),\n(62,656,cs),\n(62,622,o),\n(91,593,o),\n(126,593,cs)\n);\n},\n{\npos = (-5,0);\nref = idotless;\n}\n);\nwidth = 260;\n}\n);\n},\n{\nglyphname = idotbelow;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:00 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = i;\n},\n{\npos = (56,0);\nref = dotbelowcomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 7883;\n},\n{\nglyphname = igrave;\nkernLeft = id;\nlastChange = \"2023-08-03 12:24:43 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-49,0);\nref = gravecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 236;\n},\n{\nglyphname = ihookabove;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:00 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-163,12);\nref = hookabovecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 7881;\n},\n{\nglyphname = ij;\nkernLeft = i;\nkernRight = j;\nlastChange = \"2023-07-09 23:21:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(460,593,o),\n(488,622,o),\n(488,656,c),\n(489,691,o),\n(461,720,o),\n(426,720,cs),\n(391,720,o),\n(362,691,o),\n(362,656,cs),\n(362,622,o),\n(391,593,o),\n(426,593,cs)\n);\n},\n{\nref = idotaccent;\n},\n{\npos = (260,0);\nref = jdotless;\n}\n);\nwidth = 561;\n}\n);\nunicode = 307;\n},\n{\nglyphname = imacron;\nkernLeft = id;\nlastChange = \"2023-08-03 12:24:13 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-172,0);\nref = macroncomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 299;\n},\n{\nglyphname = iogonek;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:12 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (55,0);\nref = dotaccentcomb;\n},\n{\npos = (-230,0);\nref = ogonekcomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 303;\n},\n{\nglyphname = itilde;\nkernLeft = id;\nlastChange = \"2023-08-03 12:24:20 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-170,0);\nref = tildecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 297;\n},\n{\nglyphname = j;\nkernLeft = j;\nkernRight = j;\nlastChange = \"2023-07-09 23:21:21 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\nplace = (-249,94);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (1,11);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (1,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(169,-230,o),\n(210,-179,o),\n(210,-86,cs),\n(210,-86,o),\n(211,0,o),\n(211,500,c),\n(127,500,l),\n(127,-85,l),\n(127,-139,o),\n(100,-158,o),\n(51,-158,cs),\n(38,-158,o),\n(20,-157,o),\n(4,-154,c),\n(4,-222,l),\n(21,-227,o),\n(44,-230,o),\n(60,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(201,593,o),\n(229,622,o),\n(229,656,cs),\n(229,691,o),\n(201,720,o),\n(167,720,cs),\n(132,720,o),\n(103,691,o),\n(103,656,cs),\n(103,622,o),\n(132,593,o),\n(167,593,cs)\n);\n}\n);\nwidth = 301;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D21705D2-9FF0-49F0-B103-525AAF3570C8\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(187,593,o),\n(215,622,o),\n(215,656,cs),\n(215,691,o),\n(187,720,o),\n(153,720,cs),\n(118,720,o),\n(89,691,o),\n(89,656,cs),\n(89,622,o),\n(118,593,o),\n(153,593,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(106,499,l),\n(106,-6,ls),\n(106,-108,o),\n(94,-152,o),\n(41,-156,cs),\n(3,-159,o),\n(-25,-151,o),\n(-25,-151,c),\n(-25,-243,l),\n(-10,-248,o),\n(18,-251,o),\n(34,-251,cs),\n(175,-251,o),\n(205,-176,o),\n(205,-12,cs),\n(205,499,l)\n);\n}\n);\nwidth = 275;\n}\n);\nunicode = 106;\n},\n{\nglyphname = jdotless;\nkernLeft = j;\nkernRight = j;\nlastChange = \"2023-07-09 23:21:21 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (169,512);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (-249,94);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (720,-220);\ntarget = (0,6);\ntype = Stem;\n},\n{\norigin = (0,6);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,6);\ntarget = (0,5);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(169,-230,o),\n(210,-179,o),\n(210,-86,cs),\n(210,-86,o),\n(211,0,o),\n(211,500,c),\n(127,500,l),\n(127,-85,l),\n(127,-139,o),\n(100,-158,o),\n(51,-158,cs),\n(38,-158,o),\n(20,-157,o),\n(4,-154,c),\n(4,-222,l),\n(21,-227,o),\n(44,-230,o),\n(60,-230,cs)\n);\n}\n);\nwidth = 301;\n}\n);\nunicode = 567;\n},\n{\nglyphname = jacute;\nkernLeft = j;\nkernRight = j;\nlastChange = \"2023-07-09 23:21:21 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (113,0);\nref = acutecomb;\n}\n);\nwidth = 301;\n}\n);\n},\n{\nglyphname = k;\nkernLeft = l;\nkernRight = k;\nlastChange = \"2023-08-03 12:32:16 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (279,-12);\n}\n);\nhints = (\n{\nplace = (93,84);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(241,256,l),\n(265,266,l),\n(494,500,l),\n(390,500,l),\n(115,225,l),\n(115,131,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,712,l),\n(92,712,l),\n(92,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(510,0,l),\n(281,302,l),\n(215,249,l),\n(404,0,l)\n);\n}\n);\nwidth = 525;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"45831B20-6849-4EF6-BE83-8DDAD9BE09E7\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(804,256,l),\n(828,266,l),\n(1049,500,l),\n(941,500,l),\n(681,225,l),\n(686,131,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(747,0,l),\n(747,712,l),\n(663,712,l),\n(663,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(1069,0,l),\n(840,302,l),\n(778,249,l),\n(967,0,l)\n);\n}\n);\nwidth = 537;\n},\n{\nassociatedMasterId = master01;\nhints = (\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,1);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,10);\ntype = Stem;\n}\n);\nlayerId = \"F5153F53-BD19-4DEE-BBF1-244D87F5AFFD\";\nname = \"22 Jul 21, 10:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,252,l),\n(395,-1,l),\n(498,-1,l),\n(267,308,l),\n(479,500,l),\n(371,500,l),\n(177,325,l),\n(176,712,l),\n(92,712,l),\n(93,0,l),\n(177,0,l),\n(177,223,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(219,252,l),\n(409,-1,l),\n(528,-1,l),\n(291,315,l),\n(503,500,l),\n(365,500,l),\n(186,344,l),\n(186,720,l),\n(86,720,l),\n(86,0,l),\n(186,0,l),\n(186,223,l)\n);\n}\n);\nwidth = 513;\n}\n);\nunicode = 107;\n},\n{\nglyphname = kcommaaccent;\nkernLeft = l;\nkernRight = k;\nlastChange = \"2023-08-03 11:59:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = k;\n},\n{\npos = (-27,0);\nref = commaaccentcomb;\n}\n);\nwidth = 525;\n}\n);\nunicode = 311;\n},\n{\nglyphname = l;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:00:17 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (133,0);\n},\n{\nname = top;\npos = (129,725);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(174,0,l),\n(174,712,l),\n(90,712,l),\n(90,0,l)\n);\n}\n);\nwidth = 258;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9184F1DE-F07E-494E-9C47-EEC1A903CA2E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,0,l),\n(180,720,l),\n(80,720,l),\n(80,0,l)\n);\n}\n);\nwidth = 260;\n}\n);\nunicode = 108;\n},\n{\nglyphname = lacute;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-07-09 23:21:36 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (73,213);\nref = acutecomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 314;\n},\n{\nglyphname = lcaron;\nkernLeft = l;\nkernRight = lcaron;\nlastChange = \"2023-08-03 11:59:12 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-75,0);\nref = caroncomb.alt;\n}\n);\nwidth = 258;\n}\n);\nunicode = 318;\n},\n{\nglyphname = lcommaaccent;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-07-09 23:21:36 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-173,12);\nref = commaaccentcomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 316;\n},\n{\nglyphname = ldotbelow;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-07-09 23:21:36 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (58,0);\nref = dotbelowcomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 7735;\n},\n{\nglyphname = lmacronbelow;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-07-09 23:21:36 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-182,12);\nref = macronbelowcomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 7739;\n},\n{\nglyphname = lslash;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:33:02 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(336,373,l),\n(301,437,l),\n(30,294,l),\n(64,229,l)\n);\n},\n{\npos = (45,0);\nref = l;\n}\n);\nwidth = 366;\n}\n);\nunicode = 322;\n},\n{\nglyphname = m;\nkernLeft = m;\nkernRight = m;\nlastChange = \"2023-07-09 23:21:41 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (469,1);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,0,l),\n(511,0,l),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(511,0,l),\n(511,270,ls),\n(511,366,o),\n(558,436,o),\n(650,436,cs),\n(717,436,o),\n(762,403,o),\n(762,316,cs),\n(762,0,l),\n(846,0,l),\n(846,328,ls),\n(846,448,o),\n(775,512,o),\n(678,512,cs),\n(566,512,o),\n(511,433,o),\n(502,398,c),\n(494,0,l)\n);\n}\n);\nwidth = 934;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"2AB4FA2C-6E87-475E-BC95-C87BA88E814C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(524,355,o),\n(571,425,o),\n(653,425,cs),\n(710,425,o),\n(762,392,o),\n(762,306,c),\n(762,0,l),\n(862,0,l),\n(862,328,ls),\n(862,448,o),\n(778,512,o),\n(691,512,cs),\n(589,512,o),\n(535,445,o),\n(514,392,c),\n(490,471,o),\n(422,512,o),\n(352,512,cs),\n(249,512,o),\n(205,455,o),\n(185,402,c),\n(185,501,l),\n(85,501,l),\n(85,0,l),\n(185,0,l),\n(185,259,ls),\n(185,355,o),\n(232,425,o),\n(314,425,cs),\n(371,425,o),\n(423,392,o),\n(423,306,c),\n(423,0,l),\n(524,0,l),\n(524,259,ls)\n);\n}\n);\nwidth = 942;\n}\n);\nunicode = 109;\n},\n{\nglyphname = n;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-02 08:43:36 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (309,0);\n},\n{\nname = top;\npos = (315,525);\n}\n);\nhints = (\n{\norigin = (0,19);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,9);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,0,l),\n(511,0,l),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9DAFEF19-BC7E-4592-BC8A-958FBEEA9065\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(421,403,o),\n(421,316,cs),\n(421,0,l),\n(505,0,l),\n(505,328,ls),\n(505,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(163,445,o),\n(163,320,c),\n(176,320,l)\n);\n}\n);\nwidth = 603;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"4E993862-6A8B-4F58-BA63-F4C2183B2AD6\";\nname = \"22 Jul 21, 09:48\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(421,403,o),\n(421,316,cs),\n(421,0,l),\n(505,0,l),\n(505,328,ls),\n(505,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(163,445,o),\n(163,320,c),\n(176,320,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,259,ls),\n(176,355,o),\n(228,425,o),\n(310,425,cs),\n(379,425,o),\n(426,392,o),\n(426,306,c),\n(426,0,l),\n(510,0,l),\n(510,324,ls),\n(510,432,o),\n(443,512,o),\n(348,512,cs),\n(245,512,o),\n(196,455,o),\n(176,402,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n}\n);\nwidth = 603;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"093DBDD9-08D0-4671-954B-3775BA1B0BE1\";\nname = \"22 Jul 21, 09:45\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(170,500,l),\n(86,500,l),\n(86,0,l),\n(170,0,l),\n(170,270,ls),\n(170,366,o),\n(217,436,o),\n(309,436,cs),\n(376,436,o),\n(415,403,o),\n(415,316,cs),\n(415,0,l),\n(499,0,l),\n(499,328,ls),\n(499,448,o),\n(434,512,o),\n(337,512,cs),\n(225,512,o),\n(179,441,o),\n(170,406,c)\n);\n}\n);\nwidth = 591;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"47444D12-A43B-4A04-A14E-0473975F487A\";\nname = \"22 Jul 21, 09:45\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(421,403,o),\n(421,316,cs),\n(421,0,l),\n(505,0,l),\n(505,328,ls),\n(505,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(163,445,o),\n(163,320,c),\n(176,320,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 110;\n},\n{\nglyphname = nacute;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (259,13);\nref = acutecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 324;\n},\n{\nglyphname = ncaron;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (102,13);\nref = caroncomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 328;\n},\n{\nglyphname = ncommaaccent;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (3,12);\nref = commaaccentcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 326;\n},\n{\nglyphname = ndotbelow;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (234,0);\nref = dotbelowcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 7751;\n},\n{\nglyphname = nhookleft;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(133,-188,o),\n(176,-137,o),\n(176,-44,cs),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,1,l),\n(511,1,l),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,-43,ls),\n(92,-97,o),\n(64,-116,o),\n(15,-116,cs),\n(2,-116,o),\n(-15,-115,o),\n(-31,-112,c),\n(-31,-180,l),\n(-14,-185,o),\n(8,-188,o),\n(24,-188,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 626;\n},\n{\nglyphname = nhookretroflex;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(593,-188,o),\n(615,-185,o),\n(632,-180,c),\n(632,-112,l),\n(616,-115,o),\n(599,-116,o),\n(586,-116,cs),\n(537,-116,o),\n(511,-97,o),\n(511,-43,cs),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,-44,ls),\n(427,-137,o),\n(468,-188,o),\n(577,-188,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 627;\n},\n{\nglyphname = nmacronbelow;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (315,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,0,l),\n(511,0,l),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n},\n{\nref = macronbelowcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7753;\n},\n{\nglyphname = ntilde;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (16,13);\nref = tildecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 241;\n},\n{\nglyphname = eng;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(468,-188,o),\n(511,-137,o),\n(511,-44,cs),\n(511,328,ls),\n(511,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(185,441,o),\n(176,406,c),\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(427,403,o),\n(427,316,cs),\n(427,-43,ls),\n(427,-97,o),\n(399,-116,o),\n(350,-116,cs),\n(337,-116,o),\n(319,-115,o),\n(303,-112,c),\n(303,-180,l),\n(320,-185,o),\n(343,-188,o),\n(359,-188,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 331;\n},\n{\nglyphname = o;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:26:18 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (290,-12);\n},\n{\nname = top;\npos = (290,516);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(414,-12,o),\n(526,78,o),\n(526,250,cs),\n(526,422,o),\n(414,512,o),\n(290,512,cs),\n(166,512,o),\n(54,422,o),\n(54,250,cs),\n(54,78,o),\n(166,-12,o),\n(290,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(190,64,o),\n(138,133,o),\n(138,250,cs),\n(138,367,o),\n(190,436,o),\n(290,436,cs),\n(390,436,o),\n(442,367,o),\n(442,250,cs),\n(442,133,o),\n(390,64,o),\n(290,64,cs)\n);\n}\n);\nwidth = 580;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"75CEC0A4-E86C-4BAB-AB20-41EC8FFB0C18\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,-13,o),\n(540,81,o),\n(540,250,cs),\n(540,414,o),\n(427,512,o),\n(296,512,c),\n(165,512,o),\n(48,412,o),\n(48,248,cs),\n(48,79,o),\n(160,-13,o),\n(291,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(389,426,o),\n(436,338,o),\n(436,250,cs),\n(436,164,o),\n(384,72,o),\n(291,72,c),\n(197,72,o),\n(149,162,o),\n(149,248,cs),\n(149,336,o),\n(198,426,o),\n(294,426,c)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 111;\n},\n{\nglyphname = oacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (234,4);\nref = acutecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 243;\n},\n{\nglyphname = ocircumflex;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 244;\n},\n{\nglyphname = ocircumflexacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (78,4);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7889;\n},\n{\nglyphname = ocircumflexdotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n},\n{\npos = (79,4);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7897;\n},\n{\nglyphname = ocircumflexgrave;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7891;\n},\n{\nglyphname = ocircumflexhookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7893;\n},\n{\nglyphname = ocircumflextilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7895;\n},\n{\nglyphname = odieresis;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (129,4);\nref = dieresiscomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 246;\n},\n{\nglyphname = odotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (215,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7885;\n},\n{\nglyphname = ograve;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (112,4);\nref = gravecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 242;\n},\n{\nglyphname = ohookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (-2,16);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7887;\n},\n{\nglyphname = ohorn;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (290,516);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (2,9);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(414,-12,o),\n(526,78,o),\n(526,250,cs),\n(526,422,o),\n(414,512,o),\n(290,512,cs),\n(166,512,o),\n(54,422,o),\n(54,250,cs),\n(54,78,o),\n(166,-12,o),\n(290,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(190,64,o),\n(138,133,o),\n(138,250,cs),\n(138,367,o),\n(190,436,o),\n(290,436,cs),\n(390,436,o),\n(442,367,o),\n(442,250,cs),\n(442,133,o),\n(390,64,o),\n(290,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(554,453,o),\n(559,553,o),\n(543,604,c),\n(471,599,l),\n(481,563,o),\n(483,509,o),\n(420,507,cs),\n(360,505,o),\n(346,515,o),\n(284,512,c),\n(308,480,l),\n(334,480,o),\n(338,453,o),\n(442,453,cs)\n);\n}\n);\nwidth = 580;\n}\n);\nunicode = 417;\n},\n{\nglyphname = ohornacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(414,-12,o),\n(526,78,o),\n(526,250,cs),\n(526,422,o),\n(414,512,o),\n(290,512,cs),\n(166,512,o),\n(54,422,o),\n(54,250,cs),\n(54,78,o),\n(166,-12,o),\n(290,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(190,64,o),\n(138,133,o),\n(138,250,cs),\n(138,367,o),\n(190,436,o),\n(290,436,cs),\n(390,436,o),\n(442,367,o),\n(442,250,cs),\n(442,133,o),\n(390,64,o),\n(290,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(554,453,o),\n(559,553,o),\n(543,604,c),\n(471,599,l),\n(481,563,o),\n(483,509,o),\n(420,507,cs),\n(360,505,o),\n(346,515,o),\n(284,512,c),\n(308,480,l),\n(334,480,o),\n(338,453,o),\n(442,453,cs)\n);\n},\n{\npos = (223,0);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7899;\n},\n{\nglyphname = ohorndotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (222,0);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7907;\n},\n{\nglyphname = ohorngrave;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (112,4);\nref = gravecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7901;\n},\n{\nglyphname = ohornhookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (-2,16);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7903;\n},\n{\nglyphname = ohorntilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (-9,4);\nref = tildecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7905;\n},\n{\nglyphname = ohungarumlaut;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (37,4);\nref = hungarumlautcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 337;\n},\n{\nglyphname = omacron;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (-11,4);\nref = macroncomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 333;\n},\n{\nglyphname = oslash;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(533,500,l),\n(476,546,l),\n(46,0,l),\n(100,-48,l)\n);\n},\n{\nref = o;\n}\n);\nwidth = 580;\n}\n);\nunicode = 248;\n},\n{\nglyphname = otilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (-9,4);\nref = tildecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 245;\n},\n{\nglyphname = oe;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2023-07-09 23:22:04 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(789,-13,o),\n(859,30,o),\n(900,113,c),\n(826,143,l),\n(798,92,o),\n(746,63,o),\n(686,63,c),\n(585,63,o),\n(526,141,o),\n(526,245,cs),\n(526,349,o),\n(585,436,o),\n(686,436,c),\n(783,436,o),\n(832,360,o),\n(832,304,c),\n(523,304,l),\n(523,230,l),\n(916,230,l),\n(916,261,l),\n(916,434,o),\n(815,512,o),\n(688,512,c),\n(562,512,o),\n(443,412,o),\n(443,248,cs),\n(443,87,o),\n(562,-13,o),\n(688,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(414,-12,o),\n(526,78,o),\n(526,250,cs),\n(526,422,o),\n(414,512,o),\n(290,512,cs),\n(166,512,o),\n(54,422,o),\n(54,250,cs),\n(54,78,o),\n(166,-12,o),\n(290,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(190,64,o),\n(138,133,o),\n(138,250,cs),\n(138,367,o),\n(190,436,o),\n(290,436,cs),\n(390,436,o),\n(442,367,o),\n(442,250,cs),\n(442,133,o),\n(390,64,o),\n(290,64,cs)\n);\n}\n);\nwidth = 958;\n}\n);\nunicode = 339;\n},\n{\nglyphname = p;\nkernLeft = p;\nkernRight = p;\nlastChange = \"2023-08-03 09:37:48 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,-230,l),\n(176,96,l),\n(197,27,o),\n(270,-12,o),\n(339,-12,cs),\n(470,-12,o),\n(560,86,o),\n(560,250,cs),\n(560,419,o),\n(465,512,o),\n(334,512,cs),\n(246,512,o),\n(194,457,o),\n(173,402,c),\n(173,500,l),\n(92,500,l),\n(92,-230,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(231,65,o),\n(177,148,o),\n(177,250,cs),\n(177,360,o),\n(231,437,o),\n(330,437,cs),\n(428,437,o),\n(476,356,o),\n(476,252,cs),\n(476,148,o),\n(428,63,o),\n(327,64,cs)\n);\n}\n);\nwidth = 614;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"111F6626-3440-438D-AC91-776452057215\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(226,74,o),\n(183,161,o),\n(183,248,cs),\n(183,335,o),\n(228,425,o),\n(324,425,c),\n(418,425,o),\n(467,335,o),\n(467,248,cs),\n(467,161,o),\n(420,74,o),\n(324,74,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(482,-11,o),\n(569,103,o),\n(569,250,cs),\n(569,377,o),\n(501,513,o),\n(349,512,c),\n(274,512,o),\n(214,473,o),\n(186,402,c),\n(186,500,l),\n(86,500,l),\n(86,-249,l),\n(186,-249,l),\n(186,78,l),\n(209,25,o),\n(280,-11,o),\n(349,-11,c)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 112;\n},\n{\nglyphname = thorn;\nkernLeft = p;\nkernRight = p;\nlastChange = \"2023-07-09 23:22:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,-230,l),\n(176,96,l),\n(197,27,o),\n(270,-12,o),\n(339,-12,cs),\n(470,-12,o),\n(560,86,o),\n(560,250,cs),\n(560,419,o),\n(465,512,o),\n(334,512,cs),\n(246,512,o),\n(194,457,o),\n(173,402,c),\n(173,712,l),\n(92,712,l),\n(92,-230,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(231,65,o),\n(177,148,o),\n(177,250,cs),\n(177,360,o),\n(231,437,o),\n(330,437,cs),\n(428,437,o),\n(476,356,o),\n(476,252,cs),\n(476,148,o),\n(428,63,o),\n(327,64,cs)\n);\n}\n);\nwidth = 614;\n}\n);\nunicode = 254;\n},\n{\nglyphname = q;\nkernLeft = q;\nkernRight = q;\nlastChange = \"2023-07-09 23:22:13 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(557,-230,o),\n(570,-226,o),\n(584,-218,c),\n(584,-150,l),\n(535,-161,o),\n(521,-143,o),\n(521,-103,cs),\n(521,500,l),\n(441,500,l),\n(441,402,l),\n(420,457,o),\n(368,512,o),\n(280,512,cs),\n(149,512,o),\n(54,419,o),\n(54,250,cs),\n(54,86,o),\n(144,-12,o),\n(275,-12,cs),\n(344,-12,o),\n(417,27,o),\n(438,96,c),\n(438,-124,ls),\n(438,-204,o),\n(480,-230,o),\n(532,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(186,64,o),\n(138,148,o),\n(138,252,cs),\n(138,356,o),\n(186,437,o),\n(284,437,cs),\n(383,437,o),\n(437,360,o),\n(437,250,cs),\n(437,148,o),\n(383,64,o),\n(287,64,cs)\n);\n}\n);\nwidth = 624;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"5B836CBD-5A05-4F3B-A39F-8D74CF5805A4\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,-207,o),\n(486,-247,o),\n(536,-248,cs),\n(578,-249,o),\n(620,-231,o),\n(620,-231,c),\n(620,-231,o),\n(620,-148,o),\n(620,-148,cs),\n(570,-159,o),\n(543,-144,o),\n(543,-99,c),\n(543,500,l),\n(443,500,l),\n(443,402,l),\n(415,473,o),\n(353,512,o),\n(278,512,c),\n(126,513,o),\n(60,377,o),\n(60,250,cs),\n(60,103,o),\n(147,-11,o),\n(280,-11,c),\n(349,-11,o),\n(420,25,o),\n(443,78,c),\n(443,-140,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(209,74,o),\n(162,161,o),\n(162,248,cs),\n(162,335,o),\n(211,425,o),\n(305,425,c),\n(401,425,o),\n(446,335,o),\n(446,248,cs),\n(446,161,o),\n(403,74,o),\n(305,74,c)\n);\n}\n);\nwidth = 630;\n}\n);\nunicode = 113;\n},\n{\nglyphname = r;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-08-02 08:44:28 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (134,0);\n},\n{\nname = top;\npos = (207,527);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,4);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,16);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,17);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(221,420,o),\n(302,436,cs),\n(327,441,o),\n(362,436,o),\n(382,430,c),\n(382,508,l),\n(373,509,o),\n(349,512,o),\n(339,512,cs),\n(236,512,o),\n(196,454,o),\n(176,401,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n}\n);\nwidth = 402;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"4E6D224B-E0A5-4955-882F-1582C38B5E9B\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(185,258,ls),\n(185,354,o),\n(230,408,o),\n(311,424,cs),\n(336,429,o),\n(371,424,o),\n(391,414,c),\n(391,508,l),\n(382,509,o),\n(358,512,o),\n(348,512,cs),\n(245,512,o),\n(205,454,o),\n(185,401,c),\n(185,500,l),\n(85,500,l),\n(85,0,l)\n);\n},\n{\nclosed = 0;\nnodes = (\n(378,509,l)\n);\n}\n);\nwidth = 406;\n}\n);\nunicode = 114;\n},\n{\nglyphname = racute;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-07-09 23:22:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (151,15);\nref = acutecomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 341;\n},\n{\nglyphname = rcaron;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-07-09 23:22:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-6,15);\nref = caroncomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 345;\n},\n{\nglyphname = rcommaaccent;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-07-09 23:22:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-172,12);\nref = commaaccentcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 343;\n},\n{\nglyphname = rdotbelow;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-07-09 23:22:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (59,0);\nref = dotbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7771;\n},\n{\nglyphname = rmacronbelow;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-07-09 23:22:17 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (199,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-181,12);\nref = macronbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7775;\n},\n{\nglyphname = s;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-07-09 23:22:21 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (246,-12);\n},\n{\nname = top;\npos = (243,520);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(385,-12,o),\n(448,56,o),\n(448,137,cs),\n(448,330,o),\n(145,253,o),\n(145,365,cs),\n(145,407,o),\n(177,436,o),\n(242,436,cs),\n(314,436,o),\n(352,400,o),\n(352,367,c),\n(438,367,l),\n(438,429,o),\n(388,512,o),\n(243,512,cs),\n(121,512,o),\n(61,435,o),\n(61,362,cs),\n(61,168,o),\n(363,270,o),\n(363,137,cs),\n(363,87,o),\n(319,64,o),\n(253,64,cs),\n(203,64,o),\n(140,93,o),\n(140,156,c),\n(50,156,l),\n(50,57,o),\n(145,-12,o),\n(246,-12,c)\n);\n}\n);\nwidth = 503;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"387FA4A7-73FF-4D97-8FCB-952702749138\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(88,39,o),\n(165,-12,o),\n(259,-12,cs),\n(387,-12,o),\n(459,56,o),\n(457,137,cs),\n(458,190,o),\n(442,253,o),\n(303,292,cs),\n(203,320,o),\n(164,339,o),\n(163,380,cs),\n(163,416,o),\n(202,436,o),\n(263,436,cs),\n(314,436,o),\n(352,413,o),\n(365,373,c),\n(440,408,l),\n(416,470,o),\n(360,512,o),\n(266,512,cs),\n(140,512,o),\n(78,445,o),\n(78,372,cs),\n(78,310,o),\n(99,266,o),\n(205,233,cs),\n(288,207,o),\n(371,191,o),\n(371,132,cs),\n(371,82,o),\n(317,65,o),\n(266,65,cs),\n(207,65,o),\n(155,92,o),\n(139,155,c),\n(134,155,l),\n(59,118,l)\n);\n}\n);\nwidth = 494;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7E27A0BC-C66B-4AEC-96DE-E66ACE9A3214\";\nname = \"21 Jul 21, 11:57\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(65,56,o),\n(151,-12,o),\n(249,-12,c),\n(387,-12,o),\n(459,56,o),\n(457,137,c),\n(458,190,o),\n(442,253,o),\n(303,292,cs),\n(203,320,o),\n(154,339,o),\n(153,372,c),\n(153,416,o),\n(192,436,o),\n(251,436,cs),\n(311,436,o),\n(343,403,o),\n(352,370,c),\n(437,370,l),\n(426,423,o),\n(393,512,o),\n(252,512,cs),\n(130,512,o),\n(68,445,o),\n(68,372,cs),\n(68,310,o),\n(99,266,o),\n(205,233,cs),\n(288,207,o),\n(371,191,o),\n(371,140,c),\n(371,82,o),\n(317,65,o),\n(256,65,c),\n(207,65,o),\n(155,92,o),\n(139,155,c),\n(50,155,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(65,56,o),\n(151,-12,o),\n(249,-12,c),\n(387,-12,o),\n(459,56,o),\n(457,137,c),\n(458,190,o),\n(442,253,o),\n(303,292,cs),\n(203,320,o),\n(154,339,o),\n(153,372,c),\n(153,416,o),\n(192,436,o),\n(251,436,cs),\n(311,436,o),\n(343,403,o),\n(352,370,c),\n(437,370,l),\n(426,423,o),\n(393,512,o),\n(252,512,cs),\n(130,512,o),\n(68,445,o),\n(68,372,cs),\n(68,310,o),\n(99,266,o),\n(205,233,cs),\n(288,207,o),\n(371,191,o),\n(371,140,c),\n(371,82,o),\n(317,65,o),\n(256,65,c),\n(207,65,o),\n(155,92,o),\n(139,155,c),\n(50,155,l)\n);\n}\n);\nwidth = 512;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"16A2ED11-E800-4B00-98DC-B709ECAC59BA\";\nname = \"1 Oct 21, 07:26\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,57,o),\n(145,-12,o),\n(246,-12,c),\n(385,-12,o),\n(448,56,o),\n(448,137,cs),\n(448,218,o),\n(417,254,o),\n(291,292,cs),\n(174,327,o),\n(146,342,o),\n(145,375,cs),\n(144,408,o),\n(177,436,o),\n(242,436,cs),\n(314,436,o),\n(352,400,o),\n(352,367,c),\n(438,367,l),\n(438,429,o),\n(388,512,o),\n(243,512,cs),\n(121,512,o),\n(61,445,o),\n(61,372,cs),\n(61,303,o),\n(102,255,o),\n(199,229,cs),\n(284,206,o),\n(363,195,o),\n(363,137,cs),\n(363,87,o),\n(319,64,o),\n(253,64,cs),\n(203,64,o),\n(140,94,o),\n(140,157,c),\n(50,156,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,57,o),\n(145,-12,o),\n(246,-12,c),\n(385,-12,o),\n(448,56,o),\n(448,137,cs),\n(448,218,o),\n(417,254,o),\n(291,292,cs),\n(174,327,o),\n(146,342,o),\n(145,375,cs),\n(144,408,o),\n(177,436,o),\n(242,436,cs),\n(314,436,o),\n(352,400,o),\n(352,367,c),\n(438,367,l),\n(438,429,o),\n(388,512,o),\n(243,512,cs),\n(121,512,o),\n(61,445,o),\n(61,372,cs),\n(61,303,o),\n(102,255,o),\n(199,229,cs),\n(284,206,o),\n(363,195,o),\n(363,137,cs),\n(363,87,o),\n(319,64,o),\n(253,64,cs),\n(203,64,o),\n(140,94,o),\n(140,157,c),\n(50,156,l)\n);\n}\n);\nwidth = 503;\n}\n);\nunicode = 115;\n},\n{\nglyphname = sacute;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-07-09 23:22:21 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (187,8);\nref = acutecomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 347;\n},\n{\nglyphname = scaron;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-07-09 23:22:21 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (30,8);\nref = caroncomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 353;\n},\n{\nglyphname = scedilla;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-07-09 23:22:21 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (-44,-14);\nref = cedillacomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 351;\n},\n{\nglyphname = scommaaccent;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-07-09 23:22:21 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (-60,0);\nref = commaaccentcomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 537;\n},\n{\nglyphname = germandbls;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-08-03 09:20:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(415,-12,o),\n(513,64,o),\n(513,203,cs),\n(513,286,o),\n(470,348,o),\n(407,384,c),\n(449,416,o),\n(477,465,o),\n(477,530,cs),\n(477,649,o),\n(388,712,o),\n(286,712,cs),\n(175,712,o),\n(92,649,o),\n(92,530,cs),\n(92,0,l),\n(176,0,l),\n(176,530,ls),\n(176,586,o),\n(209,636,o),\n(285,636,cs),\n(361,636,o),\n(393,586,o),\n(393,530,cs),\n(393,465,o),\n(361,418,o),\n(287,418,cs),\n(283,418,l),\n(283,340,l),\n(286,340,ls),\n(366,340,o),\n(425,278,o),\n(425,203,cs),\n(425,123,o),\n(377,68,o),\n(288,68,cs),\n(273,68,o),\n(260,68,o),\n(249,70,c),\n(249,-9,l),\n(261,-11,o),\n(273,-12,o),\n(287,-12,cs)\n);\n}\n);\nwidth = 567;\n}\n);\nunicode = 223;\n},\n{\nglyphname = t;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-07-09 23:22:29 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (210,-4);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (0,423);\ntarget = (0,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,20);\ntarget = (0,21);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,21);\ntarget = (0,13);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,10);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(282,-12,o),\n(304,-9,o),\n(321,-4,c),\n(321,64,l),\n(305,61,o),\n(288,60,o),\n(275,60,cs),\n(226,60,o),\n(200,78,o),\n(200,132,cs),\n(200,423,l),\n(329,423,l),\n(329,499,l),\n(200,499,l),\n(200,627,l),\n(116,627,l),\n(116,570,ls),\n(116,512,o),\n(103,500,o),\n(49,500,cs),\n(26,500,l),\n(26,423,l),\n(116,423,l),\n(116,132,ls),\n(116,39,o),\n(157,-12,o),\n(266,-12,cs)\n);\n}\n);\nwidth = 366;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"4BC6D785-7F25-40CD-8B35-2CDB36DE77EE\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,500,o),\n(43,500,cs),\n(20,500,l),\n(20,408,l),\n(110,408,l),\n(110,137,ls),\n(110,56,o),\n(145,0,o),\n(260,0,c),\n(282,0,o),\n(321,2,o),\n(336,4,c),\n(336,98,l),\n(322,97,o),\n(287,96,o),\n(271,96,cs),\n(225,97,o),\n(210,127,o),\n(210,166,cs),\n(210,408,l),\n(339,408,l),\n(339,499,l),\n(210,499,l),\n(210,629,l),\n(110,629,l),\n(110,572,ls),\n(110,512,o)\n);\n}\n);\nwidth = 379;\n}\n);\nunicode = 116;\n},\n{\nglyphname = tcaron;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-07-09 23:22:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (-44,61);\nref = caroncomb.alt;\n}\n);\nwidth = 366;\n}\n);\nunicode = 357;\n},\n{\nglyphname = tcedilla;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-07-09 23:22:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (-80,-6);\nref = cedillacomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 355;\n},\n{\nglyphname = tcommaaccent;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-07-09 23:22:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (-96,8);\nref = commaaccentcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 539;\n},\n{\nglyphname = tdotbelow;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-07-09 23:22:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (135,-4);\nref = dotbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7789;\n},\n{\nglyphname = tmacronbelow;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-07-09 23:22:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (-105,8);\nref = macronbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7791;\n},\n{\nglyphname = u;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (282,-12);\n},\n{\nname = ogonek;\npos = (460,0);\n},\n{\nname = top;\npos = (288,515);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(366,-12,o),\n(412,59,o),\n(421,94,c),\n(421,0,l),\n(505,0,l),\n(505,500,l),\n(421,500,l),\n(421,230,ls),\n(421,134,o),\n(374,64,o),\n(282,64,cs),\n(215,64,o),\n(170,97,o),\n(170,184,cs),\n(170,500,l),\n(86,500,l),\n(86,172,ls),\n(86,52,o),\n(157,-12,o),\n(254,-12,cs)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"58AB66D5-CBBE-4AAE-8E7A-6B076E516B66\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(418,500,l),\n(418,241,ls),\n(418,145,o),\n(371,75,o),\n(289,75,cs),\n(232,75,o),\n(180,108,o),\n(180,194,c),\n(180,500,l),\n(80,500,l),\n(80,172,ls),\n(80,52,o),\n(164,-12,o),\n(251,-12,cs),\n(354,-12,o),\n(398,45,o),\n(418,98,c),\n(418,-1,l),\n(518,-1,l),\n(518,500,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 117;\n},\n{\nglyphname = uacute;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (232,3);\nref = acutecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 250;\n},\n{\nglyphname = ubreve;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-19,3);\nref = brevecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 365;\n},\n{\nglyphname = ucircumflex;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (77,3);\nref = circumflexcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 251;\n},\n{\nglyphname = udieresis;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (127,3);\nref = dieresiscomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 252;\n},\n{\nglyphname = udotbelow;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (207,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 7909;\n},\n{\nglyphname = ugrave;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (110,3);\nref = gravecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 249;\n},\n{\nglyphname = uhookabove;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-4,15);\nref = hookabovecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 7911;\n},\n{\nglyphname = uhorn;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(625,446,o),\n(626,546,o),\n(610,597,c),\n(538,592,l),\n(548,556,o),\n(550,502,o),\n(487,500,cs),\n(427,498,o),\n(425,446,o),\n(488,446,c)\n);\n},\n{\nref = u;\n}\n);\nwidth = 600;\n}\n);\nunicode = 432;\n},\n{\nglyphname = uhornacute;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (232,3);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7913;\n},\n{\nglyphname = uhorndotbelow;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (207,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7921;\n},\n{\nglyphname = uhorngrave;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (110,3);\nref = gravecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7915;\n},\n{\nglyphname = uhornhookabove;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (-4,15);\nref = hookabovecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7917;\n},\n{\nglyphname = uhorntilde;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (-11,3);\nref = tildecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7919;\n},\n{\nglyphname = uhungarumlaut;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (35,3);\nref = hungarumlautcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 369;\n},\n{\nglyphname = umacron;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-13,3);\nref = macroncomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 363;\n},\n{\nglyphname = uogonek;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (104,0);\nref = ogonekcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 371;\n},\n{\nglyphname = uring;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (170,3);\nref = ringcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 367;\n},\n{\nglyphname = utilde;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-11,3);\nref = tildecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 361;\n},\n{\nglyphname = v;\nkernLeft = v;\nkernRight = v;\nlastChange = \"2023-07-09 23:22:40 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(302,0,l),\n(483,500,l),\n(403,500,l),\n(252,84,l),\n(101,500,l),\n(17,500,l),\n(198,0,l)\n);\n}\n);\nwidth = 500;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"6A8EB27F-0274-4B16-855B-6672B7F2D5F0\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,500,l),\n(324,0,l),\n(193,0,l),\n(12,500,l),\n(124,500,l),\n(258,101,l),\n(392,500,l)\n);\n}\n);\nwidth = 518;\n}\n);\nunicode = 118;\n},\n{\nglyphname = w;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-08-03 12:32:38 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (387,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(283,0,l),\n(393,394,l),\n(378,394,l),\n(483,0,l),\n(596,0,l),\n(735,499,l),\n(644,499,l),\n(539,60,l),\n(550,60,l),\n(431,499,l),\n(339,499,l),\n(219,60,l),\n(231,60,l),\n(126,499,l),\n(35,499,l),\n(174,0,l)\n);\n}\n);\nwidth = 770;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A8781FE5-F585-44A1-B1ED-7854B8098763\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(456,0,l),\n(573,0,l),\n(704,499,l),\n(606,499,l),\n(511,66,l),\n(530,66,l),\n(424,499,l),\n(320,499,l),\n(214,66,l),\n(233,66,l),\n(138,499,l),\n(30,499,l),\n(161,0,l),\n(278,0,l),\n(375,374,l),\n(359,374,l)\n);\n}\n);\nwidth = 734;\n}\n);\nunicode = 119;\n},\n{\nglyphname = wacute;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (331,0);\nref = acutecomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 7811;\n},\n{\nglyphname = wcircumflex;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (176,0);\nref = circumflexcomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 373;\n},\n{\nglyphname = wdieresis;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (226,0);\nref = dieresiscomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 7813;\n},\n{\nglyphname = wgrave;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (209,0);\nref = gravecomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 7809;\n},\n{\nglyphname = x;\nkernLeft = x;\nkernRight = x;\nlastChange = \"2023-07-09 23:22:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,0,l),\n(271,257,l),\n(420,500,l),\n(326,500,l),\n(224,334,l),\n(121,500,l),\n(27,500,l),\n(177,257,l),\n(18,0,l),\n(112,0,l),\n(224,181,l),\n(335,0,l)\n);\n}\n);\nwidth = 447;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B47364CB-B425-460E-96EC-C79310290C0B\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(247,166,l),\n(363,0,l),\n(485,0,l),\n(308,251,l),\n(480,500,l),\n(363,500,l),\n(250,335,l),\n(135,500,l),\n(13,500,l),\n(188,250,l),\n(13,0,l),\n(130,0,l)\n);\n}\n);\nwidth = 493;\n}\n);\nunicode = 120;\n},\n{\nglyphname = y;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-08-03 12:32:58 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (261,-230);\n},\n{\nname = top;\npos = (261,516);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(207,-230,o),\n(236,-164,o),\n(285,-34,cs),\n(486,500,l),\n(397,500,l),\n(262,119,l),\n(101,500,l),\n(15,500,l),\n(223,3,l),\n(187,-126,o),\n(153,-150,o),\n(107,-150,c),\n(89,-150,o),\n(71,-149,o),\n(59,-146,c),\n(59,-222,l),\n(72,-226,o),\n(92,-230,o),\n(113,-230,cs)\n);\n}\n);\nwidth = 498;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"C02C67DD-6A80-4F27-B5CB-F7E47F86019A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,-251,o),\n(89,-251,cs),\n(78,-251,o),\n(45,-248,o),\n(30,-243,c),\n(30,-151,l),\n(30,-151,o),\n(58,-159,o),\n(96,-156,c),\n(141,-156,o),\n(181,-118,o),\n(202,-24,cs),\n(208,3,l),\n(10,500,l),\n(127,500,l),\n(266,119,l),\n(391,500,l),\n(497,500,l),\n(306,-34,ls),\n(248,-196,o)\n);\n}\n);\nwidth = 502;\n}\n);\nunicode = 121;\n},\n{\nglyphname = yacute;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (205,4);\nref = acutecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 253;\n},\n{\nglyphname = ycircumflex;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (50,4);\nref = circumflexcomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 375;\n},\n{\nglyphname = ydieresis;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (100,4);\nref = dieresiscomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 255;\n},\n{\nglyphname = ydotbelow;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (186,-230);\nref = dotbelowcomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7925;\n},\n{\nglyphname = ygrave;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (83,4);\nref = gravecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7923;\n},\n{\nglyphname = yhookabove;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (-31,16);\nref = hookabovecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7927;\n},\n{\nglyphname = ytilde;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (-38,4);\nref = tildecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7929;\n},\n{\nglyphname = z;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-07-09 23:23:02 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (219,521);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,6);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(381,1,l),\n(381,77,l),\n(137,77,l),\n(379,425,l),\n(379,501,l),\n(50,501,l),\n(50,425,l),\n(292,425,l),\n(50,78,l),\n(50,1,l)\n);\n}\n);\nwidth = 427;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9FF03EA6-08B8-46BD-92BE-77D8C33F9469\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,1,l),\n(390,86,l),\n(148,86,l),\n(390,419,l),\n(390,501,l),\n(40,501,l),\n(40,419,l),\n(282,419,l),\n(40,87,l),\n(40,1,l)\n);\n}\n);\nwidth = 430;\n}\n);\nunicode = 122;\n},\n{\nglyphname = zacute;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-07-09 23:23:02 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = z;\n},\n{\npos = (163,9);\nref = acutecomb;\n}\n);\nwidth = 427;\n}\n);\nunicode = 378;\n},\n{\nglyphname = zcaron;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-07-09 23:23:02 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = z;\n},\n{\npos = (6,9);\nref = caroncomb;\n}\n);\nwidth = 427;\n}\n);\nunicode = 382;\n},\n{\nglyphname = zdotaccent;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-07-09 23:23:02 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = z;\n},\n{\npos = (145,9);\nref = dotaccentcomb;\n}\n);\nwidth = 427;\n}\n);\nunicode = 380;\n},\n{\nglyphname = lcommaaccent.loclMAH;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-07-09 23:23:06 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-157,-2);\nref = cedillacomb;\n}\n);\nwidth = 258;\n}\n);\n},\n{\nglyphname = ncommaaccent.loclMAH;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:23:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (-1,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 597;\n}\n);\n},\n{\nglyphname = a.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (265,0);\n},\n{\nname = ogonek;\npos = (477,12);\n},\n{\nname = top;\npos = (272,512);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (-12,76);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (436,76);\ntype = Stem;\n},\n{\nplace = (457,83);\ntype = Stem;\n},\n{\nplace = (73,84);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(336,-12,o),\n(382,106,o),\n(382,106,c),\n(382,35,o),\n(418,0,o),\n(470,0,cs),\n(495,0,o),\n(508,4,o),\n(522,12,c),\n(522,80,l),\n(473,69,o),\n(459,87,o),\n(459,127,cs),\n(459,340,ls),\n(459,429,o),\n(390,512,o),\n(272,512,cs),\n(115,512,o),\n(73,393,o),\n(73,393,c),\n(141,356,l),\n(141,356,o),\n(172,436,o),\n(265,436,cs),\n(333,436,o),\n(375,390,o),\n(375,336,cs),\n(375,310,l),\n(172,310,o),\n(58,262,o),\n(58,135,cs),\n(58,43,o),\n(121,-12,o),\n(202,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(172,64,o),\n(142,91,o),\n(142,142,cs),\n(142,223,o),\n(223,244,o),\n(375,244,c),\n(375,219,ls),\n(375,120,o),\n(285,64,o),\n(223,64,cs)\n);\n}\n);\nwidth = 590;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9D365B9B-32C5-456F-91EC-EA0BDBFBA64C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(383,426,o),\n(426,339,o),\n(426,252,cs),\n(426,165,o),\n(381,75,o),\n(285,75,c),\n(191,75,o),\n(149,165,o),\n(149,252,cs),\n(149,339,o),\n(189,426,o),\n(285,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(127,512,o),\n(40,397,o),\n(40,250,cs),\n(40,123,o),\n(108,-13,o),\n(260,-12,c),\n(335,-12,o),\n(395,27,o),\n(423,98,c),\n(423,0,l),\n(523,0,l),\n(523,499,l),\n(423,499,l),\n(423,422,l),\n(400,475,o),\n(329,512,o),\n(260,512,c)\n);\n}\n);\nwidth = 583;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B723C8F9-18DA-486D-A68C-0EA6D66026F1\";\nname = \"1 Aug 21, 12:43\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(383,426,o),\n(426,339,o),\n(426,252,cs),\n(426,165,o),\n(381,75,o),\n(285,75,c),\n(191,75,o),\n(149,165,o),\n(149,252,cs),\n(149,339,o),\n(189,426,o),\n(285,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,63,o),\n(148,148,o),\n(148,252,cs),\n(148,356,o),\n(196,437,o),\n(294,437,cs),\n(393,437,o),\n(447,360,o),\n(447,250,cs),\n(447,148,o),\n(393,65,o),\n(297,64,cs)\n);\n},\n{\nclosed = 0;\nnodes = (\n(531,-103,l),\n(532,500,l),\n(451,500,l),\n(451,402,l),\n(430,457,o),\n(378,512,o),\n(290,512,cs),\n(159,512,o),\n(64,419,o),\n(64,250,cs),\n(64,86,o),\n(154,-12,o),\n(285,-12,cs),\n(354,-12,o),\n(427,27,o),\n(448,96,c)\n);\n}\n);\nwidth = 583;\n}\n);\n},\n{\nglyphname = aacute.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (216,0);\nref = acutecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abreve.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abreveacute.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevedotbelow.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (190,0);\nref = dotbelowcomb;\n},\n{\npos = (-35,0);\nref = brevecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevegrave.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevehookabove.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevetilde.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflex.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexacute.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (60,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexdotbelow.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (190,0);\nref = dotbelowcomb;\n},\n{\npos = (61,0);\nref = circumflexcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexgrave.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexhookabove.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflextilde.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = adieresis.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (111,0);\nref = dieresiscomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = adotbelow.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (190,0);\nref = dotbelowcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = agrave.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (94,0);\nref = gravecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = ahookabove.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-20,12);\nref = hookabovecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = amacron.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-29,0);\nref = macroncomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = aogonek.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (121,12);\nref = ogonekcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = aring.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (154,0);\nref = ringcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = atilde.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-27,0);\nref = tildecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = g.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (262,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(420,-229,o),\n(509,-148,o),\n(509,-46,cs),\n(509,20,o),\n(473,94,o),\n(344,94,cs),\n(207,94,ls),\n(138,94,o),\n(146,174,o),\n(206,174,cs),\n(217,174,o),\n(257,174,o),\n(269,174,cs),\n(385,174,o),\n(456,242,o),\n(456,340,cs),\n(456,375,o),\n(444,417,o),\n(421,447,c),\n(434,476,o),\n(487,478,o),\n(525,472,c),\n(525,560,l),\n(432,576,o),\n(389,525,o),\n(385,480,c),\n(367,494,o),\n(323,512,o),\n(262,512,cs),\n(135,512,o),\n(72,427,o),\n(72,340,cs),\n(72,286,o),\n(99,222,o),\n(146,197,c),\n(110,193,o),\n(76,164,o),\n(76,127,cs),\n(76,86,o),\n(102,61,o),\n(135,52,c),\n(76,31,o),\n(53,-31,o),\n(53,-73,cs),\n(53,-172,o),\n(150,-229,o),\n(275,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(178,-154,o),\n(131,-122,o),\n(131,-59,cs),\n(131,-22,o),\n(157,12,o),\n(200,22,c),\n(336,22,l),\n(408,22,o),\n(430,-2,o),\n(431,-49,cs),\n(432,-100,o),\n(393,-154,o),\n(275,-154,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(184,243,o),\n(152,287,o),\n(152,342,cs),\n(152,395,o),\n(184,441,o),\n(261,441,cs),\n(345,441,o),\n(376,396,o),\n(376,343,cs),\n(376,285,o),\n(345,243,o),\n(261,243,cs)\n);\n}\n);\nwidth = 547;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"077287D2-C640-42BE-89DC-9237D68A85C4\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,240,o),\n(147,288,o),\n(147,343,cs),\n(147,398,o),\n(180,440,o),\n(245,440,cs),\n(312,440,o),\n(344,398,o),\n(344,343,cs),\n(344,288,o),\n(312,240,o),\n(245,240,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(129,-46,o),\n(148,-8,o),\n(188,12,c),\n(298,12,l),\n(361,12,o),\n(405,-12,o),\n(403,-81,cs),\n(401,-150,o),\n(334,-171,o),\n(248,-169,c),\n(174,-167,o),\n(129,-127,o),\n(129,-82,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(509,560,l),\n(416,576,o),\n(373,525,o),\n(370,480,c),\n(340,500,o),\n(299,512,o),\n(248,512,cs),\n(119,512,o),\n(57,434,o),\n(57,337,cs),\n(57,280,o),\n(84,216,o),\n(139,191,c),\n(118,183,o),\n(57,164,o),\n(57,103,cs),\n(57,61,o),\n(101,37,o),\n(142,28,c),\n(79,12,o),\n(42,-33,o),\n(42,-89,cs),\n(42,-161,o),\n(108,-250,o),\n(249,-250,c),\n(419,-251,o),\n(495,-174,o),\n(494,-67,cs),\n(493,13,o),\n(425,99,o),\n(306,99,cs),\n(206,99,ls),\n(137,99,o),\n(147,168,o),\n(207,168,cs),\n(218,168,o),\n(241,168,o),\n(248,168,cs),\n(380,168,o),\n(441,242,o),\n(440,337,cs),\n(440,379,o),\n(428,417,o),\n(405,447,c),\n(418,476,o),\n(471,478,o),\n(509,472,c)\n);\n}\n);\nwidth = 523;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7A42339F-1245-461A-AC41-BAF96E1C6F90\";\nname = \"22 Jul 21, 14:28\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(195,246,o),\n(151,292,o),\n(151,344,cs),\n(151,396,o),\n(192,440,o),\n(257,440,cs),\n(324,440,o),\n(370,396,o),\n(370,344,cs),\n(370,292,o),\n(324,246,o),\n(257,246,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(138,-22,o),\n(163,10,o),\n(209,30,c),\n(307,30,l),\n(365,30,o),\n(410,-1,o),\n(408,-70,cs),\n(406,-139,o),\n(345,-155,o),\n(266,-155,c),\n(192,-155,o),\n(138,-120,o),\n(138,-70,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(521,560,l),\n(428,576,o),\n(385,525,o),\n(382,480,c),\n(352,500,o),\n(311,512,o),\n(260,512,cs),\n(148,512,o),\n(69,427,o),\n(69,340,cs),\n(69,286,o),\n(96,222,o),\n(151,197,c),\n(126,194,o),\n(77,181,o),\n(77,117,cs),\n(77,75,o),\n(113,50,o),\n(154,41,c),\n(91,25,o),\n(54,-22,o),\n(54,-78,cs),\n(54,-150,o),\n(120,-229,o),\n(261,-229,c),\n(418,-230,o),\n(494,-163,o),\n(493,-56,cs),\n(492,24,o),\n(440,102,o),\n(315,102,cs),\n(210,102,ls),\n(141,102,o),\n(151,174,o),\n(211,174,cs),\n(222,174,o),\n(253,174,o),\n(260,174,cs),\n(392,174,o),\n(452,269,o),\n(452,340,cs),\n(452,375,o),\n(440,417,o),\n(417,447,c),\n(430,476,o),\n(483,478,o),\n(521,472,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(423,-97,o),\n(378,-146,o),\n(254,-146,cs),\n(180,-146,o),\n(132,-102,o),\n(107,-43,c),\n(29,-86,l),\n(74,-187,o),\n(166,-229,o),\n(253,-230,cs),\n(369,-232,o),\n(506,-180,o),\n(506,-12,cs),\n(507,500,l),\n(426,500,l),\n(426,402,l),\n(405,457,o),\n(348,512,o),\n(260,512,cs),\n(129,512,o),\n(31,419,o),\n(31,250,cs),\n(31,86,o),\n(124,-12,o),\n(255,-12,cs),\n(324,-12,o),\n(402,27,o),\n(423,96,c),\n(423,-12,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(166,63,o),\n(115,148,o),\n(115,252,cs),\n(115,356,o),\n(166,437,o),\n(264,437,cs),\n(363,437,o),\n(422,360,o),\n(422,250,cs),\n(422,148,o),\n(363,65,o),\n(267,64,cs)\n);\n}\n);\nwidth = 543;\n}\n);\n},\n{\nglyphname = gbreve.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (-45,0);\nref = brevecomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = gcommaaccent.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (262,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (-58,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = gdotaccent.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (188,0);\nref = dotaccentcomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = gmacron.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (-39,0);\nref = macroncomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = ordfeminine;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n}\n);\nwidth = 607;\n}\n);\nunicode = 170;\n},\n{\nglyphname = ordmasculine;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:23:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n}\n);\nwidth = 580;\n}\n);\nunicode = 186;\n},\n{\nglyphname = zero;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(552,-13,o),\n(616,173,o),\n(616,358,cs),\n(616,553,o),\n(550,720,o),\n(342,720,c),\n(132,720,o),\n(66,553,o),\n(66,358,cs),\n(66,173,o),\n(130,-13,o),\n(342,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(202,68,o),\n(153,199,o),\n(153,359,cs),\n(153,522,o),\n(202,639,o),\n(343,639,c),\n(478,639,o),\n(529,522,o),\n(529,359,cs),\n(529,199,o),\n(478,68,o),\n(342,68,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(376,290,o),\n(404,319,o),\n(404,353,cs),\n(404,388,o),\n(376,417,o),\n(342,417,cs),\n(307,417,o),\n(278,388,o),\n(278,353,cs),\n(278,319,o),\n(307,290,o),\n(342,290,cs)\n);\n}\n);\nwidth = 682;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"13DCC383-82AB-442C-BFC2-C1F1611A1FF5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,-13,o),\n(84,173,o),\n(84,358,cs),\n(84,553,o),\n(150,719,o),\n(360,719,c),\n(568,719,o),\n(634,553,o),\n(634,358,cs),\n(634,173,o),\n(570,-13,o),\n(360,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,618,o),\n(188,513,o),\n(188,360,cs),\n(188,200,o),\n(230,89,o),\n(359,89,c),\n(488,89,o),\n(530,200,o),\n(530,360,cs),\n(530,513,o),\n(483,618,o),\n(360,618,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(395,295,o),\n(424,325,o),\n(424,358,cs),\n(424,394,o),\n(395,424,o),\n(361,424,cs),\n(326,424,o),\n(296,394,o),\n(296,358,cs),\n(296,325,o),\n(326,295,o),\n(361,295,cs)\n);\n}\n);\nwidth = 718;\n}\n);\nunicode = 48;\n},\n{\nglyphname = one;\nlastChange = \"2023-08-03 09:34:19 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,7);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,11);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,4);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,0,l),\n(422,80,l),\n(289,80,l),\n(289,699,l),\n(214,699,l),\n(214,606,o),\n(193,592,o),\n(76,592,c),\n(76,512,l),\n(201,512,l),\n(201,80,l),\n(74,80,l),\n(74,0,l)\n);\n}\n);\nwidth = 513;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"E47BB55E-6434-4EFE-8F9A-CD219E7F6C54\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,94,l),\n(69,94,l),\n(69,0,l),\n(441,0,l),\n(441,96,l),\n(308,96,l),\n(308,699,l),\n(221,699,l),\n(221,598,o),\n(163,593,o),\n(71,593,c),\n(71,512,l),\n(196,512,l)\n);\n}\n);\nwidth = 496;\n}\n);\nunicode = 49;\n},\n{\nglyphname = two;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,25);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,18);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,25);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (0,15);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(501,1,l),\n(501,81,l),\n(161,81,l),\n(161,274,o),\n(490,284,o),\n(490,528,cs),\n(490,647,o),\n(399,712,o),\n(284,712,c),\n(204,712,o),\n(132,677,o),\n(96,615,c),\n(81,589,o),\n(72,555,o),\n(72,519,c),\n(160,519,l),\n(160,576,o),\n(205,632,o),\n(283,632,c),\n(361,632,o),\n(404,584,o),\n(404,528,cs),\n(404,335,o),\n(75,332,o),\n(75,81,cs),\n(75,1,l)\n);\n}\n);\nwidth = 576;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"BC9AB10E-C11D-48D7-ACCF-502BD9D7D8B4\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,257,o),\n(500,284,o),\n(500,530,cs),\n(500,649,o),\n(404,719,o),\n(289,719,c),\n(209,719,o),\n(137,685,o),\n(101,623,c),\n(86,597,o),\n(77,566,o),\n(77,530,c),\n(174,530,l),\n(174,587,o),\n(210,636,o),\n(288,636,c),\n(366,636,o),\n(405,592,o),\n(405,536,cs),\n(405,343,o),\n(80,308,o),\n(80,87,cs),\n(80,1,l),\n(511,1,l),\n(511,93,l),\n(184,93,l)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 50;\n},\n{\nglyphname = three;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(429,-12,o),\n(541,69,o),\n(541,208,cs),\n(541,324,o),\n(465,423,o),\n(309,423,c),\n(502,615,l),\n(502,700,l),\n(114,700,l),\n(114,620,l),\n(396,620,l),\n(191,423,l),\n(191,355,l),\n(286,355,ls),\n(385,355,o),\n(455,309,o),\n(455,212,cs),\n(455,128,o),\n(390,68,o),\n(301,68,cs),\n(228,68,o),\n(169,94,o),\n(149,173,c),\n(146,185,o),\n(144,198,o),\n(144,210,c),\n(60,203,l),\n(60,182,o),\n(63,162,o),\n(67,144,c),\n(94,43,o),\n(191,-12,o),\n(300,-12,cs)\n);\n}\n);\nwidth = 609;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"EB8DBBAE-32D2-41E0-8962-5175497312F2\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(469,429,o),\n(530,330,o),\n(530,203,cs),\n(530,64,o),\n(418,-12,o),\n(289,-12,c),\n(180,-12,o),\n(83,43,o),\n(56,144,c),\n(52,162,o),\n(49,182,o),\n(49,203,c),\n(156,210,l),\n(156,198,o),\n(158,185,o),\n(161,173,c),\n(174,121,o),\n(217,78,o),\n(290,78,c),\n(379,78,o),\n(423,140,o),\n(423,207,cs),\n(423,271,o),\n(399,358,o),\n(265,358,c),\n(183,358,l),\n(183,441,l),\n(379,611,l),\n(110,611,l),\n(110,700,l),\n(496,700,l),\n(496,606,l),\n(313,441,l)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 51;\n},\n{\nglyphname = four;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,7);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(460,1,l),\n(460,167,l),\n(564,167,l),\n(564,248,l),\n(460,248,l),\n(460,701,l),\n(374,701,l),\n(65,248,l),\n(65,168,l),\n(374,168,l),\n(374,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(374,559,l),\n(374,248,l),\n(157,248,l)\n);\n}\n);\nwidth = 613;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"343D4897-1185-4756-95B8-BCD83EF9873F\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(460,1,l),\n(460,702,l),\n(354,702,l),\n(354,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(557,158,l),\n(557,250,l),\n(63,250,l),\n(63,158,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(354,701,l),\n(64,248,l),\n(169,248,l),\n(452,690,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 52;\n},\n{\nglyphname = five;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,30);\ntarget = (0,23);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (0,5);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,20);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,-12,o),\n(551,77,o),\n(551,234,cs),\n(551,387,o),\n(444,469,o),\n(322,469,cs),\n(265,469,o),\n(204,443,o),\n(184,407,c),\n(223,620,l),\n(505,620,l),\n(505,700,l),\n(158,700,l),\n(96,348,l),\n(188,322,l),\n(210,361,o),\n(253,388,o),\n(305,388,cs),\n(396,388,o),\n(465,330,o),\n(465,234,cs),\n(465,126,o),\n(400,68,o),\n(311,68,cs),\n(237,68,o),\n(169,123,o),\n(158,195,c),\n(78,163,l),\n(105,49,o),\n(201,-12,o),\n(310,-12,cs)\n);\n}\n);\nwidth = 621;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"141C748C-D320-4F67-ACD8-1A49E620755D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(84,49,o),\n(180,-12,o),\n(289,-12,c),\n(418,-12,o),\n(530,83,o),\n(530,240,cs),\n(530,393,o),\n(418,484,o),\n(289,484,c),\n(255,484,o),\n(191,469,o),\n(174,442,c),\n(209,627,l),\n(484,627,l),\n(484,720,l),\n(129,720,l),\n(60,321,l),\n(59,316,o),\n(166,315,o),\n(165,310,c),\n(183,355,o),\n(224,393,o),\n(288,393,c),\n(379,393,o),\n(427,314,o),\n(427,242,cs),\n(427,166,o),\n(379,80,o),\n(290,80,c),\n(216,80,o),\n(170,133,o),\n(156,195,c),\n(57,163,l)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 53;\n},\n{\nglyphname = six;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(447,-12,o),\n(535,88,o),\n(535,227,cs),\n(535,354,o),\n(432,452,o),\n(315,452,cs),\n(284,452,o),\n(248,442,o),\n(236,427,c),\n(410,700,l),\n(311,700,l),\n(136,404,ls),\n(106,354,o),\n(76,292,o),\n(76,227,cs),\n(76,88,o),\n(162,-12,o),\n(307,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(211,68,o),\n(163,140,o),\n(163,228,cs),\n(163,299,o),\n(211,376,o),\n(304,376,c),\n(395,376,o),\n(447,299,o),\n(447,228,cs),\n(447,134,o),\n(395,68,o),\n(308,68,c)\n);\n}\n);\nwidth = 595;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D6D6E878-2182-488D-B392-1DFFB86B72D8\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(417,-12,o),\n(529,75,o),\n(529,235,cs),\n(529,392,o),\n(413,476,o),\n(318,476,c),\n(271,476,o),\n(246,464,o),\n(241,464,c),\n(413,720,l),\n(297,720,l),\n(91,384,ls),\n(65,342,o),\n(48,287,o),\n(48,235,cs),\n(48,75,o),\n(159,-12,o),\n(288,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(378,392,o),\n(426,310,o),\n(426,236,cs),\n(426,159,o),\n(378,81,o),\n(289,81,c),\n(200,81,o),\n(151,159,o),\n(151,236,cs),\n(151,310,o),\n(196,392,o),\n(287,392,c)\n);\n}\n);\nwidth = 586;\n}\n);\nunicode = 54;\n},\n{\nglyphname = seven;\nlastChange = \"2023-08-02 08:52:02 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,4);\ntarget = (0,1);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,1,l),\n(499,622,l),\n(499,700,l),\n(55,700,l),\n(55,620,l),\n(410,620,l),\n(111,1,l)\n);\n}\n);\nwidth = 527;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"838B41D5-9F30-4BE4-913F-336DAFA8DCAA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,608,l),\n(79,1,l),\n(200,1,l),\n(499,610,l),\n(499,700,l),\n(55,700,l),\n(55,608,l)\n);\n}\n);\nwidth = 525;\n}\n);\nunicode = 55;\n},\n{\nglyphname = eight;\nlastChange = \"2023-08-02 08:52:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,-12,o),\n(537,64,o),\n(537,203,cs),\n(537,286,o),\n(494,348,o),\n(431,384,c),\n(473,416,o),\n(501,465,o),\n(501,530,cs),\n(501,649,o),\n(412,712,o),\n(299,712,cs),\n(188,712,o),\n(98,649,o),\n(98,530,cs),\n(98,465,o),\n(128,415,o),\n(168,384,c),\n(106,348,o),\n(64,286,o),\n(64,203,cs),\n(64,64,o),\n(171,-12,o),\n(300,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(213,68,o),\n(152,123,o),\n(152,203,cs),\n(152,278,o),\n(208,340,o),\n(299,340,cs),\n(390,340,o),\n(449,278,o),\n(449,203,cs),\n(449,123,o),\n(390,68,o),\n(301,68,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(225,418,o),\n(182,465,o),\n(182,530,cs),\n(182,586,o),\n(222,636,o),\n(298,636,cs),\n(374,636,o),\n(417,586,o),\n(417,530,cs),\n(417,465,o),\n(374,418,o),\n(300,418,cs)\n);\n}\n);\nwidth = 611;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"91AF98D4-6337-4809-84E9-869B365A9A81\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,342,o),\n(503,408,o),\n(503,530,cs),\n(503,649,o),\n(404,719,o),\n(289,719,c),\n(175,719,o),\n(77,649,o),\n(77,530,cs),\n(77,408,o),\n(175,342,o),\n(289,342,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(366,642,o),\n(405,586,o),\n(405,530,cs),\n(405,474,o),\n(366,418,o),\n(290,418,c),\n(213,418,o),\n(174,474,o),\n(174,530,cs),\n(174,586,o),\n(210,642,o),\n(288,642,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(418,-12,o),\n(530,64,o),\n(530,203,cs),\n(530,339,o),\n(418,419,o),\n(289,419,c),\n(160,419,o),\n(49,339,o),\n(49,203,cs),\n(49,64,o),\n(160,-12,o),\n(289,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(379,341,o),\n(423,274,o),\n(423,210,cs),\n(423,143,o),\n(379,78,o),\n(290,78,c),\n(201,78,o),\n(156,143,o),\n(156,210,cs),\n(156,274,o),\n(197,341,o),\n(288,341,c)\n);\n}\n);\nwidth = 587;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"594B591A-42ED-4B4B-A577-75D6A89A309A\";\nname = \"2 Aug 21, 17:38\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,342,o),\n(503,408,o),\n(503,530,cs),\n(503,649,o),\n(404,719,o),\n(289,719,c),\n(175,719,o),\n(77,649,o),\n(77,530,cs),\n(77,408,o),\n(175,342,o),\n(289,342,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(366,642,o),\n(405,586,o),\n(405,530,cs),\n(405,474,o),\n(366,418,o),\n(290,418,c),\n(213,418,o),\n(174,474,o),\n(174,530,cs),\n(174,586,o),\n(210,642,o),\n(288,642,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(418,-12,o),\n(530,64,o),\n(530,203,cs),\n(530,339,o),\n(418,419,o),\n(289,419,c),\n(160,419,o),\n(49,339,o),\n(49,203,cs),\n(49,64,o),\n(160,-12,o),\n(289,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(379,341,o),\n(423,274,o),\n(423,210,cs),\n(423,143,o),\n(379,78,o),\n(290,78,c),\n(201,78,o),\n(156,143,o),\n(156,210,cs),\n(156,274,o),\n(197,341,o),\n(288,341,c)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 56;\n},\n{\nglyphname = nine;\nlastChange = \"2023-08-02 08:52:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(300,0,l),\n(475,296,ls),\n(505,346,o),\n(535,408,o),\n(535,473,cs),\n(535,612,o),\n(449,712,o),\n(304,712,c),\n(164,712,o),\n(76,612,o),\n(76,473,cs),\n(76,346,o),\n(179,248,o),\n(296,248,cs),\n(327,248,o),\n(363,258,o),\n(375,273,c),\n(201,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,324,o),\n(164,401,o),\n(164,472,cs),\n(164,566,o),\n(216,632,o),\n(303,632,c),\n(400,632,o),\n(448,560,o),\n(448,472,cs),\n(448,401,o),\n(400,324,o),\n(307,324,c)\n);\n}\n);\nwidth = 594;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"DE9DA14C-A867-4145-8585-487AFC56B204\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,732,o),\n(48,645,o),\n(48,485,cs),\n(48,328,o),\n(164,244,o),\n(259,244,c),\n(306,244,o),\n(331,256,o),\n(336,256,c),\n(164,0,l),\n(280,0,l),\n(486,336,ls),\n(512,378,o),\n(529,433,o),\n(529,485,cs),\n(529,645,o),\n(418,732,o),\n(289,732,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(199,328,o),\n(151,410,o),\n(151,484,cs),\n(151,561,o),\n(199,639,o),\n(288,639,c),\n(377,639,o),\n(426,561,o),\n(426,484,cs),\n(426,410,o),\n(381,328,o),\n(290,328,c)\n);\n}\n);\nwidth = 586;\n}\n);\nunicode = 57;\n},\n{\nglyphname = .notdef;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (1,3);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,1);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (1,0);\ntype = Stem;\n},\n{\norigin = (0,1);\ntarget = (1,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(553,-150,l),\n(553,730,l),\n(95,730,l),\n(95,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(180,652,l),\n(468,652,l),\n(468,-72,l),\n(180,-72,l)\n);\n}\n);\nwidth = 648;\n}\n);\n},\n{\nglyphname = space;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nwidth = 268;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"278BD42E-6D32-4FB3-9902-F04FFA4DB058\";\nname = foreground;\nwidth = 230;\n}\n);\nunicode = 32;\n},\n{\nglyphname = nbspace;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nwidth = 268;\n}\n);\nmetricWidth = space;\nunicode = 160;\n},\n{\nglyphname = period;\nlastChange = \"2023-08-03 12:38:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,-12,o),\n(174,17,o),\n(174,51,cs),\n(174,86,o),\n(146,115,o),\n(112,115,cs),\n(77,115,o),\n(48,86,o),\n(48,51,cs),\n(48,17,o),\n(77,-12,o),\n(112,-12,cs)\n);\n}\n);\nwidth = 222;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"2626C257-C8D1-4BEC-A76B-04061BD798F2\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 46;\n},\n{\nglyphname = comma;\nlastChange = \"2023-08-03 12:38:12 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(144,-119,o),\n(194,-39,o),\n(194,48,cs),\n(194,97,o),\n(163,134,o),\n(116,134,cs),\n(80,134,o),\n(50,99,o),\n(50,64,cs),\n(50,31,o),\n(81,0,o),\n(114,0,cs),\n(117,0,o),\n(122,0,o),\n(124,1,c),\n(124,-71,o),\n(50,-86,o),\n(50,-86,c),\n(50,-86,o),\n(49,-119,o),\n(50,-119,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7090993E-1050-418C-BDF4-9BE23E3E6164\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n}\n);\nunicode = 44;\n},\n{\nglyphname = colon;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,300,o),\n(216,329,o),\n(216,363,cs),\n(216,398,o),\n(188,427,o),\n(154,427,cs),\n(119,427,o),\n(90,398,o),\n(90,363,cs),\n(90,329,o),\n(119,300,o),\n(154,300,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(188,-12,o),\n(216,17,o),\n(216,51,cs),\n(216,86,o),\n(188,115,o),\n(154,115,cs),\n(119,115,o),\n(90,86,o),\n(90,51,cs),\n(90,17,o),\n(119,-12,o),\n(154,-12,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"1129757A-F034-4623-96F5-2C126444C93D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,289,o),\n(229,324,o),\n(229,363,cs),\n(229,405,o),\n(196,440,o),\n(156,440,cs),\n(115,440,o),\n(80,405,o),\n(80,363,cs),\n(80,324,o),\n(115,289,o),\n(156,289,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 58;\n},\n{\nglyphname = semicolon;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(140,-119,o),\n(179,-20,o),\n(180,48,c),\n(180,89,o),\n(158,134,o),\n(102,134,cs),\n(66,134,o),\n(36,99,o),\n(36,64,cs),\n(36,31,o),\n(67,0,o),\n(100,0,cs),\n(103,0,o),\n(108,0,o),\n(110,1,c),\n(110,-71,o),\n(36,-86,o),\n(36,-86,c),\n(36,-86,o),\n(35,-119,o),\n(36,-119,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(143,300,o),\n(171,329,o),\n(171,363,cs),\n(171,398,o),\n(143,427,o),\n(109,427,cs),\n(74,427,o),\n(45,398,o),\n(45,363,cs),\n(45,329,o),\n(74,300,o),\n(109,300,cs)\n);\n}\n);\nwidth = 270;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7C7B3130-D28B-462C-85A7-59917ACED75E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,289,o),\n(213,324,o),\n(213,363,cs),\n(213,405,o),\n(180,440,o),\n(140,440,cs),\n(99,440,o),\n(64,405,o),\n(64,363,cs),\n(64,324,o),\n(99,289,o),\n(140,289,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n}\n);\nunicode = 59;\n},\n{\nglyphname = ellipsis;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (230,0);\nref = period;\n},\n{\npos = (460,0);\nref = period;\n},\n{\nref = period;\n}\n);\nwidth = 770;\n}\n);\nunicode = 8230;\n},\n{\nglyphname = exclam;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(213,215,l),\n(224,720,l),\n(121,720,l),\n(135,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(210,-11,o),\n(240,21,o),\n(240,56,cs),\n(240,94,o),\n(210,126,o),\n(174,126,cs),\n(136,126,o),\n(105,94,o),\n(105,56,cs),\n(105,21,o),\n(136,-11,o),\n(174,-11,cs)\n);\n}\n);\nwidth = 345;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A93029F6-5A44-47E5-8EBB-60AEDDECB850\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,215,l),\n(218,720,l),\n(89,720,l),\n(105,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 33;\n},\n{\nglyphname = exclamdown;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(206,-232,l),\n(195,273,l),\n(117,273,l),\n(103,-232,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(192,362,o),\n(222,394,o),\n(222,432,cs),\n(222,467,o),\n(192,499,o),\n(156,499,cs),\n(118,499,o),\n(87,467,o),\n(87,432,cs),\n(87,394,o),\n(118,362,o),\n(156,362,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 161;\n},\n{\nglyphname = question;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,18);\ntarget = (0,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (0,15);\ntype = Stem;\n},\n{\norigin = (0,0);\ntarget = (0,1);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (1,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,216,o),\n(279,216,o),\n(279,216,c),\n(279,380,o),\n(463,311,o),\n(463,530,cs),\n(463,649,o),\n(371,719,o),\n(256,719,cs),\n(180,719,o),\n(108,685,o),\n(72,623,c),\n(57,597,o),\n(48,566,o),\n(48,530,c),\n(130,530,l),\n(130,587,o),\n(181,639,o),\n(255,639,cs),\n(333,639,o),\n(381,592,o),\n(381,536,cs),\n(381,372,o),\n(188,437,o),\n(188,216,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(258,-12,o),\n(286,17,o),\n(286,51,cs),\n(286,86,o),\n(258,115,o),\n(224,115,cs),\n(189,115,o),\n(160,86,o),\n(160,51,cs),\n(160,17,o),\n(189,-12,o),\n(224,-12,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CB6FE323-AA22-456B-834C-E280C3EC3E3D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(312,380,o),\n(500,311,o),\n(500,530,cs),\n(500,649,o),\n(404,719,o),\n(289,719,c),\n(209,719,o),\n(137,685,o),\n(101,623,c),\n(86,597,o),\n(77,566,o),\n(77,530,c),\n(174,530,l),\n(174,587,o),\n(210,636,o),\n(288,636,c),\n(366,636,o),\n(405,592,o),\n(405,536,cs),\n(405,372,o),\n(208,437,o),\n(208,216,cs),\n(208,216,o),\n(312,216,o),\n(312,216,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(308,-12,o),\n(341,23,o),\n(341,62,cs),\n(341,104,o),\n(308,139,o),\n(268,139,cs),\n(227,139,o),\n(192,104,o),\n(192,62,cs),\n(192,23,o),\n(227,-12,o),\n(268,-12,cs)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 63;\n},\n{\nglyphname = questiondown;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(331,-219,o),\n(403,-185,o),\n(439,-123,c),\n(454,-97,o),\n(463,-66,o),\n(463,-30,c),\n(381,-30,l),\n(381,-87,o),\n(330,-139,o),\n(256,-139,cs),\n(178,-139,o),\n(130,-92,o),\n(130,-36,cs),\n(130,128,o),\n(323,63,o),\n(323,284,cs),\n(323,284,o),\n(232,284,o),\n(232,284,c),\n(232,120,o),\n(48,189,o),\n(48,-30,cs),\n(48,-149,o),\n(140,-219,o),\n(255,-219,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(322,385,o),\n(351,414,o),\n(351,449,cs),\n(351,483,o),\n(322,512,o),\n(287,512,cs),\n(253,512,o),\n(225,483,o),\n(225,449,cs),\n(225,414,o),\n(253,385,o),\n(287,385,cs)\n);\n}\n);\nwidth = 511;\n}\n);\nunicode = 191;\n},\n{\nglyphname = periodcentered;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(188,241,o),\n(216,270,o),\n(216,304,cs),\n(216,339,o),\n(188,368,o),\n(154,368,cs),\n(119,368,o),\n(90,339,o),\n(90,304,cs),\n(90,270,o),\n(119,241,o),\n(154,241,cs)\n);\n}\n);\nwidth = 306;\n}\n);\nunicode = 183;\n},\n{\nglyphname = bullet;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(216,223,o),\n(254,262,o),\n(254,307,cs),\n(254,354,o),\n(216,393,o),\n(171,393,cs),\n(124,393,o),\n(85,354,o),\n(85,307,cs),\n(85,262,o),\n(124,223,o),\n(171,223,cs)\n);\n}\n);\nwidth = 339;\n}\n);\nunicode = 8226;\n},\n{\nglyphname = asterisk;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(244,455,l),\n(350,330,l),\n(402,374,l),\n(297,499,l),\n(431,562,l),\n(403,624,l),\n(279,567,l),\n(279,712,l),\n(211,712,l),\n(211,564,l),\n(86,622,l),\n(58,561,l),\n(191,499,l),\n(86,374,l),\n(138,330,l)\n);\n}\n);\nwidth = 489;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"52A87255-65B2-4E80-95F9-0AF50A018D84\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,321,l),\n(246,438,l),\n(344,320,l),\n(407,374,l),\n(310,489,l),\n(436,553,l),\n(400,624,l),\n(287,568,l),\n(287,714,l),\n(204,714,l),\n(204,568,l),\n(92,624,l),\n(55,553,l),\n(180,490,l),\n(83,374,l)\n);\n}\n);\nwidth = 491;\n}\n);\nunicode = 42;\n},\n{\nglyphname = numbersign;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,3);\ntarget = (1,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (3,3);\ntarget = (3,2);\ntype = Stem;\n},\n{\norigin = (1,3);\ntarget = (3,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(454,0,l),\n(627,720,l),\n(554,720,l),\n(381,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(646,208,l),\n(646,288,l),\n(72,288,l),\n(72,208,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(238,0,l),\n(411,720,l),\n(338,720,l),\n(165,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(710,433,l),\n(710,513,l),\n(136,513,l),\n(136,433,l)\n);\n}\n);\nwidth = 782;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"21C28542-C2BA-4EFE-9B17-DE8F14164D30\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(227,0,l),\n(400,720,l),\n(306,720,l),\n(133,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(462,0,l),\n(635,720,l),\n(541,720,l),\n(368,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(707,425,l),\n(707,523,l),\n(133,523,l),\n(133,425,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(644,199,l),\n(644,297,l),\n(70,297,l),\n(70,199,l)\n);\n}\n);\nwidth = 777;\n}\n);\nunicode = 35;\n},\n{\nglyphname = slash;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(103,0,l),\n(396,720,l),\n(312,720,l),\n(19,0,l)\n);\n}\n);\nwidth = 400;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B6C497E8-57DB-4813-80B4-1FC1C004D65A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,0,l),\n(390,720,l),\n(303,720,l),\n(10,0,l)\n);\n}\n);\nwidth = 385;\n}\n);\nunicode = 47;\n},\n{\nglyphname = backslash;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(381,0,l),\n(88,720,l),\n(4,720,l),\n(297,0,l)\n);\n}\n);\nwidth = 400;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"343D6EAE-1DF2-4E0E-B6B5-032545DCA862\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(82,720,l),\n(-5,720,l),\n(288,0,l),\n(375,0,l)\n);\n}\n);\nwidth = 385;\n}\n);\nunicode = 92;\n},\n{\nglyphname = periodcentered.loclCAT;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,241,o),\n(211,270,o),\n(211,304,cs),\n(211,339,o),\n(183,368,o),\n(149,368,cs),\n(114,368,o),\n(85,339,o),\n(85,304,cs),\n(85,270,o),\n(114,241,o),\n(149,241,cs)\n);\n}\n);\nwidth = 296;\n}\n);\n},\n{\nglyphname = periodcentered.loclCAT.case;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(-72,241,o),\n(-44,270,o),\n(-44,304,cs),\n(-44,339,o),\n(-72,368,o),\n(-106,368,cs),\n(-141,368,o),\n(-170,339,o),\n(-170,304,cs),\n(-170,270,o),\n(-141,241,o),\n(-106,241,cs)\n);\n}\n);\nwidth = 41;\n}\n);\n},\n{\nglyphname = hyphen;\nlastChange = \"2023-08-03 12:33:23 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(418,255,l),\n(418,335,l),\n(70,335,l),\n(70,255,l)\n);\n}\n);\nwidth = 488;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A4E3A6E5-E339-49A3-BA7C-5350A83F40F5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,247,l),\n(428,345,l),\n(80,345,l),\n(80,247,l)\n);\n}\n);\nwidth = 508;\n}\n);\nunicode = 45;\n},\n{\nglyphname = endash;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(484,255,l),\n(484,335,l),\n(71,335,l),\n(71,255,l)\n);\n}\n);\nwidth = 555;\n}\n);\nunicode = 8211;\n},\n{\nglyphname = emdash;\nlastChange = \"2023-08-03 12:40:45 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(816,253,l),\n(816,333,l),\n(71,333,l),\n(71,253,l)\n);\n}\n);\nwidth = 887;\n}\n);\nunicode = 8212;\n},\n{\nglyphname = underscore;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(516,0,l),\n(516,80,l),\n(30,80,l),\n(30,0,l)\n);\n}\n);\nwidth = 546;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"1AB4D43C-2735-4A3F-815D-32BCD16357D5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(546,0,l),\n(546,98,l),\n(60,98,l),\n(60,0,l)\n);\n}\n);\nwidth = 606;\n}\n);\nunicode = 95;\n},\n{\nglyphname = parenleft;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(273,-60,l),\n(276,-58,o),\n(156,82,o),\n(156,345,c),\n(156,607,o),\n(276,748,o),\n(273,750,c),\n(180,750,l),\n(180,750,o),\n(70,580,o),\n(70,345,c),\n(70,109,o),\n(180,-60,o),\n(180,-60,c)\n);\n}\n);\nwidth = 303;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A003329C-BEC9-4397-9AAD-9155A5EADE70\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(62,109,o),\n(172,-60,o),\n(172,-60,c),\n(280,-60,l),\n(283,-58,o),\n(163,82,o),\n(163,345,c),\n(163,607,o),\n(283,748,o),\n(280,750,c),\n(172,750,l),\n(172,750,o),\n(62,580,o),\n(62,345,c)\n);\n}\n);\nwidth = 313;\n}\n);\nunicode = 40;\n},\n{\nglyphname = parenright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(122,-60,l),\n(122,-60,o),\n(232,109,o),\n(232,345,c),\n(232,580,o),\n(122,750,o),\n(122,750,c),\n(30,750,l),\n(27,748,o),\n(147,607,o),\n(147,345,c),\n(147,82,o),\n(27,-58,o),\n(30,-60,c)\n);\n}\n);\nwidth = 302;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"FEA7CF8C-5847-4A35-8A6B-C76339FB953A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(243,580,o),\n(133,750,o),\n(133,750,c),\n(25,750,l),\n(22,748,o),\n(142,607,o),\n(142,345,c),\n(142,82,o),\n(22,-58,o),\n(25,-60,c),\n(133,-60,l),\n(133,-60,o),\n(243,109,o),\n(243,345,c)\n);\n}\n);\nwidth = 303;\n}\n);\nunicode = 41;\n},\n{\nglyphname = braceleft;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(268,-93,l),\n(268,-12,l),\n(246,-12,ls),\n(226,-12,o),\n(214,-1,o),\n(214,24,cs),\n(214,232,ls),\n(214,290,o),\n(191,307,o),\n(150,316,c),\n(191,325,o),\n(214,340,o),\n(214,395,cs),\n(214,608,ls),\n(214,633,o),\n(226,644,o),\n(246,644,cs),\n(268,644,l),\n(268,725,l),\n(221,725,ls),\n(155,725,o),\n(133,693,o),\n(133,625,cs),\n(133,422,ls),\n(133,371,o),\n(114,353,o),\n(62,353,c),\n(62,278,l),\n(114,278,o),\n(133,260,o),\n(133,209,cs),\n(133,7,ls),\n(133,-61,o),\n(155,-93,o),\n(221,-93,cs)\n);\n}\n);\nwidth = 296;\n}\n);\nunicode = 123;\n},\n{\nglyphname = braceright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(75,-93,ls),\n(141,-93,o),\n(163,-61,o),\n(163,7,cs),\n(163,209,ls),\n(163,260,o),\n(182,278,o),\n(234,278,c),\n(234,353,l),\n(182,353,o),\n(163,371,o),\n(163,422,cs),\n(163,625,ls),\n(163,693,o),\n(141,725,o),\n(75,725,cs),\n(28,725,l),\n(28,644,l),\n(50,644,ls),\n(70,644,o),\n(82,633,o),\n(82,608,cs),\n(82,395,ls),\n(82,340,o),\n(105,325,o),\n(146,316,c),\n(105,307,o),\n(82,290,o),\n(82,232,cs),\n(82,24,ls),\n(82,-1,o),\n(70,-12,o),\n(50,-12,cs),\n(28,-12,l),\n(28,-93,l)\n);\n}\n);\nwidth = 296;\n}\n);\nunicode = 125;\n},\n{\nglyphname = bracketleft;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,-51,l),\n(344,25,l),\n(175,25,l),\n(175,678,l),\n(345,678,l),\n(345,753,l),\n(95,753,l),\n(95,-51,l)\n);\n}\n);\nwidth = 383;\n}\n);\nunicode = 91;\n},\n{\nglyphname = bracketright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(288,-51,l),\n(288,753,l),\n(38,753,l),\n(38,678,l),\n(208,678,l),\n(208,25,l),\n(39,25,l),\n(39,-51,l)\n);\n}\n);\nwidth = 383;\n}\n);\nunicode = 93;\n},\n{\nglyphname = quotesinglbase;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = comma;\n}\n);\nwidth = 274;\n}\n);\nunicode = 8218;\n},\n{\nglyphname = quotedblbase;\nlastChange = \"2023-08-03 12:38:02 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (183,0);\nref = comma;\n},\n{\nref = comma;\n}\n);\nwidth = 463;\n}\n);\nunicode = 8222;\n},\n{\nglyphname = quotedblleft;\nlastChange = \"2023-08-03 09:24:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(355,467,o),\n(382,495,o),\n(382,537,cs),\n(382,574,o),\n(356,601,o),\n(318,601,cs),\n(315,601,o),\n(310,601,o),\n(308,600,c),\n(308,672,o),\n(382,687,o),\n(382,687,c),\n(382,687,o),\n(383,720,o),\n(382,720,cs),\n(278,720,o),\n(239,621,o),\n(238,553,c),\n(238,512,o),\n(260,467,o),\n(316,467,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(162,467,o),\n(189,495,o),\n(189,537,cs),\n(189,574,o),\n(163,601,o),\n(125,601,cs),\n(122,601,o),\n(117,601,o),\n(115,600,c),\n(115,672,o),\n(189,687,o),\n(189,687,c),\n(189,687,o),\n(190,720,o),\n(189,720,cs),\n(85,720,o),\n(46,621,o),\n(45,553,c),\n(45,512,o),\n(67,467,o),\n(123,467,cs)\n);\n}\n);\nwidth = 432;\n}\n);\nunicode = 8220;\n},\n{\nglyphname = quotedblright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(347,472,o),\n(386,571,o),\n(387,639,c),\n(387,680,o),\n(365,725,o),\n(309,725,cs),\n(270,725,o),\n(243,697,o),\n(243,655,cs),\n(243,618,o),\n(269,591,o),\n(307,591,cs),\n(310,591,o),\n(315,591,o),\n(317,592,c),\n(317,520,o),\n(243,505,o),\n(243,505,c),\n(243,505,o),\n(242,472,o),\n(243,472,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(154,472,o),\n(193,571,o),\n(194,639,c),\n(194,680,o),\n(172,725,o),\n(116,725,cs),\n(77,725,o),\n(50,697,o),\n(50,655,cs),\n(50,618,o),\n(76,591,o),\n(114,591,cs),\n(117,591,o),\n(122,591,o),\n(124,592,c),\n(124,520,o),\n(50,505,o),\n(50,505,c),\n(50,505,o),\n(49,472,o),\n(50,472,cs)\n);\n}\n);\nwidth = 432;\n}\n);\nunicode = 8221;\n},\n{\nglyphname = quoteleft;\nlastChange = \"2023-08-03 09:26:13 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(164,467,o),\n(194,502,o),\n(194,537,cs),\n(194,570,o),\n(163,601,o),\n(130,601,cs),\n(127,601,o),\n(122,601,o),\n(120,600,c),\n(120,672,o),\n(194,687,o),\n(194,687,c),\n(194,687,o),\n(195,720,o),\n(194,720,cs),\n(90,720,o),\n(51,621,o),\n(50,553,c),\n(50,512,o),\n(72,467,o),\n(128,467,cs)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 8216;\n},\n{\nglyphname = quoteright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(154,467,o),\n(193,566,o),\n(194,634,c),\n(194,675,o),\n(172,720,o),\n(116,720,cs),\n(80,720,o),\n(50,685,o),\n(50,650,cs),\n(50,617,o),\n(81,586,o),\n(114,586,cs),\n(117,586,o),\n(122,586,o),\n(124,587,c),\n(124,515,o),\n(50,500,o),\n(50,500,c),\n(50,500,o),\n(49,467,o),\n(50,467,cs)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 8217;\n},\n{\nglyphname = guillemetleft;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(631,120,l),\n(382,287,l),\n(631,454,l),\n(631,544,l),\n(304,325,l),\n(304,249,l),\n(631,30,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(375,121,l),\n(126,288,l),\n(375,455,l),\n(375,545,l),\n(48,326,l),\n(48,250,l),\n(375,31,l)\n);\n}\n);\nwidth = 687;\n}\n);\nunicode = 171;\n},\n{\nglyphname = guillemetright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(639,250,l),\n(639,326,l),\n(312,545,l),\n(312,455,l),\n(561,288,l),\n(312,121,l),\n(312,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(383,249,l),\n(383,325,l),\n(56,544,l),\n(56,454,l),\n(305,287,l),\n(56,120,l),\n(56,30,l)\n);\n}\n);\nwidth = 687;\n}\n);\nunicode = 187;\n},\n{\nglyphname = guilsinglleft;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(345,121,l),\n(122,288,l),\n(345,455,l),\n(345,545,l),\n(48,326,l),\n(48,250,l),\n(345,31,l)\n);\n}\n);\nwidth = 401;\n}\n);\nunicode = 8249;\n},\n{\nglyphname = guilsinglright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,250,l),\n(353,326,l),\n(56,545,l),\n(56,455,l),\n(279,288,l),\n(56,121,l),\n(56,31,l)\n);\n}\n);\nwidth = 401;\n}\n);\nunicode = 8250;\n},\n{\nglyphname = quotedbl;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(320,465,l),\n(328,499,o),\n(364,621,o),\n(364,658,c),\n(364,696,o),\n(337,720,o),\n(306,720,cs),\n(273,720,o),\n(246,696,o),\n(246,658,c),\n(246,621,o),\n(283,499,o),\n(291,465,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(154,465,l),\n(162,499,o),\n(198,621,o),\n(198,658,c),\n(198,696,o),\n(171,720,o),\n(140,720,cs),\n(107,720,o),\n(80,696,o),\n(80,658,c),\n(80,621,o),\n(117,499,o),\n(125,465,c)\n);\n}\n);\nwidth = 444;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"24C34471-2878-49D9-AC64-055C689381E7\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(354,459,l),\n(387,579,o),\n(401,624,o),\n(401,651,cs),\n(401,689,o),\n(371,721,o),\n(335,721,cs),\n(298,721,o),\n(266,689,o),\n(266,651,cs),\n(266,625,o),\n(280,579,o),\n(314,459,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(153,459,l),\n(186,579,o),\n(200,624,o),\n(200,651,cs),\n(200,689,o),\n(170,721,o),\n(134,721,cs),\n(97,721,o),\n(65,689,o),\n(65,651,cs),\n(65,625,o),\n(79,579,o),\n(113,459,c)\n);\n}\n);\nwidth = 473;\n}\n);\nunicode = 34;\n},\n{\nglyphname = quotesingle;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(154,465,l),\n(162,499,o),\n(198,621,o),\n(198,658,c),\n(198,696,o),\n(171,720,o),\n(140,720,cs),\n(107,720,o),\n(80,696,o),\n(80,658,c),\n(80,621,o),\n(117,499,o),\n(125,465,c)\n);\n}\n);\nwidth = 278;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(158,459,l),\n(191,579,o),\n(205,624,o),\n(205,651,cs),\n(205,689,o),\n(175,721,o),\n(139,721,cs),\n(102,721,o),\n(70,689,o),\n(70,651,cs),\n(70,625,o),\n(84,579,o),\n(118,459,c)\n);\n}\n);\nwidth = 282;\n}\n);\nunicode = 39;\n},\n{\nglyphname = at;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(639,-151,o),\n(712,-112,o),\n(808,-56,c),\n(770,8,l),\n(686,-45,o),\n(608,-77,o),\n(502,-77,cs),\n(289,-77,o),\n(165,84,o),\n(165,281,cs),\n(165,478,o),\n(289,638,o),\n(502,638,cs),\n(711,638,o),\n(821,512,o),\n(821,348,cs),\n(821,264,o),\n(796,149,o),\n(712,149,cs),\n(686,149,o),\n(659,171,o),\n(661,207,c),\n(696,502,l),\n(618,502,l),\n(608,419,l),\n(591,479,o),\n(533,512,o),\n(480,512,cs),\n(351,512,o),\n(280,402,o),\n(266,294,cs),\n(251,169,o),\n(313,67,o),\n(426,67,cs),\n(484,67,o),\n(557,99,o),\n(583,144,c),\n(596,103,o),\n(633,67,o),\n(701,67,cs),\n(866,67,o),\n(905,249,o),\n(905,348,cs),\n(905,539,o),\n(781,712,o),\n(502,712,cs),\n(223,712,o),\n(81,512,o),\n(81,279,cs),\n(81,57,o),\n(222,-151,o),\n(502,-151,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(367,144,o),\n(339,218,o),\n(348,292,cs),\n(357,366,o),\n(403,437,o),\n(483,437,cs),\n(564,437,o),\n(594,362,o),\n(586,288,cs),\n(577,214,o),\n(532,144,o),\n(449,144,cs)\n);\n}\n);\nwidth = 977;\n}\n);\nunicode = 64;\n},\n{\nglyphname = ampersand;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,38);\ntarget = (1,9);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (2,5);\ntarget = (0,26);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,35);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (2,8);\ntarget = (0,23);\ntype = Stem;\n},\n{\norigin = (0,16);\ntarget = (0,15);\ntype = Stem;\n},\n{\norigin = (0,29);\ntarget = (2,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(363,-12,o),\n(419,15,o),\n(461,70,c),\n(505,17,o),\n(550,0,o),\n(608,0,cs),\n(615,0,o),\n(615,0,o),\n(624,0,c),\n(624,70,l),\n(562,70,o),\n(540,85,o),\n(503,128,c),\n(534,182,o),\n(559,262,o),\n(560,332,c),\n(488,332,l),\n(488,285,o),\n(473,226,o),\n(452,186,c),\n(323,359,l),\n(419,423,o),\n(473,478,o),\n(473,564,cs),\n(473,623,o),\n(419,714,o),\n(311,713,cs),\n(196,712,o),\n(135,629,o),\n(135,549,cs),\n(135,486,o),\n(181,410,o),\n(216,372,c),\n(123,316,o),\n(75,261,o),\n(75,168,cs),\n(75,58,o),\n(155,-12,o),\n(285,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(203,66,o),\n(153,115,o),\n(153,179,cs),\n(153,235,o),\n(196,280,o),\n(259,320,c),\n(407,127,l),\n(376,85,o),\n(336,66,o),\n(285,66,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(245,458,o),\n(213,492,o),\n(213,551,cs),\n(213,602,o),\n(246,641,o),\n(310,641,cs),\n(352,641,o),\n(395,604,o),\n(395,555,cs),\n(395,503,o),\n(363,468,o),\n(279,412,c)\n);\n}\n);\nwidth = 668;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"BC46DC87-AB29-432C-8E82-6AD56269F461\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,-1,l),\n(628,-1,l),\n(311,350,l),\n(259,405,o),\n(185,460,o),\n(185,534,c),\n(185,582,o),\n(210,640,o),\n(286,640,cs),\n(344,640,o),\n(381,596,o),\n(381,547,cs),\n(381,495,o),\n(339,466,o),\n(265,418,c),\n(130,341,o),\n(50,284,o),\n(50,177,c),\n(50,54,o),\n(155,-11,o),\n(284,-11,c),\n(492,-11,o),\n(570,203,o),\n(575,333,c),\n(486,333,l),\n(486,196,o),\n(382,79,o),\n(284,79,c),\n(204,79,o),\n(144,107,o),\n(144,180,c),\n(144,277,o),\n(257,312,o),\n(352,378,c),\n(417,423,o),\n(470,481,o),\n(470,560,c),\n(470,619,o),\n(414,713,o),\n(287,713,c),\n(150,713,o),\n(89,621,o),\n(89,541,c),\n(89,471,o),\n(117,424,o),\n(211,323,c)\n);\n}\n);\nwidth = 648;\n}\n);\nunicode = 38;\n},\n{\nglyphname = paragraph;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (412,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,13);\ntarget = (1,3);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,6);\ntarget = (1,0);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,13);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (1,2);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (1,2);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (1,3);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(603,0,l),\n(603,76,l),\n(484,76,l),\n(484,624,l),\n(603,624,l),\n(603,700,l),\n(224,700,ls),\n(142,700,o),\n(60,637,o),\n(60,535,cs),\n(60,429,o),\n(142,371,o),\n(224,371,c),\n(224,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(312,624,l),\n(396,624,l),\n(396,74,l),\n(312,74,l)\n);\n}\n);\nwidth = 668;\n}\n);\nunicode = 182;\n},\n{\nglyphname = section;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(416,62,o),\n(485,130,o),\n(485,211,cs),\n(485,404,o),\n(173,430,o),\n(173,542,cs),\n(173,584,o),\n(205,624,o),\n(270,624,cs),\n(342,624,o),\n(380,588,o),\n(380,555,c),\n(466,555,l),\n(466,617,o),\n(416,700,o),\n(271,700,cs),\n(149,700,o),\n(89,612,o),\n(89,539,cs),\n(89,345,o),\n(400,344,o),\n(400,211,cs),\n(400,161,o),\n(352,120,o),\n(311,114,c),\n(326,53,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(400,-230,o),\n(460,-142,o),\n(460,-69,cs),\n(460,125,o),\n(149,126,o),\n(149,259,cs),\n(149,309,o),\n(197,350,o),\n(238,356,c),\n(223,417,l),\n(133,408,o),\n(64,340,o),\n(64,259,cs),\n(64,66,o),\n(376,40,o),\n(376,-72,cs),\n(376,-114,o),\n(344,-154,o),\n(279,-154,cs),\n(207,-154,o),\n(169,-118,o),\n(169,-85,c),\n(83,-85,l),\n(83,-147,o),\n(133,-230,o),\n(278,-230,cs)\n);\n}\n);\nwidth = 549;\n}\n);\nunicode = 167;\n},\n{\nglyphname = copyright;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(629,-12,o),\n(757,164,o),\n(757,353,cs),\n(757,544,o),\n(629,720,o),\n(403,720,cs),\n(177,720,o),\n(49,544,o),\n(49,353,cs),\n(49,164,o),\n(177,-12,o),\n(403,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(475,151,o),\n(534,188,o),\n(560,252,c),\n(499,274,l),\n(483,237,o),\n(454,222,o),\n(406,222,c),\n(337,222,o),\n(303,274,o),\n(303,353,cs),\n(303,428,o),\n(332,483,o),\n(406,483,c),\n(454,483,o),\n(483,468,o),\n(499,430,c),\n(560,453,l),\n(534,517,o),\n(476,554,o),\n(408,554,c),\n(312,554,o),\n(227,477,o),\n(227,351,cs),\n(227,228,o),\n(312,151,o),\n(408,151,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(247,64,o),\n(129,184,o),\n(129,353,cs),\n(129,518,o),\n(246,644,o),\n(403,644,cs),\n(560,644,o),\n(677,518,o),\n(677,353,cs),\n(677,184,o),\n(559,64,o),\n(403,64,cs)\n);\n}\n);\nwidth = 806;\n}\n);\nunicode = 169;\n},\n{\nglyphname = registered;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(587,126,o),\n(691,269,o),\n(691,422,cs),\n(691,577,o),\n(587,720,o),\n(404,720,cs),\n(221,720,o),\n(117,577,o),\n(117,422,cs),\n(117,269,o),\n(221,126,o),\n(404,126,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(282,199,o),\n(191,291,o),\n(191,422,cs),\n(191,551,o),\n(282,646,o),\n(404,646,cs),\n(526,646,o),\n(617,551,o),\n(617,422,cs),\n(617,291,o),\n(526,199,o),\n(404,199,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(361,279,l),\n(361,386,l),\n(390,386,l),\n(454,279,l),\n(524,279,l),\n(450,396,l),\n(478,407,o),\n(505,435,o),\n(505,487,cs),\n(505,534,o),\n(466,571,o),\n(406,571,cs),\n(300,571,l),\n(300,279,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(360,517,l),\n(393,517,ls),\n(428,517,o),\n(445,505,o),\n(445,482,c),\n(445,452,o),\n(428,443,o),\n(393,443,cs),\n(360,443,l)\n);\n}\n);\nwidth = 808;\n}\n);\nunicode = 174;\n},\n{\nglyphname = trademark;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,4);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (1,7);\ntarget = (1,0);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,11);\ntype = Stem;\n},\n{\norigin = (0,12);\ntarget = (0,0);\ntype = Stem;\n},\n{\nplace = (1170,88);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(434,319,l),\n(434,573,l),\n(534,353,l),\n(575,353,l),\n(675,573,l),\n(675,319,l),\n(745,319,l),\n(745,700,l),\n(660,700,l),\n(555,471,l),\n(449,700,l),\n(364,700,l),\n(364,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(202,319,l),\n(202,640,l),\n(309,640,l),\n(309,700,l),\n(28,700,l),\n(28,640,l),\n(132,640,l),\n(132,319,l)\n);\n}\n);\nwidth = 773;\n}\n);\nunicode = 8482;\n},\n{\nglyphname = degree;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,471,o),\n(415,531,o),\n(415,595,cs),\n(415,661,o),\n(371,720,o),\n(294,720,cs),\n(218,720,o),\n(174,661,o),\n(174,595,cs),\n(174,531,o),\n(218,471,o),\n(294,471,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(261,535,o),\n(236,560,o),\n(236,595,cs),\n(236,630,o),\n(261,656,o),\n(294,656,cs),\n(328,656,o),\n(353,630,o),\n(353,595,cs),\n(353,560,o),\n(328,535,o),\n(294,535,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 176;\n},\n{\nglyphname = bar;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,-12,l),\n(185,720,l),\n(97,720,l),\n(97,-12,l)\n);\n}\n);\nwidth = 282;\n}\n);\nunicode = 124;\n},\n{\nglyphname = cent;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,95,o),\n(455,143,o),\n(490,226,c),\n(414,256,l),\n(393,205,o),\n(350,171,o),\n(290,171,c),\n(189,171,o),\n(138,255,o),\n(138,359,cs),\n(138,463,o),\n(189,544,o),\n(290,544,c),\n(350,544,o),\n(393,510,o),\n(414,459,c),\n(490,489,l),\n(455,572,o),\n(380,620,o),\n(292,620,c),\n(166,620,o),\n(54,520,o),\n(54,356,cs),\n(54,195,o),\n(166,95,o),\n(292,95,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(341,0,l),\n(341,152,l),\n(261,152,l),\n(261,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(335,548,l),\n(335,700,l),\n(255,700,l),\n(255,548,l)\n);\n}\n);\nwidth = 563;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"67A10FD7-782D-4391-978E-3D650EA85A7F\";\nname = foreground;\nwidth = 563;\n}\n);\nunicode = 162;\n},\n{\nglyphname = dollar;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(479,-12,o),\n(592,58,o),\n(592,195,c),\n(592,340,o),\n(493,370,o),\n(364,395,c),\n(271,413,o),\n(170,433,o),\n(170,521,cs),\n(170,591,o),\n(247,632,o),\n(322,632,cs),\n(422,632,o),\n(473,572,o),\n(483,513,c),\n(585,513,l),\n(580,603,o),\n(502,712,o),\n(329,712,c),\n(164,712,o),\n(82,618,o),\n(82,516,c),\n(82,380,o),\n(176,338,o),\n(286,317,c),\n(397,300,o),\n(504,287,o),\n(504,186,c),\n(505,114,o),\n(422,68,o),\n(334,68,c),\n(240,70,o),\n(175,129,o),\n(161,214,c),\n(58,214,l),\n(71,99,o),\n(159,-12,o),\n(334,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(370,-91,l),\n(370,791,l),\n(289,791,l),\n(289,-91,l)\n);\n}\n);\nwidth = 643;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B77E3584-C066-4B83-9C04-DBBF2850799D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(271,420,o),\n(184,434,o),\n(184,522,cs),\n(184,592,o),\n(247,626,o),\n(322,626,cs),\n(422,626,o),\n(473,573,o),\n(483,514,c),\n(585,514,l),\n(580,604,o),\n(502,713,o),\n(329,713,c),\n(164,713,o),\n(82,619,o),\n(82,517,c),\n(82,369,o),\n(176,335,o),\n(286,314,c),\n(397,297,o),\n(492,288,o),\n(492,187,c),\n(493,115,o),\n(422,78,o),\n(334,78,c),\n(240,80,o),\n(175,130,o),\n(161,215,c),\n(58,215,l),\n(71,100,o),\n(159,-11,o),\n(334,-11,c),\n(479,-11,o),\n(592,59,o),\n(592,196,c),\n(592,341,o),\n(493,377,o),\n(364,402,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(370,-91,l),\n(370,791,l),\n(289,791,l),\n(289,-91,l)\n);\n}\n);\nwidth = 643;\n}\n);\nunicode = 36;\n},\n{\nglyphname = euro;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(439,-13,o),\n(529,40,o),\n(575,121,c),\n(494,163,l),\n(460,105,o),\n(398,67,o),\n(316,67,cs),\n(172,67,o),\n(97,193,o),\n(97,356,cs),\n(97,519,o),\n(172,643,o),\n(316,643,cs),\n(398,643,o),\n(460,605,o),\n(494,547,c),\n(575,589,l),\n(529,670,o),\n(439,723,o),\n(316,723,cs),\n(96,723,o),\n(7,539,o),\n(7,355,cs),\n(7,171,o),\n(96,-13,o),\n(316,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(431,225,l),\n(451,305,l),\n(-51,305,l),\n(-71,225,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(431,370,l),\n(451,450,l),\n(-51,450,l),\n(-71,370,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8364;\n},\n{\nglyphname = sterling;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(341,0,ls),\n(463,0,o),\n(520,74,o),\n(545,158,c),\n(468,179,l),\n(453,124,o),\n(414,80,o),\n(337,80,cs),\n(150,80,l),\n(174,97,o),\n(247,167,o),\n(247,278,cs),\n(247,399,o),\n(146,440,o),\n(146,528,cs),\n(146,584,o),\n(195,632,o),\n(273,632,c),\n(351,632,o),\n(396,576,o),\n(396,519,c),\n(484,519,l),\n(484,555,o),\n(475,589,o),\n(460,615,c),\n(424,677,o),\n(352,712,o),\n(272,712,c),\n(157,712,o),\n(60,647,o),\n(60,528,cs),\n(60,413,o),\n(157,381,o),\n(157,289,cs),\n(157,192,o),\n(98,119,o),\n(45,80,c),\n(45,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(395,281,l),\n(395,361,l),\n(61,361,l),\n(61,281,l)\n);\n}\n);\nwidth = 568;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"39949623-1A73-454F-BBEA-2B76B8F5BB59\";\nname = foreground;\nwidth = 614;\n}\n);\nunicode = 163;\n},\n{\nglyphname = yen;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(345,0,l),\n(342,309,l),\n(583,700,l),\n(490,700,l),\n(299,390,l),\n(111,700,l),\n(11,700,l),\n(260,309,l),\n(257,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(513,163,l),\n(513,243,l),\n(81,243,l),\n(81,163,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(513,308,l),\n(513,388,l),\n(81,388,l),\n(81,308,l)\n);\n}\n);\nwidth = 594;\n}\n);\nunicode = 165;\n},\n{\nglyphname = plus;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,3);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(320,84,l),\n(320,512,l),\n(232,512,l),\n(232,84,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(474,258,l),\n(474,338,l),\n(77,338,l),\n(77,258,l)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A5CB3561-8809-4C40-98EF-8A07A48E9182\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(457,249,l),\n(457,347,l),\n(60,347,l),\n(60,249,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(307,512,l),\n(209,512,l),\n(209,84,l),\n(307,84,l)\n);\n}\n);\nwidth = 517;\n}\n);\nunicode = 43;\n},\n{\nglyphname = minus;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(490,255,l),\n(490,335,l),\n(61,335,l),\n(61,255,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 8722;\n},\n{\nglyphname = multiply;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(275,277,l),\n(435,118,l),\n(487,170,l),\n(327,329,l),\n(487,488,l),\n(435,540,l),\n(275,381,l),\n(116,540,l),\n(64,488,l),\n(223,329,l),\n(64,170,l),\n(116,118,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 215;\n},\n{\nglyphname = divide;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(484,220,l),\n(484,300,l),\n(66,300,l),\n(66,220,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(310,1,o),\n(338,30,o),\n(338,64,cs),\n(338,99,o),\n(310,128,o),\n(276,128,cs),\n(241,128,o),\n(212,99,o),\n(212,64,cs),\n(212,30,o),\n(241,1,o),\n(276,1,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(310,385,o),\n(338,414,o),\n(338,448,cs),\n(338,483,o),\n(310,512,o),\n(276,512,cs),\n(241,512,o),\n(212,483,o),\n(212,448,cs),\n(212,414,o),\n(241,385,o),\n(276,385,cs)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 247;\n},\n{\nglyphname = equal;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\nplace = (121,205);\ntarget = (0,3);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(463,326,l),\n(463,406,l),\n(88,406,l),\n(88,326,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(462,136,l),\n(462,216,l),\n(87,216,l),\n(87,136,l)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"FCFF93B1-7D38-4FD5-A711-74071FE2EC06\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,320,l),\n(443,418,l),\n(68,418,l),\n(68,320,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(443,134,l),\n(443,232,l),\n(68,232,l),\n(68,134,l)\n);\n}\n);\nwidth = 508;\n}\n);\nunicode = 61;\n},\n{\nglyphname = greater;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(502,249,l),\n(502,325,l),\n(48,544,l),\n(48,459,l),\n(396,287,l),\n(48,115,l),\n(48,30,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 62;\n},\n{\nglyphname = less;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(502,115,l),\n(154,287,l),\n(502,459,l),\n(502,544,l),\n(48,325,l),\n(48,249,l),\n(502,30,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 60;\n},\n{\nglyphname = asciitilde;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,218,o),\n(460,260,o),\n(477,292,c),\n(432,341,l),\n(418,325,o),\n(400,292,o),\n(354,292,cs),\n(314,292,o),\n(264,354,o),\n(199,354,cs),\n(132,354,o),\n(89,313,o),\n(73,281,c),\n(118,231,l),\n(132,248,o),\n(150,281,o),\n(194,281,cs),\n(235,281,o),\n(287,218,o),\n(363,218,cs)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 126;\n},\n{\nglyphname = asciicircum;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(332,699,l),\n(284,699,l),\n(77,419,l),\n(169,419,l),\n(308,619,l),\n(446,418,l),\n(539,418,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 94;\n},\n{\nglyphname = percent;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,0);\ntarget = (0,0);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (249,69);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (2,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (2,5);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (2,2);\ntype = Stem;\n},\n{\norigin = (2,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\nplace = (525,10);\ntarget = (0,2);\ntype = Stem;\n},\n{\nplace = (757,76);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(320,0,l),\n(613,720,l),\n(535,720,l),\n(242,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(292,391,o),\n(366,450,o),\n(366,556,cs),\n(366,659,o),\n(296,720,o),\n(214,720,c),\n(131,720,o),\n(58,658,o),\n(58,555,cs),\n(58,449,o),\n(128,391,o),\n(210,391,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(159,458,o),\n(132,507,o),\n(132,555,cs),\n(132,605,o),\n(159,652,o),\n(213,652,c),\n(265,652,o),\n(292,606,o),\n(292,556,cs),\n(292,509,o),\n(262,458,o),\n(211,458,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(729,-9,o),\n(803,50,o),\n(803,156,cs),\n(803,259,o),\n(733,320,o),\n(651,320,c),\n(568,320,o),\n(495,258,o),\n(495,155,cs),\n(495,49,o),\n(565,-9,o),\n(647,-9,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(596,58,o),\n(569,107,o),\n(569,155,cs),\n(569,205,o),\n(596,252,o),\n(650,252,c),\n(702,252,o),\n(729,206,o),\n(729,156,cs),\n(729,109,o),\n(699,58,o),\n(648,58,c)\n);\n}\n);\nwidth = 861;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B4672107-219B-492B-AE8A-C8526732ACAF\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(351,0,l),\n(644,720,l),\n(557,720,l),\n(264,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(323,391,o),\n(397,450,o),\n(397,556,cs),\n(397,659,o),\n(327,720,o),\n(245,720,c),\n(162,720,o),\n(89,658,o),\n(89,555,cs),\n(89,449,o),\n(159,391,o),\n(241,391,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(295,651,o),\n(321,605,o),\n(321,556,cs),\n(321,510,o),\n(292,460,o),\n(242,460,c),\n(191,460,o),\n(166,508,o),\n(166,555,cs),\n(166,604,o),\n(191,651,o),\n(244,651,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(759,-11,o),\n(833,48,o),\n(833,154,cs),\n(833,257,o),\n(763,318,o),\n(681,318,c),\n(598,318,o),\n(525,256,o),\n(525,153,cs),\n(525,47,o),\n(595,-11,o),\n(677,-11,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(731,249,o),\n(757,203,o),\n(757,154,cs),\n(757,108,o),\n(728,58,o),\n(678,58,c),\n(627,58,o),\n(602,106,o),\n(602,153,cs),\n(602,202,o),\n(627,249,o),\n(680,249,c)\n);\n}\n);\nwidth = 918;\n}\n);\nunicode = 37;\n},\n{\nglyphname = brevecomb_acutecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (248,201);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = brevecomb_gravecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (125,190);\nref = gravecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = brevecomb_hookabovecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(326,739,l),\n(326,767,l),\n(368,772,o),\n(404,802,o),\n(404,847,cs),\n(404,918,o),\n(335,939,o),\n(258,934,c),\n(258,881,l),\n(301,885,o),\n(344,874,o),\n(344,847,cs),\n(344,816,o),\n(307,805,o),\n(264,805,c),\n(264,739,l)\n);\n},\n{\nref = brevecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = brevecomb_tildecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (0,161);\nref = tildecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = circumflexcomb_acutecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (1,0);\nref = circumflexcomb;\n},\n{\npos = (320,98);\nref = acutecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = circumflexcomb_gravecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (255,99);\nref = gravecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = circumflexcomb_hookabovecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (68,142);\nref = hookabovecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = circumflexcomb_tildecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (-82,182);\nref = tildecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = dieresiscomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (161,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(280,581,o),\n(304,606,o),\n(304,636,cs),\n(304,666,o),\n(280,691,o),\n(250,691,cs),\n(220,691,o),\n(195,666,o),\n(195,636,cs),\n(195,606,o),\n(220,581,o),\n(250,581,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(105,581,o),\n(129,606,o),\n(129,636,cs),\n(129,666,o),\n(105,691,o),\n(75,691,cs),\n(45,691,o),\n(20,666,o),\n(20,636,cs),\n(20,606,o),\n(45,581,o),\n(75,581,cs)\n);\n}\n);\nwidth = 324;\n}\n);\nunicode = 776;\n},\n{\nglyphname = dotaccentcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (74,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(104,581,o),\n(128,606,o),\n(128,636,cs),\n(128,666,o),\n(104,691,o),\n(74,691,cs),\n(44,691,o),\n(19,666,o),\n(19,636,cs),\n(19,606,o),\n(44,581,o),\n(74,581,cs)\n);\n}\n);\nwidth = 147;\n}\n);\nunicode = 775;\n},\n{\nglyphname = gravecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (178,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(215,557,l),\n(131,712,l),\n(21,712,l),\n(143,557,l)\n);\n}\n);\nwidth = 237;\n}\n);\nunicode = 768;\n},\n{\nglyphname = acutecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (56,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(96,557,l),\n(218,712,l),\n(108,712,l),\n(24,557,l)\n);\n}\n);\nwidth = 237;\n}\n);\nunicode = 769;\n},\n{\nglyphname = hungarumlautcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (253,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(385,557,l),\n(507,712,l),\n(387,712,l),\n(303,557,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(193,557,l),\n(315,712,l),\n(195,712,l),\n(111,557,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 779;\n},\n{\nglyphname = caroncomb.alt;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(391,529,l),\n(459,712,l),\n(352,712,l),\n(322,529,l)\n);\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = circumflexcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (211,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(135,557,l),\n(213,648,l),\n(291,557,l),\n(373,557,l),\n(238,712,l),\n(188,712,l),\n(52,557,l)\n);\n}\n);\nwidth = 420;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"20458CA3-7F03-4177-ABD8-708FA8DF63BB\";\nname = \"3 Aug 21, 16:24\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 770;\n},\n{\nglyphname = caroncomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (213,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(238,557,l),\n(373,712,l),\n(291,712,l),\n(213,621,l),\n(135,712,l),\n(52,712,l),\n(188,557,l)\n);\n}\n);\nwidth = 420;\n}\n);\nunicode = 780;\n},\n{\nglyphname = brevecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (307,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,557,o),\n(457,631,o),\n(457,712,c),\n(385,712,l),\n(385,668,o),\n(357,627,o),\n(306,627,cs),\n(257,627,o),\n(228,668,o),\n(228,712,c),\n(156,712,l),\n(156,631,o),\n(211,557,o),\n(306,557,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 774;\n},\n{\nglyphname = ringcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (118,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(182,557,o),\n(219,607,o),\n(219,660,cs),\n(219,715,o),\n(182,764,o),\n(118,764,cs),\n(55,764,o),\n(18,715,o),\n(18,660,cs),\n(18,607,o),\n(55,557,o),\n(118,557,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(93,614,o),\n(74,633,o),\n(74,660,cs),\n(74,687,o),\n(93,707,o),\n(118,707,c),\n(144,707,o),\n(163,687,o),\n(163,660,cs),\n(163,633,o),\n(144,614,o),\n(118,614,cs)\n);\n}\n);\nwidth = 237;\n}\n);\nunicode = 778;\n},\n{\nglyphname = tildecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (299,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-26,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,574,o),\n(457,614,o),\n(471,643,c),\n(433,688,l),\n(422,673,o),\n(406,644,o),\n(368,644,cs),\n(334,644,o),\n(276,702,o),\n(233,702,cs),\n(179,702,o),\n(144,662,o),\n(130,633,c),\n(168,588,l),\n(179,603,o),\n(195,632,o),\n(233,632,cs),\n(267,632,o),\n(325,574,o),\n(368,574,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 771;\n},\n{\nglyphname = macroncomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (301,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(451,599,l),\n(451,673,l),\n(152,673,l),\n(152,599,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 772;\n},\n{\nglyphname = hookabovecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (292,500);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n},\n{\npos = (-27,762);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(328,557,l),\n(328,586,l),\n(371,591,o),\n(408,622,o),\n(408,668,cs),\n(408,740,o),\n(337,762,o),\n(258,757,c),\n(258,703,l),\n(302,707,o),\n(346,695,o),\n(346,668,cs),\n(346,636,o),\n(308,625,o),\n(264,625,c),\n(264,557,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 777;\n},\n{\nglyphname = commaturnedabovecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (320,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(350,555,o),\n(374,584,o),\n(374,612,cs),\n(374,638,o),\n(349,664,o),\n(322,664,cs),\n(321,664,o),\n(316,664,o),\n(314,663,c),\n(314,721,o),\n(374,733,o),\n(374,733,c),\n(374,733,o),\n(375,760,o),\n(374,760,cs),\n(305,760,o),\n(256,705,o),\n(256,625,cs),\n(256,587,o),\n(284,555,o),\n(321,555,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 786;\n},\n{\nglyphname = dotbelowcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (75,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(105,-174,o),\n(129,-149,o),\n(129,-119,cs),\n(129,-89,o),\n(105,-64,o),\n(75,-64,cs),\n(45,-64,o),\n(20,-89,o),\n(20,-119,cs),\n(20,-149,o),\n(45,-174,o),\n(75,-174,cs)\n);\n}\n);\nwidth = 149;\n}\n);\nunicode = 803;\n},\n{\nglyphname = commaaccentcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (306,-12);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(317,-284,o),\n(366,-229,o),\n(366,-149,cs),\n(366,-111,o),\n(338,-79,o),\n(301,-79,cs),\n(272,-79,o),\n(248,-108,o),\n(248,-136,cs),\n(248,-162,o),\n(273,-188,o),\n(300,-188,cs),\n(301,-188,o),\n(306,-188,o),\n(308,-187,c),\n(308,-245,o),\n(248,-257,o),\n(248,-257,c),\n(248,-257,o),\n(247,-284,o),\n(248,-284,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 806;\n},\n{\nglyphname = cedillacomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (290,2);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,-207,o),\n(398,-172,o),\n(398,-123,cs),\n(398,-66,o),\n(340,-33,o),\n(293,-46,c),\n(328,8,l),\n(266,8,l),\n(221,-63,l),\n(264,-103,l),\n(268,-98,o),\n(283,-89,o),\n(301,-89,cs),\n(329,-89,o),\n(342,-99,o),\n(342,-119,cs),\n(342,-138,o),\n(325,-148,o),\n(295,-148,cs),\n(264,-148,o),\n(242,-126,o),\n(232,-113,c),\n(195,-157,l),\n(216,-185,o),\n(256,-207,o),\n(301,-207,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 807;\n},\n{\nglyphname = ogonekcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _ogonek;\npos = (356,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(382,-230,o),\n(414,-226,o),\n(431,-215,c),\n(431,-145,l),\n(390,-166,o),\n(336,-157,o),\n(336,-101,cs),\n(336,-68,o),\n(362,-24,o),\n(401,0,c),\n(318,0,l),\n(298,-12,o),\n(260,-66,o),\n(260,-116,cs),\n(260,-173,o),\n(298,-230,o),\n(369,-230,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 808;\n},\n{\nglyphname = macronbelowcomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (315,-12);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(484,-159,l),\n(484,-85,l),\n(145,-85,l),\n(145,-159,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 817;\n},\n{\nglyphname = commaaccentcomb.loclMAH;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (310,2);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,-207,o),\n(398,-172,o),\n(398,-119,cs),\n(398,-66,o),\n(354,-41,o),\n(308,-41,cs),\n(289,-41,o),\n(277,-43,o),\n(266,-46,c),\n(279,-93,l),\n(285,-91,o),\n(293,-89,o),\n(301,-89,cs),\n(329,-89,o),\n(342,-99,o),\n(342,-118,cs),\n(342,-138,o),\n(325,-148,o),\n(300,-148,cs),\n(264,-148,o),\n(242,-126,o),\n(232,-113,c),\n(195,-157,l),\n(216,-185,o),\n(256,-207,o),\n(301,-207,cs)\n);\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = dieresis;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = dieresiscomb;\n}\n);\nwidth = 324;\n}\n);\nunicode = 168;\n},\n{\nglyphname = dotaccent;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = dotaccentcomb;\n}\n);\nwidth = 147;\n}\n);\nunicode = 729;\n},\n{\nglyphname = grave;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (-35,0);\nref = gravecomb;\nslant = (8,0);\n}\n);\nwidth = 237;\n}\n);\nunicode = 96;\n},\n{\nglyphname = acute;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = acutecomb;\n}\n);\nwidth = 237;\n}\n);\nunicode = 180;\n},\n{\nglyphname = hungarumlaut;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = hungarumlautcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 733;\n},\n{\nglyphname = circumflex;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n}\n);\nwidth = 420;\n}\n);\nunicode = 710;\n},\n{\nglyphname = caron;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = caroncomb;\n}\n);\nwidth = 420;\n}\n);\nunicode = 711;\n},\n{\nglyphname = breve;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 728;\n},\n{\nglyphname = ring;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ringcomb;\n}\n);\nwidth = 237;\n}\n);\nunicode = 730;\n},\n{\nglyphname = tilde;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (-35,0);\nref = tildecomb;\nslant = (8,0);\n}\n);\nwidth = 600;\n}\n);\nunicode = 732;\n},\n{\nglyphname = macron;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(433,640,l),\n(433,720,l),\n(103,720,l),\n(103,640,l)\n);\n}\n);\nwidth = 536;\n}\n);\nunicode = 175;\n},\n{\nglyphname = cedilla;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = cedillacomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 184;\n},\n{\nglyphname = ogonek;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ogonekcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 731;\n}\n);\ninstances = (\n{\ninstanceInterpolations = {\nmaster01 = 1;\n};\nname = Regular;\n}\n);\nkerningLTR = {\nmaster01 = {\n\"@MMK_L_A\" = {\n\"@MMK_R_V\" = -55;\n\"@MMK_R_z\" = 30;\nasterisk = -48;\nquotedbl = -54;\nquotedblright = -45;\nquoteright = -50;\nquotesingle = -54;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_A\" = -65;\nperiod = -50;\nquoteright = 30;\n};\n\"@MMK_L_H\" = {\nperiod = 0;\n};\n\"@MMK_L_I\" = {\n\"@MMK_R_T\" = 10;\n};\n\"@MMK_L_L\" = {\n\"@MMK_R_V\" = -55;\n\"@MMK_R_Y\" = -60;\nemdash = -100;\n};\n\"@MMK_L_P\" = {\ncomma = -80;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_c\" = -40;\n\"@MMK_R_f\" = -25;\n\"@MMK_R_g\" = -40;\n\"@MMK_R_id\" = 57;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_p\" = -30;\n\"@MMK_R_q\" = -40;\n\"@MMK_R_r\" = -34;\n\"@MMK_R_w\" = -20;\n\"@MMK_R_x\" = -25;\niacute = -20;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_a\" = -33;\n\"@MMK_R_o\" = -28;\ncolon = -32;\n};\n\"@MMK_L_W\" = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -22;\n};\n\"@MMK_L_Y\" = {\n\"@MMK_R_a\" = -50;\n\"@MMK_R_c\" = -50;\n\"@MMK_R_e\" = -50;\n\"@MMK_R_g\" = -54;\n\"@MMK_R_o\" = -50;\n\"@MMK_R_p\" = -20;\n\"@MMK_R_r\" = -30;\n\"@MMK_R_u\" = -30;\nhyphen = -50;\nquotedblbase = -80;\n};\n\"@MMK_L_a\" = {\n\"@MMK_R_l\" = -30;\n};\n\"@MMK_L_e\" = {\n\"@MMK_R_Y\" = -50;\n};\n\"@MMK_L_f\" = {\nbraceright = 76;\nbracketright = 71;\nparenright = 65;\nquotedblright = 54;\nquoteleft = 30;\nquoteright = 64;\n};\n\"@MMK_L_g\" = {\n\"@MMK_R_h\" = -25;\n};\n\"@MMK_L_l\" = {\n\"@MMK_R_c\" = -42;\n\"@MMK_R_w\" = 0;\n};\n\"@MMK_L_lcaron\" = {\n\"@MMK_R_l\" = 70;\n};\n\"@MMK_L_n\" = {\nperiod = -54;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_T\" = 0;\n\"@MMK_R_d\" = 17;\nT = 0;\nquoteright = -20;\n};\n\"@MMK_L_p\" = {\n\"@MMK_R_l\" = -30;\n};\n\"@MMK_L_r\" = {\ncomma = -59;\nperiod = -90;\n};\n\"@MMK_L_w\" = {\n\"@MMK_R_l\" = 0;\n};\n\"@MMK_L_y\" = {\n\"@MMK_R_l\" = -20;\ncomma = -70;\nperiod = -80;\n};\nA = {\nY = -45;\n};\nT = {\n\"@MMK_R_o\" = -55;\na = -36;\ne = -58;\no = -55;\nu = -50;\n};\nY = {\nA = -53;\n};\na = {\nw = -11;\n};\neight = {\nseven = -14;\n};\nhyphen = {\n\"@MMK_R_Y\" = -50;\n};\niacute = {\n\"@MMK_R_T\" = 40;\n};\nidieresis = {\n\"@MMK_R_T\" = 57;\n};\nigrave = {\n\"@MMK_R_T\" = -30;\n};\nimacron = {\n\"@MMK_R_T\" = 57;\n};\nitilde = {\n\"@MMK_R_T\" = 58;\n};\nnine = {\nfour = -44;\n};\no = {\nT = -55;\n};\none = {\nnine = -32;\nseven = -15;\n};\nq = {\nu = -10;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -26;\n};\nquoteleft = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_o\" = -9;\n};\nr = {\nt = 23;\nv = 29;\ny = 25;\n};\nseven = {\nfour = -38;\nsix = -48;\n};\nt = {\ny = 24;\n};\nw = {\na = -8;\n};\ny = {\nw = 35;\n};\n};\n};\nmetrics = (\n{\ntype = ascender;\n},\n{\ntype = \"cap height\";\n},\n{\ntype = \"x-height\";\n},\n{\ntype = baseline;\n},\n{\ntype = descender;\n},\n{\nname = \"Overshoot X\";\n},\n{\nname = \"Overshoot Base\";\n},\n{\nname = \"Overshoot Cap\";\n}\n);\nproperties = (\n{\nkey = designers;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Olivia King\";\n}\n);\n},\n{\nkey = copyrights;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Copyright 2023 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)\";\n}\n);\n},\n{\nkey = licenses;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"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\";\n}\n);\n},\n{\nkey = designerURL;\nvalue = \"https://www.oliviaking.com/\";\n},\n{\nkey = licenseURL;\nvalue = \"https://scripts.sil.org/OFL\";\n},\n{\nkey = manufacturerURL;\nvalue = \"https://www.oliviaking.com/\";\n},\n{\nkey = manufacturers;\nvalues = (\n{\nlanguage = dflt;\nvalue = \"Olivia King\";\n}\n);\n}\n);\nunitsPerEm = 1000;\nuserData = {\nGSDimensionPlugin.Dimensions = {\nmaster01 = {\nHH = \"80\";\nHV = \"88\";\nOH = \"80\";\nOV = \"92\";\nnV = \"84\";\nnd = \"68\";\noH = \"76\";\noV = \"86\";\n};\n};\nUFO.lib = {\ncom.defcon.sortDescriptor = (\n{\nallowPseudoUnicode = 0;\nascending = \"Latin-1\";\ntype = characterSet;\n}\n);\ncom.robofont.generateFeaturesWithFontTools = 0;\ncom.typemytype.robofont.compileSettings.autohint = 1;\ncom.typemytype.robofont.compileSettings.checkOutlines = 0;\ncom.typemytype.robofont.compileSettings.createDummyDSIG = 1;\ncom.typemytype.robofont.compileSettings.decompose = 0;\ncom.typemytype.robofont.compileSettings.generateFormat = 0;\ncom.typemytype.robofont.compileSettings.releaseMode = 0;\ncom.typemytype.robofont.guideline.magnetic.D6N96jJj7E = 5;\ncom.typemytype.robofont.guideline.magnetic.Gbo3EdxKDI = 5;\ncom.typemytype.robofont.guideline.showMeasurements.D6N96jJj7E = 0;\ncom.typemytype.robofont.guideline.showMeasurements.Gbo3EdxKDI = 0;\ncom.typemytype.robofont.italicSlantOffset = 0;\ncom.typemytype.robofont.segmentType = curve;\ncom.typemytype.robofont.shouldAddPointsInSplineConversion = 1;\ncom.typemytype.robofont.smartSets.uniqueKey = \"5067957840\";\npublic.postscriptNames = {\n};\n};\nUFOFormat = 3;\n};\nversionMajor = 1;\nversionMinor = 1;\n}\n"
  },
  {
    "path": "sources/V1.0/InclusiveSans_Italic.glyphs",
    "content": "{\n.appVersion = \"3208\";\n.formatVersion = 3;\nDisplayStrings = (\n\"\nLetter Groups\nEFHIJLTU\nEFHIJLTU\n\nAVWXZ\nAVWXZ\n\nKMNY\nKMNY\n\nCOQS\nCOQS\n\nBPRDG\nBPRDG\n\nfijltr\nfijltr\n\nkvwxyz\nkvwxyz\n\nhmnu\nhmnu\n\nceogs\nceogs\n\nabdpq\nabdpq\n\nSpacing\nHHOHHOOHOO HIHOIO\nHHOHHOOHOO HIHOIO\n\nuuonouonoo ninoioolonlniuo\nuuonouonoo ninoioolonlniuo\n\n010 080 030 020 050 060 070\n010 080 030 020 050 060 070\n\nKerning\nHHAVAHH WAFAPATAUAYALYTJLVÆ HH\nHHAVAHH WAFAPATAUAYALYTJLVÆ HH\n\nTiTíTîTïTìTTīTĩT Vă Tä Tü Tõ Tŭ Tř\"\n);\ncustomParameters = (\n{\ndisabled = 1;\nname = glyphOrder;\nvalue = (\nspace,\nexclam,\nquotesingle,\nquotedbl,\nnumbersign,\ndollar,\npercent,\nampersand,\nparenleft,\nparenright,\nasterisk,\nplus,\ncomma,\nhyphen,\nperiod,\nslash,\nzero,\none,\ntwo,\nthree,\nfour,\nfive,\nsix,\nseven,\neight,\nnine,\ncolon,\nsemicolon,\nless,\nequal,\ngreater,\nquestion,\nat,\nA,\nB,\nC,\nD,\nE,\nF,\nG,\nH,\nI,\nJ,\nK,\nL,\nM,\nN,\nO,\nP,\nQ,\nR,\nS,\nT,\nU,\nV,\nW,\nX,\nY,\nZ,\nbracketleft,\nbackslash,\nbracketright,\nasciicircum,\nunderscore,\ngrave,\na,\nb,\nc,\nd,\ne,\nf,\ng,\nh,\ni,\nj,\nk,\nl,\nm,\nn,\no,\np,\nq,\nr,\ns,\nt,\nu,\nv,\nw,\nx,\ny,\nz,\nbraceleft,\nbar,\nbraceright,\nasciitilde,\nexclamdown,\ncent,\nsterling,\ncurrency,\nyen,\nbrokenbar,\nsection,\ndieresis,\ncopyright,\nordfeminine,\nguillemetleft,\nlogicalnot,\nregistered,\nmacron,\ndegree,\nplusminus,\ntwosuperior,\nthreesuperior,\nacute,\nmu,\nparagraph,\nperiodcentered,\ncedilla,\nonesuperior,\nordmasculine,\nguillemetright,\nonequarter,\nonehalf,\nthreequarters,\nquestiondown,\nAgrave,\nAacute,\nAcircumflex,\nAtilde,\nAdieresis,\nAring,\nAE,\nCcedilla,\nEgrave,\nEacute,\nEcircumflex,\nEdieresis,\nIgrave,\nIacute,\nIcircumflex,\nIdieresis,\nEth,\nNtilde,\nOgrave,\nOacute,\nOcircumflex,\nOtilde,\nOdieresis,\nmultiply,\nOslash,\nUgrave,\nUacute,\nUcircumflex,\nUdieresis,\nYacute,\nThorn,\ngermandbls,\nagrave,\naacute,\nacircumflex,\natilde,\nadieresis,\naring,\nae,\nccedilla,\negrave,\neacute,\necircumflex,\nedieresis,\nigrave,\niacute,\nicircumflex,\nidieresis,\neth,\nntilde,\nograve,\noacute,\nocircumflex,\notilde,\nodieresis,\ndivide,\noslash,\nugrave,\nuacute,\nucircumflex,\nudieresis,\nyacute,\nthorn,\nydieresis,\ndotlessi,\ncircumflex,\ncaron,\nbreve,\ndotaccent,\nring,\nogonek,\ntilde,\nhungarumlaut,\nquoteleft,\nquoteright,\nminus,\ng.ss01,\na.ss01\n);\n},\n{\nname = \"Use Typo Metrics\";\nvalue = 1;\n},\n{\nname = fsType;\nvalue = (\n);\n}\n);\ndate = \"2023-06-07 06:02:52 +0000\";\nfamilyName = \"Inclusive Sans\";\nfeaturePrefixes = (\n{\nautomatic = 1;\ncode = \"languagesystem DFLT dflt;\nlanguagesystem DFLT MAH;\n\nlanguagesystem latn dflt;\nlanguagesystem latn AZE;\nlanguagesystem latn CRT;\nlanguagesystem latn KAZ;\nlanguagesystem latn TAT;\nlanguagesystem latn TRK;\nlanguagesystem latn ROM;\nlanguagesystem latn MOL;\nlanguagesystem latn MAH;\nlanguagesystem latn CAT;\nlanguagesystem latn NLD;\n\";\nname = Languagesystems;\n}\n);\nfeatures = (\n{\nautomatic = 1;\ncode = \"feature locl;\nfeature ordn;\nfeature case;\nfeature ss01;\n\";\ntag = aalt;\n},\n{\ncode = \"lookup ccmp_DFLT_1 {\n\tlookupflag 0;\n\tsub brevecomb acutecomb by brevecomb_acutecomb;\n\tsub brevecomb gravecomb by brevecomb_gravecomb;\n\tsub brevecomb hookabovecomb by brevecomb_hookabovecomb;\n\tsub brevecomb tildecomb by brevecomb_tildecomb;\n\tsub circumflexcomb acutecomb by circumflexcomb_acutecomb;\n\tsub circumflexcomb gravecomb by circumflexcomb_gravecomb;\n\tsub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb;\n\tsub circumflexcomb tildecomb by circumflexcomb_tildecomb;\n} ccmp_DFLT_1;\n\nlookup ccmp_Other_1 {\n\t@CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb];\n\t@CombiningNonTopAccents = [cedillacomb dotbelowcomb macronbelowcomb ogonekcomb];\n\tlookupflag UseMarkFilteringSet @CombiningTopAccents;\n\tsub i' @CombiningTopAccents by idotless;\n\tsub j' @CombiningTopAccents by jdotless;\n\tsub idotbelow' @CombiningTopAccents by idotless dotbelowcomb;\n\tsub iogonek' @CombiningTopAccents by idotless ogonekcomb;\n\tsub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb;\n\tsub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb;\n} ccmp_Other_1;\n\";\ntag = ccmp;\n},\n{\nautomatic = 1;\ncode = \"language MAH;\nlookup locl_noScript_0 {\n\tsub commaaccentcomb by commaaccentcomb.loclMAH;\n} locl_noScript_0;\n\nscript latn;\nlanguage AZE;\nlookup locl_latn_0 {\n\tsub i by idotaccent;\n} locl_latn_0;\nlanguage CRT;\nlookup locl_latn_0;\nlanguage KAZ;\nlookup locl_latn_0;\nlanguage TAT;\nlookup locl_latn_0;\nlanguage TRK;\nlookup locl_latn_0;\n\nscript latn;\nlanguage ROM;\nlookup locl_latn_1 {\n\tsub Scedilla by Scommaaccent;\n\tsub scedilla by scommaaccent;\n\tsub Tcedilla by Tcommaaccent;\n\tsub tcedilla by tcommaaccent;\n} locl_latn_1;\nlanguage MOL;\nlookup locl_latn_1;\n\nscript latn;\nlanguage MAH;\nlookup locl_latn_2 {\n\tsub Lcommaaccent by Lcommaaccent.loclMAH;\n\tsub Ncommaaccent by Ncommaaccent.loclMAH;\n\tsub lcommaaccent by lcommaaccent.loclMAH;\n\tsub ncommaaccent by ncommaaccent.loclMAH;\n} locl_latn_2;\n\nscript latn;\nlanguage CAT;\nlookup locl_latn_3 {\n\tsub l periodcentered' l by periodcentered.loclCAT;\n\tsub L periodcentered' L by periodcentered.loclCAT.case;\n} locl_latn_3;\n\nscript latn;\nlanguage NLD;\nlookup locl_latn_4 {\n\tsub iacute j' by jacute;\n\tsub Iacute J' by Jacute;\n} locl_latn_4;\n\";\ntag = locl;\n},\n{\nautomatic = 1;\ncode = \"sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\nsub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;\n\";\ntag = ordn;\n},\n{\nautomatic = 1;\ncode = \"sub periodcentered.loclCAT by periodcentered.loclCAT.case;\n\";\ntag = case;\n},\n{\nautomatic = 1;\ncode = \"sub a by a.ss01;\nsub aacute by aacute.ss01;\nsub abreve by abreve.ss01;\nsub abreveacute by abreveacute.ss01;\nsub abrevedotbelow by abrevedotbelow.ss01;\nsub abrevegrave by abrevegrave.ss01;\nsub abrevehookabove by abrevehookabove.ss01;\nsub abrevetilde by abrevetilde.ss01;\nsub acircumflex by acircumflex.ss01;\nsub acircumflexacute by acircumflexacute.ss01;\nsub acircumflexdotbelow by acircumflexdotbelow.ss01;\nsub acircumflexgrave by acircumflexgrave.ss01;\nsub acircumflexhookabove by acircumflexhookabove.ss01;\nsub acircumflextilde by acircumflextilde.ss01;\nsub adieresis by adieresis.ss01;\nsub adotbelow by adotbelow.ss01;\nsub agrave by agrave.ss01;\nsub ahookabove by ahookabove.ss01;\nsub amacron by amacron.ss01;\nsub aogonek by aogonek.ss01;\nsub aring by aring.ss01;\nsub atilde by atilde.ss01;\nsub g by g.ss01;\nsub gbreve by gbreve.ss01;\nsub gcommaaccent by gcommaaccent.ss01;\nsub gdotaccent by gdotaccent.ss01;\nsub gmacron by gmacron.ss01;\n\";\nlabels = (\n{\nlanguage = dflt;\nvalue = ss01;\n}\n);\ntag = ss01;\n}\n);\nfontMaster = (\n{\ncustomParameters = (\n{\nname = typoAscender;\nvalue = 950;\n},\n{\nname = typoDescender;\nvalue = -250;\n},\n{\nname = typoLineGap;\nvalue = 0;\n},\n{\nname = winAscent;\nvalue = 1137;\n},\n{\nname = winDescent;\nvalue = 404;\n},\n{\nname = hheaAscender;\nvalue = 950;\n},\n{\nname = hheaDescender;\nvalue = -250;\n},\n{\nname = hheaLineGap;\nvalue = 0;\n}\n);\nguides = (\n{\nangle = 262.0051;\npos = (104,0);\n}\n);\nid = master01;\nmetricValues = (\n{\npos = 720;\n},\n{\npos = 700;\n},\n{\npos = 500;\n},\n{\n},\n{\npos = -230;\n},\n{\npos = 512;\n},\n{\npos = -12;\n},\n{\npos = 712;\n},\n{\npos = 10;\n}\n);\nname = Italic;\nvisible = 1;\n}\n);\nglyphs = (\n{\nglyphname = A;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (268,0);\n},\n{\nname = ogonek;\npos = (514,0);\n},\n{\nname = top;\npos = (368,712);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(560,0,l),\n(409,700,l),\n(325,700,l),\n(476,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(61,0,l),\n(408,700,l),\n(324,700,l),\n(-23,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(447,195,l),\n(459,275,l),\n(138,275,l),\n(126,195,l)\n);\n}\n);\nwidth = 607;\n}\n);\nunicode = 65;\n},\n{\nglyphname = Aacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (275,200);\nref = acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 193;\n},\n{\nglyphname = Abreve;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (24,200);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 258;\n},\n{\nglyphname = Abreveacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (24,200);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7854;\n},\n{\nglyphname = Abrevedotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n},\n{\npos = (24,200);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7862;\n},\n{\nglyphname = Abrevegrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (24,200);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7856;\n},\n{\nglyphname = Abrevehookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (24,200);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7858;\n},\n{\nglyphname = Abrevetilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (24,200);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7860;\n},\n{\nglyphname = Acircumflex;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (120,200);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 194;\n},\n{\nglyphname = Acircumflexacute;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (119,200);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7844;\n},\n{\nglyphname = Acircumflexdotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n},\n{\npos = (120,200);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7852;\n},\n{\nglyphname = Acircumflexgrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (120,200);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7846;\n},\n{\nglyphname = Acircumflexhookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (120,200);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7848;\n},\n{\nglyphname = Acircumflextilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (120,200);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7850;\n},\n{\nglyphname = Adieresis;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (170,200);\nref = dieresiscomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 196;\n},\n{\nglyphname = Adotbelow;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7840;\n},\n{\nglyphname = Agrave;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (153,200);\nref = gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 192;\n},\n{\nglyphname = Ahookabove;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (41,212);\nref = hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7842;\n},\n{\nglyphname = Amacron;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (30,200);\nref = macroncomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 256;\n},\n{\nglyphname = Aogonek;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-07-09 23:16:33 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (193,0);\nref = ogonekcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 260;\n},\n{\nglyphname = Aring;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (213,200);\nref = ringcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 197;\n},\n{\nglyphname = Atilde;\nkernLeft = A;\nkernRight = A;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = A;\n},\n{\npos = (32,200);\nref = tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 195;\n},\n{\nglyphname = AE;\nkernLeft = A;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(63,0,l),\n(476,700,l),\n(388,700,l),\n(-25,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(393,195,l),\n(405,275,l),\n(159,275,l),\n(147,195,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(739,0,l),\n(750,80,l),\n(450,80,l),\n(484,320,l),\n(723,320,l),\n(734,400,l),\n(495,400,l),\n(526,620,l),\n(826,620,l),\n(837,700,l),\n(449,700,l),\n(351,0,l)\n);\n}\n);\nwidth = 832;\n}\n);\nunicode = 198;\n},\n{\nglyphname = B;\nkernLeft = B;\nkernRight = B;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,14);\ntarget = (1,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,0);\ntarget = (2,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (2,0);\ntarget = (0,13);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (1,10);\ntype = Stem;\n},\n{\norigin = (1,6);\ntarget = (0,3);\ntype = Stem;\n},\n{\norigin = (2,6);\ntarget = (0,9);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(319,0,ls),\n(479,0,o),\n(574,79,o),\n(592,206,cs),\n(606,309,o),\n(565,360,o),\n(475,382,c),\n(536,400,o),\n(586,444,o),\n(598,525,cs),\n(614,641,o),\n(546,701,o),\n(409,701,cs),\n(160,701,l),\n(62,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(197,335,l),\n(197,335,o),\n(376,335,o),\n(376,335,c),\n(468,335,o),\n(511,289,o),\n(500,206,cs),\n(489,126,o),\n(422,80,o),\n(330,80,cs),\n(161,80,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(237,621,l),\n(237,621,o),\n(393,621,o),\n(393,621,cs),\n(466,621,o),\n(516,591,o),\n(507,524,cs),\n(497,455,o),\n(438,415,o),\n(365,415,cs),\n(208,415,l)\n);\n}\n);\nwidth = 652;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B2778AA9-272F-47DA-B672-36E0A49462E6\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(201,608,o),\n(362,608,o),\n(362,608,c),\n(428,608,o),\n(473,575,o),\n(473,515,cs),\n(473,461,o),\n(427,419,o),\n(362,419,cs),\n(201,419,l),\n(201,608,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(95,0,l),\n(394,0,ls),\n(546,0,o),\n(621,101,o),\n(621,194,cs),\n(621,315,o),\n(554,363,o),\n(486,382,c),\n(529,387,o),\n(582,456,o),\n(582,536,cs),\n(582,620,o),\n(516,701,o),\n(379,701,cs),\n(95,701,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(201,326,o),\n(374,326,o),\n(374,326,c),\n(461,326,o),\n(506,283,o),\n(506,209,cs),\n(506,146,o),\n(459,93,o),\n(374,93,cs),\n(201,93,l),\n(201,326,l)\n);\n}\n);\nwidth = 671;\n}\n);\nunicode = 66;\n},\n{\nglyphname = C;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (331,0);\n},\n{\nname = top;\npos = (429,713);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(486,-13,o),\n(600,75,o),\n(646,198,c),\n(559,216,l),\n(524,130,o),\n(443,67,o),\n(338,67,cs),\n(194,67,o),\n(137,194,o),\n(160,357,cs),\n(182,512,o),\n(274,633,o),\n(418,633,c),\n(523,633,o),\n(586,570,o),\n(597,484,c),\n(688,502,l),\n(678,625,o),\n(588,713,o),\n(429,713,c),\n(210,713,o),\n(97,548,o),\n(70,355,cs),\n(44,171,o),\n(107,-13,o),\n(327,-13,cs)\n);\n}\n);\nwidth = 697;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B03B6E58-C7A4-4549-B5DA-7F61DFFF8AA1\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,540,o),\n(156,713,o),\n(386,713,c),\n(551,713,o),\n(653,623,o),\n(683,503,c),\n(574,481,l),\n(548,565,o),\n(477,616,o),\n(386,616,c),\n(252,616,o),\n(164,504,o),\n(164,349,c),\n(164,194,o),\n(252,86,o),\n(386,86,c),\n(477,86,o),\n(549,147,o),\n(576,223,c),\n(683,198,l),\n(648,82,o),\n(551,-12,o),\n(386,-12,c),\n(156,-12,o),\n(50,158,o),\n(50,347,c)\n);\n}\n);\nwidth = 718;\n}\n);\nunicode = 67;\n},\n{\nglyphname = Cacute;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (336,201);\nref = acutecomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 262;\n},\n{\nglyphname = Ccaron;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (179,201);\nref = caroncomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 268;\n},\n{\nglyphname = Ccedilla;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-07-09 23:16:52 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (76,-2);\nref = cedillacomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 199;\n},\n{\nglyphname = Cdotaccent;\nkernLeft = C;\nkernRight = C;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = C;\n},\n{\npos = (318,201);\nref = dotaccentcomb;\n}\n);\nwidth = 697;\n}\n);\nunicode = 266;\n},\n{\nglyphname = D;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (388,712);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(254,0,ls),\n(484,0,o),\n(611,141,o),\n(640,349,cs),\n(670,560,o),\n(582,700,o),\n(352,700,cs),\n(160,700,l),\n(62,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,620,l),\n(344,620,ls),\n(505,620,o),\n(570,507,o),\n(548,350,cs),\n(526,192,o),\n(429,80,o),\n(268,80,cs),\n(159,80,l)\n);\n}\n);\nwidth = 676;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"06695B29-B584-4CFA-B58E-873EFBF25244\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(535,700,o),\n(646,542,o),\n(646,356,cs),\n(646,178,o),\n(539,0,o),\n(308,0,cs),\n(95,0,l),\n(95,700,l),\n(305,700,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(445,91,o),\n(532,200,o),\n(532,356,cs),\n(532,504,o),\n(441,609,o),\n(308,609,cs),\n(205,609,l),\n(205,91,l),\n(308,91,ls)\n);\n}\n);\nwidth = 696;\n}\n);\nunicode = 68;\n},\n{\nglyphname = Eth;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(254,0,ls),\n(484,0,o),\n(611,141,o),\n(640,349,cs),\n(670,560,o),\n(582,700,o),\n(352,700,cs),\n(160,700,l),\n(62,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,302,l),\n(287,386,l),\n(33,386,l),\n(21,302,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,620,l),\n(344,620,ls),\n(505,620,o),\n(570,507,o),\n(548,350,cs),\n(526,192,o),\n(429,80,o),\n(268,80,cs),\n(159,80,l)\n);\n}\n);\nwidth = 676;\n}\n);\nunicode = 208;\n},\n{\nglyphname = Dcaron;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = D;\n},\n{\npos = (138,200);\nref = caroncomb;\n}\n);\nwidth = 676;\n}\n);\nunicode = 270;\n},\n{\nglyphname = Dcroat;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Eth;\n}\n);\nwidth = 676;\n}\n);\nunicode = 272;\n},\n{\nglyphname = Ddotbelow;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = D;\n},\n{\npos = (235,0);\nref = dotbelowcomb;\n}\n);\nwidth = 676;\n}\n);\nunicode = 7692;\n},\n{\nglyphname = Dmacronbelow;\nkernLeft = D;\nkernRight = D;\nlastChange = \"2023-07-09 23:16:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = D;\n},\n{\nref = macronbelowcomb;\n}\n);\nwidth = 676;\n}\n);\nunicode = 7694;\n},\n{\nglyphname = E;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (267,0);\n},\n{\nname = ogonek;\npos = (427,0);\n},\n{\nname = top;\npos = (368,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(472,0,l),\n(483,80,l),\n(161,80,l),\n(195,320,l),\n(456,320,l),\n(467,398,l),\n(206,398,l),\n(237,620,l),\n(559,620,l),\n(570,700,l),\n(160,700,l),\n(62,0,l)\n);\n}\n);\nwidth = 564;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A977A26C-359E-4C6D-9AFD-AF1AE6B4AD04\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(90,700,l),\n(546,700,l),\n(546,608,l),\n(196,608,l),\n(196,405,l),\n(485,405,l),\n(485,313,l),\n(196,313,l),\n(196,92,l),\n(546,92,l),\n(546,0,l),\n(90,0,l)\n);\n}\n);\nwidth = 596;\n}\n);\nunicode = 69;\n},\n{\nglyphname = Eacute;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (275,208);\nref = acutecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 201;\n},\n{\nglyphname = Ecaron;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (118,208);\nref = caroncomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 282;\n},\n{\nglyphname = Ecircumflex;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (120,208);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 202;\n},\n{\nglyphname = Ecircumflexacute;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (119,208);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7870;\n},\n{\nglyphname = Ecircumflexdotbelow;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n},\n{\npos = (120,208);\nref = circumflexcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7878;\n},\n{\nglyphname = Ecircumflexgrave;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (120,208);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7872;\n},\n{\nglyphname = Ecircumflexhookabove;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (120,208);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7874;\n},\n{\nglyphname = Ecircumflextilde;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (120,208);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7876;\n},\n{\nglyphname = Edieresis;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (170,208);\nref = dieresiscomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 203;\n},\n{\nglyphname = Edotaccent;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (257,208);\nref = dotaccentcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 278;\n},\n{\nglyphname = Edotbelow;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (227,0);\nref = dotbelowcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7864;\n},\n{\nglyphname = Egrave;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (153,208);\nref = gravecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 200;\n},\n{\nglyphname = Ehookabove;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (41,220);\nref = hookabovecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7866;\n},\n{\nglyphname = Emacron;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (30,208);\nref = macroncomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 274;\n},\n{\nglyphname = Eogonek;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-07-09 23:17:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (106,0);\nref = ogonekcomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 280;\n},\n{\nglyphname = Etilde;\nkernLeft = E;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = E;\n},\n{\npos = (32,208);\nref = tildecomb;\n}\n);\nwidth = 564;\n}\n);\nunicode = 7868;\n},\n{\nglyphname = F;\nkernLeft = F;\nkernRight = F;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(150,0,l),\n(195,320,l),\n(456,320,l),\n(467,400,l),\n(206,400,l),\n(237,620,l),\n(559,620,l),\n(570,700,l),\n(160,700,l),\n(62,0,l)\n);\n}\n);\nwidth = 541;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A8DBB783-FE60-44AC-AE41-AD44FD5FD283\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(95,0,l),\n(95,700,l),\n(551,700,l),\n(551,608,l),\n(201,608,l),\n(201,404,l),\n(490,404,l),\n(490,312,l),\n(201,312,l),\n(201,0,l)\n);\n}\n);\nwidth = 581;\n}\n);\nunicode = 70;\n},\n{\nglyphname = G;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (430,724);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(421,-12,o),\n(504,30,o),\n(555,107,c),\n(555,107,o),\n(553,0,o),\n(553,0,c),\n(622,0,l),\n(674,368,l),\n(427,368,l),\n(415,284,l),\n(573,284,l),\n(555,158,o),\n(440,67,o),\n(335,67,cs),\n(191,67,o),\n(137,194,o),\n(160,357,cs),\n(182,512,o),\n(274,633,o),\n(418,633,c),\n(523,633,o),\n(586,570,o),\n(597,484,c),\n(688,502,l),\n(678,625,o),\n(588,713,o),\n(429,713,c),\n(210,713,o),\n(97,548,o),\n(70,355,cs),\n(42,158,o),\n(110,-12,o),\n(337,-12,c)\n);\n}\n);\nwidth = 723;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CB3D37D9-D998-4BEF-81F7-6BF9414937DB\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(156,-12,o),\n(50,158,o),\n(50,347,c),\n(50,540,o),\n(156,713,o),\n(386,713,c),\n(551,713,o),\n(652,623,o),\n(683,503,c),\n(570,481,l),\n(548,553,o),\n(477,618,o),\n(386,618,c),\n(252,618,o),\n(165,504,o),\n(165,349,c),\n(165,194,o),\n(250,94,o),\n(391,94,c),\n(487,94,o),\n(577,179,o),\n(577,274,c),\n(419,274,l),\n(419,368,l),\n(704,368,l),\n(704,0,l),\n(608,0,l),\n(608,0,o),\n(608,143,o),\n(608,143,c),\n(583,27,o),\n(467,-12,o),\n(383,-12,c)\n);\n}\n);\nwidth = 768;\n}\n);\nunicode = 71;\n},\n{\nglyphname = Gbreve;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (86,212);\nref = brevecomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 286;\n},\n{\nglyphname = Gcommaaccent;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-07-09 23:17:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (48,0);\nref = commaaccentcomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 290;\n},\n{\nglyphname = Gdotaccent;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (319,212);\nref = dotaccentcomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 288;\n},\n{\nglyphname = Gmacron;\nkernLeft = G;\nkernRight = G;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = G;\n},\n{\npos = (92,212);\nref = macroncomb;\n}\n);\nwidth = 723;\n}\n);\nunicode = 7712;\n},\n{\nglyphname = H;\nkernLeft = H;\nkernRight = H;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,4);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,0,l),\n(193,324,l),\n(527,324,l),\n(482,0,l),\n(570,0,l),\n(668,700,l),\n(580,700,l),\n(539,404,l),\n(205,404,l),\n(246,700,l),\n(158,700,l),\n(60,0,l)\n);\n}\n);\nwidth = 700;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"767EE966-09EE-4F15-A2D2-031D2049D6EC\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(534,0,l),\n(640,0,l),\n(640,700,l),\n(534,700,l),\n(534,404,l),\n(196,404,l),\n(196,700,l),\n(90,700,l),\n(90,0,l),\n(196,0,l),\n(196,312,l),\n(534,312,l)\n);\n}\n);\nwidth = 730;\n}\n);\nunicode = 72;\n},\n{\nglyphname = Hbar;\nkernLeft = H;\nkernRight = H;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(693,492,l),\n(703,562,l),\n(88,562,l),\n(78,492,l)\n);\n},\n{\npos = (2,0);\nref = H;\n}\n);\nwidth = 700;\n}\n);\nunicode = 294;\n},\n{\nglyphname = I;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (303,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,6);\ntarget = (0,7);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(366,0,l),\n(377,76,l),\n(258,76,l),\n(335,624,l),\n(454,624,l),\n(464,700,l),\n(138,700,l),\n(128,624,l),\n(247,624,l),\n(169,74,l),\n(50,74,l),\n(40,0,l)\n);\n}\n);\nwidth = 476;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7531A638-AF93-42CE-98F8-0983E097DA89\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(416,94,l),\n(306,94,l),\n(306,608,l),\n(416,608,l),\n(416,700,l),\n(90,700,l),\n(90,608,l),\n(200,608,l),\n(200,92,l),\n(90,92,l),\n(90,0,l),\n(416,0,l)\n);\n}\n);\nwidth = 506;\n}\n);\nunicode = 73;\n},\n{\nglyphname = IJ;\nkernLeft = I;\nkernRight = J;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (910,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (476,0);\nref = J;\n}\n);\nwidth = 971;\n}\n);\nunicode = 306;\n},\n{\nglyphname = Iacute;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (210,200);\nref = acutecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 205;\n},\n{\nglyphname = Icircumflex;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (55,200);\nref = circumflexcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 206;\n},\n{\nglyphname = Idieresis;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (105,200);\nref = dieresiscomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 207;\n},\n{\nglyphname = Idotaccent;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (192,200);\nref = dotaccentcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 304;\n},\n{\nglyphname = Idotbelow;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (163,0);\nref = dotbelowcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 7882;\n},\n{\nglyphname = Igrave;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (88,200);\nref = gravecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 204;\n},\n{\nglyphname = Ihookabove;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-24,212);\nref = hookabovecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 7880;\n},\n{\nglyphname = Imacron;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-35,200);\nref = macroncomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 298;\n},\n{\nglyphname = Iogonek;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-07-09 23:17:42 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-116,0);\nref = ogonekcomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 302;\n},\n{\nglyphname = Itilde;\nkernLeft = I;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = I;\n},\n{\npos = (-33,200);\nref = tildecomb;\n}\n);\nwidth = 476;\n}\n);\nunicode = 296;\n},\n{\nglyphname = J;\nkernLeft = J;\nkernRight = J;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (434,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(320,-12,o),\n(388,70,o),\n(412,241,cs),\n(476,700,l),\n(388,700,l),\n(324,240,ls),\n(309,133,o),\n(273,72,o),\n(182,72,c),\n(117,72,o),\n(90,120,o),\n(87,200,c),\n(-1,173,l),\n(1,56,o),\n(60,-12,o),\n(174,-12,c)\n);\n}\n);\nwidth = 495;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7D5A962D-9C0D-4DF1-88D2-B6BD600C45BA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(126,118,o),\n(160,85,o),\n(214,86,c),\n(307,86,o),\n(327,162,o),\n(327,229,cs),\n(327,700,l),\n(433,700,l),\n(433,230,ls),\n(433,134,o),\n(410,-12,o),\n(218,-12,c),\n(113,-12,o),\n(29,48,o),\n(10,164,c),\n(109,197,l)\n);\n}\n);\nwidth = 513;\n}\n);\nunicode = 74;\n},\n{\nglyphname = Jacute;\nkernLeft = J;\nkernRight = J;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = J;\n},\n{\npos = (341,208);\nref = acutecomb;\n}\n);\nwidth = 495;\n}\n);\n},\n{\nglyphname = K;\nkernLeft = K;\nkernRight = K;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,10);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,0,l),\n(182,242,l),\n(284,343,l),\n(453,0,l),\n(565,0,l),\n(354,404,l),\n(645,700,l),\n(538,700,l),\n(199,361,l),\n(246,700,l),\n(158,700,l),\n(60,0,l)\n);\n}\n);\nwidth = 615;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"08AA5D7D-8610-445E-8CED-4DCF5FBF5B32\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(94,0,l),\n(200,0,l),\n(200,248,l),\n(278,333,l),\n(515,0,l),\n(645,0,l),\n(349,408,l),\n(621,700,l),\n(491,700,l),\n(200,381,l),\n(200,700,l),\n(94,700,l)\n);\n}\n);\nwidth = 655;\n}\n);\nunicode = 75;\n},\n{\nglyphname = Kcommaaccent;\nkernLeft = K;\nkernRight = K;\nlastChange = \"2023-07-09 23:17:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = K;\n},\n{\nref = commaaccentcomb;\n}\n);\nwidth = 615;\n}\n);\nunicode = 310;\n},\n{\nglyphname = L;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (204,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,5);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(471,0,l),\n(482,80,l),\n(159,80,l),\n(246,700,l),\n(158,700,l),\n(60,0,l)\n);\n}\n);\nwidth = 524;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"709592C3-DB4C-47AA-8876-5A583F256C89\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(513,96,l),\n(513,0,l),\n(90,0,l),\n(90,700,l),\n(196,700,l),\n(196,96,l)\n);\n}\n);\nwidth = 528;\n}\n);\nunicode = 76;\n},\n{\nglyphname = Lacute;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (111,200);\nref = acutecomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 313;\n},\n{\nglyphname = Lcaron;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (-46,0);\nref = caroncomb.alt;\n}\n);\nwidth = 524;\n}\n);\nunicode = 317;\n},\n{\nglyphname = Lcommaaccent;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\nref = commaaccentcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 315;\n},\n{\nglyphname = Ldotbelow;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (220,0);\nref = dotbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7734;\n},\n{\nglyphname = Lmacronbelow;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:17:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\npos = (-19,0);\nref = macronbelowcomb;\n}\n);\nwidth = 524;\n}\n);\nunicode = 7738;\n},\n{\nglyphname = Lslash;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (204,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,5);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(471,0,l),\n(482,80,l),\n(159,80,l),\n(246,700,l),\n(158,700,l),\n(60,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(357,398,l),\n(331,462,l),\n(-9,294,l),\n(16,229,l)\n);\n}\n);\nwidth = 524;\n}\n);\nunicode = 321;\n},\n{\nglyphname = M;\nkernLeft = M;\nkernRight = M;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,11);\ntype = Stem;\n},\n{\norigin = (0,12);\ntarget = (0,0);\ntype = Stem;\n},\n{\nplace = (637,53);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,0,l),\n(227,562,l),\n(363,62,l),\n(458,62,l),\n(729,562,l),\n(650,0,l),\n(738,0,l),\n(836,700,l),\n(714,700,l),\n(422,164,l),\n(280,700,l),\n(158,700,l),\n(60,0,l)\n);\n}\n);\nwidth = 868;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CA1B1FD6-294F-47BB-99AD-78D1808B8BBA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,0,l),\n(200,538,l),\n(368,137,l),\n(481,137,l),\n(649,535,l),\n(649,0,l),\n(755,0,l),\n(755,700,l),\n(607,700,l),\n(426,268,l),\n(243,700,l),\n(94,700,l),\n(94,0,l)\n);\n}\n);\nwidth = 849;\n}\n);\nunicode = 77;\n},\n{\nglyphname = N;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (332,0);\n},\n{\nname = top;\npos = (428,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,6);\ntarget = (0,3);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,0,l),\n(229,578,l),\n(468,0,l),\n(583,0,l),\n(681,700,l),\n(593,700,l),\n(513,126,l),\n(286,700,l),\n(158,700,l),\n(60,0,l)\n);\n}\n);\nwidth = 713;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"0588BE4C-E1DC-4D10-B2ED-A5B0C3E90302\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(200,0,l),\n(200,542,l),\n(502,0,l),\n(635,0,l),\n(635,700,l),\n(529,700,l),\n(529,158,l),\n(240,700,l),\n(94,700,l),\n(94,0,l)\n);\n}\n);\nwidth = 729;\n}\n);\nunicode = 78;\n},\n{\nglyphname = Nacute;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (335,200);\nref = acutecomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 323;\n},\n{\nglyphname = Ncaron;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (178,200);\nref = caroncomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 327;\n},\n{\nglyphname = Ncommaaccent;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (63,12);\nref = commaaccentcomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 325;\n},\n{\nglyphname = Ndotbelow;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:18:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (292,0);\nref = dotbelowcomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 7750;\n},\n{\nglyphname = Nmacronbelow;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (54,12);\nref = macronbelowcomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 7752;\n},\n{\nglyphname = Ntilde;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (92,200);\nref = tildecomb;\n}\n);\nwidth = 713;\n}\n);\nunicode = 209;\n},\n{\nglyphname = Eng;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,7);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,9);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(509,-188,o),\n(564,-137,o),\n(577,-44,cs),\n(681,700,l),\n(593,700,l),\n(522,193,l),\n(286,700,l),\n(158,700,l),\n(60,0,l),\n(148,0,l),\n(229,578,l),\n(499,26,l),\n(489,-43,ls),\n(481,-97,o),\n(451,-116,o),\n(402,-116,cs),\n(389,-116,o),\n(371,-115,o),\n(355,-112,c),\n(346,-180,l),\n(362,-185,o),\n(384,-188,o),\n(400,-188,cs)\n);\n}\n);\nwidth = 713;\n}\n);\nunicode = 330;\n},\n{\nglyphname = O;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (438,721);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(559,-11,o),\n(676,158,o),\n(703,351,cs),\n(730,544,o),\n(661,713,o),\n(437,713,cs),\n(213,713,o),\n(96,544,o),\n(69,351,cs),\n(42,158,o),\n(111,-11,o),\n(335,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(200,69,o),\n(139,196,o),\n(161,351,cs),\n(183,506,o),\n(279,633,o),\n(426,633,cs),\n(583,633,o),\n(633,506,o),\n(611,351,cs),\n(589,196,o),\n(504,69,o),\n(347,69,cs)\n);\n}\n);\nwidth = 744;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"1E35F290-6AA7-4BE9-AB09-67F845E701DA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(155,-13,o),\n(50,171,o),\n(50,355,cs),\n(50,548,o),\n(156,713,o),\n(386,713,c),\n(616,713,o),\n(722,548,o),\n(722,355,cs),\n(722,171,o),\n(617,-13,o),\n(386,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(252,617,o),\n(162,512,o),\n(162,357,cs),\n(162,194,o),\n(248,83,o),\n(386,83,c),\n(524,83,o),\n(610,194,o),\n(610,357,cs),\n(610,512,o),\n(520,617,o),\n(386,617,c)\n);\n}\n);\nwidth = 772;\n}\n);\nunicode = 79;\n},\n{\nglyphname = Oacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (345,209);\nref = acutecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 211;\n},\n{\nglyphname = Ocircumflex;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (190,209);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 212;\n},\n{\nglyphname = Ocircumflexacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (189,209);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7888;\n},\n{\nglyphname = Ocircumflexdotbelow;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (298,0);\nref = dotbelowcomb;\n},\n{\npos = (190,209);\nref = circumflexcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7896;\n},\n{\nglyphname = Ocircumflexgrave;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (190,209);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7890;\n},\n{\nglyphname = Ocircumflexhookabove;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (190,209);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7892;\n},\n{\nglyphname = Ocircumflextilde;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (190,209);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7894;\n},\n{\nglyphname = Odieresis;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (240,209);\nref = dieresiscomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 214;\n},\n{\nglyphname = Odotbelow;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (298,0);\nref = dotbelowcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7884;\n},\n{\nglyphname = Ograve;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (223,209);\nref = gravecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 210;\n},\n{\nglyphname = Ohookabove;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (111,221);\nref = hookabovecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 7886;\n},\n{\nglyphname = Ohorn;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 12:56:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(688,641,o),\n(712,762,o),\n(701,824,c),\n(613,818,l),\n(619,774,o),\n(613,709,o),\n(535,707,cs),\n(463,704,o),\n(448,713,o),\n(372,713,c),\n(396,674,l),\n(427,674,o),\n(427,641,o),\n(553,641,cs)\n);\n},\n{\npos = (-71,0);\nref = O;\n}\n);\nwidth = 600;\n}\n);\nunicode = 416;\n},\n{\nglyphname = Ohornacute;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (274,209);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7898;\n},\n{\nglyphname = Ohorndotbelow;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-07-09 23:18:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (228,0);\nref = dotbelowcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7906;\n},\n{\nglyphname = Ohorngrave;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (152,209);\nref = gravecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7900;\n},\n{\nglyphname = Ohornhookabove;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (40,221);\nref = hookabovecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7902;\n},\n{\nglyphname = Ohorntilde;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Ohorn;\n},\n{\npos = (31,209);\nref = tildecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7904;\n},\n{\nglyphname = Ohungarumlaut;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (148,209);\nref = hungarumlautcomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 336;\n},\n{\nglyphname = Omacron;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (100,209);\nref = macroncomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 332;\n},\n{\nglyphname = Oslash;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(745,688,l),\n(694,734,l),\n(20,12,l),\n(67,-36,l)\n);\n},\n{\nref = O;\n}\n);\nwidth = 744;\n}\n);\nunicode = 216;\n},\n{\nglyphname = Otilde;\nkernLeft = O;\nkernRight = O;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = O;\n},\n{\npos = (102,209);\nref = tildecomb;\n}\n);\nwidth = 744;\n}\n);\nunicode = 213;\n},\n{\nglyphname = OE;\nkernLeft = O;\nkernRight = E;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(554,-11,o),\n(666,158,o),\n(693,351,cs),\n(720,544,o),\n(656,713,o),\n(432,713,cs),\n(213,713,o),\n(96,544,o),\n(69,351,cs),\n(42,158,o),\n(106,-11,o),\n(330,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(195,69,o),\n(139,196,o),\n(161,351,cs),\n(183,506,o),\n(274,633,o),\n(421,633,cs),\n(578,633,o),\n(623,506,o),\n(601,351,cs),\n(579,196,o),\n(499,69,o),\n(342,69,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(976,0,l),\n(987,80,l),\n(653,80,l),\n(687,320,l),\n(960,320,l),\n(971,400,l),\n(698,400,l),\n(729,620,l),\n(1063,620,l),\n(1074,700,l),\n(652,700,l),\n(554,0,l)\n);\n}\n);\nwidth = 1069;\n}\n);\nunicode = 338;\n},\n{\nglyphname = P;\nkernLeft = P;\nkernRight = P;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,0);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (1,8);\ntype = Stem;\n},\n{\norigin = (1,4);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(150,-1,l),\n(185,252,l),\n(344,252,l),\n(485,252,o),\n(580,342,o),\n(598,471,cs),\n(618,615,o),\n(539,701,o),\n(409,701,cs),\n(158,701,l),\n(60,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,621,l),\n(396,621,ls),\n(469,621,o),\n(522,573,o),\n(508,473,cs),\n(495,376,o),\n(429,332,o),\n(355,332,cs),\n(195,332,l)\n);\n}\n);\nwidth = 602;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7FCCACBF-61D8-41EB-96D9-CCFCE935C285\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(335,614,ls),\n(408,614,o),\n(463,573,o),\n(463,473,cs),\n(463,376,o),\n(408,343,o),\n(334,343,cs),\n(200,343,l),\n(200,614,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(491,252,o),\n(573,342,o),\n(573,471,cs),\n(573,615,o),\n(482,701,o),\n(352,701,cs),\n(94,701,l),\n(94,-1,l),\n(202,-1,l),\n(202,252,l),\n(350,252,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 80;\n},\n{\nglyphname = Thorn;\nkernLeft = P;\nkernRight = P;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,0);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (1,8);\ntype = Stem;\n},\n{\norigin = (1,4);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(150,-1,l),\n(173,164,l),\n(295,164,l),\n(447,164,o),\n(528,234,o),\n(545,358,cs),\n(563,487,o),\n(502,553,o),\n(352,553,cs),\n(138,553,l),\n(60,-1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(214,473,l),\n(338,473,ls),\n(423,473,o),\n(467,445,o),\n(455,360,cs),\n(442,263,o),\n(391,244,o),\n(305,244,cs),\n(182,244,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(213,464,l),\n(246,700,l),\n(158,700,l),\n(125,464,l)\n);\n}\n);\nwidth = 565;\n}\n);\nunicode = 222;\n},\n{\nglyphname = Q;\nkernLeft = Q;\nkernRight = Q;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(559,-11,o),\n(676,158,o),\n(703,351,cs),\n(730,544,o),\n(661,713,o),\n(437,713,cs),\n(213,713,o),\n(96,544,o),\n(69,351,cs),\n(42,158,o),\n(111,-11,o),\n(335,-11,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(672,37,l),\n(494,264,l),\n(433,217,l),\n(432,216,o),\n(610,-8,o),\n(609,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(190,69,o),\n(139,196,o),\n(161,351,cs),\n(183,506,o),\n(269,633,o),\n(426,633,cs),\n(583,633,o),\n(633,506,o),\n(611,351,cs),\n(589,196,o),\n(504,69,o),\n(347,69,cs)\n);\n}\n);\nwidth = 752;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"EFBC5A6F-D367-4A7A-A5FC-DD2D16B712CA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,270,l),\n(486,340,l),\n(758,54,l),\n(681,-12,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(155,-13,o),\n(50,171,o),\n(50,355,cs),\n(50,548,o),\n(156,713,o),\n(386,713,c),\n(616,713,o),\n(722,548,o),\n(722,355,cs),\n(722,171,o),\n(617,-13,o),\n(386,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(252,617,o),\n(162,512,o),\n(162,357,cs),\n(162,194,o),\n(248,83,o),\n(386,83,c),\n(524,83,o),\n(610,194,o),\n(610,357,cs),\n(610,512,o),\n(520,617,o),\n(386,617,c)\n);\n}\n);\nwidth = 817;\n}\n);\nunicode = 81;\n},\n{\nglyphname = R;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (375,720);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (1,0);\ntype = Stem;\n},\n{\norigin = (0,13);\ntarget = (1,8);\ntype = Stem;\n},\n{\norigin = (1,4);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,13);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(150,0,l),\n(191,292,l),\n(342,292,l),\n(465,0,l),\n(569,0,l),\n(434,306,l),\n(533,340,o),\n(589,421,o),\n(600,498,cs),\n(613,588,o),\n(578,700,o),\n(411,700,cs),\n(158,700,l),\n(60,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,620,l),\n(401,620,ls),\n(475,620,o),\n(519,561,o),\n(510,498,c),\n(500,427,o),\n(438,372,o),\n(365,372,cs),\n(200,372,l)\n);\n}\n);\nwidth = 646;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"AC853CD9-4D5C-4A9A-82EA-746798F3E6E3\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(346,606,ls),\n(420,606,o),\n(463,561,o),\n(463,498,c),\n(463,427,o),\n(418,386,o),\n(345,386,cs),\n(200,386,l),\n(200,606,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(487,0,l),\n(612,0,l),\n(434,306,l),\n(528,340,o),\n(573,421,o),\n(573,498,cs),\n(573,588,o),\n(523,700,o),\n(356,700,cs),\n(94,700,l),\n(94,0,l),\n(202,0,l),\n(202,292,l),\n(323,292,l)\n);\n}\n);\nwidth = 652;\n}\n);\nunicode = 82;\n},\n{\nglyphname = Racute;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\npos = (282,208);\nref = acutecomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 340;\n},\n{\nglyphname = Rcaron;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\npos = (125,208);\nref = caroncomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 344;\n},\n{\nglyphname = Rcommaaccent;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-07-09 23:18:48 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\nref = commaaccentcomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 342;\n},\n{\nglyphname = Rmacronbelow;\nkernLeft = R;\nkernRight = R;\nlastChange = \"2023-07-09 23:18:41 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = R;\n},\n{\npos = (27,0);\nref = macronbelowcomb;\n}\n);\nwidth = 646;\n}\n);\nunicode = 7774;\n},\n{\nglyphname = S;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (279,-12);\n},\n{\nname = top;\npos = (380,720);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,31);\ntarget = (0,24);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,15);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,18);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(424,-12,o),\n(537,58,o),\n(556,195,c),\n(594,462,o),\n(174,336,o),\n(200,521,cs),\n(210,591,o),\n(285,632,o),\n(360,632,cs),\n(460,632,o),\n(499,572,o),\n(501,513,c),\n(594,513,l),\n(602,603,o),\n(531,712,o),\n(378,712,c),\n(213,712,o),\n(126,618,o),\n(111,516,c),\n(73,240,o),\n(494,375,o),\n(467,186,c),\n(458,114,o),\n(378,68,o),\n(290,68,c),\n(197,70,o),\n(144,129,o),\n(142,214,c),\n(45,214,l),\n(42,99,o),\n(104,-12,o),\n(279,-12,c)\n);\n}\n);\nwidth = 621;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"917E4443-A1CA-4121-BF2B-9D5AF53FD226\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(271,419,o),\n(184,433,o),\n(184,521,cs),\n(184,591,o),\n(247,623,o),\n(322,623,cs),\n(422,623,o),\n(473,572,o),\n(483,513,c),\n(585,513,l),\n(580,603,o),\n(502,712,o),\n(329,712,c),\n(164,712,o),\n(82,618,o),\n(82,516,c),\n(82,368,o),\n(176,334,o),\n(286,313,c),\n(397,296,o),\n(492,287,o),\n(492,186,c),\n(493,114,o),\n(422,79,o),\n(334,79,c),\n(240,81,o),\n(175,129,o),\n(161,214,c),\n(58,214,l),\n(71,99,o),\n(159,-12,o),\n(334,-12,c),\n(479,-12,o),\n(592,58,o),\n(592,195,c),\n(592,340,o),\n(493,376,o),\n(364,401,c)\n);\n}\n);\nwidth = 643;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"C07C9857-C18C-48E6-9123-EFA8357277D3\";\nname = \"8 Jul 21, 13:25\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(271,419,o),\n(184,433,o),\n(184,521,cs),\n(184,591,o),\n(247,623,o),\n(322,623,cs),\n(422,623,o),\n(473,572,o),\n(483,513,c),\n(585,513,l),\n(580,603,o),\n(502,712,o),\n(329,712,c),\n(164,712,o),\n(82,618,o),\n(82,516,c),\n(82,368,o),\n(176,334,o),\n(286,313,c),\n(397,296,o),\n(492,287,o),\n(492,186,c),\n(493,114,o),\n(422,79,o),\n(334,79,c),\n(240,81,o),\n(175,129,o),\n(161,214,c),\n(58,214,l),\n(71,99,o),\n(159,-12,o),\n(334,-12,c),\n(479,-12,o),\n(592,58,o),\n(592,195,c),\n(592,340,o),\n(493,376,o),\n(364,401,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(271,419,o),\n(184,433,o),\n(184,521,cs),\n(184,591,o),\n(247,623,o),\n(322,623,cs),\n(422,623,o),\n(473,572,o),\n(483,513,c),\n(585,513,l),\n(580,603,o),\n(502,712,o),\n(329,712,c),\n(164,712,o),\n(82,618,o),\n(82,516,c),\n(82,368,o),\n(176,334,o),\n(286,313,c),\n(397,296,o),\n(492,287,o),\n(492,186,c),\n(493,114,o),\n(422,79,o),\n(334,79,c),\n(240,81,o),\n(175,129,o),\n(161,214,c),\n(58,214,l),\n(71,99,o),\n(159,-12,o),\n(334,-12,c),\n(479,-12,o),\n(592,58,o),\n(592,195,c),\n(592,340,o),\n(493,376,o),\n(364,401,c)\n);\n}\n);\nwidth = 643;\n},\n{\nanchors = (\n{\nname = top;\npos = (311,720);\n}\n);\nassociatedMasterId = master01;\nhints = (\n{\nhorizontal = 1;\norigin = (0,31);\ntarget = (0,24);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,15);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,34);\ntype = Stem;\n}\n);\nlayerId = \"AA6848CB-AEE8-43E1-A86C-A0496DF06434\";\nname = \"1 Oct 21, 07:21\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(253,413,o),\n(162,433,o),\n(162,521,cs),\n(162,591,o),\n(231,632,o),\n(306,632,cs),\n(406,632,o),\n(451,572,o),\n(461,513,c),\n(557,513,l),\n(552,603,o),\n(486,712,o),\n(313,712,c),\n(148,712,o),\n(74,618,o),\n(74,516,c),\n(74,380,o),\n(168,338,o),\n(268,317,c),\n(379,291,o),\n(476,287,o),\n(476,186,c),\n(477,114,o),\n(404,68,o),\n(316,68,c),\n(222,70,o),\n(161,129,o),\n(147,214,c),\n(50,214,l),\n(63,99,o),\n(141,-12,o),\n(316,-12,c),\n(461,-12,o),\n(564,58,o),\n(564,195,c),\n(564,340,o),\n(465,370,o),\n(346,395,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(253,413,o),\n(162,433,o),\n(162,521,cs),\n(162,591,o),\n(231,632,o),\n(306,632,cs),\n(406,632,o),\n(451,572,o),\n(461,513,c),\n(557,513,l),\n(552,603,o),\n(486,712,o),\n(313,712,c),\n(148,712,o),\n(74,618,o),\n(74,516,c),\n(74,380,o),\n(168,338,o),\n(268,317,c),\n(379,291,o),\n(476,287,o),\n(476,186,c),\n(477,114,o),\n(404,68,o),\n(316,68,c),\n(222,70,o),\n(161,129,o),\n(147,214,c),\n(50,214,l),\n(63,99,o),\n(141,-12,o),\n(316,-12,c),\n(461,-12,o),\n(564,58,o),\n(564,195,c),\n(564,340,o),\n(465,370,o),\n(346,395,c)\n);\n}\n);\nvisible = 1;\nwidth = 621;\n}\n);\nunicode = 83;\n},\n{\nglyphname = Sacute;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (287,208);\nref = acutecomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 346;\n},\n{\nglyphname = Scaron;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (130,208);\nref = caroncomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 352;\n},\n{\nglyphname = Scedilla;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (24,-14);\nref = cedillacomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 350;\n},\n{\nglyphname = Scommaaccent;\nkernLeft = S;\nkernRight = S;\nlastChange = \"2023-07-09 23:18:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = S;\n},\n{\npos = (10,0);\nref = commaaccentcomb;\n}\n);\nwidth = 621;\n}\n);\nunicode = 536;\n},\n{\nglyphname = Germandbls;\nkernLeft = B;\nkernRight = B;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(482,-12,o),\n(603,69,o),\n(621,199,cs),\n(635,300,o),\n(557,382,o),\n(432,382,c),\n(622,600,l),\n(606,662,o),\n(518,712,o),\n(410,712,cs),\n(246,712,o),\n(147,605,o),\n(120,416,c),\n(62,0,l),\n(150,0,l),\n(207,407,ls),\n(229,563,o),\n(309,631,o),\n(398,631,cs),\n(461,631,o),\n(501,612,o),\n(507,592,c),\n(327,382,l),\n(317,313,l),\n(411,313,ls),\n(471,313,o),\n(546,275,o),\n(535,203,cs),\n(525,128,o),\n(459,68,o),\n(380,68,cs),\n(340,68,o),\n(306,78,o),\n(281,98,c),\n(224,30,l),\n(262,2,o),\n(312,-12,o),\n(368,-12,cs)\n);\n}\n);\nwidth = 682;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"F21A90D2-DE7B-4C42-8F88-BC0E7842DBD9\";\nname = \"7 Jun 23, 15:00\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(97,0,l),\n(97,416,l),\n(97,601,o),\n(174,700,o),\n(329,700,cs),\n(437,700,o),\n(530,630,o),\n(555,568,c),\n(404,407,l),\n(559,407,o),\n(636,315,o),\n(636,199,cs),\n(636,60,o),\n(524,-12,o),\n(395,-12,cs),\n(339,-12,o),\n(287,2,o),\n(245,30,c),\n(292,96,l),\n(320,76,o),\n(356,68,o),\n(396,68,cs),\n(485,68,o),\n(550,119,o),\n(550,203,cs),\n(550,300,o),\n(480,338,o),\n(381,338,cs),\n(290,338,l),\n(290,407,l),\n(441,560,l),\n(432,580,o),\n(393,615,o),\n(330,615,cs),\n(218,615,o),\n(185,521,o),\n(185,407,cs)\n);\n}\n);\nwidth = 690;\n}\n);\nunicode = 7838;\n},\n{\nglyphname = T;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-08-03 13:01:11 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (212,0);\n},\n{\nname = top;\npos = (313,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,4);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,7);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(258,0,l),\n(345,620,l),\n(535,620,l),\n(546,700,l),\n(78,700,l),\n(67,620,l),\n(257,620,l),\n(170,0,l)\n);\n}\n);\nwidth = 499;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B6AB5140-E37C-42F2-A30F-777986DD981C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(318,608,l),\n(517,608,l),\n(517,700,l),\n(5,700,l),\n(5,608,l),\n(212,608,l),\n(212,0,l),\n(318,0,l)\n);\n}\n);\nwidth = 522;\n}\n);\nunicode = 84;\n},\n{\nglyphname = Tcaron;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (63,200);\nref = caroncomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 356;\n},\n{\nglyphname = Tcedilla;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-07-09 23:28:14 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (-43,-2);\nref = cedillacomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 354;\n},\n{\nglyphname = Tcommaaccent;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (-57,12);\nref = commaaccentcomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 538;\n},\n{\nglyphname = Tdotbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-07-09 23:28:14 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (172,0);\nref = dotbelowcomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 7788;\n},\n{\nglyphname = Tmacronbelow;\nkernLeft = T;\nkernRight = T;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = T;\n},\n{\npos = (-66,12);\nref = macronbelowcomb;\n}\n);\nwidth = 499;\n}\n);\nunicode = 7790;\n},\n{\nglyphname = U;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (406,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (0,11);\ntype = Stem;\n},\n{\nplace = (472,78);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(470,-12,o),\n(571,98,o),\n(596,275,cs),\n(655,701,l),\n(567,701,l),\n(508,275,ls),\n(488,139,o),\n(405,73,o),\n(312,73,cs),\n(215,73,o),\n(154,139,o),\n(174,275,cs),\n(233,701,l),\n(145,701,l),\n(86,275,ls),\n(61,98,o),\n(141,-12,o),\n(304,-12,cs)\n);\n}\n);\nwidth = 674;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"5FB1FA1A-EB05-444A-B8AE-D1ED2DC196B0\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(258,91,o),\n(181,142,o),\n(181,278,cs),\n(181,701,l),\n(70,701,l),\n(70,278,ls),\n(70,101,o),\n(156,-12,o),\n(356,-12,c),\n(523,-12,o),\n(620,102,o),\n(620,280,cs),\n(620,700,l),\n(507,700,l),\n(507,279,ls),\n(507,142,o),\n(447,91,o),\n(352,91,c)\n);\n}\n);\nwidth = 690;\n}\n);\nunicode = 85;\n},\n{\nglyphname = Uacute;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (313,200);\nref = acutecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 218;\n},\n{\nglyphname = Ubreve;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (62,200);\nref = brevecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 364;\n},\n{\nglyphname = Ucircumflex;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (158,200);\nref = circumflexcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 219;\n},\n{\nglyphname = Udieresis;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (208,200);\nref = dieresiscomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 220;\n},\n{\nglyphname = Udotbelow;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (265,0);\nref = dotbelowcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7908;\n},\n{\nglyphname = Ugrave;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (191,200);\nref = gravecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 217;\n},\n{\nglyphname = Uhookabove;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (79,212);\nref = hookabovecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7910;\n},\n{\nglyphname = Uhorn;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(780,634,o),\n(804,755,o),\n(793,817,c),\n(705,811,l),\n(711,767,o),\n(705,702,o),\n(627,700,c),\n(640,634,l)\n);\n},\n{\npos = (0,-1);\nref = U;\n}\n);\nwidth = 674;\n}\n);\nunicode = 431;\n},\n{\nglyphname = Uhornacute;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (313,199);\nref = acutecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7912;\n},\n{\nglyphname = Uhorndotbelow;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (265,0);\nref = dotbelowcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7920;\n},\n{\nglyphname = Uhorngrave;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (191,199);\nref = gravecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7914;\n},\n{\nglyphname = Uhornhookabove;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (79,211);\nref = hookabovecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7916;\n},\n{\nglyphname = Uhorntilde;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Uhorn;\n},\n{\npos = (70,199);\nref = tildecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 7918;\n},\n{\nglyphname = Uhungarumlaut;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (116,200);\nref = hungarumlautcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 368;\n},\n{\nglyphname = Umacron;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (68,200);\nref = macroncomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 362;\n},\n{\nglyphname = Uogonek;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-07-09 23:19:16 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\nref = ogonekcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 370;\n},\n{\nglyphname = Uring;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (251,200);\nref = ringcomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 366;\n},\n{\nglyphname = Utilde;\nkernLeft = U;\nkernRight = U;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = U;\n},\n{\npos = (70,200);\nref = tildecomb;\n}\n);\nwidth = 674;\n}\n);\nunicode = 360;\n},\n{\nglyphname = V;\nkernLeft = V;\nkernRight = V;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(302,0,l),\n(155,700,l),\n(71,700,l),\n(218,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(303,0,l),\n(645,700,l),\n(561,700,l),\n(219,0,l)\n);\n}\n);\nwidth = 590;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"0FF30111-47E3-4533-B04A-7E0F4FCC8B75\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(246,0,l),\n(356,0,l),\n(120,701,l),\n(10,701,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(515,701,l),\n(279,0,l),\n(385,0,l),\n(621,701,l)\n);\n}\n);\nwidth = 631;\n}\n);\nunicode = 86;\n},\n{\nglyphname = W;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (528,712);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(258,0,l),\n(508,569,l),\n(598,0,l),\n(713,0,l),\n(961,700,l),\n(868,700,l),\n(669,116,l),\n(580,700,l),\n(472,700,l),\n(219,116,l),\n(184,700,l),\n(91,700,l),\n(143,0,l)\n);\n}\n);\nwidth = 926;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D6814062-5E09-4D1C-9A77-973156DD01C6\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(347,563,l),\n(209,162,l),\n(127,700,l),\n(24,700,l),\n(137,0,l),\n(260,0,l),\n(398,432,l),\n(536,0,l),\n(659,0,l),\n(772,700,l),\n(671,700,l),\n(591,162,l),\n(451,563,l)\n);\n}\n);\nwidth = 796;\n}\n);\nunicode = 87;\n},\n{\nglyphname = Wacute;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (435,200);\nref = acutecomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 7810;\n},\n{\nglyphname = Wcircumflex;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (280,200);\nref = circumflexcomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 372;\n},\n{\nglyphname = Wdieresis;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (330,200);\nref = dieresiscomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 7812;\n},\n{\nglyphname = Wgrave;\nkernLeft = W;\nkernRight = W;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = W;\n},\n{\npos = (313,200);\nref = gravecomb;\n}\n);\nwidth = 926;\n}\n);\nunicode = 7808;\n},\n{\nglyphname = X;\nkernLeft = X;\nkernRight = X;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(522,0,l),\n(191,700,l),\n(90,700,l),\n(422,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(81,0,l),\n(609,700,l),\n(509,700,l),\n(-18,0,l)\n);\n}\n);\nwidth = 574;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"246BAF68-6253-4F28-9414-8F7B7433EFF2\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(620,0,l),\n(149,700,l),\n(22,700,l),\n(494,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(620,700,l),\n(497,700,l),\n(26,0,l),\n(148,0,l)\n);\n}\n);\nwidth = 649;\n}\n);\nunicode = 88;\n},\n{\nglyphname = Y;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 12:44:40 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (364,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,6);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(304,0,l),\n(344,309,l),\n(640,700,l),\n(547,700,l),\n(313,390,l),\n(168,700,l),\n(68,700,l),\n(262,309,l),\n(216,0,l)\n);\n}\n);\nwidth = 582;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"8B946DEB-BFC8-4419-BD29-DE4D27CA2D95\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(345,0,l),\n(345,309,l),\n(580,700,l),\n(462,700,l),\n(296,404,l),\n(127,700,l),\n(2,700,l),\n(239,309,l),\n(239,0,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 89;\n},\n{\nglyphname = Yacute;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (271,200);\nref = acutecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 221;\n},\n{\nglyphname = Ycircumflex;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (116,200);\nref = circumflexcomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 374;\n},\n{\nglyphname = Ydieresis;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (166,200);\nref = dieresiscomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 376;\n},\n{\nglyphname = Ydotbelow;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-07-09 23:19:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (218,0);\nref = dotbelowcomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7924;\n},\n{\nglyphname = Ygrave;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (149,200);\nref = gravecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7922;\n},\n{\nglyphname = Yhookabove;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (37,212);\nref = hookabovecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7926;\n},\n{\nglyphname = Ytilde;\nkernLeft = Y;\nkernRight = Y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Y;\n},\n{\npos = (28,200);\nref = tildecomb;\n}\n);\nwidth = 582;\n}\n);\nunicode = 7928;\n},\n{\nglyphname = Z;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (345,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,6);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(469,1,l),\n(480,81,l),\n(125,81,l),\n(556,618,l),\n(567,700,l),\n(108,700,l),\n(97,620,l),\n(452,620,l),\n(22,83,l),\n(10,1,l)\n);\n}\n);\nwidth = 554;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"2E06CB95-C68F-4397-AF31-B6A751E83E1E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(529,1,l),\n(529,93,l),\n(162,93,l),\n(529,606,l),\n(529,700,l),\n(40,700,l),\n(40,608,l),\n(407,608,l),\n(40,95,l),\n(40,1,l)\n);\n}\n);\nwidth = 569;\n}\n);\nunicode = 90;\n},\n{\nglyphname = Zacute;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (252,200);\nref = acutecomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 377;\n},\n{\nglyphname = Zcaron;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (95,200);\nref = caroncomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 381;\n},\n{\nglyphname = Zdotaccent;\nkernLeft = Z;\nkernRight = Z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = Z;\n},\n{\npos = (234,200);\nref = dotaccentcomb;\n}\n);\nwidth = 554;\n}\n);\nunicode = 379;\n},\n{\nglyphname = Lcommaaccent.loclMAH;\nkernLeft = L;\nkernRight = L;\nlastChange = \"2023-07-09 23:19:56 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = L;\n},\n{\nref = cedillacomb;\n}\n);\nwidth = 524;\n}\n);\n},\n{\nglyphname = Ncommaaccent.loclMAH;\nkernLeft = N;\nkernRight = N;\nlastChange = \"2023-07-09 23:19:59 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = N;\n},\n{\npos = (57,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 713;\n}\n);\n},\n{\nglyphname = a;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (238,-12);\n},\n{\nname = ogonek;\npos = (441,0);\n},\n{\nname = top;\npos = (336,516);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (-47,41);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (204,41);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (477,41);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (-35,60);\ntype = Stem;\n},\n{\nplace = (21,49);\ntype = Stem;\n},\n{\nplace = (330,49);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(307,-12,o),\n(386,27,o),\n(416,96,c),\n(403,0,l),\n(486,0,l),\n(556,500,l),\n(476,500,l),\n(462,402,l),\n(449,457,o),\n(405,512,o),\n(317,512,cs),\n(186,512,o),\n(78,419,o),\n(54,250,cs),\n(31,86,o),\n(107,-12,o),\n(238,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(486,0,l),\n(403,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,64,o),\n(124,148,o),\n(138,252,cs),\n(153,356,o),\n(212,437,o),\n(310,437,cs),\n(409,437,o),\n(452,360,o),\n(437,250,cs),\n(423,148,o),\n(357,64,o),\n(261,64,cs)\n);\n}\n);\nwidth = 607;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"3B5242A6-E9B9-4106-A318-25CEEEEB8629\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(131,199,o),\n(196,247,o),\n(349,247,c),\n(349,226,ls),\n(349,127,o),\n(247,78,o),\n(195,78,cs),\n(152,78,o),\n(131,114,o),\n(131,148,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(355,67,o),\n(377,0,o),\n(448,0,cs),\n(473,0,o),\n(496,6,o),\n(510,16,c),\n(510,95,l),\n(470,91,o),\n(447,107,o),\n(447,147,c),\n(447,340,ls),\n(447,414,o),\n(408,512,o),\n(257,512,cs),\n(115,512,o),\n(56,404,o),\n(56,404,cs),\n(132,355,l),\n(132,355,o),\n(167,425,o),\n(250,426,cs),\n(315,427,o),\n(347,388,o),\n(349,344,c),\n(349,328,l),\n(165,328,o),\n(40,262,o),\n(40,135,cs),\n(40,43,o),\n(103,-12,o),\n(192,-12,cs),\n(318,-12,o),\n(356,106,o),\n(356,106,c)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 97;\n},\n{\nglyphname = aacute;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (243,4);\nref = acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 225;\n},\n{\nglyphname = abreve;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 259;\n},\n{\nglyphname = abreveacute;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7855;\n},\n{\nglyphname = abrevedotbelow;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (198,-12);\nref = dotbelowcomb;\n},\n{\npos = (-8,4);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7863;\n},\n{\nglyphname = abrevegrave;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7857;\n},\n{\nglyphname = abrevehookabove;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7859;\n},\n{\nglyphname = abrevetilde;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-8,4);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7861;\n},\n{\nglyphname = acircumflex;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 226;\n},\n{\nglyphname = acircumflexacute;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (87,4);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7845;\n},\n{\nglyphname = acircumflexdotbelow;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (198,-12);\nref = dotbelowcomb;\n},\n{\npos = (88,4);\nref = circumflexcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7853;\n},\n{\nglyphname = acircumflexgrave;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7847;\n},\n{\nglyphname = acircumflexhookabove;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7849;\n},\n{\nglyphname = acircumflextilde;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (88,4);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7851;\n},\n{\nglyphname = adieresis;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (138,4);\nref = dieresiscomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 228;\n},\n{\nglyphname = adotbelow;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (198,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7841;\n},\n{\nglyphname = agrave;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (121,4);\nref = gravecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 224;\n},\n{\nglyphname = ahookabove;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (9,16);\nref = hookabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7843;\n},\n{\nglyphname = amacron;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (-2,4);\nref = macroncomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 257;\n},\n{\nglyphname = aogonek;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (120,0);\nref = ogonekcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 261;\n},\n{\nglyphname = aring;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (181,4);\nref = ringcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 229;\n},\n{\nglyphname = atilde;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:20:08 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n},\n{\npos = (0,4);\nref = tildecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 227;\n},\n{\nglyphname = ae;\nkernLeft = a;\nkernRight = e;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(682,-13,o),\n(758,30,o),\n(811,113,c),\n(741,143,l),\n(706,92,o),\n(656,63,o),\n(596,63,c),\n(495,63,o),\n(461,141,o),\n(475,245,cs),\n(490,349,o),\n(547,436,o),\n(648,436,c),\n(739,436,o),\n(777,360,o),\n(770,304,c),\n(481,304,l),\n(471,233,l),\n(844,233,l),\n(848,261,l),\n(872,434,o),\n(782,512,o),\n(661,512,c),\n(535,512,o),\n(416,412,o),\n(393,248,cs),\n(370,87,o),\n(461,-13,o),\n(587,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(144,64,o),\n(118,91,o),\n(125,142,cs),\n(136,223,o),\n(219,239,o),\n(391,239,c),\n(389,219,ls),\n(375,120,o),\n(257,64,o),\n(195,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(308,-12,o),\n(403,113,o),\n(403,113,c),\n(428,155,o),\n(464,173,o),\n(490,340,cs),\n(503,429,o),\n(434,512,o),\n(316,512,cs),\n(150,512,o),\n(91,393,o),\n(91,393,c),\n(154,356,l),\n(154,356,o),\n(196,436,o),\n(298,436,cs),\n(366,436,o),\n(413,390,o),\n(405,336,cs),\n(401,305,l),\n(168,305,o),\n(58,262,o),\n(40,135,cs),\n(27,43,o),\n(82,-12,o),\n(163,-12,cs)\n);\n}\n);\nwidth = 896;\n}\n);\nunicode = 230;\n},\n{\nglyphname = b;\nkernLeft = l;\nkernRight = b;\nlastChange = \"2023-08-03 12:05:51 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (297,-11);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,16);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (1,5);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,11);\ntarget = (0,12);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,-12,o),\n(536,81,o),\n(560,250,cs),\n(583,414,o),\n(507,512,o),\n(376,512,cs),\n(307,512,o),\n(228,473,o),\n(198,404,c),\n(242,720,l),\n(158,720,l),\n(57,0,l),\n(138,0,l),\n(152,98,l),\n(165,43,o),\n(209,-12,o),\n(297,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(205,63,o),\n(162,140,o),\n(177,250,cs),\n(191,352,o),\n(257,435,o),\n(353,436,cs),\n(454,437,o),\n(490,352,o),\n(476,248,cs),\n(461,144,o),\n(402,63,o),\n(304,63,cs)\n);\n}\n);\nwidth = 614;\n},\n{\nassociatedMasterId = master01;\nhints = (\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (0,5);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (0,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,2);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,8);\ntype = Stem;\n}\n);\nlayerId = \"67A6802E-0ADA-4E35-B6DE-2FB806E7B19C\";\nname = \"21 Jul 21, 11:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(419,436,o),\n(473,339,o),\n(473,252,cs),\n(473,165,o),\n(421,64,o),\n(327,64,c),\n(231,64,o),\n(173,165,o),\n(173,252,cs),\n(173,339,o),\n(223,436,o),\n(321,436,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(460,-13,o),\n(576,81,o),\n(576,250,cs),\n(576,414,o),\n(465,512,o),\n(336,512,c),\n(207,512,o),\n(92,412,o),\n(92,248,cs),\n(92,79,o),\n(202,-13,o),\n(331,-13,c)\n);\n}\n);\nwidth = 613;\n}\n);\nunicode = 98;\n},\n{\nglyphname = c;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (255,-13);\n},\n{\nname = top;\npos = (330,521);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(341,-13,o),\n(425,35,o),\n(471,118,c),\n(400,148,l),\n(371,97,o),\n(324,63,o),\n(264,63,c),\n(163,63,o),\n(124,147,o),\n(138,251,cs),\n(153,355,o),\n(215,436,o),\n(316,436,c),\n(376,436,o),\n(414,402,o),\n(428,351,c),\n(508,381,l),\n(485,464,o),\n(417,512,o),\n(329,512,c),\n(203,512,o),\n(77,412,o),\n(54,248,cs),\n(31,87,o),\n(129,-13,o),\n(255,-13,c)\n);\n}\n);\nwidth = 536;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D5044F65-6BC5-444E-BECC-015FB8AF7D9F\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(150,338,o),\n(200,429,o),\n(294,429,c),\n(356,429,o),\n(397,384,o),\n(413,331,c),\n(502,360,l),\n(479,465,o),\n(389,512,o),\n(293,512,c),\n(162,512,o),\n(50,421,o),\n(50,251,c),\n(50,81,o),\n(162,-12,o),\n(293,-12,c),\n(389,-12,o),\n(481,38,o),\n(506,147,c),\n(417,176,l),\n(401,123,o),\n(356,72,o),\n(294,72,c),\n(200,72,o),\n(150,164,o),\n(150,250,c)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"5E179671-36B7-481B-ACDA-F3411599AAD9\";\nname = \"22 Jul 21, 10:29\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(54,87,o),\n(166,-13,o),\n(292,-13,c),\n(380,-13,o),\n(457,35,o),\n(492,118,c),\n(416,148,l),\n(395,97,o),\n(350,63,o),\n(290,63,c),\n(189,63,o),\n(137,147,o),\n(137,251,cs),\n(137,355,o),\n(189,436,o),\n(290,436,c),\n(350,436,o),\n(395,402,o),\n(416,351,c),\n(492,381,l),\n(457,464,o),\n(380,512,o),\n(292,512,c),\n(166,512,o),\n(54,412,o),\n(54,248,cs)\n);\n}\n);\nwidth = 536;\n}\n);\nunicode = 99;\n},\n{\nglyphname = cacute;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (237,9);\nref = acutecomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 263;\n},\n{\nglyphname = ccaron;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (80,9);\nref = caroncomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 269;\n},\n{\nglyphname = ccedilla;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (0,-15);\nref = cedillacomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 231;\n},\n{\nglyphname = cdotaccent;\nkernLeft = c;\nkernRight = c;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = c;\n},\n{\npos = (219,9);\nref = dotaccentcomb;\n}\n);\nwidth = 536;\n}\n);\nunicode = 267;\n},\n{\nglyphname = d;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-08-03 12:06:21 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (256,0);\n},\n{\nname = center;\npos = (314,250);\n},\n{\nname = top;\npos = (423,720);\n},\n{\nname = topright;\npos = (657,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(331,-12,o),\n(391,43,o),\n(421,98,c),\n(411,27,o),\n(446,-1,o),\n(498,-1,cs),\n(523,-1,o),\n(536,3,o),\n(551,11,c),\n(561,79,l),\n(510,68,o),\n(499,86,o),\n(505,126,cs),\n(587,712,l),\n(503,712,l),\n(460,404,l),\n(448,473,o),\n(381,512,o),\n(312,512,cs),\n(181,512,o),\n(77,414,o),\n(54,250,cs),\n(30,81,o),\n(112,-12,o),\n(243,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,63,o),\n(123,144,o),\n(138,248,cs),\n(152,352,o),\n(212,436,o),\n(313,436,cs),\n(409,436,o),\n(451,352,o),\n(437,250,cs),\n(422,140,o),\n(357,63,o),\n(258,63,cs)\n);\n}\n);\nwidth = 627;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7399E59F-C8CF-444F-A145-6D2B7F7CF480\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(397,426,o),\n(440,339,o),\n(440,252,cs),\n(440,165,o),\n(391,75,o),\n(299,75,c),\n(205,75,o),\n(156,165,o),\n(156,252,cs),\n(156,339,o),\n(203,426,o),\n(299,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(443,62,o),\n(477,2,o),\n(536,1,cs),\n(578,0,o),\n(614,18,o),\n(614,18,c),\n(614,18,o),\n(614,101,o),\n(614,101,cs),\n(564,90,o),\n(537,105,o),\n(537,150,c),\n(537,720,l),\n(437,720,l),\n(437,422,l),\n(414,475,o),\n(343,512,o),\n(274,512,c),\n(141,512,o),\n(54,397,o),\n(54,250,cs),\n(54,123,o),\n(122,-12,o),\n(274,-11,c),\n(349,-11,o),\n(419,25,o),\n(444,101,c)\n);\n}\n);\nwidth = 664;\n}\n);\nunicode = 100;\n},\n{\nglyphname = eth;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(365,-12,o),\n(487,78,o),\n(515,250,cs),\n(537,388,o),\n(540,617,o),\n(251,738,c),\n(202,677,l),\n(323,636,o),\n(415,526,o),\n(421,470,c),\n(400,507,o),\n(329,512,o),\n(319,512,cs),\n(199,512,o),\n(78,422,o),\n(54,250,cs),\n(30,78,o),\n(125,-12,o),\n(245,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,64,o),\n(119,133,o),\n(135,250,cs),\n(151,367,o),\n(212,436,o),\n(308,436,cs),\n(405,436,o),\n(449,367,o),\n(433,250,cs),\n(417,133,o),\n(353,64,o),\n(256,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(507,644,l),\n(494,701,l),\n(181,597,l),\n(195,540,l)\n);\n}\n);\nwidth = 569;\n}\n);\nunicode = 240;\n},\n{\nglyphname = dcaron;\nkernLeft = d;\nkernRight = lcaron;\nlastChange = \"2023-08-03 12:06:25 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = d;\n},\n{\npos = (469,0);\nref = caroncomb.alt;\n}\n);\nwidth = 627;\n}\n);\nunicode = 271;\n},\n{\nglyphname = dcroat;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(634,582,l),\n(643,650,l),\n(350,650,l),\n(341,582,l)\n);\n},\n{\nref = d;\n}\n);\nwidth = 627;\n}\n);\nunicode = 273;\n},\n{\nglyphname = ddotbelow;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-08-03 12:09:38 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = d;\n},\n{\npos = (216,0);\nref = dotbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7693;\n},\n{\nglyphname = dmacronbelow;\nkernLeft = d;\nkernRight = d;\nlastChange = \"2023-08-03 12:09:38 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = d;\n},\n{\npos = (-22,12);\nref = macronbelowcomb;\n}\n);\nwidth = 627;\n}\n);\nunicode = 7695;\n},\n{\nglyphname = e;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (254,-13);\n},\n{\nname = top;\npos = (328,515);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,28);\ntarget = (0,6);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (0,15);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,22);\ntarget = (0,12);\ntype = Stem;\n},\n{\norigin = (0,25);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,15);\ntarget = (0,18);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(355,-13,o),\n(431,30,o),\n(484,113,c),\n(414,143,l),\n(379,92,o),\n(323,63,o),\n(263,63,c),\n(162,63,o),\n(122,141,o),\n(136,245,cs),\n(151,349,o),\n(214,436,o),\n(315,436,c),\n(412,436,o),\n(450,360,o),\n(443,304,c),\n(142,304,l),\n(131,230,l),\n(516,230,l),\n(521,261,l),\n(545,434,o),\n(455,512,o),\n(328,512,c),\n(202,512,o),\n(77,412,o),\n(54,248,cs),\n(31,87,o),\n(128,-13,o),\n(254,-13,c)\n);\n}\n);\nwidth = 569;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"169FF446-F214-45AF-87EB-12250BF5A1D5\";\nname = foreground;\nvisible = 1;\nwidth = 543;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"E0E72D27-D989-452C-96DA-744C8CBAEC4B\";\nname = \"10 Jul 21, 15:30\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(41,87,o),\n(153,-13,o),\n(279,-13,c),\n(367,-13,o),\n(444,35,o),\n(479,118,c),\n(403,148,l),\n(382,97,o),\n(337,63,o),\n(277,63,c),\n(176,63,o),\n(124,147,o),\n(124,251,cs),\n(124,355,o),\n(176,436,o),\n(277,436,c),\n(337,436,o),\n(382,402,o),\n(403,351,c),\n(479,381,l),\n(444,464,o),\n(367,512,o),\n(279,512,c),\n(153,512,o),\n(41,412,o),\n(41,248,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(406,-13,o),\n(521,81,o),\n(521,250,cs),\n(521,414,o),\n(411,512,o),\n(283,512,c),\n(156,512,o),\n(42,412,o),\n(42,248,cs),\n(42,79,o),\n(151,-13,o),\n(278,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(377,435,o),\n(437,352,o),\n(437,250,cs),\n(437,140,o),\n(377,63,o),\n(278,63,c),\n(179,63,o),\n(126,144,o),\n(126,248,cs),\n(126,352,o),\n(179,436,o),\n(281,436,c)\n);\n}\n);\nvisible = 1;\nwidth = 543;\n}\n);\nunicode = 101;\n},\n{\nglyphname = eacute;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (235,3);\nref = acutecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 233;\n},\n{\nglyphname = ecaron;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (78,3);\nref = caroncomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 283;\n},\n{\nglyphname = ecircumflex;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 234;\n},\n{\nglyphname = ecircumflexacute;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (79,3);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7871;\n},\n{\nglyphname = ecircumflexdotbelow;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (214,-13);\nref = dotbelowcomb;\n},\n{\npos = (80,3);\nref = circumflexcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7879;\n},\n{\nglyphname = ecircumflexgrave;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7873;\n},\n{\nglyphname = ecircumflexhookabove;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7875;\n},\n{\nglyphname = ecircumflextilde;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (80,3);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7877;\n},\n{\nglyphname = edieresis;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (130,3);\nref = dieresiscomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 235;\n},\n{\nglyphname = edotaccent;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (217,3);\nref = dotaccentcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 279;\n},\n{\nglyphname = edotbelow;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (214,-13);\nref = dotbelowcomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7865;\n},\n{\nglyphname = egrave;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (113,3);\nref = gravecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 232;\n},\n{\nglyphname = ehookabove;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (1,15);\nref = hookabovecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7867;\n},\n{\nglyphname = emacron;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (-10,3);\nref = macroncomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 275;\n},\n{\nglyphname = eogonek;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,-197,o),\n(435,-193,o),\n(453,-182,c),\n(463,-112,l),\n(419,-133,o),\n(366,-124,o),\n(374,-68,cs),\n(381,-18,o),\n(444,58,o),\n(484,113,c),\n(371,33,l),\n(349,21,o),\n(303,-33,o),\n(296,-83,cs),\n(288,-140,o),\n(318,-197,o),\n(389,-197,cs)\n);\n},\n{\nref = e;\n}\n);\nwidth = 569;\n}\n);\nunicode = 281;\n},\n{\nglyphname = etilde;\nkernLeft = e;\nkernRight = e;\nlastChange = \"2023-07-09 23:20:34 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = e;\n},\n{\npos = (-8,3);\nref = tildecomb;\n}\n);\nwidth = 569;\n}\n);\nunicode = 7869;\n},\n{\nglyphname = f;\nkernLeft = f;\nkernRight = f;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,20);\ntarget = (0,21);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,15);\ntype = Stem;\n},\n{\norigin = (0,23);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(192,0,l),\n(251,424,l),\n(379,424,l),\n(390,500,l),\n(262,500,l),\n(273,575,ls),\n(280,629,o),\n(310,648,o),\n(359,648,cs),\n(372,648,o),\n(390,647,o),\n(405,644,c),\n(415,712,l),\n(399,717,o),\n(376,720,o),\n(360,720,cs),\n(251,720,o),\n(202,669,o),\n(189,576,cs),\n(178,500,l),\n(82,500,l),\n(71,424,l),\n(167,424,l),\n(108,0,l)\n);\n}\n);\nwidth = 375;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"05947023-CF81-4962-BA32-552EF9D46824\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(134,409,l),\n(134,0,l),\n(233,0,l),\n(233,409,l),\n(365,409,l),\n(365,500,l),\n(233,500,l),\n(232,602,o),\n(245,630,o),\n(294,635,cs),\n(332,639,o),\n(364,630,o),\n(364,630,c),\n(364,720,l),\n(349,725,o),\n(321,728,o),\n(305,728,cs),\n(164,728,o),\n(134,664,o),\n(134,500,c),\n(40,500,l),\n(40,409,l)\n);\n}\n);\nwidth = 375;\n}\n);\nunicode = 102;\n},\n{\nglyphname = g;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (317,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(344,-232,o),\n(462,-171,o),\n(488,17,cs),\n(556,500,l),\n(476,500,l),\n(462,402,l),\n(449,457,o),\n(405,512,o),\n(317,512,cs),\n(186,512,o),\n(78,419,o),\n(54,250,cs),\n(31,86,o),\n(107,-12,o),\n(238,-12,cs),\n(307,-12,o),\n(386,27,o),\n(416,96,c),\n(405,17,ls),\n(389,-96,o),\n(334,-156,o),\n(224,-156,cs),\n(157,-156,o),\n(110,-125,o),\n(94,-66,c),\n(22,-107,l),\n(48,-195,o),\n(126,-229,o),\n(213,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,64,o),\n(124,148,o),\n(138,252,cs),\n(153,356,o),\n(212,437,o),\n(310,437,cs),\n(409,437,o),\n(452,360,o),\n(437,250,cs),\n(423,148,o),\n(357,64,o),\n(261,64,cs)\n);\n}\n);\nwidth = 607;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"79240F66-912C-4E1A-A3E4-4F79DFA0CFDD\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(394,426,o),\n(437,339,o),\n(437,252,cs),\n(437,165,o),\n(392,75,o),\n(296,75,c),\n(202,75,o),\n(160,165,o),\n(160,252,cs),\n(160,339,o),\n(200,426,o),\n(296,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(534,499,l),\n(434,499,l),\n(434,422,l),\n(411,475,o),\n(340,512,o),\n(271,512,c),\n(138,512,o),\n(51,397,o),\n(51,250,cs),\n(51,123,o),\n(119,-13,o),\n(271,-12,c),\n(346,-12,o),\n(406,27,o),\n(434,98,c),\n(434,5,ls),\n(434,-112,o),\n(388,-165,o),\n(275,-166,cs),\n(201,-167,o),\n(153,-122,o),\n(128,-63,c),\n(50,-106,l),\n(95,-207,o),\n(187,-249,o),\n(274,-250,cs),\n(390,-252,o),\n(534,-200,o),\n(534,-12,cs)\n);\n}\n);\nwidth = 614;\n}\n);\nunicode = 103;\n},\n{\nglyphname = gbreve;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (-27,0);\nref = brevecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 287;\n},\n{\nglyphname = gcommaaccent;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (-40,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 291;\n},\n{\nglyphname = gdotaccent;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (206,0);\nref = dotaccentcomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 289;\n},\n{\nglyphname = gmacron;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:20:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g;\n},\n{\npos = (-21,0);\nref = macroncomb;\n}\n);\nwidth = 607;\n}\n);\nunicode = 7713;\n},\n{\nglyphname = h;\nkernLeft = l;\nkernRight = h;\nlastChange = \"2023-08-03 12:08:52 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,13);\ntarget = (0,4);\ntype = Stem;\n},\n{\nplace = (57,49);\ntype = Stem;\n},\n{\nplace = (386,49);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(141,0,l),\n(179,270,ls),\n(192,366,o),\n(249,436,o),\n(341,436,cs),\n(408,436,o),\n(449,403,o),\n(436,316,cs),\n(392,0,l),\n(476,0,l),\n(522,328,ls),\n(539,448,o),\n(477,512,o),\n(380,512,cs),\n(268,512,o),\n(212,441,o),\n(198,406,c),\n(241,712,l),\n(157,712,l),\n(57,0,l)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CD505587-AC72-48CE-8408-6BA3826A3B3C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(185,259,ls),\n(185,355,o),\n(232,425,o),\n(314,425,cs),\n(371,425,o),\n(423,392,o),\n(423,306,c),\n(423,0,l),\n(523,0,l),\n(523,328,ls),\n(523,448,o),\n(439,512,o),\n(352,512,cs),\n(249,512,o),\n(205,455,o),\n(185,402,c),\n(185,720,l),\n(85,720,l),\n(85,0,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 104;\n},\n{\nglyphname = hbar;\nkernLeft = h;\nkernRight = h;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,582,l),\n(413,650,l),\n(120,650,l),\n(111,582,l)\n);\n},\n{\npos = (37,0);\nref = h;\n}\n);\nwidth = 634;\n}\n);\nunicode = 295;\n},\n{\nglyphname = i;\nlastChange = \"2023-08-03 13:00:57 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (96,0);\n},\n{\nname = top;\npos = (161,500);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,595,o),\n(240,622,o),\n(245,653,cs),\n(249,685,o),\n(227,712,o),\n(196,712,cs),\n(164,712,o),\n(133,685,o),\n(129,653,cs),\n(124,622,o),\n(147,595,o),\n(179,595,cs)\n);\n},\n{\nref = idotless;\n}\n);\nwidth = 260;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"6625A516-8D1C-4BE4-BEF2-383D9616A379\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(193,0,l),\n(193,500,l),\n(93,500,l),\n(93,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(178,571,o),\n(206,600,o),\n(206,634,cs),\n(206,669,o),\n(178,698,o),\n(144,698,cs),\n(109,698,o),\n(80,669,o),\n(80,634,cs),\n(80,600,o),\n(109,571,o),\n(144,571,cs)\n);\n}\n);\nwidth = 286;\n}\n);\nunicode = 105;\n},\n{\nglyphname = idotless;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (166,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(137,0,l),\n(207,500,l),\n(123,500,l),\n(53,0,l)\n);\n}\n);\nwidth = 260;\n}\n);\nunicode = 305;\n},\n{\nglyphname = iacute;\nlastChange = \"2023-08-03 13:01:20 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (73,0);\nref = acutecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 237;\n},\n{\nglyphname = icircumflex;\nlastChange = \"2023-08-03 13:01:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-82,0);\nref = circumflexcomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 238;\n},\n{\nglyphname = idieresis;\nkernLeft = id;\nkernRight = I;\nlastChange = \"2023-08-03 13:01:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-32,0);\nref = dieresiscomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 239;\n},\n{\nglyphname = idotaccent;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(208,593,o),\n(240,622,o),\n(245,656,cs),\n(250,691,o),\n(226,720,o),\n(192,720,cs),\n(157,720,o),\n(124,691,o),\n(119,656,cs),\n(114,622,o),\n(139,593,o),\n(174,593,cs)\n);\n},\n{\npos = (-5,0);\nref = idotless;\n}\n);\nwidth = 260;\n}\n);\n},\n{\nglyphname = idotbelow;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:00 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = i;\n},\n{\npos = (56,0);\nref = dotbelowcomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 7883;\n},\n{\nglyphname = igrave;\nlastChange = \"2023-08-03 13:02:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-49,0);\nref = gravecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 236;\n},\n{\nglyphname = ihookabove;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-161,12);\nref = hookabovecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 7881;\n},\n{\nglyphname = ij;\nkernLeft = i;\nkernRight = j;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(508,593,o),\n(540,622,o),\n(545,656,c),\n(551,691,o),\n(527,720,o),\n(492,720,cs),\n(457,720,o),\n(424,691,o),\n(419,656,cs),\n(414,622,o),\n(439,593,o),\n(474,593,cs)\n);\n},\n{\nref = idotaccent;\n},\n{\npos = (260,0);\nref = jdotless;\n}\n);\nwidth = 561;\n}\n);\nunicode = 307;\n},\n{\nglyphname = imacron;\nkernLeft = id;\nkernRight = I;\nlastChange = \"2023-08-01 09:03:20 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-172,0);\nref = macroncomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 299;\n},\n{\nglyphname = iogonek;\nkernLeft = i;\nkernRight = I;\nlastChange = \"2023-07-09 23:21:12 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (55,0);\nref = dotaccentcomb;\n},\n{\npos = (-230,0);\nref = ogonekcomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 303;\n},\n{\nglyphname = itilde;\nkernLeft = id;\nkernRight = I;\nlastChange = \"2023-08-01 09:02:45 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = idotless;\n},\n{\npos = (-170,0);\nref = tildecomb;\n}\n);\nwidth = 260;\n}\n);\nunicode = 297;\n},\n{\nglyphname = j;\nkernLeft = j;\nkernRight = j;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\nplace = (-284,59);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (1,11);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (1,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(102,-230,o),\n(150,-179,o),\n(163,-86,cs),\n(163,-86,o),\n(176,0,o),\n(246,500,c),\n(162,500,l),\n(80,-85,l),\n(72,-139,o),\n(43,-158,o),\n(-6,-158,cs),\n(-19,-158,o),\n(-37,-157,o),\n(-53,-154,c),\n(-62,-222,l),\n(-46,-227,o),\n(-23,-230,o),\n(-7,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(249,593,o),\n(281,622,o),\n(286,656,cs),\n(291,691,o),\n(267,720,o),\n(233,720,cs),\n(198,720,o),\n(165,691,o),\n(160,656,cs),\n(155,622,o),\n(180,593,o),\n(215,593,cs)\n);\n}\n);\nwidth = 301;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D21705D2-9FF0-49F0-B103-525AAF3570C8\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(187,593,o),\n(215,622,o),\n(215,656,cs),\n(215,691,o),\n(187,720,o),\n(153,720,cs),\n(118,720,o),\n(89,691,o),\n(89,656,cs),\n(89,622,o),\n(118,593,o),\n(153,593,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(106,499,l),\n(106,-6,ls),\n(106,-108,o),\n(94,-152,o),\n(41,-156,cs),\n(3,-159,o),\n(-25,-151,o),\n(-25,-151,c),\n(-25,-243,l),\n(-10,-248,o),\n(18,-251,o),\n(34,-251,cs),\n(175,-251,o),\n(205,-176,o),\n(205,-12,cs),\n(205,499,l)\n);\n}\n);\nwidth = 275;\n}\n);\nunicode = 106;\n},\n{\nglyphname = jdotless;\nkernLeft = j;\nkernRight = j;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (206,512);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (-284,59);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (685,-185);\ntarget = (0,6);\ntype = Stem;\n},\n{\norigin = (0,6);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,6);\ntarget = (0,5);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(102,-230,o),\n(150,-179,o),\n(163,-86,cs),\n(163,-86,o),\n(176,0,o),\n(246,500,c),\n(162,500,l),\n(80,-85,l),\n(72,-139,o),\n(43,-158,o),\n(-6,-158,cs),\n(-19,-158,o),\n(-37,-157,o),\n(-53,-154,c),\n(-62,-222,l),\n(-46,-227,o),\n(-23,-230,o),\n(-7,-230,cs)\n);\n}\n);\nwidth = 301;\n}\n);\nunicode = 567;\n},\n{\nglyphname = jacute;\nkernLeft = j;\nkernRight = j;\nlastChange = \"2023-07-09 23:21:21 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = jdotless;\n},\n{\npos = (113,0);\nref = acutecomb;\n}\n);\nwidth = 301;\n}\n);\n},\n{\nglyphname = k;\nkernLeft = l;\nkernRight = k;\nlastChange = \"2023-08-03 12:05:26 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (242,-12);\n}\n);\nhints = (\n{\nplace = (58,49);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(242,256,l),\n(267,266,l),\n(529,500,l),\n(425,500,l),\n(111,225,l),\n(98,131,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(141,0,l),\n(241,712,l),\n(157,712,l),\n(57,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(475,0,l),\n(288,302,l),\n(215,249,l),\n(369,0,l)\n);\n}\n);\nwidth = 525;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"45831B20-6849-4EF6-BE83-8DDAD9BE09E7\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(804,256,l),\n(828,266,l),\n(1049,500,l),\n(941,500,l),\n(681,225,l),\n(686,131,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(747,0,l),\n(747,712,l),\n(663,712,l),\n(663,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(1069,0,l),\n(840,302,l),\n(778,249,l),\n(967,0,l)\n);\n}\n);\nwidth = 537;\n},\n{\nassociatedMasterId = master01;\nhints = (\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,1);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,10);\ntype = Stem;\n}\n);\nlayerId = \"F5153F53-BD19-4DEE-BBF1-244D87F5AFFD\";\nname = \"22 Jul 21, 10:33\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(210,252,l),\n(395,-1,l),\n(498,-1,l),\n(267,308,l),\n(479,500,l),\n(371,500,l),\n(177,325,l),\n(176,712,l),\n(92,712,l),\n(93,0,l),\n(177,0,l),\n(177,223,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(219,252,l),\n(409,-1,l),\n(528,-1,l),\n(291,315,l),\n(503,500,l),\n(365,500,l),\n(186,344,l),\n(186,720,l),\n(86,720,l),\n(86,0,l),\n(186,0,l),\n(186,223,l)\n);\n}\n);\nwidth = 513;\n}\n);\nunicode = 107;\n},\n{\nglyphname = kcommaaccent;\nkernLeft = l;\nkernRight = k;\nlastChange = \"2023-08-03 12:05:26 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = k;\n},\n{\npos = (-27,0);\nref = commaaccentcomb;\n}\n);\nwidth = 525;\n}\n);\nunicode = 311;\n},\n{\nglyphname = l;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:51:49 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (94,0);\n},\n{\nname = center;\npos = (177,360);\n},\n{\nname = top;\npos = (183,720);\n},\n{\nname = topright;\npos = (281,720);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(127,0,l),\n(227,712,l),\n(143,712,l),\n(43,0,l)\n);\n}\n);\nwidth = 258;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9184F1DE-F07E-494E-9C47-EEC1A903CA2E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,0,l),\n(180,720,l),\n(80,720,l),\n(80,0,l)\n);\n}\n);\nwidth = 260;\n}\n);\nunicode = 108;\n},\n{\nglyphname = lacute;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:51:49 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (90,208);\nref = acutecomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 314;\n},\n{\nglyphname = lcaron;\nkernLeft = l;\nkernRight = lcaron;\nlastChange = \"2023-08-03 12:51:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (93,0);\nref = caroncomb.alt;\n}\n);\nwidth = 258;\n}\n);\nunicode = 318;\n},\n{\nglyphname = lcommaaccent;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:51:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-175,12);\nref = commaaccentcomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 316;\n},\n{\nglyphname = ldotbelow;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:51:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (54,0);\nref = dotbelowcomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 7735;\n},\n{\nglyphname = lmacronbelow;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:51:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-184,12);\nref = macronbelowcomb;\n}\n);\nwidth = 258;\n}\n);\nunicode = 7739;\n},\n{\nglyphname = lslash;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:52:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(357,373,l),\n(331,437,l),\n(40,294,l),\n(65,229,l)\n);\n},\n{\npos = (66,0);\nref = l;\n}\n);\nwidth = 383;\n}\n);\nunicode = 322;\n},\n{\nglyphname = m;\nkernLeft = m;\nkernRight = m;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (434,1);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(141,0,l),\n(179,270,ls),\n(192,366,o),\n(249,436,o),\n(341,436,cs),\n(408,436,o),\n(449,403,o),\n(436,316,cs),\n(392,0,l),\n(476,0,l),\n(522,328,ls),\n(539,448,o),\n(477,512,o),\n(380,512,cs),\n(268,512,o),\n(212,441,o),\n(198,406,c),\n(211,500,l),\n(127,500,l),\n(57,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(476,0,l),\n(514,270,ls),\n(527,366,o),\n(584,436,o),\n(676,436,cs),\n(743,436,o),\n(784,403,o),\n(771,316,cs),\n(727,0,l),\n(811,0,l),\n(857,328,ls),\n(874,448,o),\n(812,512,o),\n(715,512,cs),\n(603,512,o),\n(537,433,o),\n(523,398,c),\n(459,0,l)\n);\n}\n);\nwidth = 934;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"2AB4FA2C-6E87-475E-BC95-C87BA88E814C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(524,355,o),\n(571,425,o),\n(653,425,cs),\n(710,425,o),\n(762,392,o),\n(762,306,c),\n(762,0,l),\n(862,0,l),\n(862,328,ls),\n(862,448,o),\n(778,512,o),\n(691,512,cs),\n(589,512,o),\n(535,445,o),\n(514,392,c),\n(490,471,o),\n(422,512,o),\n(352,512,cs),\n(249,512,o),\n(205,455,o),\n(185,402,c),\n(185,501,l),\n(85,501,l),\n(85,0,l),\n(185,0,l),\n(185,259,ls),\n(185,355,o),\n(232,425,o),\n(314,425,cs),\n(371,425,o),\n(423,392,o),\n(423,306,c),\n(423,0,l),\n(524,0,l),\n(524,259,ls)\n);\n}\n);\nwidth = 942;\n}\n);\nunicode = 109;\n},\n{\nglyphname = n;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (274,0);\n},\n{\nname = top;\npos = (354,525);\n}\n);\nhints = (\n{\norigin = (0,19);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (0,9);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(141,0,l),\n(179,270,ls),\n(192,366,o),\n(249,436,o),\n(341,436,cs),\n(408,436,o),\n(449,403,o),\n(436,316,cs),\n(392,0,l),\n(476,0,l),\n(522,328,ls),\n(539,448,o),\n(477,512,o),\n(380,512,cs),\n(268,512,o),\n(212,441,o),\n(198,406,c),\n(211,500,l),\n(127,500,l),\n(57,0,l)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9DAFEF19-BC7E-4592-BC8A-958FBEEA9065\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(421,403,o),\n(421,316,cs),\n(421,0,l),\n(505,0,l),\n(505,328,ls),\n(505,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(163,445,o),\n(163,320,c),\n(176,320,l)\n);\n}\n);\nwidth = 603;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"4E993862-6A8B-4F58-BA63-F4C2183B2AD6\";\nname = \"22 Jul 21, 09:48\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(421,403,o),\n(421,316,cs),\n(421,0,l),\n(505,0,l),\n(505,328,ls),\n(505,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(163,445,o),\n(163,320,c),\n(176,320,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,0,l),\n(176,259,ls),\n(176,355,o),\n(228,425,o),\n(310,425,cs),\n(379,425,o),\n(426,392,o),\n(426,306,c),\n(426,0,l),\n(510,0,l),\n(510,324,ls),\n(510,432,o),\n(443,512,o),\n(348,512,cs),\n(245,512,o),\n(196,455,o),\n(176,402,c),\n(176,500,l),\n(92,500,l),\n(92,0,l)\n);\n}\n);\nwidth = 603;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"093DBDD9-08D0-4671-954B-3775BA1B0BE1\";\nname = \"22 Jul 21, 09:45\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(170,500,l),\n(86,500,l),\n(86,0,l),\n(170,0,l),\n(170,270,ls),\n(170,366,o),\n(217,436,o),\n(309,436,cs),\n(376,436,o),\n(415,403,o),\n(415,316,cs),\n(415,0,l),\n(499,0,l),\n(499,328,ls),\n(499,448,o),\n(434,512,o),\n(337,512,cs),\n(225,512,o),\n(179,441,o),\n(170,406,c)\n);\n}\n);\nwidth = 591;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"47444D12-A43B-4A04-A14E-0473975F487A\";\nname = \"22 Jul 21, 09:45\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(176,500,l),\n(92,500,l),\n(92,0,l),\n(176,0,l),\n(176,270,ls),\n(176,366,o),\n(223,436,o),\n(315,436,cs),\n(382,436,o),\n(421,403,o),\n(421,316,cs),\n(421,0,l),\n(505,0,l),\n(505,328,ls),\n(505,448,o),\n(440,512,o),\n(343,512,cs),\n(231,512,o),\n(163,445,o),\n(163,320,c),\n(176,320,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 110;\n},\n{\nglyphname = nacute;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (261,13);\nref = acutecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 324;\n},\n{\nglyphname = ncaron;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (104,13);\nref = caroncomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 328;\n},\n{\nglyphname = ncommaaccent;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (5,12);\nref = commaaccentcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 326;\n},\n{\nglyphname = ndotbelow;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:21:50 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (234,0);\nref = dotbelowcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 7751;\n},\n{\nglyphname = nhookleft;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(71,-188,o),\n(122,-137,o),\n(135,-44,cs),\n(179,270,ls),\n(192,366,o),\n(249,436,o),\n(341,436,cs),\n(408,436,o),\n(449,403,o),\n(436,316,cs),\n(392,1,l),\n(476,1,l),\n(522,328,ls),\n(539,448,o),\n(477,512,o),\n(380,512,cs),\n(268,512,o),\n(212,441,o),\n(198,406,c),\n(211,500,l),\n(127,500,l),\n(51,-43,ls),\n(43,-97,o),\n(13,-116,o),\n(-36,-116,cs),\n(-49,-116,o),\n(-66,-115,o),\n(-82,-112,c),\n(-91,-180,l),\n(-75,-185,o),\n(-54,-188,o),\n(-38,-188,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 626;\n},\n{\nglyphname = nhookretroflex;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(531,-188,o),\n(554,-185,o),\n(572,-180,c),\n(581,-112,l),\n(565,-115,o),\n(548,-116,o),\n(535,-116,cs),\n(486,-116,o),\n(462,-97,o),\n(470,-43,cs),\n(522,328,ls),\n(539,448,o),\n(477,512,o),\n(380,512,cs),\n(268,512,o),\n(212,441,o),\n(198,406,c),\n(211,500,l),\n(127,500,l),\n(57,0,l),\n(141,0,l),\n(179,270,ls),\n(192,366,o),\n(249,436,o),\n(341,436,cs),\n(408,436,o),\n(449,403,o),\n(436,316,cs),\n(386,-44,ls),\n(373,-137,o),\n(406,-188,o),\n(515,-188,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 627;\n},\n{\nglyphname = nmacronbelow;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (280,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(141,0,l),\n(179,270,ls),\n(192,366,o),\n(249,436,o),\n(341,436,cs),\n(408,436,o),\n(449,403,o),\n(436,316,cs),\n(392,0,l),\n(476,0,l),\n(522,328,ls),\n(539,448,o),\n(477,512,o),\n(380,512,cs),\n(268,512,o),\n(212,441,o),\n(198,406,c),\n(211,500,l),\n(127,500,l),\n(57,0,l)\n);\n},\n{\nref = macronbelowcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7753;\n},\n{\nglyphname = ntilde;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (18,13);\nref = tildecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 241;\n},\n{\nglyphname = eng;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(406,-188,o),\n(457,-137,o),\n(470,-44,cs),\n(522,328,ls),\n(539,448,o),\n(477,512,o),\n(380,512,cs),\n(268,512,o),\n(212,441,o),\n(198,406,c),\n(211,500,l),\n(127,500,l),\n(57,0,l),\n(141,0,l),\n(179,270,ls),\n(192,366,o),\n(249,436,o),\n(341,436,cs),\n(408,436,o),\n(449,403,o),\n(436,316,cs),\n(386,-43,ls),\n(378,-97,o),\n(348,-116,o),\n(299,-116,cs),\n(286,-116,o),\n(268,-115,o),\n(252,-112,c),\n(243,-180,l),\n(259,-185,o),\n(281,-188,o),\n(297,-188,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 331;\n},\n{\nglyphname = o;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (253,-12);\n},\n{\nname = top;\npos = (327,516);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(377,-12,o),\n(502,78,o),\n(526,250,cs),\n(550,422,o),\n(451,512,o),\n(327,512,cs),\n(203,512,o),\n(78,422,o),\n(54,250,cs),\n(30,78,o),\n(129,-12,o),\n(253,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,64,o),\n(122,133,o),\n(138,250,cs),\n(154,367,o),\n(216,436,o),\n(316,436,cs),\n(416,436,o),\n(458,367,o),\n(442,250,cs),\n(426,133,o),\n(364,64,o),\n(264,64,cs)\n);\n}\n);\nwidth = 580;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"75CEC0A4-E86C-4BAB-AB20-41EC8FFB0C18\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(422,-13,o),\n(540,81,o),\n(540,250,cs),\n(540,414,o),\n(427,512,o),\n(296,512,c),\n(165,512,o),\n(48,412,o),\n(48,248,cs),\n(48,79,o),\n(160,-13,o),\n(291,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(389,426,o),\n(436,338,o),\n(436,250,cs),\n(436,164,o),\n(384,72,o),\n(291,72,c),\n(197,72,o),\n(149,162,o),\n(149,248,cs),\n(149,336,o),\n(198,426,o),\n(294,426,c)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 111;\n},\n{\nglyphname = oacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (234,4);\nref = acutecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 243;\n},\n{\nglyphname = ocircumflex;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 244;\n},\n{\nglyphname = ocircumflexacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (78,4);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7889;\n},\n{\nglyphname = ocircumflexdotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (213,-12);\nref = dotbelowcomb;\n},\n{\npos = (79,4);\nref = circumflexcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7897;\n},\n{\nglyphname = ocircumflexgrave;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7891;\n},\n{\nglyphname = ocircumflexhookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7893;\n},\n{\nglyphname = ocircumflextilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (79,4);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7895;\n},\n{\nglyphname = odieresis;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (129,4);\nref = dieresiscomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 246;\n},\n{\nglyphname = odotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (213,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7885;\n},\n{\nglyphname = ograve;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (112,4);\nref = gravecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 242;\n},\n{\nglyphname = ohookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (0,16);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7887;\n},\n{\nglyphname = ohorn;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (327,516);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (2,9);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (0,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(377,-12,o),\n(502,78,o),\n(526,250,cs),\n(550,422,o),\n(451,512,o),\n(327,512,cs),\n(203,512,o),\n(78,422,o),\n(54,250,cs),\n(30,78,o),\n(129,-12,o),\n(253,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,64,o),\n(122,133,o),\n(138,250,cs),\n(154,367,o),\n(216,436,o),\n(316,436,cs),\n(416,436,o),\n(458,367,o),\n(442,250,cs),\n(426,133,o),\n(364,64,o),\n(264,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(583,453,o),\n(602,553,o),\n(593,604,c),\n(520,599,l),\n(525,563,o),\n(519,509,o),\n(456,507,cs),\n(396,505,o),\n(383,515,o),\n(321,512,c),\n(340,480,l),\n(366,480,o),\n(367,453,o),\n(471,453,cs)\n);\n}\n);\nwidth = 580;\n}\n);\nunicode = 417;\n},\n{\nglyphname = ohornacute;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(377,-12,o),\n(502,78,o),\n(526,250,cs),\n(550,422,o),\n(451,512,o),\n(327,512,cs),\n(203,512,o),\n(78,422,o),\n(54,250,cs),\n(30,78,o),\n(129,-12,o),\n(253,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,64,o),\n(122,133,o),\n(138,250,cs),\n(154,367,o),\n(216,436,o),\n(316,436,cs),\n(416,436,o),\n(458,367,o),\n(442,250,cs),\n(426,133,o),\n(364,64,o),\n(264,64,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(583,453,o),\n(602,553,o),\n(593,604,c),\n(520,599,l),\n(525,563,o),\n(519,509,o),\n(456,507,cs),\n(396,505,o),\n(383,515,o),\n(321,512,c),\n(340,480,l),\n(366,480,o),\n(367,453,o),\n(471,453,cs)\n);\n},\n{\npos = (223,0);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7899;\n},\n{\nglyphname = ohorndotbelow;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (222,0);\nref = dotbelowcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7907;\n},\n{\nglyphname = ohorngrave;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (112,4);\nref = gravecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7901;\n},\n{\nglyphname = ohornhookabove;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (0,16);\nref = hookabovecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7903;\n},\n{\nglyphname = ohorntilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ohorn;\n},\n{\npos = (-9,4);\nref = tildecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 7905;\n},\n{\nglyphname = ohungarumlaut;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (37,4);\nref = hungarumlautcomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 337;\n},\n{\nglyphname = omacron;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (-11,4);\nref = macroncomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 333;\n},\n{\nglyphname = oslash;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(568,500,l),\n(518,546,l),\n(11,0,l),\n(58,-48,l)\n);\n},\n{\nref = o;\n}\n);\nwidth = 580;\n}\n);\nunicode = 248;\n},\n{\nglyphname = otilde;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:21:58 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n},\n{\npos = (-9,4);\nref = tildecomb;\n}\n);\nwidth = 580;\n}\n);\nunicode = 245;\n},\n{\nglyphname = oe;\nkernLeft = o;\nkernRight = e;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(752,-13,o),\n(828,30,o),\n(881,113,c),\n(811,143,l),\n(776,92,o),\n(720,63,o),\n(660,63,c),\n(559,63,o),\n(511,141,o),\n(525,245,cs),\n(540,349,o),\n(611,436,o),\n(712,436,c),\n(809,436,o),\n(847,360,o),\n(840,304,c),\n(531,304,l),\n(520,230,l),\n(913,230,l),\n(918,261,l),\n(942,434,o),\n(852,512,o),\n(725,512,c),\n(599,512,o),\n(466,412,o),\n(443,248,cs),\n(420,87,o),\n(525,-13,o),\n(651,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(377,-12,o),\n(502,78,o),\n(526,250,cs),\n(550,422,o),\n(451,512,o),\n(327,512,cs),\n(203,512,o),\n(78,422,o),\n(54,250,cs),\n(30,78,o),\n(129,-12,o),\n(253,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(164,64,o),\n(122,133,o),\n(138,250,cs),\n(154,367,o),\n(216,436,o),\n(316,436,cs),\n(416,436,o),\n(458,367,o),\n(442,250,cs),\n(426,133,o),\n(364,64,o),\n(264,64,cs)\n);\n}\n);\nwidth = 958;\n}\n);\nunicode = 339;\n},\n{\nglyphname = p;\nkernLeft = p;\nkernRight = p;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(109,-230,l),\n(154,96,l),\n(166,27,o),\n(233,-12,o),\n(302,-12,cs),\n(433,-12,o),\n(537,86,o),\n(560,250,cs),\n(584,419,o),\n(502,512,o),\n(371,512,cs),\n(283,512,o),\n(223,457,o),\n(194,402,c),\n(208,500,l),\n(127,500,l),\n(25,-230,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(205,65,o),\n(163,148,o),\n(177,250,cs),\n(192,360,o),\n(257,437,o),\n(356,437,cs),\n(454,437,o),\n(491,356,o),\n(476,252,cs),\n(462,148,o),\n(402,63,o),\n(301,64,cs)\n);\n}\n);\nwidth = 614;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"111F6626-3440-438D-AC91-776452057215\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(226,74,o),\n(183,161,o),\n(183,248,cs),\n(183,335,o),\n(228,425,o),\n(324,425,c),\n(418,425,o),\n(467,335,o),\n(467,248,cs),\n(467,161,o),\n(420,74,o),\n(324,74,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(482,-11,o),\n(569,103,o),\n(569,250,cs),\n(569,377,o),\n(501,513,o),\n(349,512,c),\n(274,512,o),\n(214,473,o),\n(186,402,c),\n(186,500,l),\n(86,500,l),\n(86,-249,l),\n(186,-249,l),\n(186,78,l),\n(209,25,o),\n(280,-11,o),\n(349,-11,c)\n);\n}\n);\nwidth = 624;\n}\n);\nunicode = 112;\n},\n{\nglyphname = thorn;\nkernLeft = p;\nkernRight = p;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(109,-230,l),\n(154,96,l),\n(166,27,o),\n(233,-12,o),\n(302,-12,cs),\n(433,-12,o),\n(537,86,o),\n(560,250,cs),\n(584,419,o),\n(502,512,o),\n(371,512,cs),\n(283,512,o),\n(223,457,o),\n(194,402,c),\n(238,712,l),\n(157,712,l),\n(25,-230,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(205,65,o),\n(163,148,o),\n(177,250,cs),\n(192,360,o),\n(257,437,o),\n(356,437,cs),\n(454,437,o),\n(491,356,o),\n(476,252,cs),\n(462,148,o),\n(402,63,o),\n(301,64,cs)\n);\n}\n);\nwidth = 614;\n}\n);\nunicode = 254;\n},\n{\nglyphname = q;\nkernLeft = q;\nkernRight = q;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(490,-230,o),\n(503,-226,o),\n(518,-218,c),\n(528,-150,l),\n(477,-161,o),\n(466,-143,o),\n(471,-103,cs),\n(556,500,l),\n(476,500,l),\n(462,402,l),\n(449,457,o),\n(405,512,o),\n(317,512,cs),\n(186,512,o),\n(78,419,o),\n(54,250,cs),\n(31,86,o),\n(107,-12,o),\n(238,-12,cs),\n(307,-12,o),\n(386,27,o),\n(416,96,c),\n(385,-124,ls),\n(374,-204,o),\n(413,-230,o),\n(465,-230,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(160,64,o),\n(124,148,o),\n(138,252,cs),\n(153,356,o),\n(212,437,o),\n(310,437,cs),\n(409,437,o),\n(452,360,o),\n(437,250,cs),\n(423,148,o),\n(357,64,o),\n(261,64,cs)\n);\n}\n);\nwidth = 624;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"5B836CBD-5A05-4F3B-A39F-8D74CF5805A4\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,-207,o),\n(486,-247,o),\n(536,-248,cs),\n(578,-249,o),\n(620,-231,o),\n(620,-231,c),\n(620,-231,o),\n(620,-148,o),\n(620,-148,cs),\n(570,-159,o),\n(543,-144,o),\n(543,-99,c),\n(543,500,l),\n(443,500,l),\n(443,402,l),\n(415,473,o),\n(353,512,o),\n(278,512,c),\n(126,513,o),\n(60,377,o),\n(60,250,cs),\n(60,103,o),\n(147,-11,o),\n(280,-11,c),\n(349,-11,o),\n(420,25,o),\n(443,78,c),\n(443,-140,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(209,74,o),\n(162,161,o),\n(162,248,cs),\n(162,335,o),\n(211,425,o),\n(305,425,c),\n(401,425,o),\n(446,335,o),\n(446,248,cs),\n(446,161,o),\n(403,74,o),\n(305,74,c)\n);\n}\n);\nwidth = 630;\n}\n);\nunicode = 113;\n},\n{\nglyphname = r;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (99,0);\n},\n{\nname = top;\npos = (246,527);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,11);\ntarget = (0,4);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,16);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,17);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(141,0,l),\n(179,270,ls),\n(192,366,o),\n(245,420,o),\n(328,436,cs),\n(354,441,o),\n(388,436,o),\n(407,430,c),\n(418,508,l),\n(409,509,o),\n(386,512,o),\n(376,512,cs),\n(273,512,o),\n(225,454,o),\n(197,401,c),\n(211,500,l),\n(127,500,l),\n(57,0,l)\n);\n}\n);\nwidth = 402;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"4E6D224B-E0A5-4955-882F-1582C38B5E9B\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,0,l),\n(185,258,ls),\n(185,354,o),\n(230,408,o),\n(311,424,cs),\n(336,429,o),\n(371,424,o),\n(391,414,c),\n(391,508,l),\n(382,509,o),\n(358,512,o),\n(348,512,cs),\n(245,512,o),\n(205,454,o),\n(185,401,c),\n(185,500,l),\n(85,500,l),\n(85,0,l)\n);\n},\n{\nclosed = 0;\nnodes = (\n(378,509,l)\n);\n}\n);\nwidth = 406;\n}\n);\nunicode = 114;\n},\n{\nglyphname = racute;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (153,15);\nref = acutecomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 341;\n},\n{\nglyphname = rcaron;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-4,15);\nref = caroncomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 345;\n},\n{\nglyphname = rcommaaccent;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-170,12);\nref = commaaccentcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 343;\n},\n{\nglyphname = rdotbelow;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-07-09 23:22:17 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (59,0);\nref = dotbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7771;\n},\n{\nglyphname = rmacronbelow;\nkernLeft = r;\nkernRight = r;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (164,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nref = r;\n},\n{\npos = (-179,12);\nref = macronbelowcomb;\n}\n);\nwidth = 402;\n}\n);\nunicode = 7775;\n},\n{\nglyphname = s;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (209,-12);\n},\n{\nname = top;\npos = (281,520);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(348,-12,o),\n(421,56,o),\n(432,137,cs),\n(459,330,o),\n(145,253,o),\n(161,365,cs),\n(167,407,o),\n(203,436,o),\n(268,436,cs),\n(340,436,o),\n(373,400,o),\n(368,367,c),\n(454,367,l),\n(463,429,o),\n(425,512,o),\n(280,512,cs),\n(158,512,o),\n(87,435,o),\n(77,362,cs),\n(49,168,o),\n(366,270,o),\n(347,137,cs),\n(340,87,o),\n(293,64,o),\n(227,64,cs),\n(177,64,o),\n(118,93,o),\n(127,156,c),\n(37,156,l),\n(23,57,o),\n(108,-12,o),\n(209,-12,c)\n);\n}\n);\nwidth = 503;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"387FA4A7-73FF-4D97-8FCB-952702749138\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(88,39,o),\n(165,-12,o),\n(259,-12,cs),\n(387,-12,o),\n(459,56,o),\n(457,137,cs),\n(458,190,o),\n(442,253,o),\n(303,292,cs),\n(203,320,o),\n(164,339,o),\n(163,380,cs),\n(163,416,o),\n(202,436,o),\n(263,436,cs),\n(314,436,o),\n(352,413,o),\n(365,373,c),\n(440,408,l),\n(416,470,o),\n(360,512,o),\n(266,512,cs),\n(140,512,o),\n(78,445,o),\n(78,372,cs),\n(78,310,o),\n(99,266,o),\n(205,233,cs),\n(288,207,o),\n(371,191,o),\n(371,132,cs),\n(371,82,o),\n(317,65,o),\n(266,65,cs),\n(207,65,o),\n(155,92,o),\n(139,155,c),\n(134,155,l),\n(59,118,l)\n);\n}\n);\nwidth = 494;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7E27A0BC-C66B-4AEC-96DE-E66ACE9A3214\";\nname = \"21 Jul 21, 11:57\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(65,56,o),\n(151,-12,o),\n(249,-12,c),\n(387,-12,o),\n(459,56,o),\n(457,137,c),\n(458,190,o),\n(442,253,o),\n(303,292,cs),\n(203,320,o),\n(154,339,o),\n(153,372,c),\n(153,416,o),\n(192,436,o),\n(251,436,cs),\n(311,436,o),\n(343,403,o),\n(352,370,c),\n(437,370,l),\n(426,423,o),\n(393,512,o),\n(252,512,cs),\n(130,512,o),\n(68,445,o),\n(68,372,cs),\n(68,310,o),\n(99,266,o),\n(205,233,cs),\n(288,207,o),\n(371,191,o),\n(371,140,c),\n(371,82,o),\n(317,65,o),\n(256,65,c),\n(207,65,o),\n(155,92,o),\n(139,155,c),\n(50,155,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(65,56,o),\n(151,-12,o),\n(249,-12,c),\n(387,-12,o),\n(459,56,o),\n(457,137,c),\n(458,190,o),\n(442,253,o),\n(303,292,cs),\n(203,320,o),\n(154,339,o),\n(153,372,c),\n(153,416,o),\n(192,436,o),\n(251,436,cs),\n(311,436,o),\n(343,403,o),\n(352,370,c),\n(437,370,l),\n(426,423,o),\n(393,512,o),\n(252,512,cs),\n(130,512,o),\n(68,445,o),\n(68,372,cs),\n(68,310,o),\n(99,266,o),\n(205,233,cs),\n(288,207,o),\n(371,191,o),\n(371,140,c),\n(371,82,o),\n(317,65,o),\n(256,65,c),\n(207,65,o),\n(155,92,o),\n(139,155,c),\n(50,155,l)\n);\n}\n);\nwidth = 512;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"16A2ED11-E800-4B00-98DC-B709ECAC59BA\";\nname = \"1 Oct 21, 07:26\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(50,57,o),\n(145,-12,o),\n(246,-12,c),\n(385,-12,o),\n(448,56,o),\n(448,137,cs),\n(448,218,o),\n(417,254,o),\n(291,292,cs),\n(174,327,o),\n(146,342,o),\n(145,375,cs),\n(144,408,o),\n(177,436,o),\n(242,436,cs),\n(314,436,o),\n(352,400,o),\n(352,367,c),\n(438,367,l),\n(438,429,o),\n(388,512,o),\n(243,512,cs),\n(121,512,o),\n(61,445,o),\n(61,372,cs),\n(61,303,o),\n(102,255,o),\n(199,229,cs),\n(284,206,o),\n(363,195,o),\n(363,137,cs),\n(363,87,o),\n(319,64,o),\n(253,64,cs),\n(203,64,o),\n(140,94,o),\n(140,157,c),\n(50,156,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(50,57,o),\n(145,-12,o),\n(246,-12,c),\n(385,-12,o),\n(448,56,o),\n(448,137,cs),\n(448,218,o),\n(417,254,o),\n(291,292,cs),\n(174,327,o),\n(146,342,o),\n(145,375,cs),\n(144,408,o),\n(177,436,o),\n(242,436,cs),\n(314,436,o),\n(352,400,o),\n(352,367,c),\n(438,367,l),\n(438,429,o),\n(388,512,o),\n(243,512,cs),\n(121,512,o),\n(61,445,o),\n(61,372,cs),\n(61,303,o),\n(102,255,o),\n(199,229,cs),\n(284,206,o),\n(363,195,o),\n(363,137,cs),\n(363,87,o),\n(319,64,o),\n(253,64,cs),\n(203,64,o),\n(140,94,o),\n(140,157,c),\n(50,156,l)\n);\n}\n);\nwidth = 503;\n}\n);\nunicode = 115;\n},\n{\nglyphname = sacute;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (188,8);\nref = acutecomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 347;\n},\n{\nglyphname = scaron;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (31,8);\nref = caroncomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 353;\n},\n{\nglyphname = scedilla;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (-46,-14);\nref = cedillacomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 351;\n},\n{\nglyphname = scommaaccent;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-07-09 23:22:21 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = s;\n},\n{\npos = (-60,0);\nref = commaaccentcomb;\n}\n);\nwidth = 503;\n}\n);\nunicode = 537;\n},\n{\nglyphname = germandbls;\nkernLeft = s;\nkernRight = s;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,-12,o),\n(487,64,o),\n(506,203,cs),\n(518,286,o),\n(484,348,o),\n(426,384,c),\n(472,416,o),\n(507,465,o),\n(516,530,cs),\n(533,649,o),\n(453,712,o),\n(351,712,cs),\n(240,712,o),\n(148,649,o),\n(131,530,cs),\n(57,0,l),\n(141,0,l),\n(215,530,ls),\n(223,586,o),\n(263,636,o),\n(339,636,cs),\n(415,636,o),\n(440,586,o),\n(432,530,cs),\n(423,465,o),\n(385,418,o),\n(311,418,cs),\n(307,418,l),\n(296,340,l),\n(299,340,ls),\n(379,340,o),\n(429,278,o),\n(418,203,cs),\n(407,123,o),\n(351,68,o),\n(262,68,cs),\n(247,68,o),\n(234,68,o),\n(224,70,c),\n(213,-9,l),\n(224,-11,o),\n(236,-12,o),\n(250,-12,cs)\n);\n}\n);\nwidth = 567;\n}\n);\nunicode = 223;\n},\n{\nglyphname = t;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-08-03 12:10:40 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (139,0);\n},\n{\nname = center;\npos = (183,250);\n},\n{\nname = top;\npos = (227,500);\n},\n{\nname = topright;\npos = (315,748);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (-35,458);\ntarget = (0,10);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,20);\ntarget = (0,21);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,21);\ntarget = (0,13);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,10);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(245,-12,o),\n(268,-9,o),\n(285,-4,c),\n(295,64,l),\n(278,61,o),\n(261,60,o),\n(248,60,cs),\n(199,60,o),\n(176,78,o),\n(183,132,cs),\n(224,423,l),\n(353,423,l),\n(364,499,l),\n(235,499,l),\n(253,627,l),\n(169,627,l),\n(161,570,ls),\n(153,512,o),\n(138,500,o),\n(84,500,cs),\n(61,500,l),\n(50,423,l),\n(140,423,l),\n(99,132,ls),\n(86,39,o),\n(120,-12,o),\n(229,-12,cs)\n);\n}\n);\nwidth = 366;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"4BC6D785-7F25-40CD-8B35-2CDB36DE77EE\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,500,o),\n(43,500,cs),\n(20,500,l),\n(20,408,l),\n(110,408,l),\n(110,137,ls),\n(110,56,o),\n(145,0,o),\n(260,0,c),\n(282,0,o),\n(321,2,o),\n(336,4,c),\n(336,98,l),\n(322,97,o),\n(287,96,o),\n(271,96,cs),\n(225,97,o),\n(210,127,o),\n(210,166,cs),\n(210,408,l),\n(339,408,l),\n(339,499,l),\n(210,499,l),\n(210,629,l),\n(110,629,l),\n(110,572,ls),\n(110,512,o)\n);\n}\n);\nwidth = 379;\n}\n);\nunicode = 116;\n},\n{\nglyphname = tcaron;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-08-03 12:10:40 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (127,28);\nref = caroncomb.alt;\n}\n);\nwidth = 366;\n}\n);\nunicode = 357;\n},\n{\nglyphname = tcedilla;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-08-03 12:12:35 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (-116,-2);\nref = cedillacomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 355;\n},\n{\nglyphname = tcommaaccent;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-08-03 12:12:35 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (-130,12);\nref = commaaccentcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 539;\n},\n{\nglyphname = tdotbelow;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-08-03 12:12:35 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (99,0);\nref = dotbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7789;\n},\n{\nglyphname = tmacronbelow;\nkernLeft = t;\nkernRight = t;\nlastChange = \"2023-08-03 12:12:35 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = t;\n},\n{\npos = (-139,12);\nref = macronbelowcomb;\n}\n);\nwidth = 366;\n}\n);\nunicode = 7791;\n},\n{\nglyphname = u;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (245,-12);\n},\n{\nname = ogonek;\npos = (425,0);\n},\n{\nname = top;\npos = (325,515);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(329,-12,o),\n(385,59,o),\n(399,94,c),\n(386,0,l),\n(470,0,l),\n(540,500,l),\n(456,500,l),\n(418,230,ls),\n(405,134,o),\n(348,64,o),\n(256,64,cs),\n(189,64,o),\n(148,97,o),\n(161,184,cs),\n(205,500,l),\n(121,500,l),\n(75,172,ls),\n(58,52,o),\n(120,-12,o),\n(217,-12,cs)\n);\n}\n);\nwidth = 597;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"58AB66D5-CBBE-4AAE-8E7A-6B076E516B66\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(418,500,l),\n(418,241,ls),\n(418,145,o),\n(371,75,o),\n(289,75,cs),\n(232,75,o),\n(180,108,o),\n(180,194,c),\n(180,500,l),\n(80,500,l),\n(80,172,ls),\n(80,52,o),\n(164,-12,o),\n(251,-12,cs),\n(354,-12,o),\n(398,45,o),\n(418,98,c),\n(418,-1,l),\n(518,-1,l),\n(518,500,l)\n);\n}\n);\nwidth = 603;\n}\n);\nunicode = 117;\n},\n{\nglyphname = uacute;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (232,3);\nref = acutecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 250;\n},\n{\nglyphname = ubreve;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-19,3);\nref = brevecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 365;\n},\n{\nglyphname = ucircumflex;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (77,3);\nref = circumflexcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 251;\n},\n{\nglyphname = udieresis;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (127,3);\nref = dieresiscomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 252;\n},\n{\nglyphname = udotbelow;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (205,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 7909;\n},\n{\nglyphname = ugrave;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (110,3);\nref = gravecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 249;\n},\n{\nglyphname = uhookabove;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-2,15);\nref = hookabovecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 7911;\n},\n{\nglyphname = uhorn;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(653,446,o),\n(668,546,o),\n(659,597,c),\n(586,592,l),\n(591,556,o),\n(585,502,o),\n(522,500,cs),\n(462,498,o),\n(453,446,o),\n(516,446,c)\n);\n},\n{\nref = u;\n}\n);\nwidth = 600;\n}\n);\nunicode = 432;\n},\n{\nglyphname = uhornacute;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (232,3);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7913;\n},\n{\nglyphname = uhorndotbelow;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (205,-12);\nref = dotbelowcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7921;\n},\n{\nglyphname = uhorngrave;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (110,3);\nref = gravecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7915;\n},\n{\nglyphname = uhornhookabove;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (-2,15);\nref = hookabovecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7917;\n},\n{\nglyphname = uhorntilde;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = uhorn;\n},\n{\npos = (-11,3);\nref = tildecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 7919;\n},\n{\nglyphname = uhungarumlaut;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (35,3);\nref = hungarumlautcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 369;\n},\n{\nglyphname = umacron;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-13,3);\nref = macroncomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 363;\n},\n{\nglyphname = uogonek;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (104,0);\nref = ogonekcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 371;\n},\n{\nglyphname = uring;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (170,3);\nref = ringcomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 367;\n},\n{\nglyphname = utilde;\nkernLeft = u;\nkernRight = u;\nlastChange = \"2023-07-09 23:22:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = u;\n},\n{\npos = (-11,3);\nref = tildecomb;\n}\n);\nwidth = 597;\n}\n);\nunicode = 361;\n},\n{\nglyphname = v;\nkernLeft = v;\nkernRight = v;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(267,0,l),\n(518,500,l),\n(438,500,l),\n(229,84,l),\n(136,500,l),\n(52,500,l),\n(163,0,l)\n);\n}\n);\nwidth = 500;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"6A8EB27F-0274-4B16-855B-6672B7F2D5F0\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,500,l),\n(324,0,l),\n(193,0,l),\n(12,500,l),\n(124,500,l),\n(258,101,l),\n(392,500,l)\n);\n}\n);\nwidth = 518;\n}\n);\nunicode = 118;\n},\n{\nglyphname = w;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (424,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(248,0,l),\n(413,394,l),\n(398,394,l),\n(448,0,l),\n(561,0,l),\n(770,499,l),\n(679,499,l),\n(512,60,l),\n(523,60,l),\n(466,499,l),\n(374,499,l),\n(192,60,l),\n(204,60,l),\n(161,499,l),\n(70,499,l),\n(139,0,l)\n);\n}\n);\nwidth = 770;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A8781FE5-F585-44A1-B1ED-7854B8098763\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(456,0,l),\n(573,0,l),\n(704,499,l),\n(606,499,l),\n(511,66,l),\n(530,66,l),\n(424,499,l),\n(320,499,l),\n(214,66,l),\n(233,66,l),\n(138,499,l),\n(30,499,l),\n(161,0,l),\n(278,0,l),\n(375,374,l),\n(359,374,l)\n);\n}\n);\nwidth = 734;\n}\n);\nunicode = 119;\n},\n{\nglyphname = wacute;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (331,0);\nref = acutecomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 7811;\n},\n{\nglyphname = wcircumflex;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (176,0);\nref = circumflexcomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 373;\n},\n{\nglyphname = wdieresis;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (226,0);\nref = dieresiscomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 7813;\n},\n{\nglyphname = wgrave;\nkernLeft = w;\nkernRight = w;\nlastChange = \"2023-07-09 23:22:46 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = w;\n},\n{\npos = (209,0);\nref = gravecomb;\n}\n);\nwidth = 770;\n}\n);\nunicode = 7809;\n},\n{\nglyphname = x;\nkernLeft = x;\nkernRight = x;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(394,0,l),\n(272,257,l),\n(455,500,l),\n(361,500,l),\n(236,334,l),\n(156,500,l),\n(62,500,l),\n(178,257,l),\n(-17,0,l),\n(77,0,l),\n(214,181,l),\n(300,0,l)\n);\n}\n);\nwidth = 447;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B47364CB-B425-460E-96EC-C79310290C0B\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(247,166,l),\n(363,0,l),\n(485,0,l),\n(308,251,l),\n(480,500,l),\n(363,500,l),\n(250,335,l),\n(135,500,l),\n(13,500,l),\n(188,250,l),\n(13,0,l),\n(130,0,l)\n);\n}\n);\nwidth = 493;\n}\n);\nunicode = 120;\n},\n{\nglyphname = y;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (194,-230);\n},\n{\nname = top;\npos = (298,516);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(140,-230,o),\n(178,-164,o),\n(245,-34,cs),\n(521,500,l),\n(432,500,l),\n(244,119,l),\n(136,500,l),\n(50,500,l),\n(188,3,l),\n(134,-126,o),\n(97,-150,o),\n(51,-150,c),\n(33,-150,o),\n(15,-149,o),\n(3,-146,c),\n(-7,-222,l),\n(5,-226,o),\n(25,-230,o),\n(46,-230,cs)\n);\n}\n);\nwidth = 498;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"C02C67DD-6A80-4F27-B5CB-F7E47F86019A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(185,-251,o),\n(89,-251,cs),\n(78,-251,o),\n(45,-248,o),\n(30,-243,c),\n(30,-151,l),\n(30,-151,o),\n(58,-159,o),\n(96,-156,c),\n(141,-156,o),\n(181,-118,o),\n(202,-24,cs),\n(208,3,l),\n(10,500,l),\n(127,500,l),\n(266,119,l),\n(391,500,l),\n(497,500,l),\n(306,-34,ls),\n(248,-196,o)\n);\n}\n);\nwidth = 502;\n}\n);\nunicode = 121;\n},\n{\nglyphname = yacute;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (205,4);\nref = acutecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 253;\n},\n{\nglyphname = ycircumflex;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (50,4);\nref = circumflexcomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 375;\n},\n{\nglyphname = ydieresis;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (100,4);\nref = dieresiscomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 255;\n},\n{\nglyphname = ydotbelow;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (154,-230);\nref = dotbelowcomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7925;\n},\n{\nglyphname = ygrave;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (83,4);\nref = gravecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7923;\n},\n{\nglyphname = yhookabove;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (-29,16);\nref = hookabovecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7927;\n},\n{\nglyphname = ytilde;\nkernLeft = y;\nkernRight = y;\nlastChange = \"2023-07-09 23:22:57 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = y;\n},\n{\npos = (-38,4);\nref = tildecomb;\n}\n);\nwidth = 498;\n}\n);\nunicode = 7929;\n},\n{\nglyphname = z;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (257,521);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,6);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,9);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(346,1,l),\n(357,77,l),\n(113,77,l),\n(404,425,l),\n(414,501,l),\n(85,501,l),\n(75,425,l),\n(317,425,l),\n(26,78,l),\n(15,1,l)\n);\n}\n);\nwidth = 427;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9FF03EA6-08B8-46BD-92BE-77D8C33F9469\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,1,l),\n(390,86,l),\n(148,86,l),\n(390,419,l),\n(390,501,l),\n(40,501,l),\n(40,419,l),\n(282,419,l),\n(40,87,l),\n(40,1,l)\n);\n}\n);\nwidth = 430;\n}\n);\nunicode = 122;\n},\n{\nglyphname = zacute;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = z;\n},\n{\npos = (164,9);\nref = acutecomb;\n}\n);\nwidth = 427;\n}\n);\nunicode = 378;\n},\n{\nglyphname = zcaron;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = z;\n},\n{\npos = (7,9);\nref = caroncomb;\n}\n);\nwidth = 427;\n}\n);\nunicode = 382;\n},\n{\nglyphname = zdotaccent;\nkernLeft = z;\nkernRight = z;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = z;\n},\n{\npos = (146,9);\nref = dotaccentcomb;\n}\n);\nwidth = 427;\n}\n);\nunicode = 380;\n},\n{\nglyphname = lcommaaccent.loclMAH;\nkernLeft = l;\nkernRight = l;\nlastChange = \"2023-08-03 12:51:51 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = l;\n},\n{\npos = (-161,-2);\nref = cedillacomb;\n}\n);\nwidth = 258;\n}\n);\n},\n{\nglyphname = ncommaaccent.loclMAH;\nkernLeft = n;\nkernRight = n;\nlastChange = \"2023-07-09 23:23:10 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = n;\n},\n{\npos = (-1,-2);\nref = commaaccentcomb.loclMAH;\n}\n);\nwidth = 597;\n}\n);\n},\n{\nglyphname = a.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = bottom;\npos = (230,0);\n},\n{\nname = ogonek;\npos = (444,12);\n},\n{\nname = top;\npos = (309,512);\n}\n);\nhints = (\n{\nhorizontal = 1;\nplace = (-47,41);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (401,41);\ntype = Stem;\n},\n{\nplace = (422,48);\ntype = Stem;\n},\n{\nplace = (38,49);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(299,-12,o),\n(362,106,o),\n(362,106,c),\n(352,35,o),\n(383,0,o),\n(435,0,cs),\n(460,0,o),\n(473,4,o),\n(489,12,c),\n(498,80,l),\n(448,69,o),\n(436,87,o),\n(442,127,cs),\n(472,340,ls),\n(484,429,o),\n(427,512,o),\n(309,512,cs),\n(152,512,o),\n(93,393,o),\n(93,393,c),\n(156,356,l),\n(156,356,o),\n(198,436,o),\n(291,436,cs),\n(359,436,o),\n(395,390,o),\n(387,336,cs),\n(383,310,l),\n(180,310,o),\n(60,262,o),\n(42,135,cs),\n(29,43,o),\n(84,-12,o),\n(165,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(146,64,o),\n(120,91,o),\n(127,142,cs),\n(138,223,o),\n(222,244,o),\n(374,244,c),\n(371,219,ls),\n(357,120,o),\n(259,64,o),\n(197,64,cs)\n);\n}\n);\nwidth = 590;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9D365B9B-32C5-456F-91EC-EA0BDBFBA64C\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(383,426,o),\n(426,339,o),\n(426,252,cs),\n(426,165,o),\n(381,75,o),\n(285,75,c),\n(191,75,o),\n(149,165,o),\n(149,252,cs),\n(149,339,o),\n(189,426,o),\n(285,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(127,512,o),\n(40,397,o),\n(40,250,cs),\n(40,123,o),\n(108,-13,o),\n(260,-12,c),\n(335,-12,o),\n(395,27,o),\n(423,98,c),\n(423,0,l),\n(523,0,l),\n(523,499,l),\n(423,499,l),\n(423,422,l),\n(400,475,o),\n(329,512,o),\n(260,512,c)\n);\n}\n);\nwidth = 583;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B723C8F9-18DA-486D-A68C-0EA6D66026F1\";\nname = \"1 Aug 21, 12:43\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(383,426,o),\n(426,339,o),\n(426,252,cs),\n(426,165,o),\n(381,75,o),\n(285,75,c),\n(191,75,o),\n(149,165,o),\n(149,252,cs),\n(149,339,o),\n(189,426,o),\n(285,426,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,63,o),\n(148,148,o),\n(148,252,cs),\n(148,356,o),\n(196,437,o),\n(294,437,cs),\n(393,437,o),\n(447,360,o),\n(447,250,cs),\n(447,148,o),\n(393,65,o),\n(297,64,cs)\n);\n},\n{\nclosed = 0;\nnodes = (\n(531,-103,l),\n(532,500,l),\n(451,500,l),\n(451,402,l),\n(430,457,o),\n(378,512,o),\n(290,512,cs),\n(159,512,o),\n(64,419,o),\n(64,250,cs),\n(64,86,o),\n(154,-12,o),\n(285,-12,cs),\n(354,-12,o),\n(427,27,o),\n(448,96,c)\n);\n}\n);\nwidth = 583;\n}\n);\n},\n{\nglyphname = aacute.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (216,0);\nref = acutecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abreve.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abreveacute.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_acutecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevedotbelow.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (190,0);\nref = dotbelowcomb;\n},\n{\npos = (-35,0);\nref = brevecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevegrave.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_gravecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevehookabove.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_hookabovecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = abrevetilde.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-35,0);\nref = brevecomb_tildecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflex.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexacute.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (60,0);\nref = circumflexcomb_acutecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexdotbelow.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (190,0);\nref = dotbelowcomb;\n},\n{\npos = (61,0);\nref = circumflexcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexgrave.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb_gravecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflexhookabove.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb_hookabovecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = acircumflextilde.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (61,0);\nref = circumflexcomb_tildecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = adieresis.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (111,0);\nref = dieresiscomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = adotbelow.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (190,0);\nref = dotbelowcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = agrave.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (94,0);\nref = gravecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = ahookabove.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-18,12);\nref = hookabovecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = amacron.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-29,0);\nref = macroncomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = aogonek.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (123,12);\nref = ogonekcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = aring.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (154,0);\nref = ringcomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = atilde.ss01;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a.ss01;\n},\n{\npos = (-27,0);\nref = tildecomb;\n}\n);\nwidth = 590;\n}\n);\n},\n{\nglyphname = g.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (299,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,-229,o),\n(453,-148,o),\n(467,-46,cs),\n(477,20,o),\n(451,94,o),\n(322,94,cs),\n(185,94,ls),\n(116,94,o),\n(135,174,o),\n(195,174,cs),\n(206,174,o),\n(246,174,o),\n(258,174,cs),\n(374,174,o),\n(455,242,o),\n(469,340,cs),\n(474,375,o),\n(467,417,o),\n(449,447,c),\n(466,476,o),\n(519,478,o),\n(556,472,c),\n(569,560,l),\n(478,576,o),\n(428,525,o),\n(417,480,c),\n(401,494,o),\n(360,512,o),\n(299,512,cs),\n(172,512,o),\n(97,427,o),\n(85,340,cs),\n(77,286,o),\n(95,222,o),\n(139,197,c),\n(102,193,o),\n(64,164,o),\n(59,127,cs),\n(53,86,o),\n(75,61,o),\n(107,52,c),\n(45,31,o),\n(14,-31,o),\n(8,-73,cs),\n(-6,-172,o),\n(83,-229,o),\n(208,-229,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(121,-154,o),\n(79,-122,o),\n(88,-59,cs),\n(93,-22,o),\n(124,12,o),\n(168,22,c),\n(304,22,l),\n(376,22,o),\n(395,-2,o),\n(389,-49,cs),\n(383,-100,o),\n(336,-154,o),\n(218,-154,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(183,243,o),\n(157,287,o),\n(165,342,cs),\n(172,395,o),\n(211,441,o),\n(288,441,cs),\n(372,441,o),\n(397,396,o),\n(389,343,cs),\n(381,285,o),\n(344,243,o),\n(260,243,cs)\n);\n}\n);\nwidth = 547;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"077287D2-C640-42BE-89DC-9237D68A85C4\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,240,o),\n(147,288,o),\n(147,343,cs),\n(147,398,o),\n(180,440,o),\n(245,440,cs),\n(312,440,o),\n(344,398,o),\n(344,343,cs),\n(344,288,o),\n(312,240,o),\n(245,240,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(129,-46,o),\n(148,-8,o),\n(188,12,c),\n(298,12,l),\n(361,12,o),\n(405,-12,o),\n(403,-81,cs),\n(401,-150,o),\n(334,-171,o),\n(248,-169,c),\n(174,-167,o),\n(129,-127,o),\n(129,-82,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(509,560,l),\n(416,576,o),\n(373,525,o),\n(370,480,c),\n(340,500,o),\n(299,512,o),\n(248,512,cs),\n(119,512,o),\n(57,434,o),\n(57,337,cs),\n(57,280,o),\n(84,216,o),\n(139,191,c),\n(118,183,o),\n(57,164,o),\n(57,103,cs),\n(57,61,o),\n(101,37,o),\n(142,28,c),\n(79,12,o),\n(42,-33,o),\n(42,-89,cs),\n(42,-161,o),\n(108,-250,o),\n(249,-250,c),\n(419,-251,o),\n(495,-174,o),\n(494,-67,cs),\n(493,13,o),\n(425,99,o),\n(306,99,cs),\n(206,99,ls),\n(137,99,o),\n(147,168,o),\n(207,168,cs),\n(218,168,o),\n(241,168,o),\n(248,168,cs),\n(380,168,o),\n(441,242,o),\n(440,337,cs),\n(440,379,o),\n(428,417,o),\n(405,447,c),\n(418,476,o),\n(471,478,o),\n(509,472,c)\n);\n}\n);\nwidth = 523;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7A42339F-1245-461A-AC41-BAF96E1C6F90\";\nname = \"22 Jul 21, 14:28\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(195,246,o),\n(151,292,o),\n(151,344,cs),\n(151,396,o),\n(192,440,o),\n(257,440,cs),\n(324,440,o),\n(370,396,o),\n(370,344,cs),\n(370,292,o),\n(324,246,o),\n(257,246,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(138,-22,o),\n(163,10,o),\n(209,30,c),\n(307,30,l),\n(365,30,o),\n(410,-1,o),\n(408,-70,cs),\n(406,-139,o),\n(345,-155,o),\n(266,-155,c),\n(192,-155,o),\n(138,-120,o),\n(138,-70,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(521,560,l),\n(428,576,o),\n(385,525,o),\n(382,480,c),\n(352,500,o),\n(311,512,o),\n(260,512,cs),\n(148,512,o),\n(69,427,o),\n(69,340,cs),\n(69,286,o),\n(96,222,o),\n(151,197,c),\n(126,194,o),\n(77,181,o),\n(77,117,cs),\n(77,75,o),\n(113,50,o),\n(154,41,c),\n(91,25,o),\n(54,-22,o),\n(54,-78,cs),\n(54,-150,o),\n(120,-229,o),\n(261,-229,c),\n(418,-230,o),\n(494,-163,o),\n(493,-56,cs),\n(492,24,o),\n(440,102,o),\n(315,102,cs),\n(210,102,ls),\n(141,102,o),\n(151,174,o),\n(211,174,cs),\n(222,174,o),\n(253,174,o),\n(260,174,cs),\n(392,174,o),\n(452,269,o),\n(452,340,cs),\n(452,375,o),\n(440,417,o),\n(417,447,c),\n(430,476,o),\n(483,478,o),\n(521,472,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(423,-97,o),\n(378,-146,o),\n(254,-146,cs),\n(180,-146,o),\n(132,-102,o),\n(107,-43,c),\n(29,-86,l),\n(74,-187,o),\n(166,-229,o),\n(253,-230,cs),\n(369,-232,o),\n(506,-180,o),\n(506,-12,cs),\n(507,500,l),\n(426,500,l),\n(426,402,l),\n(405,457,o),\n(348,512,o),\n(260,512,cs),\n(129,512,o),\n(31,419,o),\n(31,250,cs),\n(31,86,o),\n(124,-12,o),\n(255,-12,cs),\n(324,-12,o),\n(402,27,o),\n(423,96,c),\n(423,-12,ls)\n);\n},\n{\nclosed = 1;\nnodes = (\n(166,63,o),\n(115,148,o),\n(115,252,cs),\n(115,356,o),\n(166,437,o),\n(264,437,cs),\n(363,437,o),\n(422,360,o),\n(422,250,cs),\n(422,148,o),\n(363,65,o),\n(267,64,cs)\n);\n}\n);\nwidth = 543;\n}\n);\n},\n{\nglyphname = gbreve.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (-45,0);\nref = brevecomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = gcommaaccent.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (299,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (-58,0);\nref = commaturnedabovecomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = gdotaccent.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (188,0);\nref = dotaccentcomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = gmacron.ss01;\nkernLeft = g;\nkernRight = g;\nlastChange = \"2023-07-09 23:23:29 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = g.ss01;\n},\n{\npos = (-39,0);\nref = macroncomb;\n}\n);\nwidth = 547;\n}\n);\n},\n{\nglyphname = ordfeminine;\nkernLeft = a;\nkernRight = a;\nlastChange = \"2023-07-09 23:23:18 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = a;\n}\n);\nwidth = 607;\n}\n);\nunicode = 170;\n},\n{\nglyphname = ordmasculine;\nkernLeft = o;\nkernRight = o;\nlastChange = \"2023-07-09 23:23:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = o;\n}\n);\nwidth = 580;\n}\n);\nunicode = 186;\n},\n{\nglyphname = zero;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(515,-13,o),\n(605,173,o),\n(631,358,cs),\n(659,553,o),\n(616,720,o),\n(408,720,c),\n(198,720,o),\n(109,553,o),\n(81,358,cs),\n(55,173,o),\n(93,-13,o),\n(305,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(176,68,o),\n(146,199,o),\n(168,359,cs),\n(191,522,o),\n(257,639,o),\n(398,639,c),\n(533,639,o),\n(567,522,o),\n(544,359,cs),\n(522,199,o),\n(452,68,o),\n(316,68,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(382,290,o),\n(414,319,o),\n(418,353,cs),\n(423,388,o),\n(399,417,o),\n(365,417,cs),\n(330,417,o),\n(297,388,o),\n(292,353,cs),\n(288,319,o),\n(313,290,o),\n(348,290,cs)\n);\n}\n);\nwidth = 682;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"13DCC383-82AB-442C-BFC2-C1F1611A1FF5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,-13,o),\n(84,173,o),\n(84,358,cs),\n(84,553,o),\n(150,719,o),\n(360,719,c),\n(568,719,o),\n(634,553,o),\n(634,358,cs),\n(634,173,o),\n(570,-13,o),\n(360,-13,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(235,618,o),\n(188,513,o),\n(188,360,cs),\n(188,200,o),\n(230,89,o),\n(359,89,c),\n(488,89,o),\n(530,200,o),\n(530,360,cs),\n(530,513,o),\n(483,618,o),\n(360,618,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(395,295,o),\n(424,325,o),\n(424,358,cs),\n(424,394,o),\n(395,424,o),\n(361,424,cs),\n(326,424,o),\n(296,394,o),\n(296,358,cs),\n(296,325,o),\n(326,295,o),\n(361,295,cs)\n);\n}\n);\nwidth = 718;\n}\n);\nunicode = 48;\n},\n{\nglyphname = one;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,8);\ntarget = (0,7);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,11);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,4);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(387,0,l),\n(398,80,l),\n(265,80,l),\n(352,699,l),\n(277,699,l),\n(264,606,o),\n(241,592,o),\n(124,592,c),\n(113,512,l),\n(238,512,l),\n(177,80,l),\n(50,80,l),\n(39,0,l)\n);\n}\n);\nwidth = 513;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"E47BB55E-6434-4EFE-8F9A-CD219E7F6C54\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,94,l),\n(69,94,l),\n(69,0,l),\n(441,0,l),\n(441,96,l),\n(308,96,l),\n(308,699,l),\n(221,699,l),\n(221,598,o),\n(163,593,o),\n(71,593,c),\n(71,512,l),\n(196,512,l)\n);\n}\n);\nwidth = 496;\n}\n);\nunicode = 49;\n},\n{\nglyphname = two;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,25);\ntarget = (0,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,18);\ntarget = (0,8);\ntype = Stem;\n},\n{\norigin = (0,25);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (0,15);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(466,1,l),\n(477,81,l),\n(137,81,l),\n(164,274,o),\n(495,284,o),\n(529,528,cs),\n(546,647,o),\n(464,712,o),\n(349,712,c),\n(269,712,o),\n(192,677,o),\n(147,615,c),\n(129,589,o),\n(115,555,o),\n(110,519,c),\n(198,519,l),\n(206,576,o),\n(259,632,o),\n(337,632,c),\n(415,632,o),\n(451,584,o),\n(443,528,cs),\n(416,335,o),\n(87,332,o),\n(51,81,cs),\n(40,1,l)\n);\n}\n);\nwidth = 576;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"BC9AB10E-C11D-48D7-ACCF-502BD9D7D8B4\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,257,o),\n(500,284,o),\n(500,530,cs),\n(500,649,o),\n(404,719,o),\n(289,719,c),\n(209,719,o),\n(137,685,o),\n(101,623,c),\n(86,597,o),\n(77,566,o),\n(77,530,c),\n(174,530,l),\n(174,587,o),\n(210,636,o),\n(288,636,c),\n(366,636,o),\n(405,592,o),\n(405,536,cs),\n(405,343,o),\n(80,308,o),\n(80,87,cs),\n(80,1,l),\n(511,1,l),\n(511,93,l),\n(184,93,l)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 50;\n},\n{\nglyphname = three;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(392,-12,o),\n(516,69,o),\n(535,208,cs),\n(551,324,o),\n(489,423,o),\n(333,423,c),\n(553,615,l),\n(565,700,l),\n(177,700,l),\n(166,620,l),\n(448,620,l),\n(215,423,l),\n(206,355,l),\n(301,355,ls),\n(400,355,o),\n(463,309,o),\n(450,212,cs),\n(438,128,o),\n(364,68,o),\n(275,68,cs),\n(202,68,o),\n(147,94,o),\n(138,173,c),\n(137,185,o),\n(137,198,o),\n(138,210,c),\n(53,203,l),\n(50,182,o),\n(51,162,o),\n(52,144,c),\n(65,43,o),\n(154,-12,o),\n(263,-12,cs)\n);\n}\n);\nwidth = 609;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"EB8DBBAE-32D2-41E0-8962-5175497312F2\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(469,429,o),\n(530,330,o),\n(530,203,cs),\n(530,64,o),\n(418,-12,o),\n(289,-12,c),\n(180,-12,o),\n(83,43,o),\n(56,144,c),\n(52,162,o),\n(49,182,o),\n(49,203,c),\n(156,210,l),\n(156,198,o),\n(158,185,o),\n(161,173,c),\n(174,121,o),\n(217,78,o),\n(290,78,c),\n(379,78,o),\n(423,140,o),\n(423,207,cs),\n(423,271,o),\n(399,358,o),\n(265,358,c),\n(183,358,l),\n(183,441,l),\n(379,611,l),\n(110,611,l),\n(110,700,l),\n(496,700,l),\n(496,606,l),\n(313,441,l)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 51;\n},\n{\nglyphname = four;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,9);\ntarget = (0,7);\ntype = Stem;\n},\n{\norigin = (0,10);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(425,1,l),\n(448,167,l),\n(552,167,l),\n(564,248,l),\n(460,248,l),\n(523,701,l),\n(437,701,l),\n(65,248,l),\n(53,168,l),\n(362,168,l),\n(339,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(417,559,l),\n(374,248,l),\n(157,248,l)\n);\n}\n);\nwidth = 613;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"343D4897-1185-4756-95B8-BCD83EF9873F\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(460,1,l),\n(460,702,l),\n(354,702,l),\n(354,1,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(557,158,l),\n(557,250,l),\n(63,250,l),\n(63,158,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(354,701,l),\n(64,248,l),\n(169,248,l),\n(452,690,l)\n);\n}\n);\nwidth = 582;\n}\n);\nunicode = 52;\n},\n{\nglyphname = five;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,30);\ntarget = (0,23);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (0,5);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,20);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,-12,o),\n(527,77,o),\n(549,234,cs),\n(570,387,o),\n(475,469,o),\n(353,469,cs),\n(296,469,o),\n(231,443,o),\n(206,407,c),\n(275,620,l),\n(557,620,l),\n(568,700,l),\n(221,700,l),\n(110,348,l),\n(198,322,l),\n(226,361,o),\n(272,388,o),\n(324,388,cs),\n(415,388,o),\n(476,330,o),\n(463,234,cs),\n(448,126,o),\n(374,68,o),\n(285,68,cs),\n(211,68,o),\n(151,123,o),\n(150,195,c),\n(66,163,l),\n(77,49,o),\n(164,-12,o),\n(273,-12,cs)\n);\n}\n);\nwidth = 621;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"141C748C-D320-4F67-ACD8-1A49E620755D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(84,49,o),\n(180,-12,o),\n(289,-12,c),\n(418,-12,o),\n(530,83,o),\n(530,240,cs),\n(530,393,o),\n(418,484,o),\n(289,484,c),\n(255,484,o),\n(191,469,o),\n(174,442,c),\n(209,627,l),\n(484,627,l),\n(484,720,l),\n(129,720,l),\n(60,321,l),\n(59,316,o),\n(166,315,o),\n(165,310,c),\n(183,355,o),\n(224,393,o),\n(288,393,c),\n(379,393,o),\n(427,314,o),\n(427,242,cs),\n(427,166,o),\n(379,80,o),\n(290,80,c),\n(216,80,o),\n(170,133,o),\n(156,195,c),\n(57,163,l)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 53;\n},\n{\nglyphname = six;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,17);\ntarget = (1,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(410,-12,o),\n(512,88,o),\n(532,227,cs),\n(550,354,o),\n(460,452,o),\n(343,452,cs),\n(312,452,o),\n(275,442,o),\n(261,427,c),\n(473,700,l),\n(374,700,l),\n(158,404,ls),\n(121,354,o),\n(82,292,o),\n(73,227,cs),\n(53,88,o),\n(125,-12,o),\n(270,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(185,68,o),\n(148,140,o),\n(160,228,cs),\n(170,299,o),\n(229,376,o),\n(322,376,c),\n(413,376,o),\n(454,299,o),\n(444,228,cs),\n(431,134,o),\n(369,68,o),\n(282,68,c)\n);\n}\n);\nwidth = 595;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"D6D6E878-2182-488D-B392-1DFFB86B72D8\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(417,-12,o),\n(529,75,o),\n(529,235,cs),\n(529,392,o),\n(413,476,o),\n(318,476,c),\n(271,476,o),\n(246,464,o),\n(241,464,c),\n(413,720,l),\n(297,720,l),\n(91,384,ls),\n(65,342,o),\n(48,287,o),\n(48,235,cs),\n(48,75,o),\n(159,-12,o),\n(288,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(378,392,o),\n(426,310,o),\n(426,236,cs),\n(426,159,o),\n(378,81,o),\n(289,81,c),\n(200,81,o),\n(151,159,o),\n(151,236,cs),\n(151,310,o),\n(196,392,o),\n(287,392,c)\n);\n}\n);\nwidth = 586;\n}\n);\nunicode = 54;\n},\n{\nglyphname = seven;\nlastChange = \"2023-08-03 12:47:48 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,4);\ntype = Stem;\n},\n{\norigin = (0,4);\ntarget = (0,1);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(165,1,l),\n(551,622,l),\n(562,700,l),\n(118,700,l),\n(107,620,l),\n(462,620,l),\n(76,1,l)\n);\n}\n);\nwidth = 527;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"838B41D5-9F30-4BE4-913F-336DAFA8DCAA\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,608,l),\n(79,1,l),\n(200,1,l),\n(499,610,l),\n(499,700,l),\n(55,700,l),\n(55,608,l)\n);\n}\n);\nwidth = 525;\n}\n);\nunicode = 55;\n},\n{\nglyphname = eight;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(391,-12,o),\n(511,64,o),\n(530,203,cs),\n(542,286,o),\n(508,348,o),\n(450,384,c),\n(496,416,o),\n(531,465,o),\n(540,530,cs),\n(557,649,o),\n(477,712,o),\n(364,712,cs),\n(253,712,o),\n(154,649,o),\n(137,530,cs),\n(128,465,o),\n(151,415,o),\n(187,384,c),\n(120,348,o),\n(69,286,o),\n(57,203,cs),\n(38,64,o),\n(134,-12,o),\n(263,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(187,68,o),\n(134,123,o),\n(145,203,cs),\n(156,278,o),\n(221,340,o),\n(312,340,cs),\n(403,340,o),\n(453,278,o),\n(442,203,cs),\n(431,123,o),\n(364,68,o),\n(275,68,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(249,418,o),\n(212,465,o),\n(221,530,cs),\n(229,586,o),\n(276,636,o),\n(352,636,cs),\n(428,636,o),\n(464,586,o),\n(456,530,cs),\n(447,465,o),\n(398,418,o),\n(324,418,cs)\n);\n}\n);\nwidth = 611;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"91AF98D4-6337-4809-84E9-869B365A9A81\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,342,o),\n(503,408,o),\n(503,530,cs),\n(503,649,o),\n(404,719,o),\n(289,719,c),\n(175,719,o),\n(77,649,o),\n(77,530,cs),\n(77,408,o),\n(175,342,o),\n(289,342,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(366,642,o),\n(405,586,o),\n(405,530,cs),\n(405,474,o),\n(366,418,o),\n(290,418,c),\n(213,418,o),\n(174,474,o),\n(174,530,cs),\n(174,586,o),\n(210,642,o),\n(288,642,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(418,-12,o),\n(530,64,o),\n(530,203,cs),\n(530,339,o),\n(418,419,o),\n(289,419,c),\n(160,419,o),\n(49,339,o),\n(49,203,cs),\n(49,64,o),\n(160,-12,o),\n(289,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(379,341,o),\n(423,274,o),\n(423,210,cs),\n(423,143,o),\n(379,78,o),\n(290,78,c),\n(201,78,o),\n(156,143,o),\n(156,210,cs),\n(156,274,o),\n(197,341,o),\n(288,341,c)\n);\n}\n);\nwidth = 587;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"594B591A-42ED-4B4B-A577-75D6A89A309A\";\nname = \"2 Aug 21, 17:38\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(404,342,o),\n(503,408,o),\n(503,530,cs),\n(503,649,o),\n(404,719,o),\n(289,719,c),\n(175,719,o),\n(77,649,o),\n(77,530,cs),\n(77,408,o),\n(175,342,o),\n(289,342,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(366,642,o),\n(405,586,o),\n(405,530,cs),\n(405,474,o),\n(366,418,o),\n(290,418,c),\n(213,418,o),\n(174,474,o),\n(174,530,cs),\n(174,586,o),\n(210,642,o),\n(288,642,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(418,-12,o),\n(530,64,o),\n(530,203,cs),\n(530,339,o),\n(418,419,o),\n(289,419,c),\n(160,419,o),\n(49,339,o),\n(49,203,cs),\n(49,64,o),\n(160,-12,o),\n(289,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(379,341,o),\n(423,274,o),\n(423,210,cs),\n(423,143,o),\n(379,78,o),\n(290,78,c),\n(201,78,o),\n(156,143,o),\n(156,210,cs),\n(156,274,o),\n(197,341,o),\n(288,341,c)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 56;\n},\n{\nglyphname = nine;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(265,0,l),\n(481,296,ls),\n(518,346,o),\n(557,408,o),\n(566,473,cs),\n(586,612,o),\n(514,712,o),\n(369,712,c),\n(229,712,o),\n(127,612,o),\n(107,473,cs),\n(89,346,o),\n(179,248,o),\n(296,248,cs),\n(327,248,o),\n(364,258,o),\n(378,273,c),\n(166,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(226,324,o),\n(185,401,o),\n(195,472,cs),\n(208,566,o),\n(270,632,o),\n(357,632,c),\n(454,632,o),\n(492,560,o),\n(479,472,cs),\n(469,401,o),\n(410,324,o),\n(317,324,c)\n);\n}\n);\nwidth = 594;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"DE9DA14C-A867-4145-8585-487AFC56B204\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(160,732,o),\n(48,645,o),\n(48,485,cs),\n(48,328,o),\n(164,244,o),\n(259,244,c),\n(306,244,o),\n(331,256,o),\n(336,256,c),\n(164,0,l),\n(280,0,l),\n(486,336,ls),\n(512,378,o),\n(529,433,o),\n(529,485,cs),\n(529,645,o),\n(418,732,o),\n(289,732,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(199,328,o),\n(151,410,o),\n(151,484,cs),\n(151,561,o),\n(199,639,o),\n(288,639,c),\n(377,639,o),\n(426,561,o),\n(426,484,cs),\n(426,410,o),\n(381,328,o),\n(290,328,c)\n);\n}\n);\nwidth = 586;\n}\n);\nunicode = 57;\n},\n{\nglyphname = .notdef;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (1,3);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,1);\ntarget = (1,1);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (1,0);\ntype = Stem;\n},\n{\norigin = (0,1);\ntarget = (1,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(497,-150,l),\n(620,730,l),\n(162,730,l),\n(39,-150,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,652,l),\n(524,652,l),\n(423,-72,l),\n(135,-72,l)\n);\n}\n);\nwidth = 648;\n}\n);\n},\n{\nglyphname = space;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nwidth = 268;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"278BD42E-6D32-4FB3-9902-F04FFA4DB058\";\nname = foreground;\nwidth = 230;\n}\n);\nunicode = 32;\n},\n{\nglyphname = nbspace;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nwidth = 268;\n}\n);\nmetricWidth = space;\nunicode = 160;\n},\n{\nglyphname = period;\nlastChange = \"2023-08-03 12:46:37 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(109,-12,o),\n(141,17,o),\n(146,51,cs),\n(151,86,o),\n(127,115,o),\n(93,115,cs),\n(58,115,o),\n(25,86,o),\n(20,51,cs),\n(15,17,o),\n(40,-12,o),\n(75,-12,cs)\n);\n}\n);\nwidth = 222;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"2626C257-C8D1-4BEC-A76B-04061BD798F2\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 46;\n},\n{\nglyphname = comma;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(92,-119,o),\n(153,-39,o),\n(166,48,cs),\n(172,97,o),\n(147,134,o),\n(100,134,cs),\n(64,134,o),\n(29,99,o),\n(24,64,cs),\n(19,31,o),\n(46,0,o),\n(79,0,cs),\n(82,0,o),\n(87,0,o),\n(89,1,c),\n(79,-71,o),\n(3,-86,o),\n(3,-86,c),\n(3,-86,o),\n(-3,-119,o),\n(-2,-119,cs)\n);\n}\n);\nwidth = 244;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7090993E-1050-418C-BDF4-9BE23E3E6164\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n}\n);\nunicode = 44;\n},\n{\nglyphname = colon;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(195,300,o),\n(227,329,o),\n(232,363,cs),\n(237,398,o),\n(213,427,o),\n(179,427,cs),\n(144,427,o),\n(111,398,o),\n(106,363,cs),\n(101,329,o),\n(126,300,o),\n(161,300,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(151,-12,o),\n(183,17,o),\n(188,51,cs),\n(193,86,o),\n(169,115,o),\n(135,115,cs),\n(100,115,o),\n(67,86,o),\n(62,51,cs),\n(57,17,o),\n(82,-12,o),\n(117,-12,cs)\n);\n}\n);\nwidth = 306;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"1129757A-F034-4623-96F5-2C126444C93D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,289,o),\n(229,324,o),\n(229,363,cs),\n(229,405,o),\n(196,440,o),\n(156,440,cs),\n(115,440,o),\n(80,405,o),\n(80,363,cs),\n(80,324,o),\n(115,289,o),\n(156,289,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 58;\n},\n{\nglyphname = semicolon;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(88,-119,o),\n(141,-20,o),\n(152,48,c),\n(157,89,o),\n(142,134,o),\n(86,134,cs),\n(50,134,o),\n(15,99,o),\n(10,64,cs),\n(5,31,o),\n(32,0,o),\n(65,0,cs),\n(68,0,o),\n(73,0,o),\n(75,1,c),\n(65,-71,o),\n(-11,-86,o),\n(-11,-86,c),\n(-11,-86,o),\n(-17,-119,o),\n(-16,-119,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(150,300,o),\n(182,329,o),\n(187,363,cs),\n(192,398,o),\n(168,427,o),\n(134,427,cs),\n(99,427,o),\n(66,398,o),\n(61,363,cs),\n(56,329,o),\n(81,300,o),\n(116,300,cs)\n);\n}\n);\nwidth = 270;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"7C7B3130-D28B-462C-85A7-59917ACED75E\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(180,289,o),\n(213,324,o),\n(213,363,cs),\n(213,405,o),\n(180,440,o),\n(140,440,cs),\n(99,440,o),\n(64,405,o),\n(64,363,cs),\n(64,324,o),\n(99,289,o),\n(140,289,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(132,0,o),\n(136,0,o),\n(139,1,c),\n(139,-76,o),\n(60,-92,o),\n(60,-92,c),\n(60,-92,o),\n(59,-131,o),\n(60,-131,cs),\n(171,-131,o),\n(214,-21,o),\n(214,50,c),\n(214,94,o),\n(190,142,o),\n(131,142,cs),\n(91,142,o),\n(60,105,o),\n(60,67,cs),\n(60,32,o),\n(92,0,o),\n(129,0,cs)\n);\n}\n);\nwidth = 274;\n}\n);\nunicode = 59;\n},\n{\nglyphname = ellipsis;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (230,0);\nref = period;\n},\n{\npos = (460,0);\nref = period;\n},\n{\nref = period;\n}\n);\nwidth = 770;\n}\n);\nunicode = 8230;\n},\n{\nglyphname = exclam;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(208,215,l),\n(290,720,l),\n(187,720,l),\n(130,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(173,-11,o),\n(208,21,o),\n(213,56,cs),\n(218,94,o),\n(193,126,o),\n(157,126,cs),\n(119,126,o),\n(83,94,o),\n(78,56,cs),\n(73,21,o),\n(99,-11,o),\n(137,-11,cs)\n);\n}\n);\nwidth = 345;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A93029F6-5A44-47E5-8EBB-60AEDDECB850\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(205,215,l),\n(218,720,l),\n(89,720,l),\n(105,215,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(196,-12,o),\n(229,23,o),\n(229,62,cs),\n(229,104,o),\n(196,139,o),\n(156,139,cs),\n(115,139,o),\n(80,104,o),\n(80,62,cs),\n(80,23,o),\n(115,-12,o),\n(156,-12,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 33;\n},\n{\nglyphname = exclamdown;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(138,-232,l),\n(198,273,l),\n(120,273,l),\n(35,-232,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(208,362,o),\n(242,394,o),\n(248,432,cs),\n(252,467,o),\n(227,499,o),\n(191,499,cs),\n(153,499,o),\n(117,467,o),\n(113,432,cs),\n(107,394,o),\n(134,362,o),\n(172,362,cs)\n);\n}\n);\nwidth = 309;\n}\n);\nunicode = 161;\n},\n{\nglyphname = question;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,18);\ntarget = (0,8);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (0,14);\ntarget = (0,15);\ntype = Stem;\n},\n{\norigin = (0,0);\ntarget = (0,1);\ntype = Stem;\n},\n{\norigin = (0,21);\ntarget = (0,5);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (1,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(183,216,o),\n(274,216,o),\n(274,216,c),\n(297,380,o),\n(472,311,o),\n(502,530,cs),\n(519,649,o),\n(437,719,o),\n(322,719,cs),\n(246,719,o),\n(169,685,o),\n(124,623,c),\n(106,597,o),\n(92,566,o),\n(87,530,c),\n(169,530,l),\n(177,587,o),\n(236,639,o),\n(310,639,cs),\n(388,639,o),\n(429,592,o),\n(421,536,cs),\n(398,372,o),\n(214,437,o),\n(183,216,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(221,-12,o),\n(253,17,o),\n(258,51,cs),\n(263,86,o),\n(239,115,o),\n(205,115,cs),\n(170,115,o),\n(137,86,o),\n(132,51,cs),\n(127,17,o),\n(152,-12,o),\n(187,-12,cs)\n);\n}\n);\nwidth = 511;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"CB6FE323-AA22-456B-834C-E280C3EC3E3D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(312,380,o),\n(500,311,o),\n(500,530,cs),\n(500,649,o),\n(404,719,o),\n(289,719,c),\n(209,719,o),\n(137,685,o),\n(101,623,c),\n(86,597,o),\n(77,566,o),\n(77,530,c),\n(174,530,l),\n(174,587,o),\n(210,636,o),\n(288,636,c),\n(366,636,o),\n(405,592,o),\n(405,536,cs),\n(405,372,o),\n(208,437,o),\n(208,216,cs),\n(208,216,o),\n(312,216,o),\n(312,216,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(308,-12,o),\n(341,23,o),\n(341,62,cs),\n(341,104,o),\n(308,139,o),\n(268,139,cs),\n(227,139,o),\n(192,104,o),\n(192,62,cs),\n(192,23,o),\n(227,-12,o),\n(268,-12,cs)\n);\n}\n);\nwidth = 587;\n}\n);\nunicode = 63;\n},\n{\nglyphname = questiondown;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(265,-219,o),\n(342,-185,o),\n(387,-123,c),\n(405,-97,o),\n(419,-66,o),\n(424,-30,c),\n(342,-30,l),\n(334,-87,o),\n(275,-139,o),\n(201,-139,cs),\n(123,-139,o),\n(82,-92,o),\n(90,-36,cs),\n(113,128,o),\n(297,63,o),\n(328,284,cs),\n(328,284,o),\n(237,284,o),\n(237,284,c),\n(214,120,o),\n(39,189,o),\n(9,-30,cs),\n(-8,-149,o),\n(74,-219,o),\n(189,-219,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(341,385,o),\n(374,414,o),\n(379,449,cs),\n(384,483,o),\n(359,512,o),\n(324,512,cs),\n(290,512,o),\n(258,483,o),\n(253,449,cs),\n(248,414,o),\n(272,385,o),\n(306,385,cs)\n);\n}\n);\nwidth = 511;\n}\n);\nunicode = 191;\n},\n{\nglyphname = periodcentered;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(187,241,o),\n(219,270,o),\n(224,304,cs),\n(229,339,o),\n(205,368,o),\n(171,368,cs),\n(136,368,o),\n(103,339,o),\n(98,304,cs),\n(93,270,o),\n(118,241,o),\n(153,241,cs)\n);\n}\n);\nwidth = 306;\n}\n);\nunicode = 183;\n},\n{\nglyphname = bullet;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(212,223,o),\n(256,262,o),\n(262,307,cs),\n(269,354,o),\n(236,393,o),\n(191,393,cs),\n(144,393,o),\n(100,354,o),\n(93,307,cs),\n(87,262,o),\n(120,223,o),\n(167,223,cs)\n);\n}\n);\nwidth = 339;\n}\n);\nunicode = 8226;\n},\n{\nglyphname = asterisk;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(273,455,l),\n(361,330,l),\n(419,374,l),\n(332,499,l),\n(475,562,l),\n(456,624,l),\n(324,567,l),\n(344,712,l),\n(276,712,l),\n(255,564,l),\n(138,622,l),\n(102,561,l),\n(226,499,l),\n(103,374,l),\n(149,330,l)\n);\n}\n);\nwidth = 489;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"52A87255-65B2-4E80-95F9-0AF50A018D84\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(146,321,l),\n(246,438,l),\n(344,320,l),\n(407,374,l),\n(310,489,l),\n(436,553,l),\n(400,624,l),\n(287,568,l),\n(287,714,l),\n(204,714,l),\n(204,568,l),\n(92,624,l),\n(55,553,l),\n(180,490,l),\n(83,374,l)\n);\n}\n);\nwidth = 491;\n}\n);\nunicode = 42;\n},\n{\nglyphname = numbersign;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,3);\ntarget = (1,2);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (3,3);\ntarget = (3,2);\ntype = Stem;\n},\n{\norigin = (1,3);\ntarget = (3,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(419,0,l),\n(693,720,l),\n(620,720,l),\n(346,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(640,208,l),\n(651,288,l),\n(77,288,l),\n(66,208,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(203,0,l),\n(477,720,l),\n(404,720,l),\n(130,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(736,433,l),\n(747,513,l),\n(173,513,l),\n(162,433,l)\n);\n}\n);\nwidth = 782;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"21C28542-C2BA-4EFE-9B17-DE8F14164D30\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(227,0,l),\n(400,720,l),\n(306,720,l),\n(133,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(462,0,l),\n(635,720,l),\n(541,720,l),\n(368,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(707,425,l),\n(707,523,l),\n(133,523,l),\n(133,425,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(644,199,l),\n(644,297,l),\n(70,297,l),\n(70,199,l)\n);\n}\n);\nwidth = 777;\n}\n);\nunicode = 35;\n},\n{\nglyphname = slash;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(68,0,l),\n(462,720,l),\n(378,720,l),\n(-16,0,l)\n);\n}\n);\nwidth = 400;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B6C497E8-57DB-4813-80B4-1FC1C004D65A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(97,0,l),\n(390,720,l),\n(303,720,l),\n(10,0,l)\n);\n}\n);\nwidth = 385;\n}\n);\nunicode = 47;\n},\n{\nglyphname = backslash;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(346,0,l),\n(154,720,l),\n(70,720,l),\n(262,0,l)\n);\n}\n);\nwidth = 400;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"343D6EAE-1DF2-4E0E-B6B5-032545DCA862\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(82,720,l),\n(-5,720,l),\n(288,0,l),\n(375,0,l)\n);\n}\n);\nwidth = 385;\n}\n);\nunicode = 92;\n},\n{\nglyphname = periodcentered.loclCAT;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(182,241,o),\n(214,270,o),\n(219,304,cs),\n(224,339,o),\n(200,368,o),\n(166,368,cs),\n(131,368,o),\n(98,339,o),\n(93,304,cs),\n(88,270,o),\n(113,241,o),\n(148,241,cs)\n);\n}\n);\nwidth = 296;\n}\n);\n},\n{\nglyphname = periodcentered.loclCAT.case;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(-73,241,o),\n(-41,270,o),\n(-36,304,cs),\n(-31,339,o),\n(-55,368,o),\n(-89,368,cs),\n(-124,368,o),\n(-157,339,o),\n(-162,304,cs),\n(-167,270,o),\n(-142,241,o),\n(-107,241,cs)\n);\n}\n);\nwidth = 41;\n}\n);\n},\n{\nglyphname = hyphen;\nlastChange = \"2023-08-03 12:46:31 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(419,255,l),\n(430,335,l),\n(82,335,l),\n(71,255,l)\n);\n}\n);\nwidth = 488;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A4E3A6E5-E339-49A3-BA7C-5350A83F40F5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,247,l),\n(428,345,l),\n(80,345,l),\n(80,247,l)\n);\n}\n);\nwidth = 508;\n}\n);\nunicode = 45;\n},\n{\nglyphname = endash;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(485,255,l),\n(496,335,l),\n(83,335,l),\n(72,255,l)\n);\n}\n);\nwidth = 555;\n}\n);\nunicode = 8211;\n},\n{\nglyphname = emdash;\nlastChange = \"2023-08-03 12:47:12 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(816,253,l),\n(828,333,l),\n(83,333,l),\n(71,253,l)\n);\n}\n);\nwidth = 887;\n}\n);\nunicode = 8212;\n},\n{\nglyphname = underscore;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(481,0,l),\n(492,80,l),\n(6,80,l),\n(-5,0,l)\n);\n}\n);\nwidth = 546;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"1AB4D43C-2735-4A3F-815D-32BCD16357D5\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(546,0,l),\n(546,98,l),\n(60,98,l),\n(60,0,l)\n);\n}\n);\nwidth = 606;\n}\n);\nunicode = 95;\n},\n{\nglyphname = parenleft;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(229,-60,l),\n(233,-58,o),\n(132,82,o),\n(169,345,c),\n(206,607,o),\n(346,748,o),\n(343,750,c),\n(250,750,l),\n(250,750,o),\n(116,580,o),\n(83,345,c),\n(50,109,o),\n(136,-60,o),\n(136,-60,c)\n);\n}\n);\nwidth = 303;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A003329C-BEC9-4397-9AAD-9155A5EADE70\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(62,109,o),\n(172,-60,o),\n(172,-60,c),\n(280,-60,l),\n(283,-58,o),\n(163,82,o),\n(163,345,c),\n(163,607,o),\n(283,748,o),\n(280,750,c),\n(172,750,l),\n(172,750,o),\n(62,580,o),\n(62,345,c)\n);\n}\n);\nwidth = 313;\n}\n);\nunicode = 40;\n},\n{\nglyphname = parenright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(78,-60,l),\n(78,-60,o),\n(212,109,o),\n(245,345,c),\n(278,580,o),\n(192,750,o),\n(192,750,c),\n(100,750,l),\n(97,748,o),\n(197,607,o),\n(160,345,c),\n(123,82,o),\n(-16,-58,o),\n(-14,-60,c)\n);\n}\n);\nwidth = 302;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"FEA7CF8C-5847-4A35-8A6B-C76339FB953A\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(243,580,o),\n(133,750,o),\n(133,750,c),\n(25,750,l),\n(22,748,o),\n(142,607,o),\n(142,345,c),\n(142,82,o),\n(22,-58,o),\n(25,-60,c),\n(133,-60,l),\n(133,-60,o),\n(243,109,o),\n(243,345,c)\n);\n}\n);\nwidth = 303;\n}\n);\nunicode = 41;\n},\n{\nglyphname = braceleft;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(220,-93,l),\n(231,-12,l),\n(209,-12,ls),\n(189,-12,o),\n(179,-1,o),\n(182,24,cs),\n(211,232,ls),\n(220,290,o),\n(199,307,o),\n(159,316,c),\n(202,325,o),\n(227,340,o),\n(234,395,cs),\n(264,608,ls),\n(268,633,o),\n(281,644,o),\n(301,644,cs),\n(323,644,l),\n(335,725,l),\n(288,725,ls),\n(222,725,o),\n(195,693,o),\n(186,625,cs),\n(157,422,ls),\n(150,371,o),\n(128,353,o),\n(76,353,c),\n(66,278,l),\n(118,278,o),\n(134,260,o),\n(127,209,cs),\n(99,7,ls),\n(89,-61,o),\n(107,-93,o),\n(173,-93,cs)\n);\n}\n);\nwidth = 296;\n}\n);\nunicode = 123;\n},\n{\nglyphname = braceright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(27,-93,ls),\n(93,-93,o),\n(119,-61,o),\n(129,7,cs),\n(157,209,ls),\n(164,260,o),\n(186,278,o),\n(238,278,c),\n(248,353,l),\n(196,353,o),\n(180,371,o),\n(187,422,cs),\n(216,625,ls),\n(225,693,o),\n(208,725,o),\n(142,725,cs),\n(95,725,l),\n(83,644,l),\n(105,644,ls),\n(125,644,o),\n(136,633,o),\n(132,608,cs),\n(102,395,ls),\n(95,340,o),\n(116,325,o),\n(155,316,c),\n(113,307,o),\n(88,290,o),\n(79,232,cs),\n(50,24,ls),\n(47,-1,o),\n(33,-12,o),\n(13,-12,cs),\n(-9,-12,l),\n(-20,-93,l)\n);\n}\n);\nwidth = 296;\n}\n);\nunicode = 125;\n},\n{\nglyphname = bracketleft;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(302,-51,l),\n(312,25,l),\n(143,25,l),\n(235,678,l),\n(405,678,l),\n(416,753,l),\n(166,753,l),\n(53,-51,l)\n);\n}\n);\nwidth = 383;\n}\n);\nunicode = 91;\n},\n{\nglyphname = bracketright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(246,-51,l),\n(359,753,l),\n(109,753,l),\n(98,678,l),\n(268,678,l),\n(176,25,l),\n(7,25,l),\n(-3,-51,l)\n);\n}\n);\nwidth = 383;\n}\n);\nunicode = 93;\n},\n{\nglyphname = quotesinglbase;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = comma;\n}\n);\nwidth = 274;\n}\n);\nunicode = 8218;\n},\n{\nglyphname = quotedblbase;\nlastChange = \"2023-08-03 12:46:44 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (183,0);\nref = comma;\n},\n{\nref = comma;\n}\n);\nwidth = 463;\n}\n);\nunicode = 8222;\n},\n{\nglyphname = quotedblleft;\nlastChange = \"2023-08-03 12:47:07 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(385,467,o),\n(416,495,o),\n(422,537,cs),\n(428,574,o),\n(405,601,o),\n(367,601,cs),\n(364,601,o),\n(359,601,o),\n(357,600,c),\n(367,672,o),\n(443,687,o),\n(443,687,c),\n(443,687,o),\n(449,720,o),\n(448,720,cs),\n(344,720,o),\n(291,621,o),\n(281,553,c),\n(275,512,o),\n(290,467,o),\n(346,467,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(192,467,o),\n(223,495,o),\n(229,537,cs),\n(235,574,o),\n(212,601,o),\n(174,601,cs),\n(171,601,o),\n(166,601,o),\n(164,600,c),\n(174,672,o),\n(250,687,o),\n(250,687,c),\n(250,687,o),\n(256,720,o),\n(255,720,cs),\n(151,720,o),\n(98,621,o),\n(88,553,c),\n(82,512,o),\n(97,467,o),\n(153,467,cs)\n);\n}\n);\nwidth = 432;\n}\n);\nunicode = 8220;\n},\n{\nglyphname = quotedblright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(378,472,o),\n(431,571,o),\n(442,639,c),\n(447,680,o),\n(432,725,o),\n(376,725,cs),\n(337,725,o),\n(306,697,o),\n(300,655,cs),\n(295,618,o),\n(317,591,o),\n(355,591,cs),\n(358,591,o),\n(363,591,o),\n(365,592,c),\n(355,520,o),\n(279,505,o),\n(279,505,c),\n(279,505,o),\n(273,472,o),\n(274,472,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(185,472,o),\n(238,571,o),\n(249,639,c),\n(254,680,o),\n(239,725,o),\n(183,725,cs),\n(144,725,o),\n(113,697,o),\n(107,655,cs),\n(102,618,o),\n(124,591,o),\n(162,591,cs),\n(165,591,o),\n(170,591,o),\n(172,592,c),\n(162,520,o),\n(86,505,o),\n(86,505,c),\n(86,505,o),\n(80,472,o),\n(81,472,cs)\n);\n}\n);\nwidth = 432;\n}\n);\nunicode = 8221;\n},\n{\nglyphname = quoteleft;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(194,467,o),\n(229,502,o),\n(234,537,cs),\n(239,570,o),\n(212,601,o),\n(179,601,cs),\n(176,601,o),\n(171,601,o),\n(169,600,c),\n(179,672,o),\n(255,687,o),\n(255,687,c),\n(255,687,o),\n(261,720,o),\n(260,720,cs),\n(156,720,o),\n(103,621,o),\n(93,553,c),\n(87,512,o),\n(102,467,o),\n(158,467,cs)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 8216;\n},\n{\nglyphname = quoteright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,467,o),\n(237,566,o),\n(248,634,c),\n(254,675,o),\n(238,720,o),\n(182,720,cs),\n(146,720,o),\n(111,685,o),\n(106,650,cs),\n(102,617,o),\n(128,586,o),\n(161,586,cs),\n(164,586,o),\n(169,586,o),\n(171,587,c),\n(161,515,o),\n(85,500,o),\n(85,500,c),\n(85,500,o),\n(79,467,o),\n(80,467,cs)\n);\n}\n);\nwidth = 244;\n}\n);\nunicode = 8217;\n},\n{\nglyphname = guillemetleft;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(613,120,l),\n(387,287,l),\n(660,454,l),\n(672,544,l),\n(315,325,l),\n(304,249,l),\n(600,30,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(357,121,l),\n(131,288,l),\n(404,455,l),\n(416,545,l),\n(59,326,l),\n(48,250,l),\n(344,31,l)\n);\n}\n);\nwidth = 687;\n}\n);\nunicode = 171;\n},\n{\nglyphname = guillemetright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(639,250,l),\n(650,326,l),\n(353,545,l),\n(341,455,l),\n(566,288,l),\n(294,121,l),\n(281,31,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(383,249,l),\n(394,325,l),\n(97,544,l),\n(85,454,l),\n(310,287,l),\n(38,120,l),\n(25,30,l)\n);\n}\n);\nwidth = 687;\n}\n);\nunicode = 187;\n},\n{\nglyphname = guilsinglleft;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(327,121,l),\n(127,288,l),\n(374,455,l),\n(386,545,l),\n(59,326,l),\n(48,250,l),\n(314,31,l)\n);\n}\n);\nwidth = 401;\n}\n);\nunicode = 8249;\n},\n{\nglyphname = guilsinglright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(353,250,l),\n(364,326,l),\n(97,545,l),\n(85,455,l),\n(284,288,l),\n(38,121,l),\n(25,31,l)\n);\n}\n);\nwidth = 401;\n}\n);\nunicode = 8250;\n},\n{\nglyphname = quotedbl;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(350,465,l),\n(363,499,o),\n(416,621,o),\n(421,658,c),\n(427,696,o),\n(403,720,o),\n(372,720,cs),\n(339,720,o),\n(309,696,o),\n(303,658,c),\n(298,621,o),\n(318,499,o),\n(321,465,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(184,465,l),\n(197,499,o),\n(250,621,o),\n(255,658,c),\n(261,696,o),\n(237,720,o),\n(206,720,cs),\n(173,720,o),\n(143,696,o),\n(137,658,c),\n(132,621,o),\n(152,499,o),\n(155,465,c)\n);\n}\n);\nwidth = 444;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"24C34471-2878-49D9-AC64-055C689381E7\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(354,459,l),\n(387,579,o),\n(401,624,o),\n(401,651,cs),\n(401,689,o),\n(371,721,o),\n(335,721,cs),\n(298,721,o),\n(266,689,o),\n(266,651,cs),\n(266,625,o),\n(280,579,o),\n(314,459,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(153,459,l),\n(186,579,o),\n(200,624,o),\n(200,651,cs),\n(200,689,o),\n(170,721,o),\n(134,721,cs),\n(97,721,o),\n(65,689,o),\n(65,651,cs),\n(65,625,o),\n(79,579,o),\n(113,459,c)\n);\n}\n);\nwidth = 473;\n}\n);\nunicode = 34;\n},\n{\nglyphname = quotesingle;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(184,465,l),\n(197,499,o),\n(250,621,o),\n(255,658,c),\n(261,696,o),\n(237,720,o),\n(206,720,cs),\n(173,720,o),\n(143,696,o),\n(137,658,c),\n(132,621,o),\n(152,499,o),\n(155,465,c)\n);\n}\n);\nwidth = 278;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(158,459,l),\n(191,579,o),\n(205,624,o),\n(205,651,cs),\n(205,689,o),\n(175,721,o),\n(139,721,cs),\n(102,721,o),\n(70,689,o),\n(70,651,cs),\n(70,625,o),\n(84,579,o),\n(118,459,c)\n);\n}\n);\nwidth = 282;\n}\n);\nunicode = 39;\n},\n{\nglyphname = at;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(583,-151,o),\n(661,-112,o),\n(765,-56,c),\n(736,8,l),\n(645,-45,o),\n(562,-77,o),\n(456,-77,cs),\n(243,-77,o),\n(142,84,o),\n(169,281,cs),\n(197,478,o),\n(344,638,o),\n(557,638,cs),\n(766,638,o),\n(858,512,o),\n(835,348,cs),\n(823,264,o),\n(782,149,o),\n(698,149,cs),\n(672,149,o),\n(648,171,o),\n(655,207,c),\n(731,502,l),\n(653,502,l),\n(632,419,l),\n(623,479,o),\n(570,512,o),\n(517,512,cs),\n(388,512,o),\n(301,402,o),\n(272,294,cs),\n(240,169,o),\n(287,67,o),\n(400,67,cs),\n(458,67,o),\n(536,99,o),\n(568,144,c),\n(575,103,o),\n(607,67,o),\n(675,67,cs),\n(840,67,o),\n(905,249,o),\n(919,348,cs),\n(946,539,o),\n(846,712,o),\n(567,712,cs),\n(288,712,o),\n(118,512,o),\n(85,279,cs),\n(54,57,o),\n(166,-151,o),\n(446,-151,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(352,144,o),\n(335,218,o),\n(354,292,cs),\n(373,366,o),\n(429,437,o),\n(509,437,cs),\n(590,437,o),\n(610,362,o),\n(591,288,cs),\n(572,214,o),\n(517,144,o),\n(434,144,cs)\n);\n}\n);\nwidth = 977;\n}\n);\nunicode = 64;\n},\n{\nglyphname = ampersand;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,38);\ntarget = (1,9);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (2,5);\ntarget = (0,26);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,5);\ntarget = (0,9);\ntype = Stem;\n},\n{\norigin = (0,35);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (2,8);\ntarget = (0,23);\ntype = Stem;\n},\n{\norigin = (0,16);\ntarget = (0,15);\ntype = Stem;\n},\n{\norigin = (0,29);\ntarget = (2,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(326,-12,o),\n(386,15,o),\n(436,70,c),\n(472,17,o),\n(515,0,o),\n(573,0,cs),\n(580,0,o),\n(580,0,o),\n(589,0,c),\n(599,70,l),\n(537,70,o),\n(517,85,o),\n(486,128,c),\n(524,182,o),\n(561,262,o),\n(572,332,c),\n(500,332,l),\n(493,285,o),\n(470,226,o),\n(443,186,c),\n(338,359,l),\n(443,423,o),\n(505,478,o),\n(517,564,cs),\n(525,623,o),\n(484,714,o),\n(376,713,cs),\n(261,712,o),\n(188,629,o),\n(177,549,cs),\n(168,486,o),\n(203,410,o),\n(233,372,c),\n(132,316,o),\n(77,261,o),\n(63,168,cs),\n(48,58,o),\n(118,-12,o),\n(248,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(177,66,o),\n(134,115,o),\n(143,179,cs),\n(151,235,o),\n(200,280,o),\n(269,320,c),\n(390,127,l),\n(353,85,o),\n(310,66,o),\n(259,66,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(274,458,o),\n(247,492,o),\n(255,551,cs),\n(262,602,o),\n(301,641,o),\n(365,641,cs),\n(407,641,o),\n(445,604,o),\n(438,555,cs),\n(431,503,o),\n(394,468,o),\n(302,412,c)\n);\n}\n);\nwidth = 668;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"BC46DC87-AB29-432C-8E82-6AD56269F461\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(506,-1,l),\n(628,-1,l),\n(311,350,l),\n(259,405,o),\n(185,460,o),\n(185,534,c),\n(185,582,o),\n(210,640,o),\n(286,640,cs),\n(344,640,o),\n(381,596,o),\n(381,547,cs),\n(381,495,o),\n(339,466,o),\n(265,418,c),\n(130,341,o),\n(50,284,o),\n(50,177,c),\n(50,54,o),\n(155,-11,o),\n(284,-11,c),\n(492,-11,o),\n(570,203,o),\n(575,333,c),\n(486,333,l),\n(486,196,o),\n(382,79,o),\n(284,79,c),\n(204,79,o),\n(144,107,o),\n(144,180,c),\n(144,277,o),\n(257,312,o),\n(352,378,c),\n(417,423,o),\n(470,481,o),\n(470,560,c),\n(470,619,o),\n(414,713,o),\n(287,713,c),\n(150,713,o),\n(89,621,o),\n(89,541,c),\n(89,471,o),\n(117,424,o),\n(211,323,c)\n);\n}\n);\nwidth = 648;\n}\n);\nunicode = 38;\n},\n{\nglyphname = paragraph;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = top;\npos = (477,712);\n}\n);\nhints = (\n{\nhorizontal = 1;\norigin = (0,13);\ntarget = (1,3);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,6);\ntarget = (1,0);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,13);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (1,2);\ntarget = (0,0);\ntype = Stem;\n},\n{\norigin = (1,2);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (1,3);\ntarget = (0,2);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(568,0,l),\n(579,76,l),\n(460,76,l),\n(537,624,l),\n(656,624,l),\n(666,700,l),\n(287,700,ls),\n(205,700,o),\n(114,637,o),\n(100,535,cs),\n(85,429,o),\n(159,371,o),\n(241,371,c),\n(189,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(365,624,l),\n(449,624,l),\n(371,74,l),\n(287,74,l)\n);\n}\n);\nwidth = 668;\n}\n);\nunicode = 182;\n},\n{\nglyphname = section;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(390,62,o),\n(468,130,o),\n(480,211,cs),\n(507,404,o),\n(198,430,o),\n(214,542,cs),\n(220,584,o),\n(258,624,o),\n(323,624,cs),\n(395,624,o),\n(428,588,o),\n(423,555,c),\n(509,555,l),\n(518,617,o),\n(479,700,o),\n(334,700,cs),\n(212,700,o),\n(140,612,o),\n(130,539,cs),\n(102,345,o),\n(413,344,o),\n(395,211,cs),\n(387,161,o),\n(334,120,o),\n(292,114,c),\n(298,53,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(333,-230,o),\n(405,-142,o),\n(415,-69,cs),\n(442,125,o),\n(132,126,o),\n(150,259,cs),\n(157,309,o),\n(211,350,o),\n(253,356,c),\n(246,417,l),\n(155,408,o),\n(77,340,o),\n(65,259,cs),\n(38,66,o),\n(346,40,o),\n(331,-72,cs),\n(325,-114,o),\n(287,-154,o),\n(222,-154,cs),\n(150,-154,o),\n(117,-118,o),\n(122,-85,c),\n(36,-85,l),\n(27,-147,o),\n(66,-230,o),\n(211,-230,cs)\n);\n}\n);\nwidth = 549;\n}\n);\nunicode = 167;\n},\n{\nglyphname = copyright;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(592,-12,o),\n(745,164,o),\n(771,353,cs),\n(798,544,o),\n(695,720,o),\n(469,720,cs),\n(243,720,o),\n(90,544,o),\n(63,353,cs),\n(37,164,o),\n(140,-12,o),\n(366,-12,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(461,151,o),\n(525,188,o),\n(560,252,c),\n(502,274,l),\n(481,237,o),\n(450,222,o),\n(402,222,c),\n(333,222,o),\n(306,274,o),\n(317,353,cs),\n(328,428,o),\n(365,483,o),\n(439,483,c),\n(487,483,o),\n(514,468,o),\n(524,430,c),\n(589,453,l),\n(572,517,o),\n(519,554,o),\n(451,554,c),\n(355,554,o),\n(259,477,o),\n(241,351,cs),\n(224,228,o),\n(298,151,o),\n(394,151,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(221,64,o),\n(120,184,o),\n(143,353,cs),\n(167,518,o),\n(301,644,o),\n(458,644,cs),\n(615,644,o),\n(715,518,o),\n(691,353,cs),\n(668,184,o),\n(533,64,o),\n(377,64,cs)\n);\n}\n);\nwidth = 806;\n}\n);\nunicode = 169;\n},\n{\nglyphname = registered;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(570,126,o),\n(694,269,o),\n(715,422,cs),\n(737,577,o),\n(653,720,o),\n(470,720,cs),\n(287,720,o),\n(163,577,o),\n(141,422,cs),\n(120,269,o),\n(204,126,o),\n(387,126,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,199,o),\n(197,291,o),\n(215,422,cs),\n(233,551,o),\n(338,646,o),\n(460,646,cs),\n(582,646,o),\n(659,551,o),\n(641,422,cs),\n(623,291,o),\n(519,199,o),\n(397,199,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(365,279,l),\n(380,386,l),\n(409,386,l),\n(458,279,l),\n(528,279,l),\n(471,396,l),\n(500,407,o),\n(531,435,o),\n(538,487,cs),\n(545,534,o),\n(511,571,o),\n(451,571,cs),\n(345,571,l),\n(304,279,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(398,517,l),\n(431,517,ls),\n(466,517,o),\n(481,505,o),\n(478,482,c),\n(473,452,o),\n(455,443,o),\n(420,443,cs),\n(387,443,l)\n);\n}\n);\nwidth = 808;\n}\n);\nunicode = 174;\n},\n{\nglyphname = trademark;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,4);\ntarget = (1,5);\ntype = Stem;\n},\n{\norigin = (1,7);\ntarget = (1,0);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,12);\ntarget = (0,11);\ntype = Stem;\n},\n{\norigin = (0,12);\ntarget = (0,0);\ntype = Stem;\n},\n{\nplace = (1135,53);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(444,319,l),\n(479,573,l),\n(548,353,l),\n(589,353,l),\n(720,573,l),\n(685,319,l),\n(755,319,l),\n(808,700,l),\n(723,700,l),\n(586,471,l),\n(512,700,l),\n(427,700,l),\n(374,319,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(212,319,l),\n(257,640,l),\n(364,640,l),\n(372,700,l),\n(91,700,l),\n(83,640,l),\n(187,640,l),\n(142,319,l)\n);\n}\n);\nwidth = 773;\n}\n);\nunicode = 8482;\n},\n{\nglyphname = degree;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,471,o),\n(454,531,o),\n(463,595,cs),\n(473,661,o),\n(437,720,o),\n(360,720,cs),\n(284,720,o),\n(232,661,o),\n(222,595,cs),\n(213,531,o),\n(249,471,o),\n(325,471,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(301,535,o),\n(280,560,o),\n(284,595,cs),\n(289,630,o),\n(318,656,o),\n(351,656,cs),\n(385,656,o),\n(406,630,o),\n(401,595,cs),\n(397,560,o),\n(368,535,o),\n(334,535,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 176;\n},\n{\nglyphname = bar;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(148,-12,l),\n(251,720,l),\n(163,720,l),\n(60,-12,l)\n);\n}\n);\nwidth = 282;\n}\n);\nunicode = 124;\n},\n{\nglyphname = cent;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(356,95,o),\n(440,143,o),\n(487,226,c),\n(415,256,l),\n(387,205,o),\n(339,171,o),\n(279,171,c),\n(178,171,o),\n(139,255,o),\n(153,359,cs),\n(168,463,o),\n(230,544,o),\n(331,544,c),\n(391,544,o),\n(430,510,o),\n(443,459,c),\n(524,489,l),\n(500,572,o),\n(432,620,o),\n(344,620,c),\n(218,620,o),\n(92,520,o),\n(69,356,cs),\n(46,195,o),\n(144,95,o),\n(270,95,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(306,0,l),\n(327,152,l),\n(247,152,l),\n(226,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(377,548,l),\n(398,700,l),\n(318,700,l),\n(297,548,l)\n);\n}\n);\nwidth = 563;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"67A10FD7-782D-4391-978E-3D650EA85A7F\";\nname = foreground;\nwidth = 563;\n}\n);\nunicode = 162;\n},\n{\nglyphname = dollar;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(442,-12,o),\n(565,58,o),\n(584,195,c),\n(605,340,o),\n(510,370,o),\n(384,395,c),\n(294,413,o),\n(196,433,o),\n(208,521,cs),\n(218,591,o),\n(301,632,o),\n(376,632,cs),\n(476,632,o),\n(518,572,o),\n(520,513,c),\n(622,513,l),\n(630,603,o),\n(567,712,o),\n(394,712,c),\n(229,712,o),\n(134,618,o),\n(119,516,c),\n(100,380,o),\n(188,338,o),\n(295,317,c),\n(404,300,o),\n(509,287,o),\n(495,186,c),\n(486,114,o),\n(396,68,o),\n(308,68,c),\n(215,70,o),\n(158,129,o),\n(156,214,c),\n(53,214,l),\n(50,99,o),\n(122,-12,o),\n(297,-12,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(322,-91,l),\n(446,791,l),\n(365,791,l),\n(241,-91,l)\n);\n}\n);\nwidth = 643;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B77E3584-C066-4B83-9C04-DBBF2850799D\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(271,420,o),\n(184,434,o),\n(184,522,cs),\n(184,592,o),\n(247,626,o),\n(322,626,cs),\n(422,626,o),\n(473,573,o),\n(483,514,c),\n(585,514,l),\n(580,604,o),\n(502,713,o),\n(329,713,c),\n(164,713,o),\n(82,619,o),\n(82,517,c),\n(82,369,o),\n(176,335,o),\n(286,314,c),\n(397,297,o),\n(492,288,o),\n(492,187,c),\n(493,115,o),\n(422,78,o),\n(334,78,c),\n(240,80,o),\n(175,130,o),\n(161,215,c),\n(58,215,l),\n(71,100,o),\n(159,-11,o),\n(334,-11,c),\n(479,-11,o),\n(592,59,o),\n(592,196,c),\n(592,341,o),\n(493,377,o),\n(364,402,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(370,-91,l),\n(370,791,l),\n(289,791,l),\n(289,-91,l)\n);\n}\n);\nwidth = 643;\n}\n);\nunicode = 36;\n},\n{\nglyphname = euro;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(402,-13,o),\n(499,40,o),\n(557,121,c),\n(482,163,l),\n(440,105,o),\n(372,67,o),\n(290,67,cs),\n(146,67,o),\n(89,193,o),\n(112,356,cs),\n(135,519,o),\n(227,643,o),\n(371,643,cs),\n(453,643,o),\n(510,605,o),\n(536,547,c),\n(623,589,l),\n(588,670,o),\n(505,723,o),\n(382,723,cs),\n(162,723,o),\n(48,539,o),\n(22,355,cs),\n(-4,171,o),\n(59,-13,o),\n(279,-13,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(427,225,l),\n(459,305,l),\n(-43,305,l),\n(-75,225,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(448,370,l),\n(479,450,l),\n(-23,450,l),\n(-54,370,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 8364;\n},\n{\nglyphname = sterling;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(306,0,ls),\n(428,0,o),\n(495,74,o),\n(532,158,c),\n(458,179,l),\n(435,124,o),\n(390,80,o),\n(313,80,cs),\n(126,80,l),\n(152,97,o),\n(235,167,o),\n(251,278,cs),\n(268,399,o),\n(173,440,o),\n(185,528,cs),\n(193,584,o),\n(249,632,o),\n(327,632,c),\n(405,632,o),\n(442,576,o),\n(434,519,c),\n(522,519,l),\n(527,555,o),\n(523,589,o),\n(511,615,c),\n(484,677,o),\n(417,712,o),\n(337,712,c),\n(222,712,o),\n(116,647,o),\n(99,528,cs),\n(83,413,o),\n(175,381,o),\n(162,289,cs),\n(149,192,o),\n(80,119,o),\n(21,80,c),\n(10,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(399,281,l),\n(411,361,l),\n(77,361,l),\n(65,281,l)\n);\n}\n);\nwidth = 568;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"39949623-1A73-454F-BBEA-2B76B8F5BB59\";\nname = foreground;\nwidth = 614;\n}\n);\nunicode = 163;\n},\n{\nglyphname = yen;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(310,0,l),\n(350,309,l),\n(646,700,l),\n(553,700,l),\n(319,390,l),\n(174,700,l),\n(74,700,l),\n(268,309,l),\n(222,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(501,163,l),\n(512,243,l),\n(80,243,l),\n(69,163,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(521,308,l),\n(532,388,l),\n(100,388,l),\n(89,308,l)\n);\n}\n);\nwidth = 594;\n}\n);\nunicode = 165;\n},\n{\nglyphname = plus;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (1,3);\ntarget = (1,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(297,84,l),\n(357,512,l),\n(269,512,l),\n(209,84,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(475,258,l),\n(486,338,l),\n(89,338,l),\n(78,258,l)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"A5CB3561-8809-4C40-98EF-8A07A48E9182\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(457,249,l),\n(457,347,l),\n(60,347,l),\n(60,249,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(307,512,l),\n(209,512,l),\n(209,84,l),\n(307,84,l)\n);\n}\n);\nwidth = 517;\n}\n);\nunicode = 43;\n},\n{\nglyphname = minus;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(491,255,l),\n(502,335,l),\n(73,335,l),\n(62,255,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 8722;\n},\n{\nglyphname = multiply;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(279,277,l),\n(416,118,l),\n(476,170,l),\n(338,329,l),\n(520,488,l),\n(476,540,l),\n(293,381,l),\n(157,540,l),\n(97,488,l),\n(234,329,l),\n(53,170,l),\n(97,118,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 215;\n},\n{\nglyphname = divide;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(480,220,l),\n(491,300,l),\n(73,300,l),\n(62,220,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(275,1,o),\n(307,30,o),\n(312,64,cs),\n(317,99,o),\n(293,128,o),\n(259,128,cs),\n(224,128,o),\n(191,99,o),\n(186,64,cs),\n(181,30,o),\n(206,1,o),\n(241,1,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(329,385,o),\n(361,414,o),\n(366,448,cs),\n(371,483,o),\n(347,512,o),\n(313,512,cs),\n(278,512,o),\n(245,483,o),\n(240,448,cs),\n(235,414,o),\n(260,385,o),\n(295,385,cs)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 247;\n},\n{\nglyphname = equal;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\nplace = (86,240);\ntarget = (0,3);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (0,3);\ntarget = (0,2);\ntype = Stem;\n},\n{\norigin = (0,3);\ntarget = (0,0);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(474,326,l),\n(485,406,l),\n(110,406,l),\n(99,326,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(446,136,l),\n(457,216,l),\n(82,216,l),\n(71,136,l)\n);\n}\n);\nwidth = 550;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"FCFF93B1-7D38-4FD5-A711-74071FE2EC06\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(443,320,l),\n(443,418,l),\n(68,418,l),\n(68,320,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(443,134,l),\n(443,232,l),\n(68,232,l),\n(68,134,l)\n);\n}\n);\nwidth = 508;\n}\n);\nunicode = 61;\n},\n{\nglyphname = greater;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(502,249,l),\n(513,325,l),\n(89,544,l),\n(77,459,l),\n(401,287,l),\n(29,115,l),\n(17,30,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 62;\n},\n{\nglyphname = less;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(483,115,l),\n(159,287,l),\n(531,459,l),\n(543,544,l),\n(59,325,l),\n(48,249,l),\n(471,30,l)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 60;\n},\n{\nglyphname = asciitilde;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(418,218,o),\n(461,260,o),\n(483,292,c),\n(445,341,l),\n(429,325,o),\n(406,292,o),\n(360,292,cs),\n(320,292,o),\n(279,354,o),\n(214,354,cs),\n(147,354,o),\n(98,313,o),\n(77,281,c),\n(115,231,l),\n(132,248,o),\n(154,281,o),\n(198,281,cs),\n(239,281,o),\n(283,218,o),\n(359,218,cs)\n);\n}\n);\nwidth = 550;\n}\n);\nunicode = 126;\n},\n{\nglyphname = asciicircum;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(395,699,l),\n(347,699,l),\n(101,419,l),\n(193,419,l),\n(360,619,l),\n(470,418,l),\n(563,418,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 94;\n},\n{\nglyphname = percent;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nhints = (\n{\nhorizontal = 1;\norigin = (0,0);\ntarget = (0,0);\ntype = Stem;\n},\n{\nhorizontal = 1;\nplace = (214,34);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,11);\ntarget = (2,11);\ntype = Stem;\n},\n{\nhorizontal = 1;\norigin = (1,5);\ntarget = (2,5);\ntype = Stem;\n},\n{\norigin = (1,8);\ntarget = (2,2);\ntype = Stem;\n},\n{\norigin = (2,8);\ntarget = (1,2);\ntype = Stem;\n},\n{\nplace = (490,111);\ntarget = (0,2);\ntype = Stem;\n},\n{\nplace = (722,41);\ntype = Stem;\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(285,0,l),\n(679,720,l),\n(601,720,l),\n(207,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(312,391,o),\n(394,450,o),\n(409,556,cs),\n(423,659,o),\n(362,720,o),\n(280,720,c),\n(197,720,o),\n(115,658,o),\n(101,555,cs),\n(86,449,o),\n(148,391,o),\n(230,391,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(188,458,o),\n(168,507,o),\n(175,555,cs),\n(182,605,o),\n(215,652,o),\n(269,652,c),\n(321,652,o),\n(342,606,o),\n(335,556,cs),\n(328,509,o),\n(291,458,o),\n(240,458,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(693,-9,o),\n(775,50,o),\n(790,156,cs),\n(804,259,o),\n(743,320,o),\n(661,320,c),\n(578,320,o),\n(496,258,o),\n(482,155,cs),\n(467,49,o),\n(529,-9,o),\n(611,-9,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(569,58,o),\n(549,107,o),\n(556,155,cs),\n(563,205,o),\n(596,252,o),\n(650,252,c),\n(702,252,o),\n(723,206,o),\n(716,156,cs),\n(709,109,o),\n(672,58,o),\n(621,58,c)\n);\n}\n);\nwidth = 861;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"B4672107-219B-492B-AE8A-C8526732ACAF\";\nname = foreground;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(351,0,l),\n(644,720,l),\n(557,720,l),\n(264,0,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(323,391,o),\n(397,450,o),\n(397,556,cs),\n(397,659,o),\n(327,720,o),\n(245,720,c),\n(162,720,o),\n(89,658,o),\n(89,555,cs),\n(89,449,o),\n(159,391,o),\n(241,391,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(295,651,o),\n(321,605,o),\n(321,556,cs),\n(321,510,o),\n(292,460,o),\n(242,460,c),\n(191,460,o),\n(166,508,o),\n(166,555,cs),\n(166,604,o),\n(191,651,o),\n(244,651,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(759,-11,o),\n(833,48,o),\n(833,154,cs),\n(833,257,o),\n(763,318,o),\n(681,318,c),\n(598,318,o),\n(525,256,o),\n(525,153,cs),\n(525,47,o),\n(595,-11,o),\n(677,-11,c)\n);\n},\n{\nclosed = 1;\nnodes = (\n(731,249,o),\n(757,203,o),\n(757,154,cs),\n(757,108,o),\n(728,58,o),\n(678,58,c),\n(627,58,o),\n(602,106,o),\n(602,153,cs),\n(602,202,o),\n(627,249,o),\n(680,249,c)\n);\n}\n);\nwidth = 918;\n}\n);\nunicode = 37;\n},\n{\nglyphname = brevecomb_acutecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (248,201);\nref = acutecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = brevecomb_gravecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (125,190);\nref = gravecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = brevecomb_hookabovecomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(395,739,l),\n(399,767,l),\n(441,772,o),\n(482,802,o),\n(488,847,cs),\n(498,918,o),\n(432,939,o),\n(354,934,c),\n(347,881,l),\n(390,885,o),\n(432,874,o),\n(428,847,cs),\n(424,816,o),\n(385,805,o),\n(342,805,c),\n(333,739,l)\n);\n},\n{\nref = brevecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = brevecomb_tildecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n},\n{\npos = (0,161);\nref = tildecomb;\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = circumflexcomb_acutecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (1,0);\nref = circumflexcomb;\n},\n{\npos = (320,98);\nref = acutecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = circumflexcomb_gravecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (255,99);\nref = gravecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = circumflexcomb_hookabovecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (68,142);\nref = hookabovecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = circumflexcomb_tildecomb;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n},\n{\npos = (-82,182);\nref = tildecomb;\n}\n);\nwidth = 420;\n}\n);\n},\n{\nglyphname = dieresiscomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (198,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(327,581,o),\n(354,606,o),\n(358,636,cs),\n(362,666,o),\n(342,691,o),\n(312,691,cs),\n(282,691,o),\n(253,666,o),\n(249,636,cs),\n(245,606,o),\n(267,581,o),\n(297,581,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(152,581,o),\n(179,606,o),\n(183,636,cs),\n(187,666,o),\n(167,691,o),\n(137,691,cs),\n(107,691,o),\n(78,666,o),\n(74,636,cs),\n(70,606,o),\n(92,581,o),\n(122,581,cs)\n);\n}\n);\nwidth = 324;\n}\n);\nunicode = 776;\n},\n{\nglyphname = dotaccentcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (111,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(151,581,o),\n(178,606,o),\n(182,636,cs),\n(186,666,o),\n(166,691,o),\n(136,691,cs),\n(106,691,o),\n(77,666,o),\n(73,636,cs),\n(69,606,o),\n(91,581,o),\n(121,581,cs)\n);\n}\n);\nwidth = 147;\n}\n);\nunicode = 775;\n},\n{\nglyphname = gravecomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (215,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(258,557,l),\n(196,712,l),\n(86,712,l),\n(186,557,l)\n);\n}\n);\nwidth = 237;\n}\n);\nunicode = 768;\n},\n{\nglyphname = acutecomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (93,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(139,557,l),\n(283,712,l),\n(173,712,l),\n(67,557,l)\n);\n}\n);\nwidth = 237;\n}\n);\nunicode = 769;\n},\n{\nglyphname = hungarumlautcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (290,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(428,557,l),\n(572,712,l),\n(452,712,l),\n(346,557,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(236,557,l),\n(380,712,l),\n(260,712,l),\n(154,557,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 779;\n},\n{\nglyphname = caroncomb.alt;\nlastChange = \"2023-08-03 12:06:26 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _topright;\npos = (188,720);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(233,529,l),\n(327,712,l),\n(220,712,l),\n(164,529,l)\n);\n}\n);\nwidth = 320;\n}\n);\n},\n{\nglyphname = circumflexcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (248,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(178,557,l),\n(269,648,l),\n(334,557,l),\n(416,557,l),\n(303,712,l),\n(253,712,l),\n(95,557,l)\n);\n}\n);\nwidth = 420;\n},\n{\nassociatedMasterId = master01;\nlayerId = \"20458CA3-7F03-4177-ABD8-708FA8DF63BB\";\nname = \"3 Aug 21, 16:24\";\nshapes = (\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(104,557,l),\n(190,557,l),\n(353,745,l),\n(267,745,l)\n);\n},\n{\nclosed = 1;\nnodes = (\n(216,745,l),\n(379,557,l),\n(465,557,l),\n(302,745,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 770;\n},\n{\nglyphname = caroncomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (250,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(281,557,l),\n(438,712,l),\n(356,712,l),\n(265,621,l),\n(200,712,l),\n(117,712,l),\n(231,557,l)\n);\n}\n);\nwidth = 420;\n}\n);\nunicode = 780;\n},\n{\nglyphname = brevecomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (344,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(445,557,o),\n(511,631,o),\n(522,712,c),\n(450,712,l),\n(444,668,o),\n(410,627,o),\n(359,627,cs),\n(310,627,o),\n(287,668,o),\n(293,712,c),\n(221,712,l),\n(210,631,o),\n(254,557,o),\n(349,557,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 774;\n},\n{\nglyphname = ringcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (155,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(225,557,o),\n(269,607,o),\n(277,660,cs),\n(284,715,o),\n(254,764,o),\n(190,764,cs),\n(127,764,o),\n(83,715,o),\n(76,660,cs),\n(68,607,o),\n(98,557,o),\n(161,557,cs)\n);\n},\n{\nclosed = 1;\nnodes = (\n(144,614,o),\n(128,633,o),\n(132,660,cs),\n(135,687,o),\n(157,707,o),\n(182,707,c),\n(208,707,o),\n(224,687,o),\n(221,660,cs),\n(217,633,o),\n(195,614,o),\n(169,614,cs)\n);\n}\n);\nwidth = 237;\n}\n);\nunicode = 778;\n},\n{\nglyphname = tildecomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (336,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-26,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(468,574,o),\n(508,614,o),\n(526,643,c),\n(495,688,l),\n(481,673,o),\n(461,644,o),\n(423,644,cs),\n(389,644,o),\n(340,702,o),\n(297,702,cs),\n(243,702,o),\n(202,662,o),\n(184,633,c),\n(216,588,l),\n(229,603,o),\n(249,632,o),\n(287,632,cs),\n(321,632,o),\n(371,574,o),\n(414,574,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 771;\n},\n{\nglyphname = macroncomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (338,512);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(500,599,l),\n(510,673,l),\n(211,673,l),\n(201,599,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 772;\n},\n{\nglyphname = hookabovecomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (327,500);\n}\n);\nguides = (\n{\npos = (-27,712);\n},\n{\npos = (-22,557);\n},\n{\npos = (-27,636);\n},\n{\npos = (-27,762);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(371,557,l),\n(375,586,l),\n(419,591,o),\n(460,622,o),\n(467,668,cs),\n(477,740,o),\n(409,762,o),\n(329,757,c),\n(322,703,l),\n(366,707,o),\n(409,695,o),\n(405,668,cs),\n(400,636,o),\n(361,625,o),\n(317,625,c),\n(307,557,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 777;\n},\n{\nglyphname = commaturnedabovecomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _top;\npos = (357,512);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(393,555,o),\n(421,584,o),\n(425,612,cs),\n(429,638,o),\n(407,664,o),\n(380,664,cs),\n(379,664,o),\n(374,664,o),\n(372,663,c),\n(380,721,o),\n(442,733,o),\n(442,733,c),\n(442,733,o),\n(447,760,o),\n(446,760,cs),\n(377,760,o),\n(320,705,o),\n(309,625,cs),\n(303,587,o),\n(327,555,o),\n(364,555,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 786;\n},\n{\nglyphname = dotbelowcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (40,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(45,-174,o),\n(73,-149,o),\n(77,-119,cs),\n(81,-89,o),\n(61,-64,o),\n(31,-64,cs),\n(1,-64,o),\n(-28,-89,o),\n(-32,-119,cs),\n(-36,-149,o),\n(-15,-174,o),\n(15,-174,cs)\n);\n}\n);\nwidth = 149;\n}\n);\nunicode = 803;\n},\n{\nglyphname = commaaccentcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (269,-12);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(242,-284,o),\n(299,-229,o),\n(310,-149,cs),\n(315,-111,o),\n(292,-79,o),\n(255,-79,cs),\n(226,-79,o),\n(198,-108,o),\n(194,-136,cs),\n(190,-162,o),\n(211,-188,o),\n(238,-188,cs),\n(239,-188,o),\n(244,-188,o),\n(247,-187,c),\n(238,-245,o),\n(177,-257,o),\n(177,-257,c),\n(177,-257,o),\n(172,-284,o),\n(173,-284,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 806;\n},\n{\nglyphname = cedillacomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (255,2);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(289,-207,o),\n(339,-172,o),\n(346,-123,cs),\n(354,-66,o),\n(300,-33,o),\n(251,-46,c),\n(294,8,l),\n(232,8,l),\n(177,-63,l),\n(214,-103,l),\n(219,-98,o),\n(235,-89,o),\n(253,-89,cs),\n(281,-89,o),\n(293,-99,o),\n(290,-119,cs),\n(287,-138,o),\n(269,-148,o),\n(239,-148,cs),\n(208,-148,o),\n(189,-126,o),\n(181,-113,c),\n(138,-157,l),\n(155,-185,o),\n(192,-207,o),\n(237,-207,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 807;\n},\n{\nglyphname = ogonekcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _ogonek;\npos = (321,0);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(315,-230,o),\n(347,-226,o),\n(366,-215,c),\n(375,-145,l),\n(332,-166,o),\n(279,-157,o),\n(287,-101,cs),\n(291,-68,o),\n(323,-24,o),\n(366,0,c),\n(283,0,l),\n(261,-12,o),\n(216,-66,o),\n(209,-116,cs),\n(201,-173,o),\n(231,-230,o),\n(302,-230,cs)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 808;\n},\n{\nglyphname = macronbelowcomb;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (278,-12);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(427,-159,l),\n(437,-85,l),\n(98,-85,l),\n(88,-159,l)\n);\n}\n);\nwidth = 600;\n}\n);\nunicode = 817;\n},\n{\nglyphname = commaaccentcomb.loclMAH;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nanchors = (\n{\nname = _bottom;\npos = (275,2);\n}\n);\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(289,-207,o),\n(339,-172,o),\n(346,-119,cs),\n(354,-66,o),\n(313,-41,o),\n(267,-41,cs),\n(248,-41,o),\n(236,-43,o),\n(224,-46,c),\n(231,-93,l),\n(237,-91,o),\n(245,-89,o),\n(253,-89,cs),\n(281,-89,o),\n(293,-99,o),\n(290,-118,cs),\n(287,-138,o),\n(269,-148,o),\n(244,-148,cs),\n(208,-148,o),\n(189,-126,o),\n(181,-113,c),\n(138,-157,l),\n(155,-185,o),\n(192,-207,o),\n(237,-207,cs)\n);\n}\n);\nwidth = 600;\n}\n);\n},\n{\nglyphname = dieresis;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = dieresiscomb;\n}\n);\nwidth = 324;\n}\n);\nunicode = 168;\n},\n{\nglyphname = dotaccent;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = dotaccentcomb;\n}\n);\nwidth = 147;\n}\n);\nunicode = 729;\n},\n{\nglyphname = grave;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (-35,0);\nref = gravecomb;\nslant = (8,0);\n}\n);\nwidth = 237;\n}\n);\nunicode = 96;\n},\n{\nglyphname = acute;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = acutecomb;\n}\n);\nwidth = 237;\n}\n);\nunicode = 180;\n},\n{\nglyphname = hungarumlaut;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = hungarumlautcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 733;\n},\n{\nglyphname = circumflex;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = circumflexcomb;\n}\n);\nwidth = 420;\n}\n);\nunicode = 710;\n},\n{\nglyphname = caron;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = caroncomb;\n}\n);\nwidth = 420;\n}\n);\nunicode = 711;\n},\n{\nglyphname = breve;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = brevecomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 728;\n},\n{\nglyphname = ring;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ringcomb;\n}\n);\nwidth = 237;\n}\n);\nunicode = 730;\n},\n{\nglyphname = tilde;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\npos = (-35,0);\nref = tildecomb;\nslant = (8,0);\n}\n);\nwidth = 600;\n}\n);\nunicode = 732;\n},\n{\nglyphname = macron;\nlastChange = \"2023-08-03 09:41:05 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nclosed = 1;\nnodes = (\n(488,640,l),\n(499,720,l),\n(169,720,l),\n(158,640,l)\n);\n}\n);\nwidth = 536;\n}\n);\nunicode = 175;\n},\n{\nglyphname = cedilla;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = cedillacomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 184;\n},\n{\nglyphname = ogonek;\nlastChange = \"2023-07-09 23:04:31 +0000\";\nlayers = (\n{\nlayerId = master01;\nshapes = (\n{\nref = ogonekcomb;\n}\n);\nwidth = 600;\n}\n);\nunicode = 731;\n}\n);\ninstances = (\n{\ninstanceInterpolations = {\nmaster01 = 1;\n};\nisItalic = 1;\nname = Italic;\n}\n);\nkerningLTR = {\nmaster01 = {\n\"@MMK_L_A\" = {\n\"@MMK_R_V\" = -55;\n\"@MMK_R_z\" = 30;\nasterisk = -48;\nquotedbl = -54;\nquotedblleft = -40;\nquotedblright = -45;\nquoteright = -50;\nquotesingle = -54;\n};\n\"@MMK_L_F\" = {\n\"@MMK_R_A\" = -65;\nquoteright = 30;\n};\n\"@MMK_L_H\" = {\nperiod = 0;\n};\n\"@MMK_L_I\" = {\n\"@MMK_R_T\" = 57;\n};\n\"@MMK_L_L\" = {\n\"@MMK_R_V\" = -55;\n\"@MMK_R_Y\" = -60;\nemdash = -80;\n};\n\"@MMK_L_T\" = {\n\"@MMK_R_c\" = -40;\n\"@MMK_R_f\" = -25;\n\"@MMK_R_g\" = -40;\n\"@MMK_R_id\" = 57;\n\"@MMK_R_n\" = -20;\n\"@MMK_R_p\" = -30;\n\"@MMK_R_q\" = -40;\n\"@MMK_R_r\" = -34;\n\"@MMK_R_w\" = -20;\n\"@MMK_R_x\" = -25;\nhyphen = -30;\nicircumflex = 20;\nigrave = 60;\n};\n\"@MMK_L_V\" = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_a\" = -33;\n\"@MMK_R_o\" = -28;\ncolon = -32;\nhyphen = -50;\n};\n\"@MMK_L_W\" = {\n\"@MMK_R_a\" = -10;\n\"@MMK_R_o\" = -22;\n};\n\"@MMK_L_Y\" = {\n\"@MMK_R_a\" = -50;\n\"@MMK_R_c\" = -50;\n\"@MMK_R_e\" = -50;\n\"@MMK_R_g\" = -54;\n\"@MMK_R_o\" = -50;\n\"@MMK_R_p\" = -20;\n\"@MMK_R_r\" = -30;\n\"@MMK_R_u\" = -30;\nhyphen = -60;\nperiod = -40;\nquotedblbase = -40;\n};\n\"@MMK_L_a\" = {\n\"@MMK_R_l\" = -30;\n};\n\"@MMK_L_e\" = {\n\"@MMK_R_Y\" = -50;\n};\n\"@MMK_L_f\" = {\nbraceright = 76;\nbracketright = 71;\nparenright = 65;\nquotedblright = 54;\nquoteleft = 30;\nquoteright = 64;\n};\n\"@MMK_L_g\" = {\n\"@MMK_R_h\" = -25;\n};\n\"@MMK_L_l\" = {\n\"@MMK_R_c\" = -42;\n\"@MMK_R_w\" = 0;\n\"@MMK_R_y\" = -26;\n};\n\"@MMK_L_lcaron\" = {\n\"@MMK_R_l\" = 60;\n};\n\"@MMK_L_n\" = {\nperiod = -54;\n};\n\"@MMK_L_o\" = {\n\"@MMK_R_T\" = 0;\n\"@MMK_R_d\" = 17;\nT = 0;\nquoteright = -20;\n};\n\"@MMK_L_p\" = {\n\"@MMK_R_l\" = -30;\n};\n\"@MMK_L_r\" = {\ncomma = -59;\nperiod = -90;\n};\n\"@MMK_L_w\" = {\n\"@MMK_R_l\" = 0;\n};\n\"@MMK_L_y\" = {\ncomma = -70;\nperiod = -80;\n};\nA = {\nY = -45;\n};\nT = {\n\"@MMK_R_o\" = -55;\na = -36;\ne = -58;\no = -55;\nu = -50;\n};\nY = {\nA = -53;\n};\na = {\nw = -11;\n};\neight = {\nseven = -14;\n};\nhyphen = {\n\"@MMK_R_T\" = -30;\n\"@MMK_R_Y\" = -60;\n};\niacute = {\n\"@MMK_R_T\" = 70;\n};\nicircumflex = {\n\"@MMK_R_T\" = 20;\n};\nigrave = {\n\"@MMK_R_T\" = -30;\n};\nnine = {\nfour = -44;\n};\no = {\nT = -55;\n};\none = {\nnine = -32;\nseven = -15;\n};\nq = {\nu = -10;\n};\nquotedblleft = {\n\"@MMK_R_A\" = -26;\n};\nquoteleft = {\n\"@MMK_R_A\" = -50;\n\"@MMK_R_o\" = -9;\n};\nr = {\nt = 23;\nv = 29;\ny = 25;\n};\nseven = {\nfour = -38;\nsix = -48;\n};\nt = {\ny = 24;\n};\nw = {\na = -8;\n};\ny = {\nw = 35;\n};\nzero = {\nseven = -30;\n};\n};\n};\nmetrics = (\n{\ntype = ascender;\n},\n{\ntype = \"cap height\";\n},\n{\ntype = \"x-height\";\n},\n{\ntype = baseline;\n},\n{\ntype = descender;\n},\n{\nname = \"Overshoot X\";\n},\n{\nname = \"Overshoot Base\";\n},\n{\nname = \"Overshoot Cap\";\n},\n{\ntype = \"italic angle\";\n}\n);\nproperties = (\n{\nkey = designers;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Olivia King\";\n}\n);\n},\n{\nkey = copyrights;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"Copyright 2023 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)\";\n}\n);\n},\n{\nkey = licenses;\nvalues = (\n{\nlanguage = ENG;\nvalue = \"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\";\n}\n);\n},\n{\nkey = designerURL;\nvalue = \"https://www.oliviaking.com/\";\n},\n{\nkey = licenseURL;\nvalue = \"https://scripts.sil.org/OFL\";\n},\n{\nkey = manufacturerURL;\nvalue = \"https://www.oliviaking.com/\";\n},\n{\nkey = manufacturers;\nvalues = (\n{\nlanguage = dflt;\nvalue = \"Olivia King\";\n}\n);\n}\n);\nunitsPerEm = 1000;\nuserData = {\nGSDimensionPlugin.Dimensions = {\nmaster01 = {\nHH = \"80\";\nHV = \"88\";\nOH = \"80\";\nOV = \"92\";\nnV = \"84\";\nnd = \"68\";\noH = \"76\";\noV = \"86\";\n};\n};\nUFO.lib = {\ncom.defcon.sortDescriptor = (\n{\nallowPseudoUnicode = 0;\nascending = \"Latin-1\";\ntype = characterSet;\n}\n);\ncom.robofont.generateFeaturesWithFontTools = 0;\ncom.typemytype.robofont.compileSettings.autohint = 1;\ncom.typemytype.robofont.compileSettings.checkOutlines = 0;\ncom.typemytype.robofont.compileSettings.createDummyDSIG = 1;\ncom.typemytype.robofont.compileSettings.decompose = 0;\ncom.typemytype.robofont.compileSettings.generateFormat = 0;\ncom.typemytype.robofont.compileSettings.releaseMode = 0;\ncom.typemytype.robofont.guideline.magnetic.D6N96jJj7E = 5;\ncom.typemytype.robofont.guideline.magnetic.Gbo3EdxKDI = 5;\ncom.typemytype.robofont.guideline.showMeasurements.D6N96jJj7E = 0;\ncom.typemytype.robofont.guideline.showMeasurements.Gbo3EdxKDI = 0;\ncom.typemytype.robofont.italicSlantOffset = 0;\ncom.typemytype.robofont.segmentType = curve;\ncom.typemytype.robofont.shouldAddPointsInSplineConversion = 1;\ncom.typemytype.robofont.smartSets.uniqueKey = \"5067957840\";\npublic.postscriptNames = {\n};\n};\nUFOFormat = 3;\n};\nversionMajor = 1;\nversionMinor = 1;\n}\n"
  },
  {
    "path": "sources/config.yaml",
    "content": "sources:\n  - InclusiveSans.glyphs\n  - InclusiveSans-Italic.glyphs\naxisOrder:\n  - wght\n  - ital\nfamilyName: \"Inclusive Sans\"\ncleanUp: true\nstat:\n  InclusiveSans[wght].ttf:\n  - name: Weight\n    tag: wght\n    values:\n    - name: Light\n      value: 300\n    - name: Regular\n      value: 400\n      linkedValue: 700\n      flags: 2\n    - name: Medium\n      value: 500\n    - name: SemiBold\n      value: 600\n    - name: Bold\n      value: 700\n  - name: Italic\n    tag: ital\n    values:\n    - name: Roman\n      value: 0\n      linkedValue: 1\n      flags: 2\n  InclusiveSans-Italic[wght].ttf:\n  - name: Weight\n    tag: wght\n    values:\n    - name: Light\n      value: 300\n    - name: Regular\n      value: 400\n      linkedValue: 700\n      flags: 2\n    - name: Medium\n      value: 500\n    - name: SemiBold\n      value: 600\n    - name: Bold\n      value: 700\n  - name: Italic\n    tag: ital\n    values:\n    - name: Italic\n      value: 1\n      "
  }
]