Showing preview only (1,480K chars total). Download the full file or copy to clipboard to get everything.
Repository: LivKing/Inclusive-Sans
Branch: main
Commit: 38b8ed1dd67b
Files: 30
Total size: 1.4 MB
Directory structure:
gitextract_olugya9y/
├── .github/
│ └── workflows/
│ └── build.yaml
├── .gitignore
├── .init.stamp
├── .templaterc.json
├── AUTHORS.txt
├── CONTRIBUTORS.txt
├── Makefile
├── OFL.txt
├── README.md
├── fonts/
│ ├── otf/
│ │ ├── InclusiveSans-Bold.otf
│ │ ├── InclusiveSans-BoldItalic.otf
│ │ ├── InclusiveSans-Italic.otf
│ │ ├── InclusiveSans-Light.otf
│ │ ├── InclusiveSans-LightItalic.otf
│ │ ├── InclusiveSans-Medium.otf
│ │ ├── InclusiveSans-MediumItalic.otf
│ │ ├── InclusiveSans-Regular.otf
│ │ ├── InclusiveSans-SemiBold.otf
│ │ └── InclusiveSans-SemiBoldItalic.otf
│ └── variable/
│ └── .ninja_log
├── requirements.txt
├── scripts/
│ ├── first-run.py
│ ├── index.html
│ └── read-config.py
└── sources/
├── CustomFilter_GFLatinCore.plist
├── InclusiveSans-Italic.glyphs
├── InclusiveSans.glyphs
├── V1.0/
│ ├── InclusiveSans.glyphs
│ └── InclusiveSans_Italic.glyphs
└── config.yaml
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/build.yaml
================================================
name: Build font and specimen
on: [push, release]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install sys tools/deps
run: |
sudo apt-get update
sudo apt-get install ttfautohint
sudo snap install yq
- uses: actions/cache@v2
with:
path: ./venv/
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-venv-
- name: Do first-run script if necessary
run: make .init.stamp
if: github.repository != 'googlefonts/googlefonts-project-template'
- uses: stefanzweifel/git-auto-commit-action@v4
name: First-run setup
if: github.repository != 'googlefonts/googlefonts-project-template'
with:
file_pattern: .init.stamp README.md requirements.txt OFL.txt
commit_message: "Personalize for this repo"
- name: gen zip file name
id: zip-name
shell: bash
# Set the archive name to repo name + "-assets" e.g "MavenPro-assets"
run: echo "ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-fonts" >> $GITHUB_ENV
# If a new release is cut, use the release tag to auto-bump the source files
- name: Bump release
if: github.event_name == 'release'
run: |
. venv/bin/activate
SRCS=$(yq e ".sources[]" sources/config.yaml)
TAG_NAME=${GITHUB_REF/refs\/tags\//}
echo "Bumping $SRCS to $TAG_NAME"
for src in $SRCS
do
bumpfontversion sources/$src --new-version $TAG_NAME;
done
- name: Build font
run: make build
- name: Check with fontbakery
run: make test
continue-on-error: true
- name: proof
run: make proof
- name: setup site
run: cp scripts/index.html out/index.html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
- name: Archive artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ env.ZIP_NAME }}
path: |
fonts
out
outputs:
zip_name: ${{ env.ZIP_NAME }}
release:
# only run if the commit is tagged...
if: github.event_name == 'release'
# ... and it builds successfully
needs:
- build
runs-on: ubuntu-latest
env:
ZIP_NAME: ${{ needs.build.outputs.zip_name }}
steps:
- uses: actions/checkout@v2
- name: Download artefact files
uses: actions/download-artifact@v2
with:
name: ${{ env.ZIP_NAME }}
path: ${{ env.ZIP_NAME }}
- name: Zip files
run: zip -r ${{ env.ZIP_NAME }}.zip ${{ env.ZIP_NAME }}
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.ZIP_NAME }}.zip
asset_name: ${{ env.ZIP_NAME }}.zip
tag: ${{ github.ref }}
overwrite: true
body: "Production ready fonts"
================================================
FILE: .gitignore
================================================
*~
venv
build.stamp
proof
node_modules
package-lock.json
package.json
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
================================================
FILE: .init.stamp
================================================
================================================
FILE: .templaterc.json
================================================
{
"files": [".github/**/*", "Makefile", "scripts/**/*", "requirements.txt"]
}
================================================
FILE: AUTHORS.txt
================================================
# This is the official list of project authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS.txt file.
# See the latter for an explanation.
#
# Names should be added to this file as:
# Name or Organization <email address>
Olivia King <liv@oliviaking.com>
================================================
FILE: CONTRIBUTORS.txt
================================================
# This is the list of people who have contributed to this project,
# and includes those not listed in AUTHORS.txt because they are not
# copyright authors. For example, company employees may be listed
# here because their company holds the copyright and is listed there.
#
# When adding J Random Contributor's name to this file, either J's
# name or J's organization's name should be added to AUTHORS.txt
#
# Names should be added to this file as:
# Name <email address>
Emma Marichal <bonjour@emmamarichal.fr>
================================================
FILE: Makefile
================================================
SOURCES=$(shell python3 scripts/read-config.py --sources )
FAMILY=$(shell python3 scripts/read-config.py --family )
DRAWBOT_SCRIPTS=$(shell ls documentation/*.py)
DRAWBOT_OUTPUT=$(shell ls documentation/*.py | sed 's/\.py/.png/g')
help:
@echo "###"
@echo "# Build targets for $(FAMILY)"
@echo "###"
@echo
@echo " make build: Builds the fonts and places them in the fonts/ directory"
@echo " make test: Tests the fonts with fontbakery"
@echo " make proof: Creates HTML proof documents in the proof/ directory"
@echo " make images: Creates PNG specimen images in the documentation/ directory"
@echo
build: build.stamp
venv: venv/touchfile
build.stamp: venv .init.stamp sources/config.yaml $(SOURCES)
. venv/bin/activate; rm -rf fonts/; gftools builder sources/config.yaml && touch build.stamp
.init.stamp: venv
. venv/bin/activate; python3 scripts/first-run.py
venv/touchfile: requirements.txt
test -d venv || python3 -m venv venv
. venv/bin/activate; pip install -Ur requirements.txt
touch venv/touchfile
test: venv build.stamp
. 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.'
proof: venv build.stamp
. venv/bin/activate; mkdir -p out/ out/proof; gftools gen-html proof $(shell find fonts/ttf -type f) -o out/proof
images: venv build.stamp $(DRAWBOT_OUTPUT)
git add documentation/*.png && git commit -m "Rebuild images" documentation/*.png
%.png: %.py build.stamp
python3 $< --output $@
clean:
rm -rf venv
find . -name "*.pyc" | xargs rm delete
update-project-template:
npx update-template https://github.com/googlefonts/googlefonts-project-template/
update:
pip install --upgrade $(dependency); pip freeze > requirements.txt
================================================
FILE: OFL.txt
================================================
Copyright 2022 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: README.md
================================================
# Inclusive Sans
Inclusive 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.







## Background
The 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.
After 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.
To 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:
1. Clear distinction between I, l and 1
2. Non-mirroring of letters d, b, q and p
3. Distinction between O and 0
4. Wider, more open counter forms on c, o, a and e
5. A higher x-height for easier readability at small sizes
6. Wider default letter-spacing
7. Clear difference between capital height and ascender height
In 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).
Additional weights and styles are currently in development.
[^1]: See WCAG 2 section 1.4 on Distinguishable https://www.w3.org/WAI/WCAG21/quickref/#distinguishable
[^2]: See Sophie Beier's 2009 thesis on typeface legibility
[^3]: http://sofiebeier.dk/?page_id=390
[^4]: https://www.myfonts.com/collections/fs-me-font-fontsmith
[^5]: https://medium.com/the-readability-group/a-guide-to-understanding-what-makes-a-typeface-accessible-and-how-to-make-informed-decisions-9e5c0b9040a0
## Building
Fonts are built automatically by GitHub Actions - take a look in the "Actions" tab for the latest build.
If you want to build fonts manually on your own computer:
* `make build` will produce font files.
* `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests.
* `make proof` will generate HTML proof files.
The proof files and QA tests are also available automatically via GitHub Actions - look at https://LivKing.github.io/Inclusive-Sans.
## Changelog
When you update your font (new version or new release), please report all notable changes here, with a date.
[Font Versioning](https://github.com/googlefonts/gf-docs/tree/main/Spec#font-versioning) is based on semver.
Changelog example:
**26 May 2021. Version 2.13**
- MAJOR Font turned to a variable font.
- SIGNIFICANT New Stylistic sets added.
## License
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
## Repository Layout
This 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.
================================================
FILE: fonts/variable/.ninja_log
================================================
# ninja log v5
0 1853 1736348997572032296 out/Diffbrowsers 14e52ca88f40a7ab
0 1654 1736348999248472446 out/Diffbrowsers 8994a002886e94ae
================================================
FILE: requirements.txt
================================================
absl-py==1.3.0
appdirs==1.4.4
attrs==22.2.0
axisregistry==0.3.10
babelfont==3.0.0
beautifulsoup4==4.11.1
beziers==0.5.0
blackrenderer==0.6.0
booleanOperations==0.9.0
Brotli==1.0.9
browserstack-local==1.2.2
bump2version==1.0.1
bumpfontversion==0.4.1
cattrs==22.2.0
certifi==2022.12.7
cffi==1.15.1
cffsubr==0.2.9.post1
charset-normalizer==2.1.1
click==8.1.3
cmarkgfm==2022.10.27
collidoscope==0.5.2
colorlog==6.7.0
commandlines==0.4.1
commonmark==0.9.1
compreffor==0.5.3
cu2qu==1.6.7.post2
defcon==0.10.2
dehinter==4.0.0
Deprecated==1.2.13
drawbot-skia==0.5.0
exceptiongroup==1.0.4
font-v==2.1.0
fontbakery==0.8.10
fontdiffenator==0.9.13
fontFeatures==1.7.4
fontmake==3.5.1
fontMath==0.9.3
fonttools==4.38.0
freetype-py==2.3.0
fs==2.4.16
gfdiffbrowsers==0.1.7
gflanguages==0.4.3
gftools==0.9.21
gitdb==4.0.10
GitPython==3.1.29
glyphsets==0.5.4
glyphsLib==6.1.0
glyphtools==0.8.0
hyperglot==0.4.4
idna==3.4
importlib-resources==5.10.1
Jinja2==3.1.2
kurbopy==0.8.32
lxml==4.9.2
MarkupSafe==2.1.1
nanoemoji==0.15.1
ninja==1.11.1
numpy==1.24.0
openstep-plist==0.3.0.post1
opentype-sanitizer==9.0.0
opentypespec==1.9.1
orjson==3.8.3
packaging==22.0
picosvg==0.20.6
Pillow==9.3.0
pip-api==0.0.30
pngquant-cli==2.17.0.post5
protobuf==3.20.3
psutil==5.9.4
pybind11==2.10.2
pybrowserstack-screenshots==0.1
pycairo==1.23.0
pyclipper==1.3.0.post4
pycparser==2.21
pygit2==1.11.1
PyGithub==1.57
Pygments==2.13.0
PyJWT==2.6.0
PyNaCl==1.5.0
pyparsing==3.0.9
python-bidi==0.4.2
python-dateutil==2.8.2
PyYAML==6.0
regex==2022.10.31
requests==2.28.1
resvg-cli==0.22.0.post3
rich==12.6.0
rstr==3.2.0
sh==1.14.3
simplejson==3.18.0
six==1.16.0
skia-pathops==0.7.4
skia-python==87.5
smmap==5.0.0
soupsieve==2.3.2.post1
sre-yield==1.2
statmake==0.6.0
strictyaml==1.6.2
stringbrewer==0.0.1
tabulate==0.9.0
toml==0.10.2
ttfautohint-py==0.5.1
typing_extensions==4.4.0
ufo2ft==2.30.0
ufoLib2==0.14.0
ufolint==1.2.0
uharfbuzz==0.33.0
unicodedata2==15.0.0
Unidecode==1.3.6
urllib3==1.26.13
vharfbuzz==0.1.4
vttLib==0.11.0
wrapt==1.14.1
zipp==3.11.0
zopfli==0.2.2
================================================
FILE: scripts/first-run.py
================================================
#!/usr/bin/env python3
# This script is run the first time any action is performed after the repository
# is cloned. If you are reading this because the automatic initialization failed,
# skip down to the section headed "INITIALIZATION STEPS".
from sh import git
import datetime
import re
import sys
from urllib.parse import quote
import subprocess
BASE_OWNER = "googlefonts"
BASE_REPONAME = "googlefonts-project-template"
DUMMY_URL = "https://yourname.github.io/your-font-repository-name"
def repo_url(owner, name):
return f"https://github.com/{owner}/{name}"
def web_url(owner, name):
return f"https://{owner}.github.io/{name}"
def raw_url(owner, name):
return f"https://raw.githubusercontent.com/{owner}/{name}"
def touch():
open(".init.stamp", "w").close()
def lose(msg, e=None):
print(msg)
print("You will need to do the initialization steps manually.")
print("Read scripts/first-run.py for more instructions how to do this.")
if e:
print(
"\nHere's an additional error message which may help diagnose the problem."
)
raise e
sys.exit(1)
try:
my_repo_url = git.remote("get-url", "origin")
except Exception as e:
lose("Could not use git to find my own repository URL", e)
m = re.match(r"(?:https://github.com/|git@github.com:)(.*)/(.*)/?", str(my_repo_url))
if not m:
lose(
f"My git repository URL ({my_repo_url}) didn't look what I expected - are you hosting this on github?"
)
owner, reponame = m[1], m[2]
if owner == BASE_OWNER and reponame == BASE_REPONAME:
print("I am being run on the upstream repository (probably due to CI)")
print("All I'm going to do is create the touch file and quit.")
touch()
sys.exit()
# INITIALIZATION STEPS
# First, the README file contains URLs to pages in the `gh-pages` branch of the
# repo. When initially cloned, these URLs will point to the
# googlefonts/Unified-Font-Repository itself. But downstream users want links
# and badges about their own font, not ours! So any URLs need to be adjusted to
# refer to the end user's repository.
# We will also pin the dependencies so future builds are reproducible.
readme = open("README.md").read()
print(
"Fixing URLs:", web_url(BASE_OWNER, BASE_REPONAME), "->", web_url(owner, reponame)
)
readme = readme.replace(web_url(BASE_OWNER, BASE_REPONAME), web_url(owner, reponame))
# In the badges, the URLs to raw.githubusercontent.com are URL-encoded as they
# are passed to shields.io.
print(
"Fixing URLs:",
quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=""),
"->",
quote(raw_url(owner, reponame), safe=""),
)
readme = readme.replace(
quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=""),
quote(raw_url(owner, reponame), safe=""),
)
print(
"Fixing URLs:",
DUMMY_URL,
"->",
web_url(owner, reponame),
)
readme = readme.replace(
f"`{DUMMY_URL}`",
web_url(owner, reponame),
)
with open("README.md", "w") as fh:
fh.write(readme)
# Fix the OFL
ofl = open("OFL.txt").read()
ofl = ofl.replace(web_url(BASE_OWNER, BASE_REPONAME), web_url(owner, reponame))
ofl = ofl.replace("My Font", reponame.title())
ofl = ofl.replace("20**", str(datetime.date.today().year))
with open("OFL.txt", "w") as fh:
fh.write(ofl)
# Pin the dependencies
print("Pinning dependencies")
dependencies = subprocess.check_output(["pip", "freeze"])
with open("requirements.txt", "wb") as dependency_file:
dependency_file.write(dependencies)
# Finally, we add a "touch file" called ".init.stamp" to the repository which
# prevents this first-run process from being run again.
touch()
================================================
FILE: scripts/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>My Font development</title>
</head>
<body>
<h1>My Font testing pages</h1>
<ul>
<li>
<a href="fontbakery/fontbakery-report.html">FontBakery Report</a>
</li>
<li>
<a href="proof/glyphs.html">All glyphs</a>
</li>
<li>
<a href="proof/text.html">Sample text</a>
</li>
<li>
<a href="proof/waterfall.html">Waterfall test</a>
</li>
</ul>
</body>
</html>
================================================
FILE: scripts/read-config.py
================================================
#!/usr/bin/env python3
# Yes, this is a Bad YAML Parser, but at this stage we are not in the
# venv and do not know what modules the user has available, so for
# maximum compatibility, we are just assuming a plain Python distribution.
import argparse
import re
import sys
import os
parser = argparse.ArgumentParser()
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument('--sources',action='store_true')
group.add_argument('--family',action='store_true')
args = parser.parse_args()
with open(os.path.join("sources", "config.yaml")) as config:
data = config.read()
if args.family:
m = re.search(r"(?m)^familyName: (.*)", data)
if m:
print(m[1])
sys.exit(0)
else:
print("Could not determine family name from config file!")
sys.exit(1)
toggle = False
sources = []
for line in data.splitlines():
if re.match("^sources:", line):
toggle = True
continue
if toggle:
m = re.match(r"^\s+-\s*(.*)", line)
if m:
sources.append("sources/"+m[1])
else:
toggle = False
if sources:
print(" ".join(sources))
sys.exit(0)
else:
print("Could not determine sources from config file!")
sys.exit(1)
================================================
FILE: sources/CustomFilter_GFLatinCore.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>list</key>
<array>
<string>zero</string>
<string>one</string>
<string>two</string>
<string>three</string>
<string>four</string>
<string>five</string>
<string>six</string>
<string>seven</string>
<string>eight</string>
<string>nine</string>
<string>space</string>
<string>nbspace</string>
<string>period</string>
<string>colon</string>
<string>ellipsis</string>
<string>exclam</string>
<string>asterisk</string>
<string>numbersign</string>
<string>slash</string>
<string>backslash</string>
<string>hyphen</string>
<string>parenleft</string>
<string>parenright</string>
<string>braceleft</string>
<string>braceright</string>
<string>bracketleft</string>
<string>bracketright</string>
<string>quotedblleft</string>
<string>quotedblright</string>
<string>quoteleft</string>
<string>quoteright</string>
<string>guillemetleft</string>
<string>guillemetright</string>
<string>quotedbl</string>
<string>quotesingle</string>
<string>bar</string>
<string>plus</string>
<string>multiply</string>
<string>divide</string>
<string>equal</string>
<string>greater</string>
<string>less</string>
<string>percent</string>
<string>dieresiscomb</string>
<string>gravecomb</string>
<string>acutecomb</string>
<string>hungarumlautcomb</string>
<string>macroncomb</string>
<string>dotaccent</string>
<string>A</string>
<string>Aacute</string>
<string>Abreve</string>
<string>Acaron</string>
<string>Acircumflex</string>
<string>Adieresis</string>
<string>Agrave</string>
<string>Amacron</string>
<string>Aogonek</string>
<string>Aring</string>
<string>Atilde</string>
<string>AE</string>
<string>B</string>
<string>C</string>
<string>Cacute</string>
<string>Ccaron</string>
<string>Ccedilla</string>
<string>Cdotaccent</string>
<string>D</string>
<string>Eth</string>
<string>Dcaron</string>
<string>Dcroat</string>
<string>E</string>
<string>Eacute</string>
<string>Ecaron</string>
<string>Ecircumflex</string>
<string>Edieresis</string>
<string>Edotaccent</string>
<string>Egrave</string>
<string>Emacron</string>
<string>Eogonek</string>
<string>F</string>
<string>G</string>
<string>Gbreve</string>
<string>Gcommaaccent</string>
<string>Gdotaccent</string>
<string>H</string>
<string>Hbar</string>
<string>I</string>
<string>IJ</string>
<string>Iacute</string>
<string>Icircumflex</string>
<string>Idieresis</string>
<string>Idotaccent</string>
<string>Igrave</string>
<string>Imacron</string>
<string>Iogonek</string>
<string>J</string>
<string>K</string>
<string>Kcommaaccent</string>
<string>L</string>
<string>Lacute</string>
<string>Lcaron</string>
<string>Lcommaaccent</string>
<string>Lslash</string>
<string>M</string>
<string>N</string>
<string>Nacute</string>
<string>Ncaron</string>
<string>Ncommaaccent</string>
<string>Ntilde</string>
<string>Eng</string>
<string>O</string>
<string>Oacute</string>
<string>Ocircumflex</string>
<string>Odieresis</string>
<string>Ograve</string>
<string>Ohungarumlaut</string>
<string>Omacron</string>
<string>Oslash</string>
<string>Otilde</string>
<string>OE</string>
<string>P</string>
<string>Thorn</string>
<string>Q</string>
<string>R</string>
<string>Racute</string>
<string>Rcaron</string>
<string>Rcommaaccent</string>
<string>S</string>
<string>Sacute</string>
<string>Scaron</string>
<string>Scedilla</string>
<string>Scommaaccent</string>
<string>Germandbls</string>
<string>T</string>
<string>Tcaron</string>
<string>Tcommaaccent</string>
<string>U</string>
<string>Uacute</string>
<string>Ubreve</string>
<string>Ucircumflex</string>
<string>Udieresis</string>
<string>Ugrave</string>
<string>Uhungarumlaut</string>
<string>Umacron</string>
<string>Uogonek</string>
<string>Uring</string>
<string>V</string>
<string>W</string>
<string>Wacute</string>
<string>Wcircumflex</string>
<string>Wdieresis</string>
<string>Wgrave</string>
<string>X</string>
<string>Y</string>
<string>Yacute</string>
<string>Ycircumflex</string>
<string>Ydieresis</string>
<string>Ygrave</string>
<string>Z</string>
<string>Zacute</string>
<string>Zcaron</string>
<string>Zdotaccent</string>
<string>a</string>
<string>aacute</string>
<string>abreve</string>
<string>acaron</string>
<string>acircumflex</string>
<string>adieresis</string>
<string>agrave</string>
<string>amacron</string>
<string>aogonek</string>
<string>aring</string>
<string>atilde</string>
<string>ae</string>
<string>b</string>
<string>c</string>
<string>cacute</string>
<string>ccaron</string>
<string>ccedilla</string>
<string>cdotaccent</string>
<string>d</string>
<string>eth</string>
<string>dcaron</string>
<string>dcroat</string>
<string>e</string>
<string>eacute</string>
<string>ecaron</string>
<string>ecircumflex</string>
<string>edieresis</string>
<string>edotaccent</string>
<string>egrave</string>
<string>emacron</string>
<string>eogonek</string>
<string>f</string>
<string>g</string>
<string>gbreve</string>
<string>gcommaaccent</string>
<string>gdotaccent</string>
<string>h</string>
<string>hbar</string>
<string>i</string>
<string>idotless</string>
<string>iacute</string>
<string>icircumflex</string>
<string>idieresis</string>
<string>idotaccent</string>
<string>igrave</string>
<string>ij</string>
<string>imacron</string>
<string>iogonek</string>
<string>j</string>
<string>jdotless</string>
<string>k</string>
<string>kcommaaccent</string>
<string>l</string>
<string>lacute</string>
<string>lcaron</string>
<string>lcommaaccent</string>
<string>lslash</string>
<string>m</string>
<string>n</string>
<string>nacute</string>
<string>ncaron</string>
<string>ncommaaccent</string>
<string>ntilde</string>
<string>eng</string>
<string>o</string>
<string>oacute</string>
<string>ocircumflex</string>
<string>odieresis</string>
<string>ograve</string>
<string>ohungarumlaut</string>
<string>omacron</string>
<string>oslash</string>
<string>otilde</string>
<string>oe</string>
<string>p</string>
<string>thorn</string>
<string>q</string>
<string>r</string>
<string>racute</string>
<string>rcaron</string>
<string>rcommaaccent</string>
<string>s</string>
<string>sacute</string>
<string>scaron</string>
<string>scedilla</string>
<string>scommaaccent</string>
<string>germandbls</string>
<string>t</string>
<string>tcaron</string>
<string>tcommaaccent</string>
<string>u</string>
<string>uacute</string>
<string>ubreve</string>
<string>ucircumflex</string>
<string>udieresis</string>
<string>ugrave</string>
<string>uhungarumlaut</string>
<string>umacron</string>
<string>uogonek</string>
<string>uring</string>
<string>v</string>
<string>w</string>
<string>wacute</string>
<string>wcircumflex</string>
<string>wdieresis</string>
<string>wgrave</string>
<string>x</string>
<string>y</string>
<string>yacute</string>
<string>ycircumflex</string>
<string>ydieresis</string>
<string>ygrave</string>
<string>z</string>
<string>zacute</string>
<string>zcaron</string>
<string>zdotaccent</string>
<string>ordfeminine</string>
<string>ordmasculine</string>
<string>.notdef</string>
<string>comma</string>
<string>semicolon</string>
<string>exclamdown</string>
<string>question</string>
<string>questiondown</string>
<string>periodcentered</string>
<string>bullet</string>
<string>periodcentered.loclCAT</string>
<string>periodcentered.loclCAT.case</string>
<string>endash</string>
<string>emdash</string>
<string>underscore</string>
<string>quotesinglbase</string>
<string>quotedblbase</string>
<string>guilsinglleft</string>
<string>guilsinglright</string>
<string>at</string>
<string>ampersand</string>
<string>paragraph</string>
<string>section</string>
<string>copyright</string>
<string>registered</string>
<string>trademark</string>
<string>degree</string>
<string>cent</string>
<string>dollar</string>
<string>euro</string>
<string>sterling</string>
<string>yen</string>
<string>minus</string>
<string>asciitilde</string>
<string>asciicircum</string>
<string>dotaccentcomb</string>
<string>caroncomb.alt</string>
<string>circumflexcomb</string>
<string>caroncomb</string>
<string>brevecomb</string>
<string>ringcomb</string>
<string>tildecomb</string>
<string>commaturnedabovecomb</string>
<string>commaaccentcomb</string>
<string>cedillacomb</string>
<string>ogonekcomb</string>
<string>dieresis</string>
<string>grave</string>
<string>acute</string>
<string>hungarumlaut</string>
<string>circumflex</string>
<string>caron</string>
<string>breve</string>
<string>ring</string>
<string>tilde</string>
<string>macron</string>
<string>cedilla</string>
<string>ogonek</string>
</array>
<key>name</key>
<string>GF_Latin_Core</string>
</dict>
</array>
</plist>
================================================
FILE: sources/InclusiveSans-Italic.glyphs
================================================
{
.appVersion = "3260";
.formatVersion = 3;
DisplayStrings = (
"rř"
);
axes = (
{
name = Weight;
tag = wght;
}
);
customParameters = (
{
disabled = 1;
name = glyphOrder;
value = (
space,
exclam,
quotesingle,
quotedbl,
numbersign,
dollar,
percent,
ampersand,
parenleft,
parenright,
asterisk,
plus,
comma,
hyphen,
period,
slash,
zero,
one,
two,
three,
four,
five,
six,
seven,
eight,
nine,
colon,
semicolon,
less,
equal,
greater,
question,
at,
A,
B,
C,
D,
E,
F,
G,
H,
I,
J,
K,
L,
M,
N,
O,
P,
Q,
R,
S,
T,
U,
V,
W,
X,
Y,
Z,
bracketleft,
backslash,
bracketright,
asciicircum,
underscore,
grave,
a,
b,
c,
d,
e,
f,
g,
h,
i,
j,
k,
l,
m,
n,
o,
p,
q,
r,
s,
t,
u,
v,
w,
x,
y,
z,
braceleft,
bar,
braceright,
asciitilde,
exclamdown,
cent,
sterling,
currency,
yen,
brokenbar,
section,
dieresis,
copyright,
ordfeminine,
guillemetleft,
logicalnot,
registered,
macron,
degree,
plusminus,
twosuperior,
threesuperior,
acute,
mu,
paragraph,
periodcentered,
cedilla,
onesuperior,
ordmasculine,
guillemetright,
onequarter,
onehalf,
threequarters,
questiondown,
Agrave,
Aacute,
Acircumflex,
Atilde,
Adieresis,
Aring,
AE,
Ccedilla,
Egrave,
Eacute,
Ecircumflex,
Edieresis,
Igrave,
Iacute,
Icircumflex,
Idieresis,
Eth,
Ntilde,
Ograve,
Oacute,
Ocircumflex,
Otilde,
Odieresis,
multiply,
Oslash,
Ugrave,
Uacute,
Ucircumflex,
Udieresis,
Yacute,
Thorn,
germandbls,
agrave,
aacute,
acircumflex,
atilde,
adieresis,
aring,
ae,
ccedilla,
egrave,
eacute,
ecircumflex,
edieresis,
igrave,
iacute,
icircumflex,
idieresis,
eth,
ntilde,
ograve,
oacute,
ocircumflex,
otilde,
odieresis,
divide,
oslash,
ugrave,
uacute,
ucircumflex,
udieresis,
yacute,
thorn,
ydieresis,
dotlessi,
circumflex,
caron,
breve,
dotaccent,
ring,
ogonek,
tilde,
hungarumlaut,
quoteleft,
quoteright,
minus,
g.ss01,
a.ss01
);
},
{
name = "Use Typo Metrics";
value = 1;
},
{
name = fsType;
value = (
);
},
{
name = "Variable Font Origin";
value = m002;
}
);
date = "2024-11-02 04:16:01 +0000";
familyName = "Inclusive Sans";
featurePrefixes = (
{
automatic = 1;
code = "languagesystem DFLT dflt;
languagesystem latn dflt;
languagesystem latn AZE;
languagesystem latn CRT;
languagesystem latn KAZ;
languagesystem latn TAT;
languagesystem latn TRK;
languagesystem latn ROM;
languagesystem latn MOL;
languagesystem latn MAH;
languagesystem latn CAT;
languagesystem latn NLD;
";
name = Languagesystems;
}
);
features = (
{
automatic = 1;
code = "feature locl;
feature case;
feature ss01;
feature ordn;
";
tag = aalt;
},
{
automatic = 1;
code = "lookup ccmp_DFLT_1 {
@CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb];
lookupflag UseMarkFilteringSet @CombiningTopAccents;
sub i' @CombiningTopAccents by idotless;
sub j' @CombiningTopAccents by jdotless;
} ccmp_DFLT_1;
lookup ccmp_DFLT_2 {
lookupflag 0;
sub brevecomb acutecomb by brevecomb_acutecomb;
sub brevecomb gravecomb by brevecomb_gravecomb;
sub brevecomb hookabovecomb by brevecomb_hookabovecomb;
sub brevecomb tildecomb by brevecomb_tildecomb;
sub circumflexcomb acutecomb by circumflexcomb_acutecomb;
sub circumflexcomb gravecomb by circumflexcomb_gravecomb;
sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb;
sub circumflexcomb tildecomb by circumflexcomb_tildecomb;
} ccmp_DFLT_2;
";
tag = ccmp;
},
{
automatic = 1;
code = "script latn;
language AZE;
lookup locl_latn_0 {
sub i by idotaccent;
} locl_latn_0;
language CRT;
lookup locl_latn_0;
language KAZ;
lookup locl_latn_0;
language TAT;
lookup locl_latn_0;
language TRK;
lookup locl_latn_0;
script latn;
language ROM;
lookup locl_latn_1 {
sub Scedilla by Scommaaccent;
sub scedilla by scommaaccent;
sub Tcedilla by Tcommaaccent;
sub tcedilla by tcommaaccent;
} locl_latn_1;
language MOL;
lookup locl_latn_1;
script latn;
language MAH;
lookup locl_latn_2 {
sub Lcommaaccent by Lcommaaccent.loclMAH;
sub Ncommaaccent by Ncommaaccent.loclMAH;
sub lcommaaccent by lcommaaccent.loclMAH;
sub ncommaaccent by ncommaaccent.loclMAH;
sub commaaccentcomb by commaaccentcomb.loclMAH;
} locl_latn_2;
script latn;
language CAT;
lookup locl_latn_3 {
sub l periodcentered' l by periodcentered.loclCAT;
sub L periodcentered' L by periodcentered.loclCAT.case;
} locl_latn_3;
script latn;
language NLD;
lookup locl_latn_4 {
sub iacute j' by jacute;
sub Iacute J' by Jacute;
} locl_latn_4;
";
tag = locl;
},
{
automatic = 1;
code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case;
";
tag = case;
},
{
code = "sub a by a.ss01;
sub aacute by aacute.ss01;
sub abreve by abreve.ss01;
sub abreveacute by abreveacute.ss01;
sub abrevedotbelow by abrevedotbelow.ss01;
sub abrevegrave by abrevegrave.ss01;
sub abrevehookabove by abrevehookabove.ss01;
sub abrevetilde by abrevetilde.ss01;
sub acircumflex by acircumflex.ss01;
sub acircumflexacute by acircumflexacute.ss01;
sub acircumflexdotbelow by acircumflexdotbelow.ss01;
sub acircumflexgrave by acircumflexgrave.ss01;
sub acircumflexhookabove by acircumflexhookabove.ss01;
sub acircumflextilde by acircumflextilde.ss01;
sub adieresis by adieresis.ss01;
sub adotbelow by adotbelow.ss01;
sub agrave by agrave.ss01;
sub ahookabove by ahookabove.ss01;
sub amacron by amacron.ss01;
sub aogonek by aogonek.ss01;
sub aring by aring.ss01;
sub atilde by atilde.ss01;
sub g by g.ss01;
sub gbreve by gbreve.ss01;
sub gcommaaccent by gcommaaccent.ss01;
sub gdotaccent by gdotaccent.ss01;
sub gmacron by gmacron.ss01;
";
labels = (
{
language = dflt;
value = ss01;
}
);
tag = ss01;
},
{
automatic = 1;
code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;
sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;
sub N o period by numero;
";
tag = ordn;
}
);
fontMaster = (
{
axesValues = (
300
);
customParameters = (
{
name = typoAscender;
value = 950;
},
{
name = typoDescender;
value = -250;
},
{
name = typoLineGap;
value = 0;
},
{
name = winAscent;
value = 1150;
},
{
name = winDescent;
value = 404;
},
{
name = hheaAscender;
value = 950;
},
{
name = hheaDescender;
value = -250;
},
{
name = hheaLineGap;
value = 0;
}
);
guides = (
{
angle = 262.9959;
pos = (108,350);
}
);
iconName = Light;
id = m01;
metricValues = (
{
pos = 720;
},
{
pos = 700;
},
{
pos = 500;
},
{
},
{
pos = -230;
},
{
pos = 512;
},
{
pos = -12;
},
{
pos = 712;
},
{
pos = 7;
}
);
name = "Light Italic";
visible = 1;
},
{
axesValues = (
400
);
customParameters = (
{
name = typoAscender;
value = 950;
},
{
name = typoDescender;
value = -250;
},
{
name = typoLineGap;
value = 0;
},
{
name = winAscent;
value = 1150;
},
{
name = winDescent;
value = 404;
},
{
name = hheaAscender;
value = 950;
},
{
name = hheaDescender;
value = -250;
},
{
name = hheaLineGap;
value = 0;
}
);
id = m002;
metricValues = (
{
pos = 720;
},
{
pos = 700;
},
{
pos = 500;
},
{
},
{
pos = -230;
},
{
pos = 512;
},
{
pos = -12;
},
{
pos = 712;
},
{
pos = 7;
}
);
name = Italic;
visible = 1;
},
{
axesValues = (
700
);
customParameters = (
{
name = typoAscender;
value = 950;
},
{
name = typoDescender;
value = -250;
},
{
name = typoLineGap;
value = 0;
},
{
name = winAscent;
value = 1150;
},
{
name = winDescent;
value = 404;
},
{
name = hheaAscender;
value = 950;
},
{
name = hheaDescender;
value = -250;
},
{
name = hheaLineGap;
value = 0;
}
);
iconName = Bold;
id = m003;
metricValues = (
{
pos = 720;
},
{
pos = 700;
},
{
pos = 508;
},
{
},
{
pos = -230;
},
{
pos = 520;
},
{
pos = -12;
},
{
pos = 712;
},
{
pos = 7;
}
);
name = "Bold Italic";
}
);
glyphs = (
{
glyphname = A;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 08:57:52 +0000";
layers = (
{
anchors = (
{
name = ogonek;
pos = (516,29);
},
{
name = top;
pos = (349,712);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(50,0,l),
(376,700,l),
(314,700,l),
(-21,0,l)
);
},
{
closed = 1;
nodes = (
(444,206,l),
(450,262,l),
(129,262,l),
(123,206,l)
);
},
{
closed = 1;
nodes = (
(539,0,l),
(376,700,l),
(318,700,l),
(475,0,l)
);
}
);
width = 580;
},
{
anchors = (
{
name = ogonek;
pos = (525,34);
},
{
name = top;
pos = (355,712);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(73,0,l),
(394,700,l),
(308,700,l),
(-23,0,l)
);
},
{
closed = 1;
nodes = (
(448,195,l),
(458,275,l),
(137,275,l),
(127,195,l)
);
},
{
closed = 1;
nodes = (
(552,0,l),
(394,700,l),
(314,700,l),
(464,0,l)
);
}
);
width = 591;
},
{
anchors = (
{
name = ogonek;
pos = (595,41);
},
{
name = top;
pos = (392,712);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(132,0,l),
(455,700,l),
(305,700,l),
(-26,0,l)
);
},
{
closed = 1;
nodes = (
(490,161,l),
(505,287,l),
(183,287,l),
(168,161,l)
);
},
{
closed = 1;
nodes = (
(633,0,l),
(475,700,l),
(337,700,l),
(481,0,l)
);
}
);
width = 669;
}
);
unicode = 65;
},
{
glyphname = Aacute;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 09:00:47 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (267,200);
ref = acutecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (276,200);
ref = acutecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (292,204);
ref = acutecomb;
}
);
width = 669;
}
);
unicode = 193;
},
{
glyphname = Abreve;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (172,200);
ref = brevecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (180,200);
ref = brevecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (192,204);
ref = brevecomb;
}
);
width = 669;
}
);
unicode = 258;
},
{
glyphname = Abreveacute;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:16:21 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (149,200);
ref = brevecomb_acutecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (154,212);
ref = brevecomb_acutecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (218,204);
ref = brevecomb_acutecomb;
}
);
width = 669;
}
);
unicode = 7854;
},
{
glyphname = Abrevedotbelow;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:23:48 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (209,0);
ref = dotbelowcomb;
},
{
pos = (172,200);
ref = brevecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (232,0);
ref = dotbelowcomb;
},
{
pos = (180,200);
ref = brevecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (230,0);
ref = dotbelowcomb;
},
{
pos = (192,204);
ref = brevecomb;
}
);
width = 669;
}
);
unicode = 7862;
},
{
glyphname = Abrevegrave;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:17:44 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (133,200);
ref = brevecomb_gravecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (144,212);
ref = brevecomb_gravecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (219,204);
ref = brevecomb_gravecomb;
}
);
width = 669;
}
);
unicode = 7856;
},
{
glyphname = Abrevehookabove;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (129,200);
ref = brevecomb_hookabovecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (124,212);
ref = brevecomb_hookabovecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (186,204);
ref = brevecomb_hookabovecomb;
}
);
width = 669;
}
);
unicode = 7858;
},
{
glyphname = Abrevetilde;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:17:09 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (112,200);
ref = brevecomb_tildecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (126,200);
ref = brevecomb_tildecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (216,204);
ref = brevecomb_tildecomb;
}
);
width = 669;
}
);
unicode = 7860;
},
{
glyphname = Acircumflex;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (183,200);
ref = circumflexcomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (166,200);
ref = circumflexcomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (182,204);
ref = circumflexcomb;
}
);
width = 669;
}
);
unicode = 194;
},
{
glyphname = Acircumflexacute;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:16:50 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (65,200);
ref = circumflexcomb_acutecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (75,212);
ref = circumflexcomb_acutecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (212,204);
ref = circumflexcomb_acutecomb;
}
);
width = 669;
}
);
unicode = 7844;
},
{
glyphname = Acircumflexdotbelow;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (236,0);
ref = dotbelowcomb;
},
{
pos = (183,200);
ref = circumflexcomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (237,0);
ref = dotbelowcomb;
},
{
pos = (166,200);
ref = circumflexcomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (255,0);
ref = dotbelowcomb;
},
{
pos = (182,204);
ref = circumflexcomb;
}
);
width = 669;
}
);
unicode = 7852;
},
{
glyphname = Acircumflexgrave;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:17:48 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (207,200);
ref = circumflexcomb_gravecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (199,212);
ref = circumflexcomb_gravecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (212,205);
ref = circumflexcomb_gravecomb;
}
);
width = 669;
}
);
unicode = 7846;
},
{
glyphname = Acircumflexhookabove;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:24:33 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (210,200);
ref = circumflexcomb_hookabovecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (202,212);
ref = circumflexcomb_hookabovecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (211,204);
ref = circumflexcomb_hookabovecomb;
}
);
width = 669;
}
);
unicode = 7848;
},
{
glyphname = Acircumflextilde;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:34:31 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (215,212);
ref = circumflexcomb_tildecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (206,212);
ref = circumflexcomb_tildecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (187,204);
ref = circumflexcomb_tildecomb;
}
);
width = 669;
}
);
unicode = 7850;
},
{
glyphname = Adieresis;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 09:01:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (152,200);
ref = dieresiscomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (158,200);
ref = dieresiscomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (146,204);
ref = dieresiscomb;
}
);
width = 669;
}
);
unicode = 196;
},
{
glyphname = Adotbelow;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 09:02:24 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (228,0);
ref = dotbelowcomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (229,0);
ref = dotbelowcomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (251,0);
ref = dotbelowcomb;
}
);
width = 669;
}
);
unicode = 7840;
},
{
glyphname = Agrave;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 09:02:42 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (153,200);
ref = gravecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (160,200);
ref = gravecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (162,204);
ref = gravecomb;
}
);
width = 669;
}
);
unicode = 192;
},
{
glyphname = Ahookabove;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (268,212);
ref = hookabovecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (255,212);
ref = hookabovecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (296,204);
ref = hookabovecomb;
}
);
width = 669;
}
);
unicode = 7842;
},
{
glyphname = Amacron;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (184,200);
ref = macroncomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (148,200);
ref = macroncomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (189,201);
ref = macroncomb;
}
);
width = 669;
}
);
unicode = 256;
},
{
glyphname = Aogonek;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 09:04:23 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (411,5);
ref = ogonekcomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (420,1);
ref = ogonekcomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (489,0);
ref = ogonekcomb;
}
);
width = 669;
}
);
unicode = 260;
},
{
glyphname = Aring;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-01 09:04:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (192,200);
ref = ringcomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (192,200);
ref = ringcomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (216,204);
ref = ringcomb;
}
);
width = 669;
}
);
unicode = 197;
},
{
glyphname = Atilde;
kernLeft = A;
kernRight = A;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (156,200);
ref = tildecomb;
}
);
width = 580;
},
{
layerId = m002;
shapes = (
{
ref = A;
},
{
pos = (169,200);
ref = tildecomb;
}
);
width = 591;
},
{
layerId = m003;
shapes = (
{
ref = A;
},
{
pos = (162,204);
ref = tildecomb;
}
);
width = 669;
}
);
unicode = 195;
},
{
glyphname = AE;
kernLeft = A;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = top;
pos = (649,701);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(35,0,l),
(492,700,l),
(430,700,l),
(-36,0,l)
);
},
{
closed = 1;
nodes = (
(408,190,l),
(415,246,l),
(161,246,l),
(154,190,l)
);
},
{
closed = 1;
nodes = (
(776,0,l),
(783,56,l),
(449,56,l),
(483,332,l),
(755,332,l),
(762,388,l),
(490,388,l),
(521,644,l),
(855,644,l),
(862,700,l),
(464,700,l),
(378,0,l)
);
}
);
width = 867;
},
{
anchors = (
{
name = top;
pos = (669,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(73,0,l),
(525,700,l),
(439,700,l),
(-23,0,l)
);
},
{
closed = 1;
nodes = (
(459,169,l),
(469,249,l),
(185,249,l),
(175,169,l)
);
},
{
closed = 1;
nodes = (
(807,0,l),
(817,80,l),
(494,80,l),
(524,320,l),
(786,320,l),
(795,398,l),
(533,398,l),
(560,620,l),
(883,620,l),
(893,700,l),
(482,700,l),
(396,0,l)
);
}
);
width = 896;
},
{
anchors = (
{
name = top;
pos = (715,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(132,0,l),
(589,700,l),
(439,700,l),
(-26,0,l)
);
},
{
closed = 1;
nodes = (
(460,142,l),
(476,268,l),
(185,268,l),
(169,142,l)
);
},
{
closed = 1;
nodes = (
(894,0,l),
(909,126,l),
(598,126,l),
(619,297,l),
(879,297,l),
(895,423,l),
(635,423,l),
(653,574,l),
(964,574,l),
(980,700,l),
(523,700,l),
(437,0,l)
);
}
);
width = 967;
}
);
unicode = 198;
},
{
glyphname = AEacute;
kernLeft = A;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = AE;
},
{
pos = (567,189);
ref = acutecomb;
}
);
width = 867;
},
{
layerId = m002;
shapes = (
{
ref = AE;
},
{
pos = (590,188);
ref = acutecomb;
}
);
width = 896;
},
{
layerId = m003;
shapes = (
{
ref = AE;
},
{
pos = (615,192);
ref = acutecomb;
}
);
width = 967;
}
);
unicode = 508;
},
{
glyphname = B;
kernLeft = B;
kernRight = B;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(299,0,ls),
(459,0,o),
(545,72,o),
(561,202,cs),
(572,288,o),
(530,343,o),
(439,365,c),
(501,385,o),
(551,438,o),
(562,526,cs),
(576,642,o),
(506,701,o),
(374,701,cs),
(155,701,l),
(69,0,l)
);
},
{
closed = 1;
nodes = (
(170,330,l),
(170,330,o),
(359,330,o),
(359,330,cs),
(457,330,o),
(508,277,o),
(499,202,cs),
(489,122,o),
(427,56,o),
(316,56,cs),
(136,56,l)
);
},
{
closed = 1;
nodes = (
(208,645,l),
(208,645,o),
(362,645,o),
(362,645,cs),
(469,645,o),
(508,595,o),
(500,525,cs),
(489,439,o),
(429,386,o),
(332,386,cs),
(177,386,l)
);
}
);
width = 618;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(322,0,ls),
(487,0,o),
(575,73,o),
(591,200,cs),
(602,287,o),
(561,344,o),
(469,366,c),
(530,384,o),
(579,424,o),
(591,521,cs),
(606,637,o),
(537,701,o),
(400,701,cs),
(164,701,l),
(78,0,l)
);
},
{
closed = 1;
nodes = (
(205,319,l),
(205,319,o),
(371,319,o),
(371,319,cs),
(463,319,o),
(507,267,o),
(499,200,cs),
(489,120,o),
(429,80,o),
(332,80,cs),
(176,80,l)
);
},
{
closed = 1;
nodes = (
(243,621,l),
(243,621,o),
(386,621,o),
(386,621,cs),
(459,621,o),
(508,587,o),
(500,520,cs),
(490,435,o),
(432,399,o),
(359,399,cs),
(215,399,l)
);
}
);
width = 655;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(371,0,ls),
(542,0,o),
(635,77,o),
(651,204,cs),
(661,283,o),
(621,341,o),
(545,363,c),
(593,386,o),
(640,434,o),
(650,518,cs),
(663,620,o),
(597,701,o),
(449,701,cs),
(164,701,l),
(78,0,l)
);
},
{
closed = 1;
nodes = (
(260,293,l),
(260,293,o),
(397,293,o),
(397,293,c),
(464,293,o),
(504,264,o),
(498,211,cs),
(490,145,o),
(443,126,o),
(366,126,cs),
(239,126,l)
);
},
{
closed = 1;
nodes = (
(294,575,l),
(294,575,o),
(415,575,o),
(415,575,cs),
(471,575,o),
(501,549,o),
(496,504,cs),
(488,441,o),
(452,419,o),
(397,419,cs),
(275,419,l)
);
}
);
width = 701;
}
);
unicode = 66;
},
{
glyphname = C;
kernLeft = O;
lastChange = "2025-01-08 14:19:36 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (307,-6);
},
{
name = top;
pos = (411,713);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(467,-13,o),
(567,76,o),
(610,199,c),
(551,211,l),
(515,117,o),
(441,43,o),
(329,43,cs),
(182,43,o),
(112,167,o),
(135,357,cs),
(158,542,o),
(273,657,o),
(404,657,cs),
(502,657,o),
(575,581,o),
(581,488,c),
(647,501,l),
(634,624,o),
(556,713,o),
(411,713,cs),
(208,713,o),
(96,541,o),
(73,355,cs),
(49,163,o),
(114,-13,o),
(322,-13,cs)
);
}
);
width = 663;
},
{
anchors = (
{
name = bottom;
pos = (318,-13);
},
{
name = top;
pos = (417,713);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(474,-13,o),
(587,75,o),
(630,198,c),
(543,216,l),
(509,130,o),
(430,67,o),
(338,67,cs),
(207,67,o),
(147,194,o),
(167,357,cs),
(186,512,o),
(276,633,o),
(407,633,cs),
(499,633,o),
(563,570,o),
(576,484,c),
(667,502,l),
(654,625,o),
(563,713,o),
(417,713,cs),
(211,713,o),
(101,548,o),
(77,355,cs),
(54,171,o),
(121,-13,o),
(328,-13,cs)
);
}
);
width = 689;
},
{
anchors = (
{
name = bottom;
pos = (332,-12);
},
{
name = top;
pos = (437,713);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(502,-12,o),
(601,76,o),
(644,199,c),
(507,227,l),
(485,161,o),
(422,119,o),
(366,119,cs),
(245,119,o),
(198,198,o),
(218,357,cs),
(235,499,o),
(298,583,o),
(419,583,cs),
(479,583,o),
(529,532,o),
(537,474,c),
(681,502,l),
(669,625,o),
(566,713,o),
(437,713,cs),
(213,713,o),
(87,549,o),
(63,355,cs),
(41,171,o),
(104,-12,o),
(350,-12,cs)
);
}
);
width = 684;
},
{
associatedMasterId = m01;
layerId = "09577142-2BA9-4939-A4E9-BA986ECE9950";
name = "27 Mar 24 at 12:02";
shapes = (
{
closed = 1;
nodes = (
(596,-12,o),
(684,157,o),
(684,349,cs),
(684,543,o),
(596,712,o),
(372,712,cs),
(148,712,o),
(60,543,o),
(60,349,cs),
(60,157,o),
(148,-12,o),
(372,-12,cs)
);
},
{
closed = 1;
nodes = (
(217,44,o),
(122,154,o),
(122,349,cs),
(122,540,o),
(217,656,o),
(372,656,cs),
(527,656,o),
(622,540,o),
(622,349,cs),
(622,154,o),
(527,44,o),
(372,44,cs)
);
}
);
width = 693;
}
);
unicode = 67;
},
{
glyphname = Cacute;
kernLeft = O;
kernRight = O;
lastChange = "2025-01-08 14:19:36 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = C;
},
{
pos = (329,201);
ref = acutecomb;
}
);
width = 663;
},
{
layerId = m002;
shapes = (
{
ref = C;
},
{
pos = (338,201);
ref = acutecomb;
}
);
width = 689;
},
{
layerId = m003;
shapes = (
{
ref = C;
},
{
pos = (337,205);
ref = acutecomb;
}
);
width = 684;
}
);
unicode = 262;
},
{
glyphname = Ccaron;
kernLeft = O;
kernRight = O;
lastChange = "2025-01-08 14:19:36 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = C;
},
{
pos = (245,201);
ref = caroncomb;
}
);
width = 663;
},
{
layerId = m002;
shapes = (
{
ref = C;
},
{
pos = (233,201);
ref = caroncomb;
}
);
width = 689;
},
{
layerId = m003;
shapes = (
{
ref = C;
},
{
pos = (225,205);
ref = caroncomb;
}
);
width = 684;
}
);
unicode = 268;
},
{
glyphname = Ccedilla;
kernLeft = O;
kernRight = O;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = C;
},
{
pos = (230,-8);
ref = cedillacomb;
}
);
width = 663;
},
{
layerId = m002;
shapes = (
{
ref = C;
},
{
pos = (231,-15);
ref = cedillacomb;
}
);
width = 689;
},
{
layerId = m003;
shapes = (
{
ref = C;
},
{
pos = (235,-11);
ref = cedillacomb;
}
);
width = 684;
}
);
unicode = 199;
},
{
glyphname = Ccircumflex;
kernLeft = O;
kernRight = O;
lastChange = "2025-01-08 14:19:36 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = C;
},
{
pos = (245,201);
ref = circumflexcomb;
}
);
width = 663;
},
{
layerId = m002;
shapes = (
{
ref = C;
},
{
pos = (228,201);
ref = circumflexcomb;
}
);
width = 689;
},
{
layerId = m003;
shapes = (
{
ref = C;
},
{
pos = (227,205);
ref = circumflexcomb;
}
);
width = 684;
}
);
unicode = 264;
},
{
glyphname = Cdotaccent;
kernLeft = O;
kernRight = O;
lastChange = "2025-01-08 14:19:43 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = C;
},
{
pos = (313,201);
ref = dotaccentcomb;
}
);
width = 663;
},
{
layerId = m002;
shapes = (
{
ref = C;
},
{
pos = (311,201);
ref = dotaccentcomb;
}
);
width = 689;
},
{
layerId = m003;
shapes = (
{
ref = C;
},
{
pos = (310,205);
ref = dotaccentcomb;
}
);
width = 684;
}
);
unicode = 266;
},
{
glyphname = D;
kernRight = O;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (283,0);
},
{
name = top;
pos = (369,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(260,0,ls),
(486,0,o),
(611,141,o),
(636,349,cs),
(662,560,o),
(572,700,o),
(346,700,cs),
(159,700,l),
(73,0,l)
);
},
{
closed = 1;
nodes = (
(216,644,l),
(342,644,ls),
(536,644,o),
(594,507,o),
(574,350,cs),
(555,192,o),
(464,56,o),
(270,56,cs),
(144,56,l)
);
}
);
width = 681;
},
{
anchors = (
{
name = bottom;
pos = (289,0);
},
{
name = top;
pos = (375,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(260,0,ls),
(492,0,o),
(617,141,o),
(642,349,cs),
(668,560,o),
(578,700,o),
(346,700,cs),
(151,700,l),
(65,0,l)
);
},
{
closed = 1;
nodes = (
(229,620,l),
(339,620,ls),
(502,620,o),
(570,507,o),
(550,350,cs),
(531,192,o),
(436,80,o),
(273,80,cs),
(163,80,l)
);
}
);
width = 680;
},
{
anchors = (
{
name = bottom;
pos = (320,0);
},
{
name = top;
pos = (406,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(307,0,ls),
(537,0,o),
(661,141,o),
(687,349,cs),
(713,560,o),
(623,700,o),
(393,700,cs),
(145,700,l),
(59,0,l)
);
},
{
closed = 1;
nodes = (
(275,574,l),
(380,574,ls),
(498,574,o),
(552,507,o),
(533,350,cs),
(513,192,o),
(443,126,o),
(325,126,cs),
(220,126,l)
);
}
);
width = 723;
}
);
unicode = 68;
},
{
glyphname = Dcaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = D;
},
{
pos = (203,188);
ref = caroncomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = D;
},
{
pos = (191,188);
ref = caroncomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = D;
},
{
pos = (194,192);
ref = caroncomb;
}
);
width = 723;
}
);
unicode = 270;
},
{
glyphname = Dcroat;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Eth;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = Eth;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = Eth;
}
);
width = 723;
}
);
unicode = 272;
},
{
glyphname = Ddotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = D;
},
{
pos = (257,1);
ref = dotbelowcomb;
}
);
width = 723;
},
{
layerId = m01;
shapes = (
{
ref = D;
},
{
pos = (251,0);
ref = dotbelowcomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = D;
},
{
pos = (245,0);
ref = dotbelowcomb;
}
);
width = 680;
}
);
unicode = 7692;
},
{
glyphname = Dmacronbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = D;
},
{
pos = (171,1);
ref = macronbelowcomb;
}
);
width = 723;
},
{
layerId = m01;
shapes = (
{
ref = D;
},
{
pos = (173,12);
ref = macronbelowcomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = D;
},
{
pos = (161,12);
ref = macronbelowcomb;
}
);
width = 680;
}
);
unicode = 7694;
},
{
glyphname = Eth;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
pos = (-31,0);
ref = D;
},
{
closed = 1;
nodes = (
(354,329,l),
(361,385,l),
(39,385,l),
(32,329,l)
);
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
pos = (-31,0);
ref = D;
},
{
closed = 1;
nodes = (
(372,315,l),
(381,385,l),
(44,385,l),
(35,315,l)
);
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
pos = (-31,0);
ref = D;
},
{
closed = 1;
nodes = (
(388,291,l),
(401,401,l),
(18,401,l),
(5,291,l)
);
}
);
width = 723;
}
);
unicode = 208;
},
{
glyphname = E;
kernLeft = E;
kernRight = E;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (268,0);
},
{
name = top;
pos = (354,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(467,0,l),
(474,56,l),
(140,56,l),
(174,332,l),
(446,332,l),
(453,388,l),
(181,388,l),
(212,644,l),
(546,644,l),
(553,700,l),
(155,700,l),
(69,0,l)
);
}
);
width = 558;
},
{
anchors = (
{
name = bottom;
pos = (271,0);
},
{
name = top;
pos = (357,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(476,0,l),
(486,80,l),
(163,80,l),
(193,320,l),
(455,320,l),
(464,398,l),
(202,398,l),
(229,620,l),
(552,620,l),
(562,700,l),
(151,700,l),
(65,0,l)
);
}
);
width = 564;
},
{
anchors = (
{
name = bottom;
pos = (288,0);
},
{
name = top;
pos = (374,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(516,0,l),
(531,126,l),
(220,126,l),
(241,297,l),
(501,297,l),
(517,423,l),
(257,423,l),
(275,574,l),
(586,574,l),
(602,700,l),
(145,700,l),
(59,0,l)
);
}
);
width = 589;
}
);
unicode = 69;
},
{
glyphname = Eacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (272,188);
ref = acutecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (278,188);
ref = acutecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (274,192);
ref = acutecomb;
}
);
width = 589;
}
);
unicode = 201;
},
{
glyphname = Ebreve;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (177,188);
ref = brevecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (182,188);
ref = brevecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (174,192);
ref = brevecomb;
}
);
width = 589;
}
);
unicode = 276;
},
{
glyphname = Ecaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (188,188);
ref = caroncomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (173,188);
ref = caroncomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (162,192);
ref = caroncomb;
}
);
width = 589;
}
);
unicode = 282;
},
{
glyphname = Ecircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (188,188);
ref = circumflexcomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (168,188);
ref = circumflexcomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (164,192);
ref = circumflexcomb;
}
);
width = 589;
}
);
unicode = 202;
},
{
glyphname = Ecircumflexacute;
lastChange = "2025-01-08 14:16:50 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (70,188);
ref = circumflexcomb_acutecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (77,200);
ref = circumflexcomb_acutecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (194,192);
ref = circumflexcomb_acutecomb;
}
);
width = 589;
}
);
unicode = 7870;
},
{
glyphname = Ecircumflexdotbelow;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (236,0);
ref = dotbelowcomb;
},
{
pos = (188,188);
ref = circumflexcomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (227,0);
ref = dotbelowcomb;
},
{
pos = (168,188);
ref = circumflexcomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (225,1);
ref = dotbelowcomb;
},
{
pos = (164,192);
ref = circumflexcomb;
}
);
width = 589;
}
);
unicode = 7878;
},
{
glyphname = Ecircumflexgrave;
lastChange = "2025-01-08 14:17:48 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (212,188);
ref = circumflexcomb_gravecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (201,200);
ref = circumflexcomb_gravecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (194,193);
ref = circumflexcomb_gravecomb;
}
);
width = 589;
}
);
unicode = 7872;
},
{
glyphname = Ecircumflexhookabove;
lastChange = "2025-01-08 14:24:33 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (215,188);
ref = circumflexcomb_hookabovecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (204,200);
ref = circumflexcomb_hookabovecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (193,192);
ref = circumflexcomb_hookabovecomb;
}
);
width = 589;
}
);
unicode = 7874;
},
{
glyphname = Ecircumflextilde;
lastChange = "2025-01-08 14:34:31 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (220,200);
ref = circumflexcomb_tildecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (208,200);
ref = circumflexcomb_tildecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (169,192);
ref = circumflexcomb_tildecomb;
}
);
width = 589;
}
);
unicode = 7876;
},
{
glyphname = Edieresis;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (157,188);
ref = dieresiscomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (160,188);
ref = dieresiscomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (128,192);
ref = dieresiscomb;
}
);
width = 589;
}
);
unicode = 203;
},
{
glyphname = Edotaccent;
lastChange = "2025-01-08 14:19:43 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (256,188);
ref = dotaccentcomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (251,188);
ref = dotaccentcomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (247,192);
ref = dotaccentcomb;
}
);
width = 589;
}
);
unicode = 278;
},
{
glyphname = Edotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (236,0);
ref = dotbelowcomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (227,0);
ref = dotbelowcomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (225,1);
ref = dotbelowcomb;
}
);
width = 589;
}
);
unicode = 7864;
},
{
glyphname = Egrave;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (158,188);
ref = gravecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (162,188);
ref = gravecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (144,192);
ref = gravecomb;
}
);
width = 589;
}
);
unicode = 200;
},
{
glyphname = Ehookabove;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (273,200);
ref = hookabovecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (257,200);
ref = hookabovecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (278,192);
ref = hookabovecomb;
}
);
width = 589;
}
);
unicode = 7866;
},
{
glyphname = Emacron;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (189,188);
ref = macroncomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (150,188);
ref = macroncomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (171,189);
ref = macroncomb;
}
);
width = 589;
}
);
unicode = 274;
},
{
glyphname = Eogonek;
lastChange = "2025-01-01 09:05:47 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (339,5);
ref = ogonekcomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (344,1);
ref = ogonekcomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (372,0);
ref = ogonekcomb;
}
);
width = 589;
}
);
unicode = 280;
},
{
glyphname = Eopen;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (267,0);
},
{
name = top;
pos = (353,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(407,-12,o),
(513,61,o),
(542,195,c),
(481,199,l),
(460,120,o),
(403,44,o),
(280,44,cs),
(156,44,o),
(106,123,o),
(116,203,cs),
(125,278,o),
(190,350,o),
(315,350,cs),
(328,350,o),
(341,349,o),
(353,348,c),
(360,404,l),
(349,402,o),
(336,401,o),
(323,401,cs),
(218,401,o),
(182,465,o),
(190,530,cs),
(197,586,o),
(246,656,o),
(352,656,cs),
(437,656,o),
(476,611,o),
(485,564,c),
(547,584,l),
(534,668,o),
(461,712,o),
(360,712,cs),
(241,712,o),
(143,649,o),
(128,530,cs),
(120,465,o),
(156,415,o),
(192,384,c),
(126,348,o),
(64,286,o),
(54,203,cs),
(37,64,o),
(133,-12,o),
(272,-12,cs)
);
}
);
width = 596;
},
{
anchors = (
{
name = bottom;
pos = (299,0);
},
{
name = top;
pos = (385,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(470,-12,o),
(574,63,o),
(606,200,c),
(515,207,l),
(483,93,o),
(412,68,o),
(338,68,cs),
(238,68,o),
(183,123,o),
(193,203,cs),
(202,278,o),
(266,340,o),
(369,340,cs),
(384,340,o),
(398,340,o),
(413,340,c),
(423,418,l),
(409,418,o),
(394,418,o),
(380,418,cs),
(293,418,o),
(255,465,o),
(263,530,cs),
(270,586,o),
(316,636,o),
(404,636,cs),
(482,636,o),
(521,597,o),
(523,549,c),
(611,576,l),
(602,665,o),
(526,712,o),
(415,712,cs),
(288,712,o),
(190,649,o),
(175,530,cs),
(167,465,o),
(191,415,o),
(227,384,c),
(161,348,o),
(111,286,o),
(101,203,cs),
(84,64,o),
(182,-12,o),
(327,-12,cs)
);
}
);
width = 660;
},
{
anchors = (
{
name = bottom;
pos = (313,0);
},
{
name = top;
pos = (399,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(521,-12,o),
(618,81,o),
(648,207,c),
(502,216,l),
(488,161,o),
(451,116,o),
(364,116,cs),
(281,116,o),
(251,157,o),
(258,212,cs),
(264,260,o),
(304,306,o),
(385,306,cs),
(400,306,o),
(417,307,o),
(432,307,c),
(448,434,l),
(433,434,o),
(417,433,o),
(402,433,cs),
(354,433,o),
(318,458,o),
(325,512,cs),
(329,550,o),
(370,584,o),
(419,584,cs),
(460,584,o),
(492,559,o),
(498,527,c),
(651,569,l),
(642,656,o),
(565,712,o),
(435,712,cs),
(290,712,o),
(190,639,o),
(177,530,cs),
(169,465,o),
(193,415,o),
(229,384,c),
(163,348,o),
(113,286,o),
(103,203,cs),
(87,74,o),
(187,-12,o),
(347,-12,cs)
);
}
);
width = 687;
}
);
unicode = 400;
},
{
glyphname = Etilde;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = E;
},
{
pos = (161,188);
ref = tildecomb;
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
ref = E;
},
{
pos = (171,188);
ref = tildecomb;
}
);
width = 564;
},
{
layerId = m003;
shapes = (
{
ref = E;
},
{
pos = (144,192);
ref = tildecomb;
}
);
width = 589;
}
);
unicode = 7868;
},
{
glyphname = Schwa;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (321,0);
},
{
name = top;
pos = (407,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(503,-12,o),
(643,126,o),
(671,352,cs),
(698,575,o),
(601,712,o),
(410,712,cs),
(245,712,o),
(142,608,o),
(95,496,c),
(157,482,l),
(191,559,o),
(268,656,o),
(397,656,cs),
(552,656,o),
(631,531,o),
(609,356,cs),
(588,186,o),
(496,44,o),
(327,44,cs),
(179,44,o),
(114,174,o),
(130,310,c),
(623,310,l),
(630,365,l),
(74,365,l),
(69,326,l),
(43,112,o),
(159,-12,o),
(325,-12,cs)
);
}
);
width = 704;
},
{
anchors = (
{
name = bottom;
pos = (332,0);
},
{
name = top;
pos = (418,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(518,-12,o),
(658,126,o),
(686,353,cs),
(713,574,o),
(607,712,o),
(413,712,cs),
(240,712,o),
(146,618,o),
(98,506,c),
(182,485,l),
(210,569,o),
(301,632,o),
(394,632,c),
(566,632,o),
(610,487,o),
(594,357,cs),
(573,187,o),
(483,68,o),
(333,68,cs),
(201,68,o),
(145,163,o),
(161,287,c),
(607,287,l),
(616,367,l),
(78,367,l),
(74,334,l),
(45,96,o),
(155,-12,o),
(328,-12,cs)
);
}
);
width = 726;
},
{
anchors = (
{
name = bottom;
pos = (344,0);
},
{
name = top;
pos = (430,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(507,-12,o),
(697,103,o),
(727,347,cs),
(756,583,o),
(599,712,o),
(428,712,cs),
(321,712,o),
(185,663,o),
(103,512,c),
(241,469,l),
(269,538,o),
(342,582,o),
(409,582,cs),
(527,582,o),
(593,504,o),
(573,347,cs),
(556,204,o),
(470,118,o),
(359,118,cs),
(258,118,o),
(204,205,o),
(214,286,c),
(597,286,l),
(610,402,l),
(69,402,l),
(64,357,l),
(35,126,o),
(149,-12,o),
(341,-12,cs)
);
}
);
width = 749;
}
);
unicode = 399;
},
{
glyphname = F;
kernLeft = E;
kernRight = F;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(133,0,l),
(174,335,l),
(446,335,l),
(453,391,l),
(181,391,l),
(212,644,l),
(546,644,l),
(553,700,l),
(155,700,l),
(69,0,l)
);
}
);
width = 558;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(153,0,l),
(193,320,l),
(455,320,l),
(464,400,l),
(202,400,l),
(229,620,l),
(552,620,l),
(562,700,l),
(151,700,l),
(65,0,l)
);
}
);
width = 541;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(205,0,l),
(241,297,l),
(501,297,l),
(517,423,l),
(257,423,l),
(275,574,l),
(586,574,l),
(602,700,l),
(145,700,l),
(59,0,l)
);
}
);
width = 577;
}
);
unicode = 70;
},
{
glyphname = G;
kernLeft = O;
kernRight = G;
lastChange = "2025-01-08 14:18:45 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (316,-13);
},
{
name = top;
pos = (416,713);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(438,-13,o),
(529,49,o),
(563,127,c),
(563,127,o),
(554,0,o),
(554,0,c),
(606,0,l),
(651,368,l),
(372,368,l),
(366,312,l),
(583,312,l),
(564,159,o),
(459,43,o),
(334,43,cs),
(180,43,o),
(110,167,o),
(133,357,cs),
(156,542,o),
(271,657,o),
(409,657,cs),
(515,657,o),
(588,581,o),
(594,488,c),
(660,501,l),
(647,624,o),
(569,713,o),
(416,713,cs),
(206,713,o),
(94,541,o),
(71,355,cs),
(47,163,o),
(112,-13,o),
(327,-13,cs)
);
}
);
width = 701;
},
{
anchors = (
{
name = bottom;
pos = (329,-12);
},
{
name = top;
pos = (418,713);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(429,-12,o),
(511,30,o),
(560,107,c),
(560,107,o),
(560,0,o),
(560,0,c),
(629,0,l),
(674,368,l),
(394,368,l),
(384,284,l),
(575,284,l),
(560,158,o),
(447,67,o),
(344,67,cs),
(202,67,o),
(145,194,o),
(165,357,cs),
(184,512,o),
(274,633,o),
(416,633,c),
(519,633,o),
(583,570,o),
(596,484,c),
(687,502,l),
(674,625,o),
(583,713,o),
(426,713,c),
(209,713,o),
(99,548,o),
(75,355,cs),
(51,158,o),
(122,-12,o),
(347,-12,c)
);
}
);
width = 740;
},
{
anchors = (
{
name = bottom;
pos = (323,-12);
},
{
name = top;
pos = (442,712);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(411,-12,o),
(485,13,o),
(533,80,c),
(533,80,o),
(535,0,o),
(535,0,c),
(633,0,l),
(679,380,l),
(394,380,l),
(380,260,l),
(530,260,l),
(512,170,o),
(432,119,o),
(369,119,cs),
(242,119,o),
(195,198,o),
(215,357,cs),
(232,499,o),
(299,583,o),
(426,583,cs),
(490,583,o),
(539,532,o),
(547,474,c),
(691,502,l),
(679,625,o),
(578,712,o),
(442,712,cs),
(212,712,o),
(84,549,o),
(60,355,cs),
(38,171,o),
(101,-12,o),
(353,-12,cs)
);
}
);
width = 726;
},
{
associatedMasterId = m01;
layerId = "60D9B074-3643-47F8-BA45-851CCB9418B6";
name = "6 Jul 24 at 15:54";
shapes = (
{
closed = 0;
nodes = (
(514,106,l)
);
},
{
closed = 0;
nodes = (
(531,106,l),
(533,94,o),
(544,0,o),
(544,0,c),
(596,0,l),
(596,368,l),
(349,368,l),
(349,312,l),
(516,312,l),
(516,158,o),
(420,43,o),
(299,43,cs),
(142,43,o),
(57,167,o),
(57,357,cs),
(57,542,o),
(158,657,o),
(299,657,cs),
(406,657,o),
(488,581,o),
(506,488,c),
(570,501,l),
(542,624,o),
(453,713,o),
(299,713,cs),
(86,713,o),
(-5,541,o),
(-5,355,cs),
(-5,163,o),
(81,-13,o),
(299,-13,cs),
(453,-13,o),
(542,76,o),
(570,199,c)
);
},
{
closed = 1;
nodes = (
(453,-13,o),
(542,76,o),
(570,199,c),
(510,211,l),
(485,117,o),
(420,43,o),
(299,43,cs),
(142,43,o),
(57,167,o),
(57,357,cs),
(57,542,o),
(158,657,o),
(299,657,cs),
(406,657,o),
(488,581,o),
(506,488,c),
(570,501,l),
(542,624,o),
(453,713,o),
(299,713,cs),
(86,713,o),
(-5,541,o),
(-5,355,cs),
(-5,163,o),
(81,-13,o),
(299,-13,cs)
);
}
);
width = 600;
}
);
unicode = 71;
},
{
glyphname = Gbreve;
lastChange = "2025-01-08 14:18:45 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = G;
},
{
pos = (239,201);
ref = brevecomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = G;
},
{
pos = (243,201);
ref = brevecomb;
}
);
width = 740;
},
{
layerId = m003;
shapes = (
{
ref = G;
},
{
pos = (242,204);
ref = brevecomb;
}
);
width = 726;
}
);
unicode = 286;
},
{
glyphname = Gcircumflex;
lastChange = "2025-01-08 14:18:45 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = G;
},
{
pos = (250,201);
ref = circumflexcomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = G;
},
{
pos = (229,201);
ref = circumflexcomb;
}
);
width = 740;
},
{
layerId = m003;
shapes = (
{
ref = G;
},
{
pos = (232,204);
ref = circumflexcomb;
}
);
width = 726;
}
);
unicode = 284;
},
{
glyphname = Gcommaaccent;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = G;
},
{
pos = (287,-1);
ref = commaaccentcomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = G;
},
{
pos = (284,0);
ref = commaaccentcomb;
}
);
width = 740;
},
{
layerId = m003;
shapes = (
{
ref = G;
},
{
pos = (259,-11);
ref = commaaccentcomb;
}
);
width = 726;
}
);
unicode = 290;
},
{
glyphname = Gdotaccent;
lastChange = "2025-01-08 14:19:43 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = G;
},
{
pos = (318,201);
ref = dotaccentcomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = G;
},
{
pos = (312,201);
ref = dotaccentcomb;
}
);
width = 740;
},
{
layerId = m003;
shapes = (
{
ref = G;
},
{
pos = (315,204);
ref = dotaccentcomb;
}
);
width = 726;
}
);
unicode = 288;
},
{
glyphname = Gmacron;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = G;
},
{
pos = (251,201);
ref = macroncomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = G;
},
{
pos = (211,201);
ref = macroncomb;
}
);
width = 740;
},
{
layerId = m003;
shapes = (
{
ref = G;
},
{
pos = (239,201);
ref = macroncomb;
}
);
width = 726;
}
);
unicode = 7712;
},
{
glyphname = H;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(133,0,l),
(175,336,l),
(537,336,l),
(495,0,l),
(559,0,l),
(645,700,l),
(581,700,l),
(543,392,l),
(181,392,l),
(219,700,l),
(155,700,l),
(69,0,l)
);
}
);
width = 690;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(151,0,l),
(191,324,l),
(527,324,l),
(487,0,l),
(575,0,l),
(661,700,l),
(573,700,l),
(537,404,l),
(201,404,l),
(237,700,l),
(149,700,l),
(63,0,l)
);
}
);
width = 700;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(205,0,l),
(242,301,l),
(524,301,l),
(487,0,l),
(633,0,l),
(719,700,l),
(573,700,l),
(539,427,l),
(257,427,l),
(291,700,l),
(145,700,l),
(59,0,l)
);
}
);
width = 754;
}
);
unicode = 72;
},
{
glyphname = Hbar;
lastChange = "2025-01-08 14:18:24 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(133,0,l),
(175,336,l),
(537,336,l),
(495,0,l),
(559,0,l),
(645,700,l),
(581,700,l),
(543,392,l),
(181,392,l),
(219,700,l),
(155,700,l),
(69,0,l)
);
},
{
closed = 1;
nodes = (
(699,496,l),
(706,550,l),
(62,550,l),
(55,496,l)
);
}
);
width = 690;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(148,0,l),
(187,318,l),
(523,318,l),
(484,0,l),
(572,0,l),
(658,700,l),
(570,700,l),
(533,398,l),
(197,398,l),
(234,700,l),
(146,700,l),
(60,0,l)
);
},
{
closed = 1;
nodes = (
(699,498,l),
(708,568,l),
(64,568,l),
(55,498,l)
);
}
);
width = 700;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(205,0,l),
(240,290,l),
(522,290,l),
(487,0,l),
(633,0,l),
(719,700,l),
(573,700,l),
(538,416,l),
(256,416,l),
(291,700,l),
(145,700,l),
(59,0,l)
);
},
{
closed = 1;
nodes = (
(780,497,l),
(793,607,l),
(51,607,l),
(38,497,l)
);
}
);
width = 754;
}
);
unicode = 294;
},
{
glyphname = Hcircumflex;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = H;
},
{
pos = (205,201);
ref = circumflexcomb;
}
);
width = 690;
},
{
layerId = m002;
shapes = (
{
ref = H;
},
{
pos = (195,201);
ref = circumflexcomb;
}
);
width = 700;
},
{
layerId = m003;
shapes = (
{
ref = H;
},
{
pos = (190,204);
ref = circumflexcomb;
}
);
width = 754;
}
);
unicode = 292;
},
{
glyphname = I;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (207,0);
},
{
name = top;
pos = (293,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(370,0,l),
(377,56,l),
(246,56,l),
(318,644,l),
(449,644,l),
(456,700,l),
(130,700,l),
(123,644,l),
(254,644,l),
(182,56,l),
(51,56,l),
(44,0,l)
);
}
);
width = 476;
},
{
anchors = (
{
name = bottom;
pos = (207,0);
},
{
name = top;
pos = (293,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(369,0,l),
(379,76,l),
(261,76,l),
(328,624,l),
(446,624,l),
(455,700,l),
(131,700,l),
(122,624,l),
(240,624,l),
(173,76,l),
(55,76,l),
(45,0,l)
);
}
);
width = 476;
},
{
anchors = (
{
name = bottom;
pos = (236,0);
},
{
name = top;
pos = (322,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(422,0,l),
(437,122,l),
(324,122,l),
(380,578,l),
(493,578,l),
(508,700,l),
(135,700,l),
(120,578,l),
(234,578,l),
(178,122,l),
(64,122,l),
(49,0,l)
);
}
);
width = 533;
}
);
unicode = 73;
},
{
glyphname = IJ;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (466,0);
ref = J;
}
);
width = 982;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (476,0);
ref = J;
}
);
width = 1003;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (533,0);
ref = J;
}
);
width = 1108;
}
);
unicode = 306;
},
{
glyphname = Iacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (211,188);
ref = acutecomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (214,188);
ref = acutecomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (222,192);
ref = acutecomb;
}
);
width = 533;
}
);
unicode = 205;
},
{
glyphname = Ibreve;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (116,188);
ref = brevecomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (118,188);
ref = brevecomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (122,192);
ref = brevecomb;
}
);
width = 533;
}
);
unicode = 300;
},
{
glyphname = Icircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (127,188);
ref = circumflexcomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (104,188);
ref = circumflexcomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (112,192);
ref = circumflexcomb;
}
);
width = 533;
}
);
unicode = 206;
},
{
glyphname = Idieresis;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (96,188);
ref = dieresiscomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (96,188);
ref = dieresiscomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (76,192);
ref = dieresiscomb;
}
);
width = 533;
}
);
unicode = 207;
},
{
glyphname = Idotaccent;
lastChange = "2025-01-08 14:19:43 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (195,188);
ref = dotaccentcomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (187,188);
ref = dotaccentcomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (195,192);
ref = dotaccentcomb;
}
);
width = 533;
}
);
unicode = 304;
},
{
glyphname = Idotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (175,0);
ref = dotbelowcomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (163,0);
ref = dotbelowcomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (173,1);
ref = dotbelowcomb;
}
);
width = 533;
}
);
unicode = 7882;
},
{
glyphname = Igrave;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (97,188);
ref = gravecomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (98,188);
ref = gravecomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (92,192);
ref = gravecomb;
}
);
width = 533;
}
);
unicode = 204;
},
{
glyphname = Ihookabove;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (212,200);
ref = hookabovecomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (193,200);
ref = hookabovecomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (226,192);
ref = hookabovecomb;
}
);
width = 533;
}
);
unicode = 7880;
},
{
glyphname = Imacron;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (128,188);
ref = macroncomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (86,188);
ref = macroncomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (119,189);
ref = macroncomb;
}
);
width = 533;
}
);
unicode = 298;
},
{
glyphname = Iogonek;
lastChange = "2025-01-01 09:06:08 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (242,5);
ref = ogonekcomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (237,1);
ref = ogonekcomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (278,0);
ref = ogonekcomb;
}
);
width = 533;
}
);
unicode = 302;
},
{
glyphname = Itilde;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = I;
},
{
pos = (100,188);
ref = tildecomb;
}
);
width = 476;
},
{
layerId = m002;
shapes = (
{
ref = I;
},
{
pos = (107,188);
ref = tildecomb;
}
);
width = 476;
},
{
layerId = m003;
shapes = (
{
ref = I;
},
{
pos = (92,192);
ref = tildecomb;
}
);
width = 533;
}
);
unicode = 296;
},
{
glyphname = J;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = top;
pos = (453,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(329,-12,o),
(405,65,o),
(428,253,cs),
(483,700,l),
(423,700,l),
(368,252,ls),
(351,111,o),
(304,44,o),
(194,44,cs),
(108,44,o),
(69,107,o),
(66,192,c),
(6,173,l),
(9,56,o),
(74,-12,o),
(191,-12,cs)
);
}
);
width = 516;
},
{
anchors = (
{
name = top;
pos = (454,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(348,-12,o),
(425,85,o),
(446,256,cs),
(500,700,l),
(412,700,l),
(358,255,ls),
(344,148,o),
(299,68,o),
(208,68,cs),
(135,68,o),
(93,120,o),
(89,200,c),
(2,173,l),
(5,56,o),
(80,-12,o),
(202,-12,cs)
);
}
);
width = 527;
},
{
anchors = (
{
name = top;
pos = (481,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(395,-12,o),
(481,90,o),
(502,261,cs),
(556,700,l),
(410,700,l),
(356,260,ls),
(347,185,o),
(311,118,o),
(238,118,cs),
(162,118,o),
(130,170,o),
(126,227,c),
(-7,183,l),
(-3,66,o),
(83,-12,o),
(223,-12,cs)
);
}
);
width = 575;
},
{
associatedMasterId = m01;
layerId = "F0224C38-C702-4CDE-838B-2E373CDF467B";
name = "5 Aug 24 at 10:34";
shapes = (
{
closed = 1;
nodes = (
(314,-12,o),
(407,94,o),
(407,275,cs),
(407,701,l),
(347,701,l),
(347,275,l),
(347,121,o),
(270,44,o),
(164,44,cs),
(60,44,o),
(-19,121,o),
(-19,275,cs),
(-19,701,l),
(-79,701,l),
(-79,275,ls),
(-79,94,o),
(15,-12,o),
(168,-12,cs)
);
}
);
width = 496;
},
{
associatedMasterId = m002;
layerId = "D039DF4E-49D3-4032-B6A6-5E0752F96B5B";
name = "5 Aug 24 at 10:37";
shapes = (
{
closed = 1;
nodes = (
(328,-12,o),
(413,98,o),
(413,275,cs),
(413,701,l),
(325,701,l),
(325,275,ls),
(325,139,o),
(251,73,o),
(162,73,cs),
(69,73,o),
(-1,139,o),
(-1,275,cs),
(-1,701,l),
(-89,701,l),
(-89,275,ls),
(-89,98,o),
(7,-12,o),
(166,-12,cs)
);
}
);
width = 495;
}
);
unicode = 74;
},
{
glyphname = Jacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = J;
},
{
pos = (371,188);
ref = acutecomb;
}
);
width = 516;
},
{
layerId = m002;
shapes = (
{
ref = J;
},
{
pos = (375,188);
ref = acutecomb;
}
);
width = 527;
},
{
layerId = m003;
shapes = (
{
ref = J;
},
{
pos = (381,192);
ref = acutecomb;
}
);
width = 575;
}
);
},
{
glyphname = Jcircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = J;
},
{
pos = (287,188);
ref = circumflexcomb;
}
);
width = 516;
},
{
layerId = m002;
shapes = (
{
ref = J;
},
{
pos = (265,188);
ref = circumflexcomb;
}
);
width = 527;
},
{
layerId = m003;
shapes = (
{
ref = J;
},
{
pos = (271,192);
ref = circumflexcomb;
}
);
width = 575;
}
);
unicode = 308;
},
{
glyphname = K;
kernRight = K;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (285,0);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(129,0,l),
(159,244,l),
(616,700,l),
(539,700,l),
(170,330,l),
(215,700,l),
(155,700,l),
(69,0,l)
);
},
{
closed = 1;
nodes = (
(545,0,l),
(338,429,l),
(290,382,l),
(467,0,l)
);
}
);
width = 592;
},
{
anchors = (
{
name = bottom;
pos = (321,0);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(149,0,l),
(179,242,l),
(642,700,l),
(535,700,l),
(193,358,l),
(235,700,l),
(147,700,l),
(61,0,l)
);
},
{
closed = 1;
nodes = (
(574,0,l),
(363,435,l),
(294,373,l),
(469,0,l)
);
}
);
width = 615;
},
{
anchors = (
{
name = bottom;
pos = (309,0);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(205,0,l),
(232,224,l),
(706,700,l),
(546,700,l),
(254,404,l),
(291,700,l),
(145,700,l),
(59,0,l)
);
},
{
closed = 1;
nodes = (
(630,0,l),
(439,450,l),
(324,340,l),
(460,0,l)
);
}
);
width = 665;
}
);
unicode = 75;
},
{
glyphname = Kcommaaccent;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = K;
},
{
pos = (256,12);
ref = commaaccentcomb;
}
);
width = 592;
},
{
layerId = m002;
shapes = (
{
ref = K;
},
{
pos = (276,12);
ref = commaaccentcomb;
}
);
width = 615;
},
{
layerId = m003;
shapes = (
{
ref = K;
},
{
pos = (245,1);
ref = commaaccentcomb;
}
);
width = 665;
}
);
unicode = 310;
},
{
glyphname = L;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (277,0);
},
{
name = top;
pos = (185,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(478,0,l),
(485,56,l),
(138,56,l),
(217,700,l),
(153,700,l),
(67,0,l)
);
}
);
width = 529;
},
{
anchors = (
{
name = bottom;
pos = (270,0);
},
{
name = top;
pos = (191,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(475,0,l),
(485,80,l),
(161,80,l),
(237,700,l),
(149,700,l),
(63,0,l)
);
}
);
width = 524;
},
{
anchors = (
{
name = bottom;
pos = (304,0);
},
{
name = top;
pos = (214,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(534,0,l),
(549,126,l),
(220,126,l),
(291,700,l),
(145,700,l),
(59,0,l)
);
}
);
width = 579;
}
);
unicode = 76;
},
{
glyphname = Lacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = L;
},
{
pos = (103,188);
ref = acutecomb;
}
);
width = 529;
},
{
layerId = m002;
shapes = (
{
ref = L;
},
{
pos = (112,188);
ref = acutecomb;
}
);
width = 524;
},
{
layerId = m003;
shapes = (
{
ref = L;
},
{
pos = (114,192);
ref = acutecomb;
}
);
width = 579;
}
);
unicode = 313;
},
{
glyphname = Lcaron;
lastChange = "2025-01-08 14:20:12 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = L;
},
{
alignment = -1;
pos = (292,-4);
ref = caroncomb.alt;
}
);
width = 529;
},
{
layerId = m002;
shapes = (
{
ref = L;
},
{
alignment = -1;
pos = (310,-28);
ref = caroncomb.alt;
}
);
width = 524;
},
{
layerId = m003;
shapes = (
{
alignment = -1;
pos = (-31,0);
ref = L;
},
{
alignment = -1;
pos = (291,-30);
ref = caroncomb.alt;
}
);
width = 579;
}
);
unicode = 317;
},
{
glyphname = Lcommaaccent;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = L;
},
{
pos = (248,12);
ref = commaaccentcomb;
}
);
width = 529;
},
{
layerId = m002;
shapes = (
{
ref = L;
},
{
pos = (225,12);
ref = commaaccentcomb;
}
);
width = 524;
},
{
layerId = m003;
shapes = (
{
ref = L;
},
{
pos = (240,1);
ref = commaaccentcomb;
}
);
width = 579;
}
);
unicode = 315;
},
{
glyphname = Ldot;
lastChange = "2025-01-01 08:48:18 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = L;
},
{
pos = (238,46);
ref = periodcentered.loclCAT.case;
}
);
width = 529;
},
{
layerId = m002;
shapes = (
{
ref = L;
},
{
pos = (224,46);
ref = periodcentered.loclCAT.case;
}
);
width = 524;
},
{
layerId = m003;
shapes = (
{
ref = L;
},
{
pos = (264,45);
ref = periodcentered.loclCAT.case;
}
);
width = 579;
}
);
unicode = 319;
},
{
glyphname = Ldotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = L;
},
{
pos = (241,1);
ref = dotbelowcomb;
}
);
width = 579;
},
{
layerId = m01;
shapes = (
{
ref = L;
},
{
pos = (245,0);
ref = dotbelowcomb;
}
);
width = 529;
},
{
layerId = m002;
shapes = (
{
ref = L;
},
{
pos = (226,0);
ref = dotbelowcomb;
}
);
width = 524;
}
);
unicode = 7734;
},
{
glyphname = Lmacronbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = L;
},
{
pos = (155,1);
ref = macronbelowcomb;
}
);
width = 579;
},
{
layerId = m01;
shapes = (
{
ref = L;
},
{
pos = (167,12);
ref = macronbelowcomb;
}
);
width = 529;
},
{
layerId = m002;
shapes = (
{
ref = L;
},
{
pos = (142,12);
ref = macronbelowcomb;
}
);
width = 524;
}
);
unicode = 7738;
},
{
glyphname = Lslash;
lastChange = "2025-01-01 09:14:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(145,302,l),
(165,310,l),
(370,392,l),
(356,444,l),
(165,369,l),
(138,358,l),
(5,305,l),
(18,252,l)
);
},
{
pos = (11,0);
ref = L;
}
);
width = 571;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(156,293,l),
(183,304,l),
(408,395,l),
(389,459,l),
(195,381,l),
(161,368,l),
(13,308,l),
(34,243,l)
);
},
{
pos = (25,0);
ref = L;
}
);
width = 580;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(168,283,l),
(271,315,l),
(466,394,l),
(439,494,l),
(289,431,l),
(176,395,l),
(-4,320,l),
(22,223,l)
);
},
{
pos = (43,0);
ref = L;
}
);
width = 653;
}
);
unicode = 321;
},
{
glyphname = M;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(240,700,l),
(153,700,l),
(67,0,l),
(127,0,l),
(203,613,l),
(364,80,l),
(434,80,l),
(727,613,l),
(651,0,l),
(711,0,l),
(797,700,l),
(710,700,l),
(407,139,l)
);
}
);
width = 840;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(272,700,l),
(150,700,l),
(64,0,l),
(152,0,l),
(221,562,l),
(366,62,l),
(461,62,l),
(723,562,l),
(654,0,l),
(742,0,l),
(828,700,l),
(706,700,l),
(423,164,l)
);
}
);
width = 868;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(317,700,l),
(145,700,l),
(59,0,l),
(205,0,l),
(257,429,l),
(364,62,l),
(499,62,l),
(691,430,l),
(638,0,l),
(784,0,l),
(870,700,l),
(699,700,l),
(452,244,l)
);
}
);
width = 905;
}
);
unicode = 77;
},
{
glyphname = N;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (309,0);
},
{
name = top;
pos = (395,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(129,0,l),
(210,656,l),
(179,656,l),
(475,0,l),
(550,0,l),
(636,700,l),
(576,700,l),
(496,44,l),
(527,44,l),
(231,700,l),
(155,700,l),
(69,0,l)
);
}
);
width = 681;
},
{
anchors = (
{
name = bottom;
pos = (321,0);
},
{
name = top;
pos = (407,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(153,0,l),
(230,623,l),
(200,623,l),
(463,0,l),
(572,0,l),
(658,700,l),
(570,700,l),
(494,77,l),
(524,77,l),
(273,700,l),
(151,700,l),
(65,0,l)
);
}
);
width = 699;
},
{
anchors = (
{
name = bottom;
pos = (342,0);
},
{
name = top;
pos = (425,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(199,0,l),
(261,504,l),
(229,504,l),
(474,0,l),
(618,0,l),
(704,700,l),
(558,700,l),
(497,204,l),
(529,204,l),
(295,700,l),
(139,700,l),
(53,0,l)
);
}
);
width = 732;
}
);
unicode = 78;
},
{
glyphname = Nacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = N;
},
{
pos = (313,188);
ref = acutecomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = N;
},
{
pos = (328,188);
ref = acutecomb;
}
);
width = 699;
},
{
layerId = m003;
shapes = (
{
ref = N;
},
{
pos = (325,192);
ref = acutecomb;
}
);
width = 732;
}
);
unicode = 323;
},
{
glyphname = Ncaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = N;
},
{
pos = (229,188);
ref = caroncomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = N;
},
{
pos = (223,188);
ref = caroncomb;
}
);
width = 699;
},
{
layerId = m003;
shapes = (
{
ref = N;
},
{
pos = (213,192);
ref = caroncomb;
}
);
width = 732;
}
);
unicode = 327;
},
{
glyphname = Ncommaaccent;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = N;
},
{
pos = (280,12);
ref = commaaccentcomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = N;
},
{
pos = (276,12);
ref = commaaccentcomb;
}
);
width = 699;
},
{
layerId = m003;
shapes = (
{
ref = N;
},
{
pos = (278,1);
ref = commaaccentcomb;
}
);
width = 732;
}
);
unicode = 325;
},
{
glyphname = Ndotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = N;
},
{
pos = (279,1);
ref = dotbelowcomb;
}
);
width = 732;
},
{
layerId = m01;
shapes = (
{
ref = N;
},
{
pos = (277,0);
ref = dotbelowcomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = N;
},
{
pos = (277,0);
ref = dotbelowcomb;
}
);
width = 699;
}
);
unicode = 7750;
},
{
glyphname = Nhookleft;
lastChange = "2025-01-01 09:35:24 +0000";
layers = (
{
guides = (
{
pos = (257,-165);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(224,-230,o),
(291,-169,o),
(302,-76,c),
(367,451,l),
(587,0,l),
(730,0,l),
(816,700,l),
(671,700,l),
(616,258,l),
(408,700,l),
(252,700,l),
(162,-28,l),
(158,-66,o),
(133,-90,o),
(97,-90,cs),
(84,-90,o),
(59,-89,o),
(43,-86,c),
(26,-222,l),
(42,-227,o),
(80,-230,o),
(96,-230,cs)
);
}
);
width = 845;
},
{
guides = (
{
pos = (680,-133);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(181,-230,o),
(226,-179,o),
(237,-86,cs),
(321,604,l),
(605,0,l),
(660,0,l),
(746,700,l),
(687,700,l),
(617,128,l),
(349,700,l),
(273,700,l),
(176,-85,ls),
(167,-158,o),
(142,-176,o),
(94,-176,cs),
(81,-176,o),
(64,-175,o),
(48,-172,c),
(42,-222,l),
(58,-227,o),
(80,-230,o),
(96,-230,cs)
);
}
);
width = 791;
},
{
guides = (
{
pos = (429,-142);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(202,-230,o),
(249,-179,o),
(261,-86,c),
(341,571,l),
(588,0,l),
(675,0,l),
(761,700,l),
(673,700,l),
(609,176,l),
(398,700,l),
(269,700,l),
(175,-85,l),
(169,-139,o),
(140,-158,o),
(93,-158,cs),
(80,-158,o),
(62,-157,o),
(46,-154,c),
(38,-222,l),
(54,-227,o),
(77,-230,o),
(93,-230,cs)
);
}
);
width = 802;
}
);
unicode = 413;
},
{
glyphname = Nmacronbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = N;
},
{
pos = (193,1);
ref = macronbelowcomb;
}
);
width = 732;
},
{
layerId = m01;
shapes = (
{
ref = N;
},
{
pos = (199,12);
ref = macronbelowcomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = N;
},
{
pos = (193,12);
ref = macronbelowcomb;
}
);
width = 699;
}
);
unicode = 7752;
},
{
glyphname = Ntilde;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = N;
},
{
pos = (202,188);
ref = tildecomb;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = N;
},
{
pos = (221,188);
ref = tildecomb;
}
);
width = 699;
},
{
layerId = m003;
shapes = (
{
ref = N;
},
{
pos = (195,192);
ref = tildecomb;
}
);
width = 732;
}
);
unicode = 209;
},
{
glyphname = Eng;
lastChange = "2025-01-01 09:35:22 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (342,0);
},
{
name = top;
pos = (425,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(529,-230,o),
(596,-169,o),
(607,-76,cs),
(703,700,l),
(558,700,l),
(503,258,l),
(295,700,l),
(139,700,l),
(53,0,l),
(199,0,l),
(254,451,l),
(474,0,l),
(470,-28,ls),
(466,-66,o),
(441,-90,o),
(405,-90,cs),
(392,-90,o),
(364,-89,o),
(348,-86,c),
(331,-222,l),
(347,-227,o),
(385,-230,o),
(401,-230,cs)
);
}
);
width = 733;
},
{
anchors = (
{
name = bottom;
pos = (302,0);
},
{
name = top;
pos = (388,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(476,-232,o),
(520,-181,o),
(531,-88,cs),
(628,700,l),
(569,700,l),
(499,130,l),
(231,700,l),
(155,700,l),
(69,0,l),
(129,0,l),
(203,604,l),
(488,2,l),
(476,-87,ls),
(466,-160,o),
(436,-178,o),
(388,-178,cs),
(375,-178,o),
(359,-177,o),
(343,-174,c),
(337,-224,l),
(353,-229,o),
(375,-232,o),
(391,-232,cs)
);
}
);
width = 674;
},
{
anchors = (
{
name = bottom;
pos = (306,0);
},
{
name = top;
pos = (392,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(488,-230,o),
(535,-179,o),
(547,-86,cs),
(643,700,l),
(555,700,l),
(491,176,l),
(280,700,l),
(151,700,l),
(65,0,l),
(153,0,l),
(223,571,l),
(470,0,l),
(461,-85,ls),
(455,-139,o),
(426,-158,o),
(379,-158,cs),
(366,-158,o),
(348,-157,o),
(332,-154,c),
(324,-222,l),
(340,-227,o),
(363,-230,o),
(379,-230,cs)
);
}
);
width = 684;
}
);
unicode = 330;
},
{
glyphname = O;
kernLeft = O;
kernRight = O;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (331,-11);
},
{
name = top;
pos = (420,713);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(552,-12,o),
(661,157,o),
(684,349,cs),
(708,543,o),
(641,712,o),
(425,712,cs),
(209,712,o),
(100,543,o),
(76,349,cs),
(53,157,o),
(120,-12,o),
(336,-12,cs)
);
},
{
closed = 1;
nodes = (
(196,44,o),
(114,154,o),
(138,349,cs),
(162,540,o),
(271,656,o),
(418,656,cs),
(565,656,o),
(646,540,o),
(622,349,cs),
(598,154,o),
(490,44,o),
(343,44,cs)
);
}
);
width = 736;
},
{
anchors = (
{
name = bottom;
pos = (336,-11);
},
{
name = top;
pos = (425,713);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(560,-11,o),
(674,158,o),
(697,351,cs),
(721,544,o),
(649,713,o),
(429,713,cs),
(209,713,o),
(95,544,o),
(71,351,cs),
(48,158,o),
(120,-11,o),
(340,-11,cs)
);
},
{
closed = 1;
nodes = (
(207,69,o),
(144,196,o),
(163,351,cs),
(182,506,o),
(276,633,o),
(419,633,cs),
(572,633,o),
(624,506,o),
(605,351,cs),
(586,196,o),
(503,69,o),
(350,69,cs)
);
}
);
width = 744;
},
{
anchors = (
{
name = bottom;
pos = (342,-11);
},
{
name = top;
pos = (431,713);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(571,-11,o),
(697,148,o),
(722,351,cs),
(747,554,o),
(660,713,o),
(436,713,cs),
(212,713,o),
(85,554,o),
(60,351,cs),
(35,148,o),
(123,-11,o),
(347,-11,cs)
);
},
{
closed = 1;
nodes = (
(249,115,o),
(195,196,o),
(214,351,cs),
(233,506,o),
(307,587,o),
(421,587,cs),
(543,587,o),
(587,506,o),
(568,351,cs),
(549,196,o),
(485,115,o),
(363,115,cs)
);
}
);
width = 758;
}
);
unicode = 79;
},
{
glyphname = Oacute;
kernLeft = O;
kernRight = O;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (338,201);
ref = acutecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (346,201);
ref = acutecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (331,205);
ref = acutecomb;
}
);
width = 758;
}
);
unicode = 211;
},
{
glyphname = Obreve;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (243,201);
ref = brevecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (250,201);
ref = brevecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (231,205);
ref = brevecomb;
}
);
width = 758;
}
);
unicode = 334;
},
{
glyphname = Ocircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (254,201);
ref = circumflexcomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (236,201);
ref = circumflexcomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (221,205);
ref = circumflexcomb;
}
);
width = 758;
}
);
unicode = 212;
},
{
glyphname = Ocircumflexacute;
lastChange = "2025-01-08 14:16:50 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (136,201);
ref = circumflexcomb_acutecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (145,213);
ref = circumflexcomb_acutecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (251,205);
ref = circumflexcomb_acutecomb;
}
);
width = 758;
}
);
unicode = 7888;
},
{
glyphname = Ocircumflexdotbelow;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (299,-11);
ref = dotbelowcomb;
},
{
pos = (254,201);
ref = circumflexcomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (292,-11);
ref = dotbelowcomb;
},
{
pos = (236,201);
ref = circumflexcomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (279,-10);
ref = dotbelowcomb;
},
{
pos = (221,205);
ref = circumflexcomb;
}
);
width = 758;
}
);
unicode = 7896;
},
{
glyphname = Ocircumflexgrave;
lastChange = "2025-01-08 14:17:48 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (278,201);
ref = circumflexcomb_gravecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (269,213);
ref = circumflexcomb_gravecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (251,206);
ref = circumflexcomb_gravecomb;
}
);
width = 758;
}
);
unicode = 7890;
},
{
glyphname = Ocircumflexhookabove;
lastChange = "2025-01-08 14:24:33 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (281,201);
ref = circumflexcomb_hookabovecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (272,213);
ref = circumflexcomb_hookabovecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (250,205);
ref = circumflexcomb_hookabovecomb;
}
);
width = 758;
}
);
unicode = 7892;
},
{
glyphname = Ocircumflextilde;
lastChange = "2025-01-08 14:34:31 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (286,213);
ref = circumflexcomb_tildecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (276,213);
ref = circumflexcomb_tildecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (226,205);
ref = circumflexcomb_tildecomb;
}
);
width = 758;
}
);
unicode = 7894;
},
{
glyphname = Odieresis;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (223,201);
ref = dieresiscomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (228,201);
ref = dieresiscomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (185,205);
ref = dieresiscomb;
}
);
width = 758;
}
);
unicode = 214;
},
{
glyphname = Odotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (299,-11);
ref = dotbelowcomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (292,-11);
ref = dotbelowcomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (279,-10);
ref = dotbelowcomb;
}
);
width = 758;
}
);
unicode = 7884;
},
{
glyphname = Ograve;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (224,201);
ref = gravecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (230,201);
ref = gravecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (201,205);
ref = gravecomb;
}
);
width = 758;
}
);
unicode = 210;
},
{
glyphname = Ohookabove;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (339,213);
ref = hookabovecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (325,213);
ref = hookabovecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (335,205);
ref = hookabovecomb;
}
);
width = 758;
}
);
unicode = 7886;
},
{
glyphname = Ohorn;
kernLeft = O;
lastChange = "2025-01-01 09:35:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(660,627,o),
(754,705,o),
(720,827,c),
(657,808,l),
(679,738,o),
(643,676,o),
(579,676,cs),
(549,676,o),
(520,691,o),
(491,698,c),
(484,641,l),
(573,627,l)
);
},
{
pos = (-31,0);
ref = O;
}
);
width = 757;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(687,612,o),
(761,708,o),
(727,830,c),
(645,808,l),
(666,749,o),
(648,679,o),
(580,679,cs),
(544,679,o),
(517,695,o),
(494,699,c),
(485,625,l),
(553,612,l)
);
},
{
pos = (-31,0);
ref = O;
}
);
width = 764;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(729,601,o),
(827,710,o),
(790,845,c),
(672,814,l),
(694,755,o),
(681,682,o),
(600,682,cs),
(564,682,o),
(542,696,o),
(489,704,c),
(479,621,l),
(596,601,l)
);
},
{
pos = (-31,0);
ref = O;
}
);
width = 775;
}
);
unicode = 416;
},
{
glyphname = Ohornacute;
kernLeft = O;
kernRight = Ohorn;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Ohorn;
},
{
pos = (307,201);
ref = acutecomb;
}
);
width = 757;
},
{
layerId = m002;
shapes = (
{
ref = Ohorn;
},
{
pos = (315,201);
ref = acutecomb;
}
);
width = 764;
},
{
layerId = m003;
shapes = (
{
ref = Ohorn;
},
{
pos = (300,205);
ref = acutecomb;
}
);
width = 775;
}
);
unicode = 7898;
},
{
glyphname = Ohorndotbelow;
kernLeft = O;
kernRight = Ohorn;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Ohorn;
},
{
pos = (268,-11);
ref = dotbelowcomb;
}
);
width = 757;
},
{
layerId = m002;
shapes = (
{
ref = Ohorn;
},
{
pos = (261,-11);
ref = dotbelowcomb;
}
);
width = 764;
},
{
layerId = m003;
shapes = (
{
ref = Ohorn;
},
{
pos = (248,-10);
ref = dotbelowcomb;
}
);
width = 775;
}
);
unicode = 7906;
},
{
glyphname = Ohorngrave;
kernLeft = O;
kernRight = Ohorn;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Ohorn;
},
{
pos = (193,201);
ref = gravecomb;
}
);
width = 757;
},
{
layerId = m002;
shapes = (
{
ref = Ohorn;
},
{
pos = (199,201);
ref = gravecomb;
}
);
width = 764;
},
{
layerId = m003;
shapes = (
{
ref = Ohorn;
},
{
pos = (170,205);
ref = gravecomb;
}
);
width = 775;
}
);
unicode = 7900;
},
{
glyphname = Ohornhookabove;
kernLeft = O;
kernRight = Ohorn;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Ohorn;
},
{
pos = (308,213);
ref = hookabovecomb;
}
);
width = 757;
},
{
layerId = m002;
shapes = (
{
ref = Ohorn;
},
{
pos = (294,213);
ref = hookabovecomb;
}
);
width = 764;
},
{
layerId = m003;
shapes = (
{
ref = Ohorn;
},
{
pos = (304,205);
ref = hookabovecomb;
}
);
width = 775;
}
);
unicode = 7902;
},
{
glyphname = Ohorntilde;
kernLeft = O;
kernRight = Ohorn;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Ohorn;
},
{
pos = (196,201);
ref = tildecomb;
}
);
width = 757;
},
{
layerId = m002;
shapes = (
{
ref = Ohorn;
},
{
pos = (208,201);
ref = tildecomb;
}
);
width = 764;
},
{
layerId = m003;
shapes = (
{
ref = Ohorn;
},
{
pos = (170,205);
ref = tildecomb;
}
);
width = 775;
}
);
unicode = 7904;
},
{
glyphname = Ohungarumlaut;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (269,201);
ref = hungarumlautcomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (270,201);
ref = hungarumlautcomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (234,205);
ref = hungarumlautcomb;
}
);
width = 758;
}
);
unicode = 336;
},
{
glyphname = Omacron;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (255,201);
ref = macroncomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (218,201);
ref = macroncomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (228,202);
ref = macroncomb;
}
);
width = 758;
}
);
unicode = 332;
},
{
glyphname = Oopen;
lastChange = "2025-01-08 14:16:04 +0000";
layers = (
{
layerId = m01;
shapes = (
{
angle = 180;
pos = (688,700);
ref = C;
}
);
width = 663;
},
{
layerId = m002;
shapes = (
{
angle = 180;
pos = (714,700);
ref = C;
}
);
width = 689;
},
{
layerId = m003;
shapes = (
{
angle = 180;
pos = (708,700);
ref = C;
}
);
width = 684;
}
);
unicode = 390;
},
{
glyphname = Oslash;
lastChange = "2025-01-01 09:34:40 +0000";
layers = (
{
layerId = m01;
shapes = (
{
pos = (21,0);
ref = O;
},
{
closed = 1;
nodes = (
(68,-12,l),
(807,682,l),
(766,720,l),
(30,31,l)
);
}
);
width = 827;
},
{
layerId = m002;
shapes = (
{
pos = (31,0);
ref = O;
},
{
closed = 1;
nodes = (
(65,-12,l),
(828,656,l),
(775,712,l),
(16,47,l)
);
}
);
width = 855;
},
{
layerId = m003;
shapes = (
{
pos = (33,0);
ref = O;
},
{
closed = 1;
nodes = (
(90,-12,l),
(857,619,l),
(775,712,l),
(13,85,l)
);
}
);
width = 874;
}
);
unicode = 216;
},
{
glyphname = Oslashacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Oslash;
},
{
pos = (359,201);
ref = acutecomb;
}
);
width = 827;
},
{
layerId = m002;
shapes = (
{
ref = Oslash;
},
{
pos = (377,201);
ref = acutecomb;
}
);
width = 855;
},
{
layerId = m003;
shapes = (
{
ref = Oslash;
},
{
pos = (364,205);
ref = acutecomb;
}
);
width = 874;
}
);
unicode = 510;
},
{
glyphname = Otilde;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = O;
},
{
pos = (227,201);
ref = tildecomb;
}
);
width = 736;
},
{
layerId = m002;
shapes = (
{
ref = O;
},
{
pos = (239,201);
ref = tildecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = O;
},
{
pos = (201,205);
ref = tildecomb;
}
);
width = 758;
}
);
unicode = 213;
},
{
glyphname = OE;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (459,0);
},
{
name = top;
pos = (545,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(888,0,l),
(895,56,l),
(561,56,l),
(595,332,l),
(867,332,l),
(874,388,l),
(602,388,l),
(633,644,l),
(967,644,l),
(974,700,l),
(452,700,ls),
(226,700,o),
(102,560,o),
(76,349,cs),
(51,141,o),
(140,0,o),
(366,0,cs)
);
},
{
closed = 1;
nodes = (
(176,56,o),
(119,192,o),
(138,350,cs),
(158,507,o),
(248,644,o),
(442,644,cs),
(568,644,l),
(496,56,l),
(370,56,ls)
);
}
);
width = 979;
},
{
anchors = (
{
name = bottom;
pos = (460,0);
},
{
name = top;
pos = (546,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(893,0,l),
(903,80,l),
(580,80,l),
(610,320,l),
(872,320,l),
(881,398,l),
(619,398,l),
(646,620,l),
(969,620,l),
(979,700,l),
(453,700,ls),
(221,700,o),
(97,560,o),
(71,349,cs),
(46,141,o),
(135,0,o),
(367,0,cs)
);
},
{
closed = 1;
nodes = (
(211,80,o),
(144,192,o),
(163,350,cs),
(183,507,o),
(277,620,o),
(440,620,cs),
(550,620,l),
(484,80,l),
(374,80,ls)
);
}
);
width = 981;
},
{
anchors = (
{
name = bottom;
pos = (456,0);
},
{
name = top;
pos = (542,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(901,0,l),
(916,126,l),
(605,126,l),
(626,297,l),
(886,297,l),
(902,423,l),
(642,423,l),
(660,574,l),
(971,574,l),
(987,700,l),
(440,700,ls),
(210,700,o),
(85,554,o),
(60,349,cs),
(35,147,o),
(124,0,o),
(354,0,cs)
);
},
{
closed = 1;
nodes = (
(257,126,o),
(195,198,o),
(214,350,cs),
(232,501,o),
(312,574,o),
(421,574,cs),
(526,574,l),
(471,126,l),
(366,126,ls)
);
}
);
width = 974;
}
);
unicode = 338;
},
{
glyphname = P;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(133,0,l),
(165,262,l),
(333,262,ls),
(471,262,o),
(559,350,o),
(574,472,cs),
(592,615,o),
(516,700,o),
(389,700,cs),
(153,700,l),
(67,0,l)
);
},
{
closed = 1;
nodes = (
(210,644,l),
(380,644,ls),
(474,644,o),
(525,578,o),
(512,472,cs),
(500,375,o),
(436,318,o),
(339,318,cs),
(170,318,l)
);
}
);
width = 585;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(152,0,l),
(183,252,l),
(344,252,l),
(485,252,o),
(578,342,o),
(594,472,cs),
(612,615,o),
(531,700,o),
(401,700,cs),
(150,700,l),
(64,0,l)
);
},
{
closed = 1;
nodes = (
(229,621,l),
(390,621,ls),
(463,621,o),
(517,573,o),
(504,472,cs),
(492,376,o),
(427,332,o),
(353,332,cs),
(193,332,l)
);
}
);
width = 602;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(207,-1,l),
(235,231,l),
(385,231,ls),
(529,231,o),
(628,336,o),
(644,465,cs),
(662,609,o),
(578,701,o),
(445,701,cs),
(145,701,l),
(59,-1,l)
);
},
{
closed = 1;
nodes = (
(275,575,l),
(404,575,ls),
(467,575,o),
(498,527,o),
(490,467,cs),
(483,410,o),
(442,357,o),
(378,357,cs),
(249,357,l)
);
}
);
width = 638;
}
);
unicode = 80;
},
{
glyphname = Thorn;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(133,0,l),
(150,138,l),
(318,138,ls),
(456,138,o),
(544,226,o),
(559,348,cs),
(577,491,o),
(501,576,o),
(374,576,cs),
(138,576,l),
(67,0,l)
);
},
{
closed = 1;
nodes = (
(195,520,l),
(365,520,ls),
(459,520,o),
(510,454,o),
(497,348,cs),
(485,251,o),
(421,194,o),
(324,194,cs),
(155,194,l)
);
},
{
closed = 1;
nodes = (
(130,512,l),
(195,512,l),
(218,700,l),
(153,700,l)
);
}
);
width = 585;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(152,0,l),
(168,128,l),
(329,128,l),
(470,128,o),
(563,218,o),
(579,348,cs),
(597,491,o),
(516,576,o),
(386,576,cs),
(135,576,l),
(64,0,l)
);
},
{
closed = 1;
nodes = (
(213,497,l),
(374,497,ls),
(447,497,o),
(501,449,o),
(489,348,cs),
(477,252,o),
(412,208,o),
(338,208,cs),
(178,208,l)
);
},
{
closed = 1;
nodes = (
(126,500,l),
(212,500,l),
(236,700,l),
(150,700,l)
);
}
);
width = 602;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(207,-1,l),
(222,122,l),
(372,122,ls),
(516,122,o),
(615,227,o),
(631,356,cs),
(648,500,o),
(565,592,o),
(432,592,cs),
(132,592,l),
(59,-1,l)
);
},
{
closed = 1;
nodes = (
(262,466,l),
(391,466,ls),
(454,466,o),
(484,418,o),
(477,358,cs),
(470,301,o),
(428,248,o),
(364,248,cs),
(235,248,l)
);
},
{
closed = 1;
nodes = (
(116,462,l),
(264,462,l),
(293,700,l),
(145,700,l)
);
}
);
width = 638;
}
);
unicode = 222;
},
{
glyphname = Q;
kernLeft = O;
kernRight = Q;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(552,-12,o),
(661,157,o),
(684,349,cs),
(708,543,o),
(641,712,o),
(425,712,cs),
(209,712,o),
(100,543,o),
(76,349,cs),
(53,157,o),
(120,-12,o),
(336,-12,cs)
);
},
{
closed = 1;
nodes = (
(648,-33,l),
(437,256,l),
(389,220,l),
(599,-71,l)
);
},
{
closed = 1;
nodes = (
(196,44,o),
(114,154,o),
(138,349,cs),
(162,540,o),
(271,656,o),
(418,656,cs),
(565,656,o),
(646,540,o),
(622,349,cs),
(598,154,o),
(490,44,o),
(343,44,cs)
);
}
);
width = 745;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(560,-11,o),
(674,158,o),
(697,351,cs),
(721,544,o),
(649,713,o),
(429,713,cs),
(209,713,o),
(95,544,o),
(71,351,cs),
(48,158,o),
(120,-11,o),
(340,-11,cs)
);
},
{
closed = 1;
nodes = (
(666,-34,l),
(439,272,l),
(379,227,l),
(603,-82,l)
);
},
{
closed = 1;
nodes = (
(197,69,o),
(144,196,o),
(163,351,cs),
(182,506,o),
(266,633,o),
(419,633,cs),
(572,633,o),
(624,506,o),
(605,351,cs),
(586,196,o),
(503,69,o),
(350,69,cs)
);
}
);
width = 752;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(565,-11,o),
(686,158,o),
(710,351,cs),
(734,544,o),
(654,713,o),
(430,713,cs),
(206,713,o),
(84,544,o),
(60,351,cs),
(36,158,o),
(117,-11,o),
(341,-11,cs)
);
},
{
closed = 1;
nodes = (
(676,-30,l),
(436,299,l),
(338,226,l),
(577,-105,l)
);
},
{
closed = 1;
nodes = (
(213,111,o),
(176,224,o),
(192,351,cs),
(206,463,o),
(266,592,o),
(416,592,cs),
(566,592,o),
(590,463,o),
(576,351,cs),
(560,224,o),
(506,111,o),
(356,111,cs)
);
}
);
width = 734;
}
);
unicode = 81;
},
{
glyphname = R;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (274,0);
},
{
name = top;
pos = (329,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(133,0,l),
(169,292,l),
(321,292,ls),
(454,292,o),
(544,395,o),
(555,488,cs),
(573,631,o),
(495,700,o),
(373,700,cs),
(153,700,l),
(67,0,l)
);
},
{
closed = 1;
nodes = (
(532,0,l),
(392,306,l),
(331,292,l),
(462,0,l)
);
},
{
closed = 1;
nodes = (
(210,644,l),
(364,644,ls),
(453,644,o),
(506,594,o),
(493,488,cs),
(485,420,o),
(418,348,o),
(326,348,cs),
(174,348,l)
);
}
);
width = 608;
},
{
anchors = (
{
name = bottom;
pos = (297,0);
},
{
name = top;
pos = (383,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(152,0,l),
(188,290,l),
(331,290,ls),
(475,290,o),
(579,376,o),
(594,498,cs),
(611,631,o),
(529,700,o),
(407,700,cs),
(150,700,l),
(64,0,l)
);
},
{
closed = 1;
nodes = (
(571,0,l),
(424,319,l),
(338,292,l),
(469,0,l)
);
},
{
closed = 1;
nodes = (
(228,620,l),
(391,620,ls),
(461,620,o),
(514,573,o),
(504,498,cs),
(495,422,o),
(431,370,o),
(361,370,cs),
(198,370,l)
);
}
);
width = 644;
},
{
anchors = (
{
name = bottom;
pos = (286,0);
},
{
name = top;
pos = (372,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(207,-1,l),
(238,251,l),
(388,251,ls),
(532,251,o),
(629,341,o),
(646,478,cs),
(663,622,o),
(578,701,o),
(445,701,cs),
(145,701,l),
(59,-1,l)
);
},
{
closed = 1;
nodes = (
(636,0,l),
(493,283,l),
(332,269,l),
(463,0,l)
);
},
{
closed = 1;
nodes = (
(275,575,l),
(404,575,ls),
(467,575,o),
(498,533,o),
(492,480,cs),
(483,410,o),
(444,377,o),
(380,377,cs),
(251,377,l)
);
}
);
width = 699;
}
);
unicode = 82;
},
{
glyphname = Racute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = R;
},
{
pos = (247,188);
ref = acutecomb;
}
);
width = 608;
},
{
layerId = m002;
shapes = (
{
ref = R;
},
{
pos = (304,188);
ref = acutecomb;
}
);
width = 644;
},
{
layerId = m003;
shapes = (
{
ref = R;
},
{
pos = (272,192);
ref = acutecomb;
}
);
width = 699;
}
);
unicode = 340;
},
{
glyphname = Rcaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = R;
},
{
pos = (163,188);
ref = caroncomb;
}
);
width = 608;
},
{
layerId = m002;
shapes = (
{
ref = R;
},
{
pos = (199,188);
ref = caroncomb;
}
);
width = 644;
},
{
layerId = m003;
shapes = (
{
ref = R;
},
{
pos = (160,192);
ref = caroncomb;
}
);
width = 699;
}
);
unicode = 344;
},
{
glyphname = Rcommaaccent;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = R;
},
{
pos = (245,12);
ref = commaaccentcomb;
}
);
width = 608;
},
{
layerId = m002;
shapes = (
{
ref = R;
},
{
pos = (252,12);
ref = commaaccentcomb;
}
);
width = 644;
},
{
layerId = m003;
shapes = (
{
ref = R;
},
{
pos = (222,1);
ref = commaaccentcomb;
}
);
width = 699;
}
);
unicode = 342;
},
{
glyphname = Rdotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = R;
},
{
pos = (223,1);
ref = dotbelowcomb;
}
);
width = 699;
},
{
layerId = m01;
shapes = (
{
ref = R;
},
{
pos = (242,0);
ref = dotbelowcomb;
}
);
width = 608;
},
{
layerId = m002;
shapes = (
{
ref = R;
},
{
pos = (253,0);
ref = dotbelowcomb;
}
);
width = 644;
}
);
unicode = 7770;
},
{
glyphname = Rmacronbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = R;
},
{
pos = (137,1);
ref = macronbelowcomb;
}
);
width = 699;
},
{
layerId = m01;
shapes = (
{
ref = R;
},
{
pos = (164,12);
ref = macronbelowcomb;
}
);
width = 608;
},
{
layerId = m002;
shapes = (
{
ref = R;
},
{
pos = (169,12);
ref = macronbelowcomb;
}
);
width = 644;
}
);
unicode = 7774;
},
{
glyphname = S;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (275,-12);
},
{
name = top;
pos = (361,712);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(410,-12,o),
(519,58,o),
(536,195,cs),
(566,437,o),
(139,334,o),
(162,521,cs),
(171,591,o),
(235,656,o),
(342,656,cs),
(460,656,o),
(501,580,o),
(501,513,c),
(567,513,l),
(573,603,o),
(501,712,o),
(356,712,cs),
(199,712,o),
(112,618,o),
(100,516,cs),
(68,259,o),
(497,382,o),
(473,186,cs),
(464,114,o),
(401,44,o),
(280,44,cs),
(157,44,o),
(111,121,o),
(107,214,c),
(40,214,l),
(38,99,o),
(109,-12,o),
(273,-12,cs)
);
}
);
width = 596;
},
{
anchors = (
{
name = bottom;
pos = (281,-12);
},
{
name = top;
pos = (367,712);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(421,-12,o),
(535,58,o),
(552,195,cs),
(584,457,o),
(177,344,o),
(198,521,cs),
(207,591,o),
(280,632,o),
(350,632,cs),
(445,632,o),
(486,572,o),
(488,513,c),
(581,513,l),
(587,603,o),
(520,712,o),
(367,712,cs),
(207,712,o),
(118,618,o),
(106,516,cs),
(73,246,o),
(482,371,o),
(459,186,cs),
(450,114,o),
(374,68,o),
(291,68,cs),
(196,68,o),
(148,129,o),
(145,214,c),
(48,214,l),
(46,99,o),
(111,-12,o),
(281,-12,cs)
);
}
);
width = 597;
},
{
anchors = (
{
name = bottom;
pos = (281,-5);
},
{
name = top;
pos = (370,712);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(439,-12,o),
(552,63,o),
(568,200,cs),
(600,459,o),
(228,386,o),
(243,509,cs),
(251,568,o),
(310,582,o),
(354,582,cs),
(410,582,o),
(444,554,o),
(447,505,c),
(600,505,l),
(606,595,o),
(548,712,o),
(370,712,cs),
(193,712,o),
(102,606,o),
(90,504,cs),
(57,234,o),
(431,338,o),
(413,186,cs),
(407,142,o),
(357,118,o),
(296,118,cs),
(240,118,o),
(192,147,o),
(187,222,c),
(31,222,l),
(30,107,o),
(86,-12,o),
(280,-12,cs)
);
}
);
width = 611;
}
);
unicode = 83;
},
{
glyphname = Sacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = S;
},
{
pos = (279,200);
ref = acutecomb;
}
);
width = 596;
},
{
layerId = m002;
shapes = (
{
ref = S;
},
{
pos = (288,200);
ref = acutecomb;
}
);
width = 597;
},
{
layerId = m003;
shapes = (
{
ref = S;
},
{
pos = (270,204);
ref = acutecomb;
}
);
width = 611;
}
);
unicode = 346;
},
{
glyphname = Scaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = S;
},
{
pos = (195,200);
ref = caroncomb;
}
);
width = 596;
},
{
layerId = m002;
shapes = (
{
ref = S;
},
{
pos = (183,200);
ref = caroncomb;
}
);
width = 597;
},
{
layerId = m003;
shapes = (
{
ref = S;
},
{
pos = (158,204);
ref = caroncomb;
}
);
width = 611;
}
);
unicode = 352;
},
{
glyphname = Scedilla;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = S;
},
{
pos = (198,-14);
ref = cedillacomb;
}
);
width = 596;
},
{
layerId = m002;
shapes = (
{
ref = S;
},
{
pos = (194,-14);
ref = cedillacomb;
}
);
width = 597;
},
{
layerId = m003;
shapes = (
{
ref = S;
},
{
pos = (184,-4);
ref = cedillacomb;
}
);
width = 611;
}
);
unicode = 350;
},
{
glyphname = Scircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = S;
},
{
pos = (195,200);
ref = circumflexcomb;
}
);
width = 596;
},
{
layerId = m002;
shapes = (
{
ref = S;
},
{
pos = (178,200);
ref = circumflexcomb;
}
);
width = 597;
},
{
layerId = m003;
shapes = (
{
ref = S;
},
{
pos = (160,204);
ref = circumflexcomb;
}
);
width = 611;
}
);
unicode = 348;
},
{
glyphname = Scommaaccent;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = S;
},
{
pos = (246,0);
ref = commaaccentcomb;
}
);
width = 596;
},
{
layerId = m002;
shapes = (
{
ref = S;
},
{
pos = (236,0);
ref = commaaccentcomb;
}
);
width = 597;
},
{
layerId = m003;
shapes = (
{
ref = S;
},
{
pos = (217,-4);
ref = commaaccentcomb;
}
);
width = 611;
}
);
unicode = 536;
},
{
glyphname = Germandbls;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(129,0,l),
(215,700,l),
(155,700,l),
(69,0,l)
);
},
{
closed = 1;
nodes = (
(183,98,l),
(215,29,o),
(284,-12,o),
(369,-12,cs),
(491,-12,o),
(595,69,o),
(610,204,cs),
(624,320,o),
(555,423,o),
(401,423,c),
(628,639,l),
(635,700,l),
(177,700,l),
(170,644,l),
(555,644,l),
(320,423,l),
(314,370,l),
(371,370,ls),
(500,370,o),
(562,305,o),
(550,208,cs),
(540,124,o),
(478,44,o),
(376,44,cs),
(302,44,o),
(259,76,o),
(239,128,c)
);
}
);
width = 667;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(166,0,l),
(252,700,l),
(164,700,l),
(78,0,l)
);
},
{
closed = 1;
nodes = (
(216,91,l),
(236,31,o),
(299,-12,o),
(394,-12,cs),
(529,-12,o),
(620,77,o),
(636,210,cs),
(649,312,o),
(581,414,o),
(446,414,c),
(643,615,l),
(653,700,l),
(229,700,l),
(219,620,l),
(537,620,l),
(335,414,l),
(327,346,l),
(386,346,ls),
(494,346,o),
(555,295,o),
(543,200,cs),
(532,114,o),
(472,68,o),
(404,68,cs),
(344,68,o),
(312,105,o),
(302,139,c)
);
}
);
width = 699;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(224,0,l),
(310,700,l),
(164,700,l),
(78,0,l)
);
},
{
closed = 1;
nodes = (
(270,92,l),
(298,21,o),
(373,-13,o),
(460,-13,cs),
(623,-13,o),
(702,92,o),
(718,218,cs),
(731,331,o),
(655,423,o),
(554,423,c),
(719,574,l),
(735,700,l),
(239,700,l),
(223,574,l),
(556,574,l),
(391,422,l),
(378,317,l),
(450,317,ls),
(525,317,o),
(581,288,o),
(572,217,cs),
(565,155,o),
(520,117,o),
(472,117,cs),
(435,117,o),
(407,133,o),
(395,166,c)
);
}
);
width = 760;
}
);
unicode = 7838;
},
{
glyphname = T;
kernLeft = T;
kernRight = T;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (219,0);
},
{
name = top;
pos = (305,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(251,0,l),
(330,644,l),
(532,644,l),
(539,700,l),
(71,700,l),
(64,644,l),
(266,644,l),
(187,0,l)
);
}
);
width = 500;
},
{
anchors = (
{
name = bottom;
pos = (252,0);
},
{
name = top;
pos = (338,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(296,0,l),
(372,620,l),
(561,620,l),
(571,700,l),
(105,700,l),
(95,620,l),
(284,620,l),
(208,0,l)
);
}
);
width = 562;
},
{
anchors = (
{
name = bottom;
pos = (269,0);
},
{
name = top;
pos = (351,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(338,0,l),
(408,574,l),
(595,574,l),
(611,700,l),
(95,700,l),
(79,574,l),
(262,574,l),
(192,0,l)
);
}
);
width = 596;
}
);
unicode = 84;
},
{
glyphname = Tcaron;
kernLeft = T;
kernRight = T;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = T;
},
{
pos = (139,188);
ref = caroncomb;
}
);
width = 500;
},
{
layerId = m002;
shapes = (
{
ref = T;
},
{
pos = (154,188);
ref = caroncomb;
}
);
width = 562;
},
{
layerId = m003;
shapes = (
{
ref = T;
},
{
pos = (139,192);
ref = caroncomb;
}
);
width = 596;
}
);
unicode = 356;
},
{
glyphname = Tcedilla;
kernLeft = T;
kernRight = T;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = T;
},
{
pos = (142,-2);
ref = cedillacomb;
}
);
width = 500;
},
{
layerId = m002;
shapes = (
{
ref = T;
},
{
pos = (165,-2);
ref = cedillacomb;
}
);
width = 562;
},
{
layerId = m003;
shapes = (
{
ref = T;
},
{
pos = (172,1);
ref = cedillacomb;
}
);
width = 596;
}
);
unicode = 354;
},
{
glyphname = Tcommaaccent;
kernLeft = T;
kernRight = T;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = T;
},
{
pos = (190,12);
ref = commaaccentcomb;
}
);
width = 500;
},
{
layerId = m002;
shapes = (
{
ref = T;
},
{
pos = (207,12);
ref = commaaccentcomb;
}
);
width = 562;
},
{
layerId = m003;
shapes = (
{
ref = T;
},
{
pos = (205,1);
ref = commaaccentcomb;
}
);
width = 596;
}
);
unicode = 538;
},
{
glyphname = Tdotbelow;
kernLeft = T;
kernRight = T;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = T;
},
{
pos = (206,1);
ref = dotbelowcomb;
}
);
width = 596;
},
{
layerId = m01;
shapes = (
{
ref = T;
},
{
pos = (187,0);
ref = dotbelowcomb;
}
);
width = 500;
},
{
layerId = m002;
shapes = (
{
ref = T;
},
{
pos = (208,0);
ref = dotbelowcomb;
}
);
width = 562;
}
);
unicode = 7788;
},
{
glyphname = Tmacronbelow;
kernLeft = T;
kernRight = T;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = T;
},
{
pos = (120,1);
ref = macronbelowcomb;
}
);
width = 596;
},
{
layerId = m01;
shapes = (
{
ref = T;
},
{
pos = (109,12);
ref = macronbelowcomb;
}
);
width = 500;
},
{
layerId = m002;
shapes = (
{
ref = T;
},
{
pos = (124,12);
ref = macronbelowcomb;
}
);
width = 562;
}
);
unicode = 7790;
},
{
glyphname = U;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (304,-12);
},
{
name = top;
pos = (393,713);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(451,-12,o),
(557,94,o),
(579,275,cs),
(631,701,l),
(571,701,l),
(519,275,ls),
(500,121,o),
(414,44,o),
(308,44,cs),
(204,44,o),
(134,121,o),
(153,275,cs),
(205,701,l),
(145,701,l),
(93,275,ls),
(71,94,o),
(152,-12,o),
(305,-12,cs)
);
}
);
width = 666;
},
{
anchors = (
{
name = bottom;
pos = (310,-12);
},
{
name = top;
pos = (399,713);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(477,-12,o),
(575,98,o),
(597,275,cs),
(649,701,l),
(561,701,l),
(509,275,ls),
(492,139,o),
(410,73,o),
(318,73,cs),
(222,73,o),
(160,139,o),
(177,275,cs),
(229,701,l),
(141,701,l),
(89,275,ls),
(67,98,o),
(150,-12,o),
(312,-12,cs)
);
}
);
width = 680;
},
{
anchors = (
{
name = bottom;
pos = (318,-12);
},
{
name = top;
pos = (406,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(494,-12,o),
(607,98,o),
(629,275,cs),
(681,701,l),
(535,701,l),
(483,275,ls),
(471,184,o),
(417,118,o),
(330,118,cs),
(239,118,o),
(205,184,o),
(217,275,cs),
(269,701,l),
(123,701,l),
(71,275,ls),
(49,98,o),
(145,-12,o),
(318,-12,cs)
);
}
);
width = 694;
}
);
unicode = 85;
},
{
glyphname = Uacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (311,201);
ref = acutecomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (320,201);
ref = acutecomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (306,192);
ref = acutecomb;
}
);
width = 694;
}
);
unicode = 218;
},
{
glyphname = Ubreve;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (216,201);
ref = brevecomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (224,201);
ref = brevecomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (206,192);
ref = brevecomb;
}
);
width = 694;
}
);
unicode = 364;
},
{
glyphname = Ucircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (227,201);
ref = circumflexcomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (210,201);
ref = circumflexcomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (196,192);
ref = circumflexcomb;
}
);
width = 694;
}
);
unicode = 219;
},
{
glyphname = Udieresis;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (196,201);
ref = dieresiscomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (202,201);
ref = dieresiscomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (160,192);
ref = dieresiscomb;
}
);
width = 694;
}
);
unicode = 220;
},
{
glyphname = Udotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (272,-12);
ref = dotbelowcomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (266,-12);
ref = dotbelowcomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (255,-11);
ref = dotbelowcomb;
}
);
width = 694;
}
);
unicode = 7908;
},
{
glyphname = Ugrave;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (197,201);
ref = gravecomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (204,201);
ref = gravecomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (176,192);
ref = gravecomb;
}
);
width = 694;
}
);
unicode = 217;
},
{
glyphname = Uhookabove;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (312,213);
ref = hookabovecomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (299,213);
ref = hookabovecomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (310,192);
ref = hookabovecomb;
}
);
width = 694;
}
);
unicode = 7910;
},
{
glyphname = Uhorn;
kernLeft = U;
kernRight = Uhorn;
lastChange = "2025-01-01 09:15:51 +0000";
layers = (
{
layerId = m01;
shapes = (
{
pos = (-31,0);
ref = U;
},
{
closed = 1;
nodes = (
(679,652,o),
(773,730,o),
(739,852,c),
(676,833,l),
(698,763,o),
(662,701,o),
(598,701,c),
(592,652,l)
);
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
pos = (-31,0);
ref = U;
},
{
closed = 1;
nodes = (
(733,647,o),
(805,730,o),
(771,852,c),
(688,830,l),
(710,771,o),
(697,701,o),
(616,701,c),
(610,647,l)
);
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
pos = (-31,0);
ref = U;
},
{
closed = 1;
nodes = (
(769,620,o),
(870,729,o),
(833,864,c),
(715,833,l),
(737,774,o),
(727,701,o),
(646,701,c),
(636,620,l)
);
}
);
width = 777;
}
);
unicode = 431;
},
{
glyphname = Uhornacute;
kernLeft = U;
kernRight = Uhorn;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Uhorn;
},
{
pos = (280,201);
ref = acutecomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = Uhorn;
},
{
pos = (289,201);
ref = acutecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = Uhorn;
},
{
pos = (275,192);
ref = acutecomb;
}
);
width = 777;
}
);
unicode = 7912;
},
{
glyphname = Uhorndotbelow;
kernLeft = U;
kernRight = Uhorn;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Uhorn;
},
{
pos = (241,-12);
ref = dotbelowcomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = Uhorn;
},
{
pos = (235,-12);
ref = dotbelowcomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = Uhorn;
},
{
pos = (224,-11);
ref = dotbelowcomb;
}
);
width = 777;
}
);
unicode = 7920;
},
{
glyphname = Uhorngrave;
kernLeft = U;
kernRight = Uhorn;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Uhorn;
},
{
pos = (166,201);
ref = gravecomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = Uhorn;
},
{
pos = (173,201);
ref = gravecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = Uhorn;
},
{
pos = (145,192);
ref = gravecomb;
}
);
width = 777;
}
);
unicode = 7914;
},
{
glyphname = Uhornhookabove;
kernLeft = U;
kernRight = Uhorn;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Uhorn;
},
{
pos = (281,213);
ref = hookabovecomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = Uhorn;
},
{
pos = (268,213);
ref = hookabovecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = Uhorn;
},
{
pos = (279,192);
ref = hookabovecomb;
}
);
width = 777;
}
);
unicode = 7916;
},
{
glyphname = Uhorntilde;
kernLeft = U;
kernRight = Uhorn;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Uhorn;
},
{
pos = (169,201);
ref = tildecomb;
}
);
width = 701;
},
{
layerId = m002;
shapes = (
{
ref = Uhorn;
},
{
pos = (182,201);
ref = tildecomb;
}
);
width = 744;
},
{
layerId = m003;
shapes = (
{
ref = Uhorn;
},
{
pos = (145,192);
ref = tildecomb;
}
);
width = 777;
}
);
unicode = 7918;
},
{
glyphname = Uhungarumlaut;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (242,201);
ref = hungarumlautcomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (244,201);
ref = hungarumlautcomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (209,192);
ref = hungarumlautcomb;
}
);
width = 694;
}
);
unicode = 368;
},
{
glyphname = Umacron;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (228,201);
ref = macroncomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (192,201);
ref = macroncomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (203,189);
ref = macroncomb;
}
);
width = 694;
}
);
unicode = 362;
},
{
glyphname = Uogonek;
lastChange = "2025-01-01 09:07:13 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (245,3);
ref = ogonekcomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (259,0);
ref = ogonekcomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (278,3);
ref = ogonekcomb;
}
);
width = 694;
}
);
unicode = 370;
},
{
glyphname = Uring;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (236,201);
ref = ringcomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (236,201);
ref = ringcomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (230,192);
ref = ringcomb;
}
);
width = 694;
}
);
unicode = 366;
},
{
glyphname = Utilde;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = U;
},
{
pos = (200,201);
ref = tildecomb;
}
);
width = 666;
},
{
layerId = m002;
shapes = (
{
ref = U;
},
{
pos = (213,201);
ref = tildecomb;
}
);
width = 680;
},
{
layerId = m003;
shapes = (
{
ref = U;
},
{
pos = (176,192);
ref = tildecomb;
}
);
width = 694;
}
);
unicode = 360;
},
{
glyphname = V;
kernLeft = V;
kernRight = V;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(226,0,l),
(288,0,l),
(134,700,l),
(63,700,l)
);
},
{
closed = 1;
nodes = (
(230,0,l),
(288,0,l),
(623,700,l),
(559,700,l)
);
}
);
width = 579;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(222,0,l),
(308,0,l),
(161,700,l),
(63,700,l)
);
},
{
closed = 1;
nodes = (
(228,0,l),
(308,0,l),
(638,700,l),
(552,700,l)
);
}
);
width = 590;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(216,0,l),
(366,0,l),
(215,700,l),
(57,700,l)
);
},
{
closed = 1;
nodes = (
(248,0,l),
(386,0,l),
(716,700,l),
(564,700,l)
);
}
);
width = 663;
}
);
unicode = 86;
},
{
glyphname = W;
kernLeft = V;
kernRight = V;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (443,0);
},
{
name = top;
pos = (529,700);
}
);
guides = (
{
angle = 270;
pos = (268,658);
},
{
angle = 270;
pos = (474,649);
},
{
angle = 270;
pos = (695,658);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(274,0,l),
(533,638,l),
(516,638,l),
(622,0,l),
(701,0,l),
(981,700,l),
(918,700,l),
(662,48,l),
(678,48,l),
(578,700,l),
(495,700,l),
(235,48,l),
(251,48,l),
(157,700,l),
(87,700,l),
(193,0,l)
);
}
);
width = 958;
},
{
anchors = (
{
name = bottom;
pos = (438,0);
},
{
name = top;
pos = (533,700);
}
);
guides = (
{
angle = 89.2931;
pos = (265,413);
},
{
angle = 89.2931;
pos = (474,411);
},
{
angle = 89.2931;
pos = (696,411);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(287,0,l),
(535,616,l),
(509,616,l),
(605,0,l),
(720,0,l),
(981,700,l),
(888,700,l),
(656,59,l),
(685,59,l),
(587,700,l),
(477,700,l),
(223,59,l),
(252,59,l),
(176,700,l),
(83,700,l),
(172,0,l)
);
}
);
width = 954;
},
{
anchors = (
{
name = bottom;
pos = (460,0);
},
{
name = top;
pos = (546,700);
}
);
guides = (
{
angle = 270;
pos = (287,528);
},
{
angle = 270;
pos = (491,528);
},
{
angle = 270;
pos = (696,528);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(331,0,l),
(547,567,l),
(511,567,l),
(591,0,l),
(755,0,l),
(1022,700,l),
(865,700,l),
(662,129,l),
(702,129,l),
(628,700,l),
(464,700,l),
(252,129,l),
(291,129,l),
(228,700,l),
(71,700,l),
(167,0,l)
);
}
);
width = 983;
},
{
associatedMasterId = m002;
layerId = "61F56607-383A-4625-9FCC-44CDCF2F703C";
name = "14 Jul 24 at 12:33";
shapes = (
{
closed = 1;
nodes = (
(293,0,l),
(463,569,l),
(633,0,l),
(748,0,l),
(898,700,l),
(805,700,l),
(688,116,l),
(517,700,l),
(409,700,l),
(238,116,l),
(121,700,l),
(28,700,l),
(178,0,l)
);
}
);
width = 926;
},
{
associatedMasterId = m003;
layerId = "5ACD06B8-073E-40FC-B562-77ADC4AD2B58";
name = "14 Jul 24 at 12:35";
shapes = (
{
closed = 1;
nodes = (
(332,0,l),
(168,0,l),
(18,700,l),
(175,700,l),
(262,213,l),
(408,700,l),
(556,700,l),
(702,213,l),
(789,700,l),
(946,700,l),
(796,0,l),
(632,0,l),
(482,485,l)
);
}
);
width = 964;
}
);
unicode = 87;
},
{
glyphname = Wacute;
kernLeft = V;
kernRight = V;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = W;
},
{
pos = (447,188);
ref = acutecomb;
}
);
width = 958;
},
{
layerId = m002;
shapes = (
{
ref = W;
},
{
pos = (454,188);
ref = acutecomb;
}
);
width = 954;
},
{
layerId = m003;
shapes = (
{
ref = W;
},
{
pos = (446,192);
ref = acutecomb;
}
);
width = 983;
}
);
unicode = 7810;
},
{
glyphname = Wcircumflex;
kernLeft = V;
kernRight = V;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = W;
},
{
pos = (363,188);
ref = circumflexcomb;
}
);
width = 958;
},
{
layerId = m002;
shapes = (
{
ref = W;
},
{
pos = (344,188);
ref = circumflexcomb;
}
);
width = 954;
},
{
layerId = m003;
shapes = (
{
ref = W;
},
{
pos = (336,192);
ref = circumflexcomb;
}
);
width = 983;
}
);
unicode = 372;
},
{
glyphname = Wdieresis;
kernLeft = V;
kernRight = V;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = W;
},
{
pos = (332,188);
ref = dieresiscomb;
}
);
width = 958;
},
{
layerId = m002;
shapes = (
{
ref = W;
},
{
pos = (336,188);
ref = dieresiscomb;
}
);
width = 954;
},
{
layerId = m003;
shapes = (
{
ref = W;
},
{
pos = (300,192);
ref = dieresiscomb;
}
);
width = 983;
}
);
unicode = 7812;
},
{
glyphname = Wgrave;
kernLeft = V;
kernRight = V;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = W;
},
{
pos = (333,188);
ref = gravecomb;
}
);
width = 958;
},
{
layerId = m002;
shapes = (
{
ref = W;
},
{
pos = (338,188);
ref = gravecomb;
}
);
width = 954;
},
{
layerId = m003;
shapes = (
{
ref = W;
},
{
pos = (316,192);
ref = gravecomb;
}
);
width = 983;
}
);
unicode = 7808;
},
{
glyphname = X;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(542,-1,l),
(167,699,l),
(96,699,l),
(472,-1,l)
);
},
{
closed = 1;
nodes = (
(59,-1,l),
(605,699,l),
(534,699,l),
(-11,-1,l)
);
}
);
width = 593;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(549,0,l),
(182,700,l),
(81,700,l),
(449,0,l)
);
},
{
closed = 1;
nodes = (
(84,0,l),
(624,700,l),
(524,700,l),
(-15,0,l)
);
}
);
width = 596;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(605,0,l),
(221,700,l),
(62,700,l),
(447,0,l)
);
},
{
closed = 1;
nodes = (
(133,0,l),
(689,700,l),
(530,700,l),
(-25,0,l)
);
}
);
width = 642;
}
);
unicode = 88;
},
{
glyphname = Y;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (255,0);
},
{
name = top;
pos = (341,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(286,0,l),
(319,294,l),
(613,700,l),
(546,700,l),
(298,350,l),
(135,700,l),
(61,700,l),
(262,294,l),
(223,0,l)
);
}
);
width = 564;
},
{
anchors = (
{
name = bottom;
pos = (263,0);
},
{
name = top;
pos = (349,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(308,0,l),
(341,294,l),
(632,700,l),
(539,700,l),
(308,375,l),
(160,700,l),
(60,700,l),
(259,294,l),
(220,0,l)
);
}
);
width = 582;
},
{
anchors = (
{
name = bottom;
pos = (293,0);
},
{
name = top;
pos = (378,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(366,0,l),
(398,289,l),
(700,700,l),
(542,700,l),
(342,411,l),
(216,700,l),
(55,700,l),
(257,289,l),
(219,0,l)
);
}
);
width = 645;
}
);
unicode = 89;
},
{
glyphname = Yacute;
kernLeft = Y;
kernRight = Y;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Y;
},
{
pos = (259,188);
ref = acutecomb;
}
);
width = 564;
},
{
layerId = m002;
shapes = (
{
ref = Y;
},
{
pos = (270,188);
ref = acutecomb;
}
);
width = 582;
},
{
layerId = m003;
shapes = (
{
ref = Y;
},
{
pos = (278,192);
ref = acutecomb;
}
);
width = 645;
}
);
unicode = 221;
},
{
glyphname = Ycircumflex;
kernLeft = Y;
kernRight = Y;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Y;
},
{
pos = (175,188);
ref = circumflexcomb;
}
);
width = 564;
},
{
layerId = m002;
shapes = (
{
ref = Y;
},
{
pos = (160,188);
ref = circumflexcomb;
}
);
width = 582;
},
{
layerId = m003;
shapes = (
{
ref = Y;
},
{
pos = (168,192);
ref = circumflexcomb;
}
);
width = 645;
}
);
unicode = 374;
},
{
glyphname = Ydieresis;
kernLeft = Y;
kernRight = Y;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Y;
},
{
pos = (144,188);
ref = dieresiscomb;
}
);
width = 564;
},
{
layerId = m002;
shapes = (
{
ref = Y;
},
{
pos = (152,188);
ref = dieresiscomb;
}
);
width = 582;
},
{
layerId = m003;
shapes = (
{
ref = Y;
},
{
pos = (132,192);
ref = dieresiscomb;
}
);
width = 645;
}
);
unicode = 376;
},
{
glyphname = Ydotbelow;
kernLeft = Y;
kernRight = Y;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Y;
},
{
pos = (223,0);
ref = dotbelowcomb;
}
);
width = 564;
},
{
layerId = m002;
shapes = (
{
ref = Y;
},
{
pos = (219,0);
ref = dotbelowcomb;
}
);
width = 582;
},
{
layerId = m003;
shapes = (
{
ref = Y;
},
{
pos = (230,1);
ref = dotbelowcomb;
}
);
width = 645;
}
);
unicode = 7924;
},
{
glyphname = Ygrave;
kernLeft = Y;
kernRight = Y;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Y;
},
{
pos = (145,188);
ref = gravecomb;
}
);
width = 564;
},
{
layerId = m002;
shapes = (
{
ref = Y;
},
{
pos = (154,188);
ref = gravecomb;
}
);
width = 582;
},
{
layerId = m003;
shapes = (
{
ref = Y;
},
{
pos = (148,192);
ref = gravecomb;
}
);
width = 645;
}
);
unicode = 7922;
},
{
glyphname = Yhookabove;
kernLeft = Y;
kernRight = Y;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Y;
},
{
pos = (260,200);
ref = hookabovecomb;
}
);
width = 564;
},
{
layerId = m002;
shapes = (
{
ref = Y;
},
{
pos = (249,200);
ref = hookabovecomb;
}
);
width = 582;
},
{
layerId = m003;
shapes = (
{
ref = Y;
},
{
pos = (282,192);
ref = hookabovecomb;
}
);
width = 645;
}
);
unicode = 7926;
},
{
glyphname = Ytilde;
kernLeft = Y;
kernRight = Y;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Y;
},
{
pos = (148,188);
ref = tildecomb;
}
);
width = 564;
},
{
layerId = m002;
shapes = (
{
ref = Y;
},
{
pos = (163,188);
ref = tildecomb;
}
);
width = 582;
},
{
layerId = m003;
shapes = (
{
ref = Y;
},
{
pos = (148,192);
ref = tildecomb;
}
);
width = 645;
}
);
unicode = 7928;
},
{
glyphname = Z;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (233,0);
},
{
name = top;
pos = (319,700);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(452,1,l),
(459,57,l),
(90,57,l),
(531,642,l),
(538,700,l),
(101,700,l),
(94,644,l),
(464,644,l),
(23,59,l),
(15,1,l)
);
}
);
width = 533;
},
{
anchors = (
{
name = bottom;
pos = (240,0);
},
{
name = top;
pos = (326,700);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(464,1,l),
(474,81,l),
(129,81,l),
(540,618,l),
(550,700,l),
(101,700,l),
(91,620,l),
(436,620,l),
(25,83,l),
(15,1,l)
);
}
);
width = 545;
},
{
anchors = (
{
name = bottom;
pos = (240,0);
},
{
name = top;
pos = (326,700);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(486,1,l),
(501,127,l),
(183,127,l),
(557,578,l),
(572,700,l),
(85,700,l),
(69,574,l),
(389,574,l),
(14,123,l),
(-1,1,l)
);
}
);
width = 549;
}
);
unicode = 90;
},
{
glyphname = Zacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Z;
},
{
pos = (237,188);
ref = acutecomb;
}
);
width = 533;
},
{
layerId = m002;
shapes = (
{
ref = Z;
},
{
pos = (247,188);
ref = acutecomb;
}
);
width = 545;
},
{
layerId = m003;
shapes = (
{
ref = Z;
},
{
pos = (226,192);
ref = acutecomb;
}
);
width = 549;
}
);
unicode = 377;
},
{
glyphname = Zcaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Z;
},
{
pos = (153,188);
ref = caroncomb;
}
);
width = 533;
},
{
layerId = m002;
shapes = (
{
ref = Z;
},
{
pos = (142,188);
ref = caroncomb;
}
);
width = 545;
},
{
layerId = m003;
shapes = (
{
ref = Z;
},
{
pos = (114,192);
ref = caroncomb;
}
);
width = 549;
}
);
unicode = 381;
},
{
glyphname = Zdotaccent;
lastChange = "2025-01-08 14:19:43 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = Z;
},
{
pos = (221,188);
ref = dotaccentcomb;
}
);
width = 533;
},
{
layerId = m002;
shapes = (
{
ref = Z;
},
{
pos = (220,188);
ref = dotaccentcomb;
}
);
width = 545;
},
{
layerId = m003;
shapes = (
{
ref = Z;
},
{
pos = (199,192);
ref = dotaccentcomb;
}
);
width = 549;
}
);
unicode = 379;
},
{
glyphname = Lcommaaccent.loclMAH;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = L;
},
{
pos = (198,-2);
ref = commaaccentcomb.loclMAH;
}
);
width = 529;
},
{
layerId = m002;
shapes = (
{
ref = L;
},
{
pos = (175,-2);
ref = commaaccentcomb.loclMAH;
}
);
width = 524;
},
{
layerId = m003;
shapes = (
{
ref = L;
},
{
pos = (200,1);
ref = commaaccentcomb.loclMAH;
}
);
width = 579;
}
);
},
{
glyphname = Ncommaaccent.loclMAH;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = N;
},
{
pos = (230,-2);
ref = commaaccentcomb.loclMAH;
}
);
width = 681;
},
{
layerId = m002;
shapes = (
{
ref = N;
},
{
pos = (226,-2);
ref = commaaccentcomb.loclMAH;
}
);
width = 699;
},
{
layerId = m003;
shapes = (
{
ref = N;
},
{
pos = (238,1);
ref = commaaccentcomb.loclMAH;
}
);
width = 732;
}
);
},
{
glyphname = a;
kernLeft = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (250,-12);
},
{
name = top;
pos = (313,512);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(302,-12,o),
(391,23,o),
(423,92,c),
(411,0,l),
(467,0,l),
(529,500,l),
(473,500,l),
(461,406,l),
(448,461,o),
(385,512,o),
(300,512,cs),
(183,512,o),
(77,419,o),
(56,250,cs),
(36,86,o),
(119,-12,o),
(236,-12,cs)
);
},
{
closed = 1;
nodes = (
(155,38,o),
(100,124,o),
(115,252,cs),
(131,377,o),
(193,462,o),
(306,462,cs),
(385,462,o),
(459,392,o),
(443,250,cs),
(425,112,o),
(350,38,o),
(254,38,cs)
);
}
);
width = 568;
},
{
anchors = (
{
name = bottom;
pos = (259,-12);
},
{
name = top;
pos = (323,512);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(312,-12,o),
(390,27,o),
(420,96,c),
(408,0,l),
(492,0,l),
(554,500,l),
(470,500,l),
(458,402,l),
(445,457,o),
(400,512,o),
(312,512,cs),
(173,512,o),
(75,419,o),
(54,250,cs),
(34,86,o),
(109,-12,o),
(243,-12,cs)
);
},
{
closed = 1;
nodes = (
(164,64,o),
(126,148,o),
(139,252,cs),
(152,356,o),
(210,437,o),
(308,437,cs),
(407,437,o),
(452,360,o),
(438,250,cs),
(425,148,o),
(361,64,o),
(265,64,cs)
);
}
);
width = 609;
},
{
anchors = (
{
name = bottom;
pos = (252,-12);
},
{
name = top;
pos = (318,520);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(308,-12,o),
(362,29,o),
(395,83,c),
(385,0,l),
(524,0,l),
(587,508,l),
(447,508,l),
(436,415,l),
(417,470,o),
(374,520,o),
(290,520,cs),
(159,520,o),
(59,421,o),
(38,253,cs),
(18,88,o),
(83,-12,o),
(219,-12,cs)
);
},
{
closed = 1;
nodes = (
(210,95,o),
(172,157,o),
(184,253,cs),
(195,340,o),
(249,410,o),
(321,410,cs),
(389,410,o),
(427,341,o),
(416,253,cs),
(404,158,o),
(351,97,o),
(283,96,cs)
);
}
);
width = 610;
}
);
unicode = 97;
},
{
glyphname = aacute;
kernLeft = a;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (231,0);
ref = acutecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (244,0);
ref = acutecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (218,12);
ref = acutecomb;
}
);
width = 610;
}
);
unicode = 225;
},
{
glyphname = abreve;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (136,0);
ref = brevecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (148,0);
ref = brevecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (118,12);
ref = brevecomb;
}
);
width = 610;
}
);
unicode = 259;
},
{
glyphname = abreveacute;
lastChange = "2025-01-08 14:16:21 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (113,0);
ref = brevecomb_acutecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (122,12);
ref = brevecomb_acutecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (144,12);
ref = brevecomb_acutecomb;
}
);
width = 610;
}
);
unicode = 7855;
},
{
glyphname = abrevedotbelow;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (218,-12);
ref = dotbelowcomb;
},
{
pos = (136,0);
ref = brevecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (215,-12);
ref = dotbelowcomb;
},
{
pos = (148,0);
ref = brevecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (189,-11);
ref = dotbelowcomb;
},
{
pos = (118,12);
ref = brevecomb;
}
);
width = 610;
}
);
unicode = 7863;
},
{
glyphname = abrevegrave;
lastChange = "2025-01-08 14:17:44 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (97,0);
ref = brevecomb_gravecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (112,12);
ref = brevecomb_gravecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (145,12);
ref = brevecomb_gravecomb;
}
);
width = 610;
}
);
unicode = 7857;
},
{
glyphname = abrevehookabove;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (93,0);
ref = brevecomb_hookabovecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (92,12);
ref = brevecomb_hookabovecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (112,12);
ref = brevecomb_hookabovecomb;
}
);
width = 610;
}
);
unicode = 7859;
},
{
glyphname = abrevetilde;
lastChange = "2025-01-08 14:17:09 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (76,0);
ref = brevecomb_tildecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (94,0);
ref = brevecomb_tildecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (142,12);
ref = brevecomb_tildecomb;
}
);
width = 610;
}
);
unicode = 7861;
},
{
glyphname = acircumflex;
kernLeft = a;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (147,0);
ref = circumflexcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (134,0);
ref = circumflexcomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (108,12);
ref = circumflexcomb;
}
);
width = 610;
}
);
unicode = 226;
},
{
glyphname = acircumflexacute;
lastChange = "2025-01-08 14:16:50 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (29,0);
ref = circumflexcomb_acutecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (43,12);
ref = circumflexcomb_acutecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (138,12);
ref = circumflexcomb_acutecomb;
}
);
width = 610;
}
);
unicode = 7845;
},
{
glyphname = acircumflexdotbelow;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (218,-12);
ref = dotbelowcomb;
},
{
pos = (147,0);
ref = circumflexcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (215,-12);
ref = dotbelowcomb;
},
{
pos = (134,0);
ref = circumflexcomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (189,-11);
ref = dotbelowcomb;
},
{
pos = (108,12);
ref = circumflexcomb;
}
);
width = 610;
}
);
unicode = 7853;
},
{
glyphname = acircumflexgrave;
lastChange = "2025-01-08 14:17:48 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (171,0);
ref = circumflexcomb_gravecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (167,12);
ref = circumflexcomb_gravecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (138,13);
ref = circumflexcomb_gravecomb;
}
);
width = 610;
}
);
unicode = 7847;
},
{
glyphname = acircumflexhookabove;
lastChange = "2025-01-08 14:24:33 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (174,0);
ref = circumflexcomb_hookabovecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (170,12);
ref = circumflexcomb_hookabovecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (137,12);
ref = circumflexcomb_hookabovecomb;
}
);
width = 610;
}
);
unicode = 7849;
},
{
glyphname = acircumflextilde;
lastChange = "2025-01-08 14:34:31 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (179,12);
ref = circumflexcomb_tildecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (174,12);
ref = circumflexcomb_tildecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (113,12);
ref = circumflexcomb_tildecomb;
}
);
width = 610;
}
);
unicode = 7851;
},
{
glyphname = adieresis;
kernLeft = a;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (116,0);
ref = dieresiscomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (126,0);
ref = dieresiscomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (72,12);
ref = dieresiscomb;
}
);
width = 610;
}
);
unicode = 228;
},
{
glyphname = adotbelow;
lastChange = "2025-01-01 09:19:42 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (218,-12);
ref = dotbelowcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (215,-12);
ref = dotbelowcomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (189,-11);
ref = dotbelowcomb;
}
);
width = 610;
}
);
unicode = 7841;
},
{
glyphname = agrave;
kernLeft = a;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (117,0);
ref = gravecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (128,0);
ref = gravecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (88,12);
ref = gravecomb;
}
);
width = 610;
}
);
unicode = 224;
},
{
glyphname = ahookabove;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (232,12);
ref = hookabovecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (223,12);
ref = hookabovecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (222,12);
ref = hookabovecomb;
}
);
width = 610;
}
);
unicode = 7843;
},
{
glyphname = amacron;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (148,0);
ref = macroncomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (116,0);
ref = macroncomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (115,9);
ref = macroncomb;
}
);
width = 610;
}
);
unicode = 257;
},
{
glyphname = aogonek;
lastChange = "2025-01-01 09:07:36 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (339,5);
ref = ogonekcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (360,1);
ref = ogonekcomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (380,0);
ref = ogonekcomb;
}
);
width = 610;
}
);
unicode = 261;
},
{
glyphname = aring;
kernLeft = a;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (156,0);
ref = ringcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (160,0);
ref = ringcomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (142,12);
ref = ringcomb;
}
);
width = 610;
}
);
unicode = 229;
},
{
glyphname = atilde;
kernLeft = a;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = a;
},
{
pos = (120,0);
ref = tildecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = a;
},
{
pos = (137,0);
ref = tildecomb;
}
);
width = 609;
},
{
layerId = m003;
shapes = (
{
ref = a;
},
{
pos = (88,12);
ref = tildecomb;
}
);
width = 610;
}
);
unicode = 227;
},
{
glyphname = ae;
kernLeft = o;
kernRight = e;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = top;
pos = (484,512);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(746,-13,o),
(822,62,o),
(857,144,c),
(805,154,l),
(780,100,o),
(723,37,o),
(627,37,cs),
(508,37,o),
(456,118,o),
(471,245,cs),
(486,368,o),
(546,462,o),
(676,462,cs),
(783,462,o),
(828,381,o),
(818,302,c),
(467,302,l),
(461,252,l),
(872,252,l),
(874,267,l),
(893,422,o),
(806,512,o),
(678,512,cs),
(541,512,o),
(443,412,o),
(423,248,cs),
(403,87,o),
(471,-13,o),
(617,-13,cs)
);
},
{
closed = 1;
nodes = (
(309,-12,o),
(417,65,o),
(429,163,c),
(451,145,l),
(475,338,ls),
(489,450,o),
(440,512,o),
(304,512,cs),
(225,512,o),
(149,476,o),
(100,400,c),
(149,373,l),
(176,420,o),
(229,460,o),
(298,460,cs),
(400,460,o),
(443,409,o),
(426,333,cs),
(419,301,l),
(179,301,o),
(59,271,o),
(42,132,cs),
(30,40,o),
(105,-12,o),
(189,-12,cs)
);
},
{
closed = 1;
nodes = (
(134,38,o),
(96,81,o),
(102,131,cs),
(114,228,o),
(176,251,o),
(413,251,c),
(411,230,ls),
(398,129,o),
(313,38,o),
(197,38,cs)
);
}
);
width = 924;
},
{
anchors = (
{
name = top;
pos = (503,512);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(761,-13,o),
(837,55,o),
(872,137,c),
(792,151,l),
(766,97,o),
(706,63,o),
(649,63,cs),
(524,63,o),
(502,152,o),
(514,247,cs),
(529,369,o),
(583,436,o),
(692,436,cs),
(786,436,o),
(816,360,o),
(809,311,c),
(516,311,l),
(508,241,l),
(887,241,l),
(889,261,l),
(911,434,o),
(821,512,o),
(697,512,cs),
(560,512,o),
(461,414,o),
(441,250,cs),
(421,89,o),
(496,-13,o),
(636,-13,cs)
);
},
{
closed = 1;
nodes = (
(321,-12,o),
(436,73,o),
(445,147,c),
(471,148,l),
(494,332,ls),
(508,447,o),
(454,512,o),
(322,512,cs),
(211,512,o),
(143,462,o),
(104,392,c),
(169,356,l),
(193,413,o),
(255,442,o),
(310,442,cs),
(380,442,o),
(437,414,o),
(428,339,cs),
(425,313,l),
(169,313,o),
(69,261,o),
(55,141,cs),
(43,49,o),
(116,-12,o),
(199,-12,cs)
);
},
{
closed = 1;
nodes = (
(172,62,o),
(131,96,o),
(137,141,cs),
(145,210,o),
(193,247,o),
(417,247,c),
(413,215,ls),
(400,110,o),
(281,62,o),
(219,62,cs)
);
}
);
width = 941;
},
{
anchors = (
{
name = top;
pos = (494,520);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(699,-13,o),
(800,23,o),
(860,134,c),
(733,173,l),
(709,130,o),
(659,107,o),
(629,107,cs),
(540,107,o),
(508,164,o),
(519,256,cs),
(529,337,o),
(576,400,o),
(660,400,cs),
(727,400,o),
(758,346,o),
(754,311,c),
(493,311,l),
(483,225,l),
(886,225,l),
(889,248,l),
(910,418,o),
(826,520,o),
(676,520,cs),
(545,520,o),
(422,436,o),
(400,256,cs),
(379,82,o),
(477,-13,o),
(612,-13,cs)
);
},
{
closed = 1;
nodes = (
(424,-12,o),
(450,173,o),
(450,173,c),
(478,174,l),
(499,340,ls),
(512,451,o),
(468,520,o),
(318,520,cs),
(197,520,o),
(114,459,o),
(81,387,c),
(181,342,l),
(200,385,o),
(241,412,o),
(296,412,cs),
(364,412,o),
(395,374,o),
(388,322,cs),
(388,318,l),
(164,318,o),
(42,273,o),
(26,144,cs),
(15,51,o),
(80,-12,o),
(194,-12,cs)
);
},
{
closed = 1;
nodes = (
(207,93,o),
(162,109,o),
(167,151,cs),
(173,199,o),
(205,226,o),
(377,226,c),
(374,206,ls),
(364,124,o),
(298,93,o),
(228,93,cs)
);
}
);
width = 935;
}
);
unicode = 230;
},
{
glyphname = aeacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = ae;
},
{
pos = (402,0);
ref = acutecomb;
}
);
width = 924;
},
{
layerId = m002;
shapes = (
{
ref = ae;
},
{
pos = (424,0);
ref = acutecomb;
}
);
width = 941;
},
{
layerId = m003;
shapes = (
{
ref = ae;
},
{
pos = (394,12);
ref = acutecomb;
}
);
width = 935;
}
);
unicode = 509;
},
{
glyphname = b;
kernRight = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(207,700,l),
(151,700,l),
(65,0,l),
(121,0,l),
(133,98,l),
(147,43,o),
(209,-12,o),
(294,-12,cs),
(419,-12,o),
(517,81,o),
(538,250,cs),
(558,414,o),
(475,512,o),
(358,512,cs),
(267,512,o),
(197,457,o),
(171,402,c)
);
},
{
closed = 1;
nodes = (
(439,462,o),
(494,376,o),
(479,248,cs),
(463,123,o),
(401,38,o),
(288,38,cs),
(209,38,o),
(135,108,o),
(151,250,c),
(169,392,o),
(261,462,o),
(340,462,cs)
);
}
);
width = 600;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(231,700,l),
(147,700,l),
(61,0,l),
(145,0,l),
(157,98,l),
(170,43,o),
(215,-12,o),
(303,-12,cs),
(442,-12,o),
(540,81,o),
(561,250,cs),
(581,414,o),
(506,512,o),
(372,512,cs),
(303,512,o),
(226,476,o),
(195,407,c)
);
},
{
closed = 1;
nodes = (
(451,436,o),
(489,352,o),
(476,248,cs),
(463,144,o),
(405,63,o),
(307,63,cs),
(208,63,o),
(163,140,o),
(177,250,cs),
(190,352,o),
(254,436,o),
(350,436,cs)
);
}
);
width = 615;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(276,700,l),
(136,700,l),
(49,0,l),
(190,0,l),
(201,93,l),
(220,38,o),
(269,-12,o),
(347,-12,cs),
(478,-12,o),
(578,87,o),
(599,255,cs),
(619,420,o),
(549,520,o),
(418,520,cs),
(335,520,o),
(275,479,o),
(242,425,c)
);
},
{
closed = 1;
nodes = (
(427,413,o),
(465,351,o),
(453,255,cs),
(442,168,o),
(388,98,o),
(316,98,cs),
(248,98,o),
(210,167,o),
(221,255,cs),
(233,350,o),
(286,411,o),
(354,412,cs)
);
}
);
width = 633;
}
);
unicode = 98;
},
{
glyphname = c;
kernLeft = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (252,-12);
},
{
name = top;
pos = (295,512);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(462,468,o),
(395,512,o),
(312,512,cs),
(192,512,o),
(77,422,o),
(56,250,cs),
(35,78,o),
(128,-12,o),
(248,-12,cs),
(348,-12,o),
(406,35,o),
(455,121,c),
(406,142,l),
(378,86,o),
(325,38,o),
(254,38,cs),
(147,38,o),
(98,121,o),
(114,250,cs),
(130,379,o),
(199,462,o),
(306,462,cs),
(376,462,o),
(421,413,o),
(436,363,c),
(490,383,l)
);
}
);
width = 518;
},
{
anchors = (
{
name = bottom;
pos = (243,-12);
},
{
name = top;
pos = (307,512);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(481,464,o),
(412,512,o),
(324,512,c),
(198,512,o),
(75,424,o),
(54,248,cs),
(32,74,o),
(134,-13,o),
(260,-13,cs),
(361,-13,o),
(429,37,o),
(474,120,c),
(402,150,l),
(374,99,o),
(327,63,o),
(267,63,cs),
(163,63,o),
(124,140,o),
(138,251,cs),
(151,359,o),
(208,436,o),
(313,436,cs),
(373,436,o),
(412,402,o),
(426,351,c),
(506,381,l)
);
}
);
width = 536;
},
{
anchors = (
{
name = bottom;
pos = (258,-12);
},
{
name = top;
pos = (324,520);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(506,473,o),
(434,520,o),
(346,520,cs),
(183,520,o),
(64,420,o),
(44,254,cs),
(24,88,o),
(117,-12,o),
(280,-12,cs),
(368,-12,o),
(452,35,o),
(502,127,c),
(392,173,l),
(376,141,o),
(336,108,o),
(290,108,cs),
(218,108,o),
(179,163,o),
(190,255,cs),
(201,347,o),
(254,400,o),
(326,400,cs),
(372,400,o),
(404,367,o),
(412,335,c),
(534,381,l)
);
}
);
width = 550;
},
{
associatedMasterId = m01;
layerId = "D6DBBF6B-18E3-4F95-B026-A0427CA97C42";
name = "26 Mar 24 at 21:35";
visible = 1;
width = 529;
}
);
unicode = 99;
},
{
glyphname = cacute;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = c;
},
{
pos = (213,0);
ref = acutecomb;
}
);
width = 518;
},
{
layerId = m002;
shapes = (
{
ref = c;
},
{
pos = (228,0);
ref = acutecomb;
}
);
width = 536;
},
{
layerId = m003;
shapes = (
{
ref = c;
},
{
pos = (224,12);
ref = acutecomb;
}
);
width = 550;
}
);
unicode = 263;
},
{
glyphname = ccaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = c;
},
{
pos = (129,0);
ref = caroncomb;
}
);
width = 518;
},
{
layerId = m002;
shapes = (
{
ref = c;
},
{
pos = (123,0);
ref = caroncomb;
}
);
width = 536;
},
{
layerId = m003;
shapes = (
{
ref = c;
},
{
pos = (112,12);
ref = caroncomb;
}
);
width = 550;
}
);
unicode = 269;
},
{
glyphname = ccedilla;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = c;
},
{
pos = (175,-14);
ref = cedillacomb;
}
);
width = 518;
},
{
layerId = m002;
shapes = (
{
ref = c;
},
{
pos = (156,-14);
ref = cedillacomb;
}
);
width = 536;
},
{
layerId = m003;
shapes = (
{
ref = c;
},
{
pos = (161,-11);
ref = cedillacomb;
}
);
width = 550;
}
);
unicode = 231;
},
{
glyphname = ccircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = c;
},
{
pos = (129,0);
ref = circumflexcomb;
}
);
width = 518;
},
{
layerId = m002;
shapes = (
{
ref = c;
},
{
pos = (118,0);
ref = circumflexcomb;
}
);
width = 536;
},
{
layerId = m003;
shapes = (
{
ref = c;
},
{
pos = (114,12);
ref = circumflexcomb;
}
);
width = 550;
}
);
unicode = 265;
},
{
glyphname = cdotaccent;
lastChange = "2025-01-08 14:19:43 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = c;
},
{
pos = (197,0);
ref = dotaccentcomb;
}
);
width = 518;
},
{
layerId = m002;
shapes = (
{
ref = c;
},
{
pos = (201,0);
ref = dotaccentcomb;
}
);
width = 536;
},
{
layerId = m003;
shapes = (
{
ref = c;
},
{
pos = (197,12);
ref = dotaccentcomb;
}
);
width = 550;
}
);
unicode = 267;
},
{
glyphname = d;
kernLeft = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (272,-12);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(413,17,o),
(451,0,o),
(490,-1,cs),
(515,-2,o),
(526,3,o),
(541,11,c),
(546,58,l),
(501,39,o),
(474,53,o),
(480,103,cs),
(553,700,l),
(497,700,l),
(461,404,l),
(446,473,o),
(366,512,o),
(300,512,cs),
(183,512,o),
(76,414,o),
(56,250,cs),
(35,81,o),
(113,-12,o),
(236,-12,cs),
(302,-12,o),
(391,19,o),
(422,88,c)
);
},
{
closed = 1;
nodes = (
(141,38,o),
(99,123,o),
(115,248,cs),
(130,376,o),
(207,462,o),
(306,462,cs),
(402,462,o),
(459,388,o),
(443,250,cs),
(425,112,o),
(350,38,o),
(254,38,cs)
);
}
);
width = 610;
},
{
anchors = (
{
name = bottom;
pos = (295,-12);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(417,44,o),
(450,-1,o),
(502,-1,cs),
(527,-1,o),
(541,3,o),
(556,11,c),
(564,79,l),
(514,68,o),
(502,86,o),
(507,126,cs),
(577,700,l),
(493,700,l),
(457,406,l),
(445,461,o),
(399,512,o),
(311,512,cs),
(172,512,o),
(74,419,o),
(53,250,cs),
(33,86,o),
(104,-12,o),
(242,-12,cs),
(311,-12,o),
(392,25,o),
(423,94,c)
);
},
{
closed = 1;
nodes = (
(163,64,o),
(125,148,o),
(138,252,cs),
(151,356,o),
(209,437,o),
(307,437,cs),
(406,437,o),
(451,360,o),
(437,250,cs),
(424,148,o),
(360,64,o),
(264,64,cs)
);
}
);
width = 627;
},
{
anchors = (
{
name = bottom;
pos = (292,-12);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(396,30,o),
(469,-1,o),
(516,-1,cs),
(543,-1,o),
(578,6,o),
(593,14,c),
(606,124,l),
(556,113,o),
(544,128,o),
(548,168,cs),
(615,700,l),
(475,700,l),
(440,415,l),
(421,470,o),
(377,520,o),
(294,520,cs),
(163,520,o),
(63,421,o),
(42,253,cs),
(22,88,o),
(92,-12,o),
(223,-12,cs),
(311,-12,o),
(369,32,o),
(405,101,c)
);
},
{
closed = 1;
nodes = (
(215,95,o),
(177,157,o),
(189,253,cs),
(200,340,o),
(254,410,o),
(326,410,cs),
(394,410,o),
(432,341,o),
(421,253,cs),
(409,158,o),
(356,97,o),
(288,96,cs)
);
}
);
width = 660;
},
{
associatedMasterId = m01;
layerId = "F3AABDD4-5D52-40E7-9352-25D68A3D59C9";
name = "5 Apr 24 at 08:05";
shapes = (
{
closed = 1;
nodes = (
(378,462,o),
(444,388,o),
(445,250,cs),
(444,108,o),
(361,38,o),
(282,38,cs),
(169,38,o),
(117,123,o),
(117,248,cs),
(117,376,o),
(183,462,o),
(282,462,cs)
);
},
{
closed = 1;
nodes = (
(500,700,l),
(444,700,l),
(444,404,l),
(421,473,o),
(336,512,o),
(270,512,cs),
(153,512,o),
(58,414,o),
(58,250,cs),
(58,81,o),
(153,-12,o),
(270,-12,cs),
(355,-12,o),
(424,41,o),
(444,96,c),
(444,25,o),
(484,0,o),
(523,-1,cs),
(548,-2,o),
(558,3,o),
(572,11,c),
(572,64,l),
(529,48,o),
(500,69,o),
(500,119,cs)
);
}
);
width = 652;
}
);
unicode = 100;
},
{
glyphname = dcaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
pos = (-31,0);
ref = d;
},
{
closed = 1;
nodes = (
(722,700,l),
(629,700,l),
(602,582,l),
(652,582,l)
);
}
);
width = 667;
},
{
layerId = m002;
shapes = (
{
pos = (-31,0);
ref = d;
},
{
closed = 1;
nodes = (
(763,701,l),
(653,701,l),
(626,564,l),
(698,564,l)
);
}
);
width = 708;
},
{
layerId = m003;
shapes = (
{
pos = (-31,0);
ref = d;
},
{
closed = 1;
nodes = (
(815,701,l),
(685,701,l),
(645,531,l),
(740,531,l)
);
}
);
width = 760;
}
);
unicode = 271;
},
{
glyphname = dcroat;
lastChange = "2025-01-08 14:43:20 +0000";
layers = (
{
layerId = m01;
shapes = (
{
pos = (-31,0);
ref = d;
},
{
closed = 1;
nodes = (
(309,562,l),
(575,562,l),
(581,609,l),
(315,609,l)
);
}
);
width = 617;
},
{
layerId = m002;
shapes = (
{
pos = (-31,0);
ref = d;
},
{
closed = 1;
nodes = (
(291,564,l),
(600,564,l),
(608,632,l),
(299,632,l)
);
}
);
width = 653;
},
{
layerId = m003;
shapes = (
{
pos = (-31,0);
ref = d;
},
{
closed = 1;
nodes = (
(303,540,l),
(646,540,l),
(658,640,l),
(315,640,l)
);
}
);
width = 679;
}
);
unicode = 273;
},
{
glyphname = ddotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = d;
},
{
pos = (229,-11);
ref = dotbelowcomb;
}
);
width = 660;
},
{
layerId = m01;
shapes = (
{
ref = d;
},
{
pos = (240,-12);
ref = dotbelowcomb;
}
);
width = 610;
},
{
layerId = m002;
shapes = (
{
ref = d;
},
{
pos = (251,-12);
ref = dotbelowcomb;
}
);
width = 627;
}
);
unicode = 7693;
},
{
glyphname = dmacronbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m003;
shapes = (
{
ref = d;
},
{
pos = (143,-11);
ref = macronbelowcomb;
}
);
width = 660;
},
{
layerId = m01;
shapes = (
{
ref = d;
},
{
pos = (162,0);
ref = macronbelowcomb;
}
);
width = 610;
},
{
layerId = m002;
shapes = (
{
ref = d;
},
{
pos = (167,0);
ref = macronbelowcomb;
}
);
width = 627;
}
);
unicode = 7695;
},
{
glyphname = eth;
kernLeft = o;
kernRight = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (250,0);
},
{
name = top;
pos = (339,720);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(399,-12,o),
(487,105,o),
(510,289,cs),
(532,472,o),
(484,622,o),
(285,713,c),
(253,664,l),
(308,647,o),
(464,542,o),
(455,389,c),
(434,453,o),
(375,489,o),
(303,489,cs),
(189,489,o),
(75,405,o),
(55,239,cs),
(34,72,o),
(128,-12,o),
(242,-12,cs)
);
},
{
closed = 1;
nodes = (
(147,38,o),
(98,113,o),
(114,239,cs),
(129,365,o),
(196,439,o),
(297,439,cs),
(390,439,o),
(448,365,o),
(433,239,cs),
(417,113,o),
(349,38,o),
(248,38,cs)
);
},
{
closed = 1;
nodes = (
(511,635,l),
(496,678,l),
(244,562,l),
(261,519,l)
);
}
);
width = 561;
},
{
anchors = (
{
name = bottom;
pos = (257,0);
},
{
name = top;
pos = (346,720);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(410,-12,o),
(503,120,o),
(523,284,cs),
(553,529,o),
(458,654,o),
(300,725,c),
(257,660,l),
(308,640,o),
(441,558,o),
(441,429,c),
(410,471,o),
(354,488,o),
(310,488,cs),
(196,488,o),
(75,402,o),
(55,238,cs),
(34,74,o),
(128,-12,o),
(252,-12,cs)
);
},
{
closed = 1;
nodes = (
(169,60,o),
(125,128,o),
(139,238,cs),
(152,348,o),
(214,416,o),
(304,416,cs),
(397,416,o),
(441,348,o),
(428,238,cs),
(414,128,o),
(354,60,o),
(261,60,cs)
);
},
{
closed = 1;
nodes = (
(537,644,l),
(515,702,l),
(246,571,l),
(268,512,l)
);
}
);
width = 575;
},
{
anchors = (
{
name = bottom;
pos = (261,0);
},
{
name = top;
pos = (349,720);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(419,-12,o),
(533,129,o),
(555,307,cs),
(582,533,o),
(468,677,o),
(285,744,c),
(224,651,l),
(262,642,o),
(415,578,o),
(438,432,c),
(420,466,o),
(363,498,o),
(304,498,cs),
(183,498,o),
(56,419,o),
(35,243,cs),
(14,76,o),
(128,-12,o),
(257,-12,cs)
);
},
{
closed = 1;
nodes = (
(200,108,o),
(167,161,o),
(177,243,cs),
(186,323,o),
(234,378,o),
(302,378,cs),
(380,378,o),
(408,323,o),
(399,243,cs),
(389,161,o),
(346,108,o),
(269,108,cs)
);
},
{
closed = 1;
nodes = (
(549,650,l),
(517,722,l),
(222,583,l),
(253,511,l)
);
}
);
width = 584;
}
);
unicode = 240;
},
{
glyphname = e;
kernLeft = o;
kernRight = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (253,-13);
},
{
name = top;
pos = (317,512);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(390,-13,o),
(466,62,o),
(501,144,c),
(449,154,l),
(424,100,o),
(367,37,o),
(271,37,cs),
(152,37,o),
(100,118,o),
(115,245,cs),
(130,368,o),
(190,462,o),
(320,462,cs),
(427,462,o),
(470,368,o),
(461,289,c),
(110,289,l),
(104,239,l),
(515,239,l),
(518,267,l),
(537,422,o),
(450,512,o),
(322,512,cs),
(185,512,o),
(78,412,o),
(58,248,cs),
(38,87,o),
(115,-13,o),
(261,-13,cs)
);
}
);
width = 568;
},
{
anchors = (
{
name = bottom;
pos = (255,-13);
},
{
name = top;
pos = (319,512);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(389,-13,o),
(465,55,o),
(500,137,c),
(420,151,l),
(394,97,o),
(334,63,o),
(277,63,cs),
(152,63,o),
(130,150,o),
(141,245,cs),
(156,367,o),
(211,436,o),
(320,436,cs),
(414,436,o),
(442,345,o),
(437,304,c),
(144,304,l),
(135,234,l),
(514,234,l),
(517,261,l),
(539,434,o),
(449,512,o),
(325,512,cs),
(188,512,o),
(77,412,o),
(57,248,cs),
(37,87,o),
(124,-13,o),
(264,-13,cs)
);
}
);
width = 569;
},
{
anchors = (
{
name = bottom;
pos = (258,-13);
},
{
name = top;
pos = (324,520);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(355,-13,o),
(456,23,o),
(516,134,c),
(389,173,l),
(365,130,o),
(315,107,o),
(285,107,cs),
(196,107,o),
(164,164,o),
(175,256,cs),
(185,337,o),
(232,400,o),
(316,400,cs),
(383,400,o),
(413,336,o),
(409,301,c),
(148,301,l),
(138,215,l),
(541,215,l),
(545,248,l),
(566,418,o),
(482,520,o),
(332,520,cs),
(201,520,o),
(60,436,o),
(38,256,cs),
(17,82,o),
(133,-13,o),
(268,-13,cs)
);
}
);
width = 591;
},
{
associatedMasterId = m003;
layerId = "35791070-3456-4186-8F4C-DCAEEFC69CEB";
name = "28 Feb 24 at 11:45";
shapes = (
{
closed = 1;
nodes = (
(395,-13,o),
(490,19,o),
(537,122,c),
(402,149,l),
(385,115,o),
(339,107,o),
(309,107,cs),
(216,107,o),
(179,161,o),
(179,253,cs),
(179,334,o),
(216,400,o),
(304,400,cs),
(375,400,o),
(410,335,o),
(410,300,c),
(141,300,l),
(142,210,l),
(553,210,l),
(553,245,l),
(553,415,o),
(456,520,o),
(302,520,cs),
(167,520,o),
(37,436,o),
(37,256,cs),
(37,82,o),
(165,-13,o),
(304,-13,cs)
);
}
);
visible = 1;
width = 582;
},
{
associatedMasterId = m01;
layerId = "DC9D73E7-764C-4C88-8E22-C9A4CAB6D2B5";
name = "26 Mar 24 at 21:50";
shapes = (
{
closed = 1;
nodes = (
(416,-12,o),
(550,70,o),
(550,254,cs),
(550,440,o),
(422,520,o),
(293,520,cs),
(168,520,o),
(34,440,o),
(34,254,cs),
(34,70,o),
(160,-12,o),
(293,-12,cs)
);
},
{
closed = 1;
nodes = (
(219,108,o),
(180,164,o),
(180,254,cs),
(180,342,o),
(220,400,o),
(293,400,cs),
(367,400,o),
(404,342,o),
(404,254,cs),
(404,164,o),
(366,108,o),
(293,108,cs)
);
},
{
closed = 0;
nodes = (
(293,520,l)
);
}
);
visible = 1;
width = 572;
}
);
unicode = 101;
},
{
glyphname = eacute;
kernLeft = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (235,0);
ref = acutecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (240,0);
ref = acutecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (224,12);
ref = acutecomb;
}
);
width = 591;
}
);
unicode = 233;
},
{
glyphname = ebreve;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (140,0);
ref = brevecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (144,0);
ref = brevecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (124,12);
ref = brevecomb;
}
);
width = 591;
}
);
unicode = 277;
},
{
glyphname = ecaron;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (151,0);
ref = caroncomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (135,0);
ref = caroncomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (112,12);
ref = caroncomb;
}
);
width = 591;
}
);
unicode = 283;
},
{
glyphname = ecircumflex;
kernLeft = o;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (151,0);
ref = circumflexcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (130,0);
ref = circumflexcomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (114,12);
ref = circumflexcomb;
}
);
width = 591;
}
);
unicode = 234;
},
{
glyphname = ecircumflexacute;
lastChange = "2025-01-08 14:16:50 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (33,0);
ref = circumflexcomb_acutecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (39,12);
ref = circumflexcomb_acutecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (144,12);
ref = circumflexcomb_acutecomb;
}
);
width = 591;
}
);
unicode = 7871;
},
{
glyphname = ecircumflexdotbelow;
lastChange = "2025-01-08 14:16:38 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (221,-13);
ref = dotbelowcomb;
},
{
pos = (151,0);
ref = circumflexcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (211,-13);
ref = dotbelowcomb;
},
{
pos = (130,0);
ref = circumflexcomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (195,-12);
ref = dotbelowcomb;
},
{
pos = (114,12);
ref = circumflexcomb;
}
);
width = 591;
}
);
unicode = 7879;
},
{
glyphname = ecircumflexgrave;
lastChange = "2025-01-08 14:17:48 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (175,0);
ref = circumflexcomb_gravecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (163,12);
ref = circumflexcomb_gravecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (144,13);
ref = circumflexcomb_gravecomb;
}
);
width = 591;
}
);
unicode = 7873;
},
{
glyphname = ecircumflexhookabove;
lastChange = "2025-01-08 14:24:33 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (178,0);
ref = circumflexcomb_hookabovecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (166,12);
ref = circumflexcomb_hookabovecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (143,12);
ref = circumflexcomb_hookabovecomb;
}
);
width = 591;
}
);
unicode = 7875;
},
{
glyphname = ecircumflextilde;
lastChange = "2025-01-08 14:34:31 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (183,12);
ref = circumflexcomb_tildecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (170,12);
ref = circumflexcomb_tildecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (119,12);
ref = circumflexcomb_tildecomb;
}
);
width = 591;
}
);
unicode = 7877;
},
{
glyphname = edieresis;
kernLeft = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (120,0);
ref = dieresiscomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (122,0);
ref = dieresiscomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (78,12);
ref = dieresiscomb;
}
);
width = 591;
}
);
unicode = 235;
},
{
glyphname = edotaccent;
lastChange = "2025-01-08 14:19:43 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (219,0);
ref = dotaccentcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (213,0);
ref = dotaccentcomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (197,12);
ref = dotaccentcomb;
}
);
width = 591;
}
);
unicode = 279;
},
{
glyphname = edotbelow;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (221,-13);
ref = dotbelowcomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (211,-13);
ref = dotbelowcomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (195,-12);
ref = dotbelowcomb;
}
);
width = 591;
}
);
unicode = 7865;
},
{
glyphname = egrave;
kernLeft = o;
kernRight = e;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (121,0);
ref = gravecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (124,0);
ref = gravecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (94,12);
ref = gravecomb;
}
);
width = 591;
}
);
unicode = 232;
},
{
glyphname = ehookabove;
lastChange = "2025-01-08 14:18:02 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (236,12);
ref = hookabovecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (219,12);
ref = hookabovecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (228,12);
ref = hookabovecomb;
}
);
width = 591;
}
);
unicode = 7867;
},
{
glyphname = emacron;
lastChange = "2025-01-08 14:20:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (152,0);
ref = macroncomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (112,0);
ref = macroncomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (121,9);
ref = macroncomb;
}
);
width = 591;
}
);
unicode = 275;
},
{
glyphname = eogonek;
lastChange = "2025-01-01 09:08:25 +0000";
layers = (
{
layerId = m01;
shapes = (
{
pos = (-31,0);
ref = e;
},
{
closed = 1;
nodes = (
(388,-143,o),
(414,-134,o),
(429,-121,c),
(412,-70,l),
(380,-92,o),
(335,-78,o),
(339,-40,cs),
(343,-12,o),
(356,3,o),
(421,67,c),
(396,86,l),
(317,49,o),
(281,0,o),
(275,-55,cs),
(268,-110,o),
(308,-143,o),
(362,-143,cs)
);
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
pos = (-31,0);
ref = e;
},
{
closed = 1;
nodes = (
(385,-152,o),
(417,-140,o),
(433,-127,c),
(417,-64,l),
(372,-91,o),
(332,-79,o),
(337,-39,cs),
(340,-10,o),
(371,16,o),
(409,51,c),
(377,83,l),
(306,52,o),
(268,-4,o),
(261,-59,cs),
(254,-116,o),
(296,-152,o),
(349,-152,cs)
);
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
pos = (-31,0);
ref = e;
},
{
closed = 1;
nodes = (
(404,-183,o),
(444,-165,o),
(467,-145,c),
(438,-70,l),
(397,-101,o),
(356,-78,o),
(362,-35,cs),
(364,-15,o),
(376,13,o),
(428,60,c),
(408,96,l),
(305,50,o),
(264,3,o),
(254,-74,cs),
(245,-139,o),
(296,-183,o),
(356,-183,cs)
);
}
);
width = 592;
}
);
unicode = 281;
},
{
glyphname = eopen;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(432,143,l),
(406,76,o),
(337,38,o),
(251,38,cs),
(141,38,o),
(95,79,o),
(102,136,cs),
(108,184,o),
(159,240,o),
(289,240,cs),
(289,240,o),
(347,240,o),
(347,240,c),
(354,294,l),
(296,294,l),
(173,294,o),
(150,339,o),
(154,375,cs),
(160,423,o),
(198,462,o),
(299,462,cs),
(367,462,o),
(415,442,o),
(430,403,c),
(476,425,l),
(451,488,o),
(380,512,o),
(305,512,cs),
(184,512,o),
(106,456,o),
(96,374,cs),
(90,320,o),
(115,278,o),
(156,265,c),
(84,239,o),
(50,184,o),
(44,134,cs),
(31,31,o),
(113,-12,o),
(244,-12,cs),
(349,-12,o),
(445,38,o),
(476,128,c)
);
}
);
width = 543;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(410,159,l),
(382,87,o),
(321,64,o),
(256,64,cs),
(157,64,o),
(122,98,o),
(128,147,cs),
(134,194,o),
(176,239,o),
(286,239,cs),
(286,239,o),
(339,239,o),
(339,239,c),
(349,312,l),
(296,312,l),
(200,312,o),
(173,335,o),
(178,371,cs),
(181,398,o),
(209,436,o),
(301,436,cs),
(344,436,o),
(383,426,o),
(400,387,c),
(470,421,l),
(458,479,o),
(373,512,o),
(306,512,cs),
(175,512,o),
(104,457,o),
(94,375,cs),
(88,321,o),
(118,288,o),
(158,275,c),
(98,252,o),
(51,203,o),
(44,142,cs),
(31,38,o),
(108,-12,o),
(246,-12,cs),
(349,-12,o),
(441,39,o),
(478,139,c)
);
}
);
width = 545;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(395,177,l),
(377,140,o),
(341,108,o),
(271,108,cs),
(194,108,o),
(169,131,o),
(173,164,cs),
(177,201,o),
(207,221,o),
(283,221,cs),
(283,221,o),
(334,221,o),
(334,221,c),
(346,309,l),
(295,309,l),
(245,309,o),
(218,325,o),
(221,354,cs),
(225,381,o),
(248,400,o),
(301,400,cs),
(348,400,o),
(370,382,o),
(376,358,c),
(502,415,l),
(491,479,o),
(408,520,o),
(312,520,cs),
(176,520,o),
(91,461,o),
(81,379,cs),
(75,325,o),
(103,282,o),
(144,269,c),
(67,243,o),
(32,209,o),
(25,148,cs),
(12,44,o),
(104,-12,o),
(255,-12,cs),
(391,-12,o),
(475,56,o),
(511,149,c)
);
}
);
width = 569;
}
);
unicode = 603;
},
{
glyphname = etilde;
lastChange = "2025-01-08 14:43:46 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = e;
},
{
pos = (124,0);
ref = tildecomb;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
ref = e;
},
{
pos = (133,0);
ref = tildecomb;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
ref = e;
},
{
pos = (94,12);
ref = tildecomb;
}
);
width = 591;
}
);
unicode = 7869;
},
{
glyphname = schwa;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
angle = 180;
pos = (568,500);
ref = e;
}
);
width = 568;
},
{
layerId = m002;
shapes = (
{
angle = 180;
pos = (569,500);
ref = e;
}
);
width = 569;
},
{
layerId = m003;
shapes = (
{
angle = 180;
pos = (591,508);
ref = e;
}
);
width = 591;
}
);
unicode = 601;
},
{
glyphname = f;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(169,0,l),
(225,450,l),
(352,450,l),
(358,500,l),
(231,500,l),
(240,575,ls),
(249,648,o),
(279,666,o),
(327,666,cs),
(340,666,o),
(357,665,o),
(373,662,c),
(379,712,l),
(362,717,o),
(341,720,o),
(325,720,cs),
(240,720,o),
(195,669,o),
(184,576,cs),
(175,500,l),
(83,500,l),
(77,450,l),
(169,450,l),
(113,0,l)
);
}
);
width = 346;
},
{
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(196,0,l),
(248,424,l),
(376,424,l),
(386,500,l),
(258,500,l),
(267,575,ls),
(274,629,o),
(303,648,o),
(352,648,cs),
(365,648,o),
(383,647,o),
(398,644,c),
(407,712,l),
(390,717,o),
(368,720,o),
(352,720,cs),
(243,720,o),
(194,669,o),
(183,576,cs),
(174,500,l),
(78,500,l),
(68,424,l),
(164,424,l),
(112,0,l)
);
}
);
width = 375;
},
{
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(241,0,l),
(288,388,l),
(404,388,l),
(419,508,l),
(303,508,l),
(307,539,ls),
(312,576,o),
(330,604,o),
(379,604,cs),
(392,604,o),
(409,603,o),
(424,600,c),
(439,712,l),
(423,717,o),
(388,720,o),
(353,720,cs),
(270,720,o),
(188,686,o),
(173,576,cs),
(163,508,l),
(63,508,l),
(48,388,l),
(148,388,l),
(101,0,l)
);
}
);
width = 400;
}
);
unicode = 102;
},
{
glyphname = g;
kernLeft = o;
lastChange = "2025-01-01 08:47:28 +0000";
layers = (
{
anchors = (
{
name = top;
pos = (349,512);
}
);
layerId = m01;
shapes = (
{
closed = 1;
nodes = (
(400,-103,o),
(335,-176,o),
(221,-176,cs),
(120,-176,o),
(82,-109,o),
(70,-81,c),
(16,-115,l),
(37,-171,o),
(90,-230,o),
(214,-230,cs),
(339,-230,o),
(447,-175,o),
(470,13,c),
(529,500,l),
(473,500,l),
(461,402,l),
(447,457,o),
(385,512,o),
(300,512,cs),
(183,512,o),
(77,419,o),
(56,250,cs),
(36,86,o),
(117,-12,o),
(236,-12,cs),
(302,-12,o),
(393,27,o),
(424,96,c),
(414,13,ls)
);
},
{
closed = 1;
nodes = (
(155,38,o),
(99,124,o),
(114,252,cs),
(130,377,o),
(193,462,o),
(306,462,cs),
(385,462,o),
(459,392,o),
(443,250,cs),
(425,112,o),
(350,38,o),
(254,38,cs)
);
}
);
width = 569;
},
{
anchors = (
{
name = top;
pos = (356,512);
}
);
guides = (
{
angle = 270;
pos = (52,419);
}
);
layerId = m002;
shapes = (
{
closed = 1;
nodes = (
(395,-96,o),
(344,-156,o),
(234,-156,cs),
(167,-156,o),
(116,-117,o),
(98,-60,c),
(20,-107,l),
(45,-195,o),
(135,-229,o),
(222,-230,cs),
(354,-232,o),
(469,-171,o),
(492,17,cs),
(552,500,l),
(468,500,l),
(456,402,l),
(443,457,o),
(398,512,o),
(310,512,cs),
(171,512,o),
(73,419,o),
(52,250,cs),
(32,86,o),
(107,-12,o),
(241,-12,cs),
(310,-12,o),
(388,27,o),
(418,96,c),
(408,17,ls)
);
},
{
closed = 1;
nodes = (
(162,64,o),
(124,148,o),
(137,252,cs),
(150,356,o),
(208,437,o),
(306,437,cs),
(405,437,o),
(450,360,o),
(436,250,cs),
(423,148,o),
(359,64,o),
(263,64,cs)
);
}
);
width = 607;
},
{
anchors = (
{
name = top;
pos = (361,520);
}
);
layerId = m003;
shapes = (
{
closed = 1;
nodes = (
(384,-80,o),
(327,-123,o),
(242,-123,cs),
(175,-123,o),
(127,-76,o),
(111,-29,c),
(-6,-102,l),
(18,-180,o),
(104,-237,o),
(225,-237,cs),
(406,-237,o),
(512,-142,o),
(530,0,cs),
(593,508,l),
(459,508,l),
(448,419,l),
(428,474,o),
(387,520,o),
(303,520,cs),
(172,520,o),
(69,421,o),
(48,253,cs),
(28,88,o),
(101,-12,o),
(232,-12,cs),
(315,-12,o),
(373,25,o),
(404,79,c),
(394,0,ls)
);
},
{
closed = 1;
nodes = (
(220,95,o),
(182,157,o),
(194,253,cs),
(205,340,o),
(259,410,o),
(331,410,cs),
(399,410,o),
(437,341,o),
(426,253,cs),
(414,158,o),
(361,97,o),
(293,96,cs)
);
}
);
width = 632;
}
);
unicode = 103;
},
{
glyphname = gbreve;
lastChange = "2025-01-08 14:16:05 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = g;
},
{
pos = (172,0);
ref = brevecomb;
}
);
width = 569;
},
{
layerId = m002;
shapes = (
{
ref = g;
},
{
pos = (181,0);
ref = brevecomb;
}
);
width = 607;
},
{
layerId = m003;
shapes = (
{
ref = g;
},
{
pos = (161,12);
ref = brevecomb;
}
);
width = 632;
}
);
unicode = 287;
},
{
glyphname = gcircumflex;
lastChange = "2025-01-08 14:16:38 +0000";
gitextract_olugya9y/
├── .github/
│ └── workflows/
│ └── build.yaml
├── .gitignore
├── .init.stamp
├── .templaterc.json
├── AUTHORS.txt
├── CONTRIBUTORS.txt
├── Makefile
├── OFL.txt
├── README.md
├── fonts/
│ ├── otf/
│ │ ├── InclusiveSans-Bold.otf
│ │ ├── InclusiveSans-BoldItalic.otf
│ │ ├── InclusiveSans-Italic.otf
│ │ ├── InclusiveSans-Light.otf
│ │ ├── InclusiveSans-LightItalic.otf
│ │ ├── InclusiveSans-Medium.otf
│ │ ├── InclusiveSans-MediumItalic.otf
│ │ ├── InclusiveSans-Regular.otf
│ │ ├── InclusiveSans-SemiBold.otf
│ │ └── InclusiveSans-SemiBoldItalic.otf
│ └── variable/
│ └── .ninja_log
├── requirements.txt
├── scripts/
│ ├── first-run.py
│ ├── index.html
│ └── read-config.py
└── sources/
├── CustomFilter_GFLatinCore.plist
├── InclusiveSans-Italic.glyphs
├── InclusiveSans.glyphs
├── V1.0/
│ ├── InclusiveSans.glyphs
│ └── InclusiveSans_Italic.glyphs
└── config.yaml
SYMBOL INDEX (5 symbols across 1 files) FILE: scripts/first-run.py function repo_url (line 19) | def repo_url(owner, name): function web_url (line 23) | def web_url(owner, name): function raw_url (line 27) | def raw_url(owner, name): function touch (line 31) | def touch(): function lose (line 35) | def lose(msg, e=None):
Condensed preview — 30 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,627K chars).
[
{
"path": ".github/workflows/build.yaml",
"chars": 3247,
"preview": "name: Build font and specimen\n\non: [push, release]\n\njobs:\n build:\n runs-on: ubuntu-latest\n steps:\n - uses: act"
},
{
"path": ".gitignore",
"chars": 189,
"preview": "*~\nvenv\nbuild.stamp\nproof\nnode_modules\npackage-lock.json\npackage.json\n\n# OS generated files #\n######################\n.DS"
},
{
"path": ".init.stamp",
"chars": 0,
"preview": ""
},
{
"path": ".templaterc.json",
"chars": 80,
"preview": "{\n \"files\": [\".github/**/*\", \"Makefile\", \"scripts/**/*\", \"requirements.txt\"]\n}\n"
},
{
"path": "AUTHORS.txt",
"chars": 279,
"preview": "# This is the official list of project authors for copyright purposes.\n# This file is distinct from the CONTRIBUTORS.txt"
},
{
"path": "CONTRIBUTORS.txt",
"chars": 511,
"preview": "# This is the list of people who have contributed to this project,\n# and includes those not listed in AUTHORS.txt becaus"
},
{
"path": "Makefile",
"chars": 2039,
"preview": "SOURCES=$(shell python3 scripts/read-config.py --sources )\nFAMILY=$(shell python3 scripts/read-config.py --family )\nDRAW"
},
{
"path": "OFL.txt",
"chars": 4398,
"preview": "Copyright 2022 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)\n\nThis Font Software is lic"
},
{
"path": "README.md",
"chars": 4150,
"preview": "\n# Inclusive Sans\n\nInclusive Sans is a text font designed for accessibility and readability. It is inspired by the frien"
},
{
"path": "fonts/variable/.ninja_log",
"chars": 137,
"preview": "# ninja log v5\n0\t1853\t1736348997572032296\tout/Diffbrowsers\t14e52ca88f40a7ab\n0\t1654\t1736348999248472446\tout/Diffbrowsers\t"
},
{
"path": "requirements.txt",
"chars": 2032,
"preview": "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\n"
},
{
"path": "scripts/first-run.py",
"chars": 3634,
"preview": "#!/usr/bin/env python3\n\n# This script is run the first time any action is performed after the repository\n# is cloned. If"
},
{
"path": "scripts/index.html",
"chars": 535,
"preview": "<!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-s"
},
{
"path": "scripts/read-config.py",
"chars": 1137,
"preview": "#!/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"
},
{
"path": "sources/CustomFilter_GFLatinCore.plist",
"chars": 9664,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "sources/InclusiveSans-Italic.glyphs",
"chars": 485233,
"preview": "{\n.appVersion = \"3260\";\n.formatVersion = 3;\nDisplayStrings = (\n\"rř\"\n);\naxes = (\n{\nname = Weight;\ntag = wght;\n}\n);\ncustom"
},
{
"path": "sources/InclusiveSans.glyphs",
"chars": 479541,
"preview": "{\n.appVersion = \"3260\";\n.formatVersion = 3;\nDisplayStrings = (\n\"rř\"\n);\naxes = (\n{\nname = Weight;\ntag = wght;\n}\n);\ncustom"
},
{
"path": "sources/V1.0/InclusiveSans.glyphs",
"chars": 238461,
"preview": "{\n.appVersion = \"3208\";\n.formatVersion = 3;\ncustomParameters = (\n{\ndisabled = 1;\nname = glyphOrder;\nvalue = (\nspace,\nexc"
},
{
"path": "sources/V1.0/InclusiveSans_Italic.glyphs",
"chars": 239472,
"preview": "{\n.appVersion = \"3208\";\n.formatVersion = 3;\nDisplayStrings = (\n\"\nLetter Groups\nEFHIJLTU\nEFHIJLTU\n\nAVWXZ\nAVWXZ\n\nKMNY\nKMNY"
},
{
"path": "sources/config.yaml",
"chars": 922,
"preview": "sources:\n - InclusiveSans.glyphs\n - InclusiveSans-Italic.glyphs\naxisOrder:\n - wght\n - ital\nfamilyName: \"Inclusive Sa"
}
]
// ... and 10 more files (download for full content)
About this extraction
This page contains the full source code of the LivKing/Inclusive-Sans GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 30 files (1.4 MB), approximately 618.7k tokens, and a symbol index with 5 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.