From b96cfb396f21b82a5c1be53d093198b5b028c08b Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sat, 8 Dec 2012 17:19:51 -0800 Subject: [PATCH] Imported Upstream version 0.0.11 --- COPYING | 94 + Makefile.am | 18 + Makefile.in | 708 ++ NEWS | 57 + README | 141 + aclocal.m4 | 830 ++ configure | 3762 ++++++++ configure.ac | 69 + fontconfig/31-cantarell.conf | 18 + fontconfig/Makefile.am | 7 + fontconfig/Makefile.in | 394 + install-sh | 527 ++ missing | 331 + otf/Cantarell-Bold.otf | Bin 0 -> 50836 bytes otf/Cantarell-Regular.otf | Bin 0 -> 46360 bytes otf/Makefile.am | 14 + otf/Makefile.in | 398 + scripts/Makefile.am | 9 + scripts/Makefile.in | 344 + scripts/generate.sh | 21 + src/Cantarell-Bold.sfd | 16231 ++++++++++++++++++++++++++++++++++ src/Cantarell-Regular.sfd | 19523 +++++++++++++++++++++++++++++++++++++++++ src/Makefile.am | 10 + src/Makefile.in | 345 + 24 files changed, 43851 insertions(+) create mode 100644 COPYING create mode 100644 Makefile.am create mode 100644 Makefile.in create mode 100644 NEWS create mode 100644 README create mode 100644 aclocal.m4 create mode 100755 configure create mode 100644 configure.ac create mode 100644 fontconfig/31-cantarell.conf create mode 100644 fontconfig/Makefile.am create mode 100644 fontconfig/Makefile.in create mode 100755 install-sh create mode 100755 missing create mode 100644 otf/Cantarell-Bold.otf create mode 100644 otf/Cantarell-Regular.otf create mode 100644 otf/Makefile.am create mode 100644 otf/Makefile.in create mode 100644 scripts/Makefile.am create mode 100644 scripts/Makefile.in create mode 100755 scripts/generate.sh create mode 100644 src/Cantarell-Bold.sfd create mode 100644 src/Cantarell-Regular.sfd create mode 100644 src/Makefile.am create mode 100644 src/Makefile.in diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..1c603c5 --- /dev/null +++ b/COPYING @@ -0,0 +1,94 @@ +Copyright (c) 2009-2011, Understanding Limited (dave@understandinglimited.com), +Copyright (c) 2010-2011, Jakub Steiner (jimmac@gmail.com). + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..f55e1aa --- /dev/null +++ b/Makefile.am @@ -0,0 +1,18 @@ +SUBDIRS = src otf fontconfig scripts + +MAINTAINERCLEANFILES = \ + Makefile.in \ + aclocal.m4 \ + config.guess \ + config.h.in \ + config.sub \ + configure \ + depcomp \ + install-sh \ + intltool-*.in \ + libtool \ + ltmain.sh \ + missing \ + mkinstalldirs + +-include $(top_srcdir)/git.mk diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..cbbb6bb --- /dev/null +++ b/Makefile.in @@ -0,0 +1,708 @@ +# Makefile.in generated by automake 1.11.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = . +DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(top_srcdir)/configure COPYING NEWS \ + install-sh missing +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ + $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ + distdir dist dist-all distcheck +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +GZIP_ENV = --best +DIST_ARCHIVES = $(distdir).tar.bz2 +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CONFIGDIR = @CONFIGDIR@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +FONTDIR = @FONTDIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +am__leading_dot = @am__leading_dot@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = src otf fontconfig scripts +MAINTAINERCLEANFILES = \ + Makefile.in \ + aclocal.m4 \ + config.guess \ + config.h.in \ + config.sub \ + configure \ + depcomp \ + install-sh \ + intltool-*.in \ + libtool \ + ltmain.sh \ + missing \ + mkinstalldirs + +all: all-recursive + +.SUFFIXES: +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__remove_distdir) + +dist-lzma: distdir + tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma + $(am__remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lzma*) \ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir); chmod u+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) +clean: clean-recursive + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ + install-am install-strip tags-recursive + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am am--refresh check check-am clean clean-generic \ + ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ + dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ + distcheck distclean distclean-generic distclean-tags \ + distcleancheck distdir distuninstallcheck dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am tags tags-recursive uninstall uninstall-am + + +-include $(top_srcdir)/git.mk + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..9cb4f9d --- /dev/null +++ b/NEWS @@ -0,0 +1,57 @@ +0.0.11 + - use ligature lookup tables + - make digits monospaced for bold + +0.0.10.1 + - build related fixes + +0.0.10 + - generate OTF from SFDs automatically (Fabian Greffrath) + - install to appropriate system directories (Fabian Greffrath) + - fix cyrillic metrics + - improve EE diacritics + +0.0.9 + - initial support for Cyrillic + - uppercase Greek + +0.0.8 + - accented l. #665433 + - extrema & node fixes + - build related fixes + +0.0.7 + - ON/OFF glyphs. bug #643120 + - combining circumflex metrics. bug #637066 + - ] hinting. bug #652834 + - bold: 'a','e','n','s' and 'c' hints. + - black circle a circle. bug #660442 + - bold: sync accented characters with base glyph. + +0.0.6 + - bold l + - fix umlaut positions. bug #646222 + - README fixes + +0.0.5 + - improved password entry glyph + - improved hyphen by making narrower + - improved licensing and FONTLOG metadata + - improved vertical metrics + +0.0.4 + - improved hints on numerals and bold letters + - improved metrics + +0.0.3 + - create the tarball from the actual git master + - fixed the fontconfig script not to override the global default + +0.0.2 + - improved hints, hinting related metrics + - added black circle glyph for password entries + - increased size of '^' + +0.0.1 + - Initial GNOME release of Cantarell. + - Various improvements by Jakub Steiner diff --git a/README b/README new file mode 100644 index 0000000..7932625 --- /dev/null +++ b/README @@ -0,0 +1,141 @@ +FONTLOG for Cantarell GNOME 0.0.5 +================================= + +This file provides detailed information on the Cantarell font +software. This information should be distributed along with the +Cantarell fonts and any derivative works. + +Font Information +------------------------- + +The Cantarell typeface family is a contemporary Humanist +sans serif, and is used by the GNOME project for its user +interface and the Fedora project. + +Cantarell was originally designed by Dave Crossland as part +of his coursework for the MA Typeface Design programme at +the Department of Typography in the University of Reading, +England. [1] + +Dave was motivated to undertake a study of typeface design because +he believes it is essential that when we use digital tools, our +freedom to use, understand, modify and share these tools is +respected. Otherwise, when the tool does not work in the way +that we need, we will be unable to fix it. + +These fonts are developed using only such "libre" software, +mainly FontForge [2]. + +Cantarell was originally aimed at on-screen reading in a specific +use-case and environment: reading web pages on an HTC Dream +mobile phone [3]. + +That device was the first to ship with Google Android [4], and +came installed with a web browser that supported the exciting web +fonts feature known as @font-face [5]. As Dave's very first typeface +design, the typeface has many faults, yet he asserts it achieves +his goal of improving readability on this device. + +The regular member of the family has had recieved the most focus, and a bold +family has been developed quickly to provide better somewhat better results +that an operating system's automatic bolding. In the case of oblique, we +decided to rely on the system generated variant for now. An actual italics +variant is planned. + +The Regular font fully supports the following writing systems: +Basic Latin, Western European, Catalan, Baltic, Turkish, Central +European, Dutch and Afrikaans. To date, Pan African Latin has +only 33% glyph coverage. + +Since the design is aimed at display on-screen at small sizes, the +printed output (especially of the bold and oblique) may not work +well. Fonts tuned to the needs of printing will be developed in +the future. + +The fonts were initially published on the 6th of July 2009 on +Dave Crossland's foundry website [6] under the terms of the GNU +General Public License version 3. [7] In May 2010 the fonts were +republished through Google Web Fonts [8] under the terms of the +SIL Open Font License version 1.1. [9] In November 2010 the +project became part of the GNOME project and is now under active +development by the GNOME design community. [10] + +Dave Crossland, 21st March 2011 + +[1]: http://www.typedesign.reading.ac.uk +[2]: http://fontforge.sf.net +[3]: http://en.wikipedia.org/wiki/HTC_Dream +[4]: http://en.wikipedia.org/wiki/Android_%28operating_system%29 +[5]: http://openfontlibrary.org/wiki/Web_font_linking_with_%40font-face +[6]: http://abattis.org/cantarell +[7]: http://www.gnu.org/licenses/gpl.html +[8]: http://www.google.com/webfonts +[9]: http://scripts.sil.org/OFL +[10]: http://live.gnome.org/CantarellFonts + + * * * + +Developer information +--------------------- + +The original src/Cantarell-Regular.sfd file has the master sources +as Cubic (PostScript) Bezier splines. There are temporary layers +and a 'Spiro' layer in this file, containing forms used to create +the master Cubic Bezier glyphs; the Spiro layer contains forms in +Spiro splines, and much of the original typeface design by Dave +Crossland was done by drawing in Spiro splines. However today the +master drawing spline format is Cubic Bezier, and Spiro splines +are used to inform their creation. + +The Cantarell-Regular.sfd file is the _master_ source, and was +used to generate the Cantarell-Bold.sfd which is now a hard fork. + +All development occurs by making changes to these drawing files. +When OTF or TTF binaries are compiled, they are copied to the +Cantarell-*-OTF.sfd and Cantarell-*-TTF.sfd files and then a +build process applied. + +This means that there should be a 1:1 match between these files, +the OTF and TTF files in the otf/ and ttf/ directories, and the +output of generating new OTF and TTF files from FontForge. + +The build process is simple; the Spiro and temp layers are removed, +in the case of TTF files all layers are converted to Quadratic from +Cubic, and then all glyphs have the Simplify, Add Extrema, Round +to Int, and Correct Direction operations applied. + +In the future a build script will be developed to do this in an +automated way, which will be important for adding OpenType +Layout features through a feature.fea file. + +ChangeLog +------------------------- + +Please refer to the GNOME Git repository changelog at this URL: + +http://git.gnome.org/browse/cantarell-fonts/log/ + +Acknowledgements +------------------------- + +Here is a list of major contributors; all contributors are listed +in the GNOME Git repository changelogs. + +If you make major modifications be sure to add your name (N), email (E), +web-address (W) and description (D). This list is sorted by last name +in alphabetical order. + +N: Jakub Steiner +E: jimmac@gmail.com +W: http://jimmac.musichall.cz +D: Designer - many improvements and GNOME standards engineering + +N: Dave Crossland +E: dave@understandinglimited.com +W: http://abattis.org/cantarell/ +D: Designer - original Latin glyphs + +N: Erik Hartenian +E: infinality@infinality.net +W: http://infinality.net +D: Connoisseur of fine font renderding diff --git a/aclocal.m4 b/aclocal.m4 new file mode 100644 index 0000000..3ef06f8 --- /dev/null +++ b/aclocal.m4 @@ -0,0 +1,830 @@ +# generated automatically by aclocal 1.11.6 -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, +# Inc. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, +[m4_warning([this file was generated for autoconf 2.68. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically `autoreconf'.])]) + +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) +# +# Copyright © 2004 Scott James Remnant . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have to call PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_default([$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + + m4_default([$4], [AC_MSG_ERROR( +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT]) + ]) +elif test $pkg_failed = untried; then + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +_PKG_TEXT + +To get pkg-config, see .]) + ]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + $3 +fi[]dnl +])# PKG_CHECK_MODULES + +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.11' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.11.6], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.11.6])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 9 + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 16 + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.62])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) + +dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST(install_sh)]) + +# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 6 + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) + +# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_MKDIR_P +# --------------- +# Check for `mkdir -p'. +AC_DEFUN([AM_PROG_MKDIR_P], +[AC_PREREQ([2.60])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +dnl while keeping a definition of mkdir_p for backward compatibility. +dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +dnl Makefile.ins that do not define MKDIR_P, so we do our own +dnl adjustment using top_builddir (which is defined more often than +dnl MKDIR_P). +AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +case $mkdir_p in + [[\\/$]]* | ?:[[\\/]]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 3 + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + diff --git a/configure b/configure new file mode 100755 index 0000000..7e86f2a --- /dev/null +++ b/configure @@ -0,0 +1,3762 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.69 for cantarell-fonts 0.0.11. +# +# Report bugs to . +# +# +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: http://bugzilla.gnome.org/enter_bug.cgi?product=cantarell-fonts +$0: about your system, including any error possibly output +$0: before this message. Then install a modern shell, or +$0: manually run the script under such a shell if you do +$0: have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='cantarell-fonts' +PACKAGE_TARNAME='cantarell-fonts' +PACKAGE_VERSION='0.0.11' +PACKAGE_STRING='cantarell-fonts 0.0.11' +PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=cantarell-fonts' +PACKAGE_URL='' + +ac_subst_vars='LTLIBOBJS +LIBOBJS +FONTDIR +CONFIGDIR +ACLOCAL_AMFLAGS +SED +PKG_CONFIG_LIBDIR +PKG_CONFIG_PATH +PKG_CONFIG +SOURCE_REBUILD_FALSE +SOURCE_REBUILD_TRUE +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_source_rebuild +with_configdir +with_fontdir +' + ac_precious_vars='build_alias +host_alias +target_alias +PKG_CONFIG +PKG_CONFIG_PATH +PKG_CONFIG_LIBDIR' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures cantarell-fonts 0.0.11 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/cantarell-fonts] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of cantarell-fonts 0.0.11:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-source-rebuild Rebuild from source using fontforge + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-configdir=DIR Use DIR to store fontconfig configuration files + [default=DATADIR/fontconfig/conf.avail] + --with-fontdir=DIR Use DIR to store font files + [default=DATADIR/fonts/cantarell] + +Some influential environment variables: + PKG_CONFIG path to pkg-config utility + PKG_CONFIG_PATH + directories to add to pkg-config's search path + PKG_CONFIG_LIBDIR + path overriding pkg-config's built-in search path + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +cantarell-fonts configure 0.0.11 +generated by GNU Autoconf 2.69 + +Copyright (C) 2012 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by cantarell-fonts $as_me 0.0.11, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +am__api_version='1.11' + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='cantarell-fonts' + VERSION='0.0.11' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5 +$as_echo_n "checking how to create a ustar tar archive... " >&6; } +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar plaintar pax cpio none' +_am_tools=${am_cv_prog_tar_ustar-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + { echo "$as_me:$LINENO: $_am_tar --version" >&5 + ($_am_tar --version) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && break + done + am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x ustar -w "$$tardir"' + am__tar_='pax -L -x ustar -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H ustar -L' + am__tar_='find "$tardir" -print | cpio -o -H ustar -L' + am__untar='cpio -i -H ustar -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_ustar}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5 + (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + rm -rf conftest.dir + if test -s conftest.tar; then + { echo "$as_me:$LINENO: $am__untar &5 + ($am__untar &5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + grep GrepMe conftest.dir/file >/dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +if ${am_cv_prog_tar_ustar+:} false; then : + $as_echo_n "(cached) " >&6 +else + am_cv_prog_tar_ustar=$_am_tool +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5 +$as_echo "$am_cv_prog_tar_ustar" >&6; } + + + + + + +# Check whether --enable-source-rebuild was given. +if test "${enable_source_rebuild+set}" = set; then : + enableval=$enable_source_rebuild; +else + enable_source_rebuild=no +fi + + if test x$enable_source_rebuild != xno; then + SOURCE_REBUILD_TRUE= + SOURCE_REBUILD_FALSE='#' +else + SOURCE_REBUILD_TRUE='#' + SOURCE_REBUILD_FALSE= +fi + + + + + + + + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. +set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PKG_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG +if test -n "$PKG_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 +$as_echo "$PKG_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_PKG_CONFIG"; then + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG +if test -n "$ac_pt_PKG_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 +$as_echo "$ac_pt_PKG_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_PKG_CONFIG" = x; then + PKG_CONFIG="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + PKG_CONFIG=$ac_pt_PKG_CONFIG + fi +else + PKG_CONFIG="$ac_cv_path_PKG_CONFIG" +fi + +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.19 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 +$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + PKG_CONFIG="" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_SED" || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + + +# Workaround to make aclocal get the right flags +ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" + + + +# Check whether --with-configdir was given. +if test "${with_configdir+set}" = set; then : + withval=$with_configdir; configdir="$withval" +else + configdir=yes +fi + + +case "$configdir" in +no|yes) + configdir='${datadir}'/fontconfig/conf.avail + ;; +*) + ;; +esac + +CONFIGDIR=${configdir} + + + +# Check whether --with-fontdir was given. +if test "${with_fontdir+set}" = set; then : + withval=$with_fontdir; fontdir="$withval" +else + fontdir=yes +fi + + +case "$fontdir" in +no|yes) + fontdir='${datadir}'/fonts/cantarell + ;; +*) + ;; +esac + +FONTDIR=${fontdir} + + +ac_config_files="$ac_config_files Makefile fontconfig/Makefile src/Makefile otf/Makefile scripts/Makefile" + + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +# Transform confdefs.h into DEFS. +# Protect against shell expansion while executing Makefile rules. +# Protect against Makefile macro expansion. +# +# If the first sed substitution is executed (which looks for macros that +# take arguments), then branch to the quote section. Otherwise, +# look for a macro that doesn't take arguments. +ac_script=' +:mline +/\\$/{ + N + s,\\\n,, + b mline +} +t clear +:clear +s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g +t quote +s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g +t quote +b any +:quote +s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g +s/\[/\\&/g +s/\]/\\&/g +s/\$/$$/g +H +:any +${ + g + s/^\n// + s/\n/ /g + p +} +' +DEFS=`sed -n "$ac_script" confdefs.h` + + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + + +if test -z "${SOURCE_REBUILD_TRUE}" && test -z "${SOURCE_REBUILD_FALSE}"; then + as_fn_error $? "conditional \"SOURCE_REBUILD\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by cantarell-fonts $as_me 0.0.11, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + +Configuration files: +$config_files + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +cantarell-fonts config.status 0.0.11 +configured by $0, generated by GNU Autoconf 2.69, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h | --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "fontconfig/Makefile") CONFIG_FILES="$CONFIG_FILES fontconfig/Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "otf/Makefile") CONFIG_FILES="$CONFIG_FILES otf/Makefile" ;; + "scripts/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + + +eval set X " :F $CONFIG_FILES " +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + + + + esac + +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + + +echo " + $PACKAGE $VERSION + =============== + + rebuild via fontforge: ${enable_source_rebuild} +" diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..7957346 --- /dev/null +++ b/configure.ac @@ -0,0 +1,69 @@ +dnl Process this file with autoconf to produce a configure script. +AC_PREREQ(2.53) + +AC_INIT([cantarell-fonts], [0.0.11], + [http://bugzilla.gnome.org/enter_bug.cgi?product=cantarell-fonts]) + +AM_INIT_AUTOMAKE([1.9 tar-ustar foreign dist-bzip2 no-dist-gzip]) + +AC_ARG_ENABLE(source-rebuild, + AS_HELP_STRING([--enable-source-rebuild], [Rebuild from source using fontforge]),, + enable_source_rebuild=no) +AM_CONDITIONAL(SOURCE_REBUILD, test x$enable_source_rebuild != xno) + +PKG_PROG_PKG_CONFIG([0.19]) +AC_PROG_SED + +# Workaround to make aclocal get the right flags +AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}") + +AC_ARG_WITH([configdir], + [AC_HELP_STRING([--with-configdir=DIR], + [Use DIR to store fontconfig configuration files [default=DATADIR/fontconfig/conf.avail]])], + [configdir="$withval"], + [configdir=yes]) + +case "$configdir" in +no|yes) + configdir='${datadir}'/fontconfig/conf.avail + ;; +*) + ;; +esac + +CONFIGDIR=${configdir} +AC_SUBST(CONFIGDIR) + +AC_ARG_WITH([fontdir], + [AC_HELP_STRING([--with-fontdir=DIR], + [Use DIR to store font files [default=DATADIR/fonts/cantarell]])], + [fontdir="$withval"], + [fontdir=yes]) + +case "$fontdir" in +no|yes) + fontdir='${datadir}'/fonts/cantarell + ;; +*) + ;; +esac + +FONTDIR=${fontdir} +AC_SUBST(FONTDIR) + +AC_CONFIG_FILES([ +Makefile +fontconfig/Makefile +src/Makefile +otf/Makefile +scripts/Makefile +]) + +AC_OUTPUT + +echo " + $PACKAGE $VERSION + =============== + + rebuild via fontforge: ${enable_source_rebuild} +" diff --git a/fontconfig/31-cantarell.conf b/fontconfig/31-cantarell.conf new file mode 100644 index 0000000..2b3ab09 --- /dev/null +++ b/fontconfig/31-cantarell.conf @@ -0,0 +1,18 @@ + + + + + + + + Cantarell + + + Cantarell + + + diff --git a/fontconfig/Makefile.am b/fontconfig/Makefile.am new file mode 100644 index 0000000..e6ad554 --- /dev/null +++ b/fontconfig/Makefile.am @@ -0,0 +1,7 @@ +configdir = $(CONFIGDIR) +config_DATA = \ + 31-cantarell.conf + +EXTRA_DIST = $(config_DATA) + +-include $(top_srcdir)/git.mk diff --git a/fontconfig/Makefile.in b/fontconfig/Makefile.in new file mode 100644 index 0000000..9a200dd --- /dev/null +++ b/fontconfig/Makefile.in @@ -0,0 +1,394 @@ +# Makefile.in generated by automake 1.11.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = fontconfig +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(configdir)" +DATA = $(config_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CONFIGDIR = @CONFIGDIR@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +FONTDIR = @FONTDIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +am__leading_dot = @am__leading_dot@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +configdir = $(CONFIGDIR) +config_DATA = \ + 31-cantarell.conf + +EXTRA_DIST = $(config_DATA) +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fontconfig/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign fontconfig/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-configDATA: $(config_DATA) + @$(NORMAL_INSTALL) + @list='$(config_DATA)'; test -n "$(configdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(configdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(configdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(configdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(configdir)" || exit $$?; \ + done + +uninstall-configDATA: + @$(NORMAL_UNINSTALL) + @list='$(config_DATA)'; test -n "$(configdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(configdir)'; $(am__uninstall_files_from_dir) +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(configdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-configDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-configDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-configDATA install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-configDATA + + +-include $(top_srcdir)/git.mk + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/install-sh b/install-sh new file mode 100755 index 0000000..a9244eb --- /dev/null +++ b/install-sh @@ -0,0 +1,527 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2011-01-19.21; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call `install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names problematic for `test' and other utilities. + case $src in + -* | [=\(\)!]) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + dst=$dst_arg + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writeable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/missing b/missing new file mode 100755 index 0000000..86a8fc3 --- /dev/null +++ b/missing @@ -0,0 +1,331 @@ +#! /bin/sh +# Common stub for a few missing GNU programs while installing. + +scriptversion=2012-01-06.13; # UTC + +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. +# Originally by Fran,cois Pinard , 1996. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 +fi + +run=: +sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' +sed_minuso='s/.* -o \([^ ]*\).*/\1/p' + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +msg="missing on your system" + +case $1 in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + # Exit code 63 means version mismatch. This often happens + # when the user try to use an ancient version of a tool on + # a file that requires a minimum version. In this case we + # we should proceed has if the program had been absent, or + # if --run hadn't been passed. + if test $? = 63; then + run=: + msg="probably too old" + fi + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +error status if there is no known handling for PROGRAM. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails + +Supported PROGRAM values: + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' + autom4te touch the output file, or create a stub one + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file + lex create \`lex.yy.c', if possible, from existing .c + makeinfo touch the output file + yacc create \`y.tab.[ch]', if possible, from existing .[ch] + +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 + ;; + +esac + +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + +# Now exit if we have it, but it failed. Also exit now if we +# don't have it and --version was passed (most likely to detect +# the program). This is about non-GNU programs, so use $1 not +# $program. +case $1 in + lex*|yacc*) + # Not GNU programs, they don't have --version. + ;; + + *) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + # Could not run --version or --help. This is probably someone + # running `$TOOL --version' or `$TOOL --help' to check whether + # $TOOL exists and not knowing $TOOL uses missing. + exit 1 + fi + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. +case $program in + aclocal*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from + any GNU archive site." + touch aclocal.m4 + ;; + + autoconf*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU + archive site." + touch configure + ;; + + autoheader*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them + from any GNU archive site." + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case $f in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files + ;; + + automake*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. + Grab them from any GNU archive site." + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te*) + echo 1>&2 "\ +WARNING: \`$1' is needed, but is $msg. + You might have modified some files without having the + proper tools for further handling them. + You can get \`$1' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi + ;; + + bison*|yacc*) + echo 1>&2 "\ +WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h + if test $# -ne 1; then + eval LASTARG=\${$#} + case $LASTARG in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi + if test ! -f y.tab.h; then + echo >y.tab.h + fi + if test ! -f y.tab.c; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; + + lex*|flex*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c + if test $# -ne 1; then + eval LASTARG=\${$#} + case $LASTARG in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi + if test ! -f lex.yy.c; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; + + help2man*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit $? + fi + ;; + + makeinfo*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file + indirectly affecting the aspect of the manual. The spurious + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -z "$file"; then + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n ' + /^@setfilename/{ + s/.* \([^ ]*\) *$/\1/ + p + q + }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info + fi + # If the file does not exist, the user really needs makeinfo; + # let's fail without touching anything. + test -f $file || exit 1 + touch $file + ;; + + *) + echo 1>&2 "\ +WARNING: \`$1' is needed, and is $msg. + You might have modified some files without having the + proper tools for further handling them. Check the \`README' file, + it often tells you about the needed prerequisites for installing + this package. You may also peek at any GNU archive site, in case + some other package would contain this missing \`$1' program." + exit 1 + ;; +esac + +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/otf/Cantarell-Bold.otf b/otf/Cantarell-Bold.otf new file mode 100644 index 0000000000000000000000000000000000000000..9d6005d54d708247f65a7a3e6f35d3916da041d5 GIT binary patch literal 50836 zcmeFZ2UHZv_b=YvGdF%cCEm@r^Oaz-+!2!gRx#JDN~3T80} zbj?}JS=XG_oG?_gHR`+F!vOpJ{=V<`&U@$m&-tJ8@Jx4gclEuuZr!?d>r=P&9Wun1 zs!L^3GHQUkmzQPe;K~6MrG7?Hr9NI>L;8(*RcA0o9qdX`RO4PAo?h}3OeRGguz~9i zy$1LWF8f*b1D>10wN0N?0<#lDd&LxaEdbN8Xb@t$M}MH z6zv2DMNB|+@ZjR%APZdt&;8?K6B2(WQ}9fE0-jq^G#ueCq}$ceW6ipLrRvCDir44M zpA9vhe`Nl6BA+I20(Cix5%0nuyeDt+;|UxW{mA^8E1zbhWOz(bj4wqEkdBm`nZX>O zShzPE&J;DraHbzowlu>r48_R|ZxvBYY)`6awvmRbo9hs&h_WPd=IIY2a-_BJY^nI1 ze!}bl`7NPWDC#%5yOBTLnTe??)0By9Usai*Em-!2NYqWfLf0uPWD}d|0}wY)V

#$3Zz=Y*^aV-f6i2U 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


(}3(EhXRhw#NmD0Tkh+&zU9&` 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 literal 0 HcmV?d00001 diff --git a/otf/Cantarell-Regular.otf b/otf/Cantarell-Regular.otf new file mode 100644 index 0000000000000000000000000000000000000000..34420fc9521d4fc1c31345068707af241f7697d7 GIT binary patch literal 46360 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 Y*Bp#5W|EBcwlA&~s2i_emhkES0sRC482|tP literal 0 HcmV?d00001 diff --git a/otf/Makefile.am b/otf/Makefile.am new file mode 100644 index 0000000..b9ea8e9 --- /dev/null +++ b/otf/Makefile.am @@ -0,0 +1,14 @@ + +fontdir = $(FONTDIR) +font_DATA = \ + Cantarell-Regular.otf \ + Cantarell-Bold.otf + +if SOURCE_REBUILD +%.otf: $(top_srcdir)/src/%.sfd + /usr/bin/env fontforge -script $(top_srcdir)/scripts/generate.sh "$^" +endif + +EXTRA_DIST = $(font_DATA) + +-include $(top_srcdir)/git.mk diff --git a/otf/Makefile.in b/otf/Makefile.in new file mode 100644 index 0000000..ac4d1ab --- /dev/null +++ b/otf/Makefile.in @@ -0,0 +1,398 @@ +# Makefile.in generated by automake 1.11.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = otf +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(fontdir)" +DATA = $(font_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CONFIGDIR = @CONFIGDIR@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +FONTDIR = @FONTDIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +am__leading_dot = @am__leading_dot@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +fontdir = $(FONTDIR) +font_DATA = \ + Cantarell-Regular.otf \ + Cantarell-Bold.otf + +EXTRA_DIST = $(font_DATA) +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign otf/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign otf/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-fontDATA: $(font_DATA) + @$(NORMAL_INSTALL) + @list='$(font_DATA)'; test -n "$(fontdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(fontdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(fontdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(fontdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(fontdir)" || exit $$?; \ + done + +uninstall-fontDATA: + @$(NORMAL_UNINSTALL) + @list='$(font_DATA)'; test -n "$(fontdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(fontdir)'; $(am__uninstall_files_from_dir) +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(fontdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-fontDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-fontDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-fontDATA \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ + uninstall-am uninstall-fontDATA + + +@SOURCE_REBUILD_TRUE@%.otf: $(top_srcdir)/src/%.sfd +@SOURCE_REBUILD_TRUE@ /usr/bin/env fontforge -script $(top_srcdir)/scripts/generate.sh "$^" + +-include $(top_srcdir)/git.mk + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/scripts/Makefile.am b/scripts/Makefile.am new file mode 100644 index 0000000..332ad03 --- /dev/null +++ b/scripts/Makefile.am @@ -0,0 +1,9 @@ +noinst_DATA = \ + generate.sh + +EXTRA_DIST = $(noinst_DATA) + +MAINTAINERCLEANFILES = \ + Makefile.in + +-include $(top_srcdir)/git.mk diff --git a/scripts/Makefile.in b/scripts/Makefile.in new file mode 100644 index 0000000..2cc2a29 --- /dev/null +++ b/scripts/Makefile.in @@ -0,0 +1,344 @@ +# Makefile.in generated by automake 1.11.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = scripts +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CONFIGDIR = @CONFIGDIR@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +FONTDIR = @FONTDIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +am__leading_dot = @am__leading_dot@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_DATA = \ + generate.sh + +EXTRA_DIST = $(noinst_DATA) +MAINTAINERCLEANFILES = \ + Makefile.in + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign scripts/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign scripts/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am + + +-include $(top_srcdir)/git.mk + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/scripts/generate.sh b/scripts/generate.sh new file mode 100755 index 0000000..9bbf475 --- /dev/null +++ b/scripts/generate.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env fontforge + +if ($version < "20080330") + Error("Your version of FontForge is too old - 20080330 or newer is required"); +endif + +SetPref("FoundryName", "Cantarell") +SetPref("TTFFoundry", "Cantarell") + +i = 1 +while (i < $argc) + Open($argv[i], 1) + SelectAll() + Simplify() + AddExtrema() + RoundToInt() + CorrectDirection() + Generate($fontname + ".otf") + Close() + i++ +endloop diff --git a/src/Cantarell-Bold.sfd b/src/Cantarell-Bold.sfd new file mode 100644 index 0000000..3ea9e6c --- /dev/null +++ b/src/Cantarell-Bold.sfd @@ -0,0 +1,16231 @@ +SplineFontDB: 3.0 +FontName: Cantarell-Bold +FullName: Cantarell Bold +FamilyName: Cantarell +Weight: Bold +Copyright: Copyright (c) 2009-2011, Understanding Limited (dave@understandinglimited.com),\nCopyright (c) 2010-2012, Jakub Steiner (jimmac@gmail.com).\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL +UComments: "Cantarell was originally designed by Dave Crossland and is developed by the GNOME community+AA0ACgAA-dave@understandinglimited.com+AA0ACgAA-http://live.gnome.org/CantarellFonts" +Version: 0.0.11 +ItalicAngle: 0 +UnderlinePosition: -113 +UnderlineWidth: 56 +Ascent: 739 +Descent: 261 +LayerCount: 3 +Layer: 0 0 "Back" 1 +Layer: 1 0 "Fore" 0 +Layer: 2 0 "temp" 0 +XUID: [1021 472 1916768597 5236576] +FSType: 0 +OS2Version: 0 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 1 +CreationTime: 1236980653 +ModificationTime: 1353003869 +PfmFamily: 33 +TTFWeight: 700 +TTFWidth: 5 +LineGap: 0 +VLineGap: 0 +OS2TypoAscent: 739 +OS2TypoAOffset: 0 +OS2TypoDescent: -261 +OS2TypoDOffset: 0 +OS2TypoLinegap: 0 +OS2WinAscent: 1053 +OS2WinAOffset: 0 +OS2WinDescent: 286 +OS2WinDOffset: 0 +HheadAscent: 1053 +HheadAOffset: 0 +HheadDescent: -286 +HheadDOffset: 0 +OS2FamilyClass: 2050 +OS2Vendor: 'ABAT' +Lookup: 4 0 1 "'liga' Standard Ligatures in Latin lookup 0" {"'liga' Standard Ligatures in Latin lookup 0-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +LangName: 1033 "" "" "" "" "" "" "" "" "" "Dave Crossland" "" "http://live.gnome.org/CantarellFonts+AAoA" "http://abattis.org" "This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL" "http://scripts.sil.org/OFL" "" "" "" "" "" "Cantarell" +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: Adobe Glyph List +DisplaySize: -48 +AntiAlias: 1 +FitToEm: 1 +WinInfo: 57 19 12 +BeginPrivate: 0 +EndPrivate +Grid +-10.2539 694.336 m 29 + 798.34 694.336 l 29 +-232.91 670.898 m 5 + 625.488 670.898 l 5 + Spiro + -232.91 670.898 { + 625.488 670.898 v + 0 0 z + EndSpiro +-231.445 481.934 m 5 + 632.812 481.934 l 5 + Spiro + -231.445 481.934 { + 632.812 481.934 v + 0 0 z + EndSpiro +-1000 1056.64 m 0 + 2000 1056.64 l 0 +-1000 737.793 m 0 + 2000 737.793 l 0 + Named: "quoteleft" +-1000 693.75 m 0 + 2000 693.75 l 0 + Named: "revprime" +321.289 1239.26 m 0 + 321.289 -760.742 l 0 +127.93 1239.26 m 0 + 127.93 -760.742 l 0 +EndSplineSet +TeXData: 1 0 0 250299 125149 83433 441600 -782188 83433 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144 +BeginChars: 65536 590 + +StartChar: a +Encoding: 97 97 0 +Width: 563 +VWidth: 1023 +Flags: HMW +HStem: 0 90 200 65 400 90 +LayerCount: 3 +Back +SplineSet +247.761 491.465 m 4 + 283.611 491.465 413.789 486.83 431.639 369.76 c 4 + 433.781 355.709 434.104 341.463 434.104 327.237 c 4 + 434.104 324.928 434.095 322.619 434.084 320.312 c 6 + 432.619 0 l 5 + 377.443 0 l 5x7c + 358.725 43.9316 l 5 + 326.611 14.6221 278.661 -9.75 222.992 -9.75 c 4 + 130.12 -9.75 59.9785 56.043 59.9785 127.73 c 4 + 59.9785 173.166 88.3984 237.223 188.459 260.229 c 4 + 220.403 267.573 262.57 272.259 353.518 273.73 c 5 + 353.518 299.316 l 6 + 353.518 304.131 353.568 308.966 353.568 313.802 c 4 + 353.568 340.277 355.396 425.425 234.946 425.425 c 4xbc + 188.943 425.425 132.189 410.787 105.959 403.32 c 5 + 90.8223 461.914 l 5 + 149.717 484.057 204.564 491.382 247.761 491.465 c 4 +353.518 213.613 m 5 + 257.662 212.174 194.621 214.439 158.693 176.758 c 4 + 147.237 164.742 139.864 148.457 139.864 131.942 c 4 + 139.864 91.2646 186.574 53.1816 244.812 53.1816 c 4 + 255.556 53.1816 308.687 53.9922 353.518 102.412 c 5 + 353.518 213.613 l 5 +EndSplineSet +Fore +SplineSet +274.769 492 m 0 + 455.769 492 496.769 409 496.769 316 c 2 + 496.769 0 l 1 + 406.769 0 l 1 + 393.769 32 l 1 + 355.769 8 303.769 -10 245.769 -10 c 0 + 120.769 -10 42.7686 59 42.7686 133 c 0 + 42.7686 274 179.769 283 376.769 283 c 1 + 376.769 290 l 2 + 376.769 330 367.769 385 258.769 385 c 0 + 229.769 385 183.769 381 113.769 364 c 1 + 94.7686 358 l 1 + 69.7686 455 l 1 + 86.7686 460 l 2 + 148.769 481 215.769 492 274.769 492 c 0 +376.769 125 m 1 + 376.769 195 l 1 + 364.769 195 l 2 + 237.769 195 169.769 193 169.769 142 c 0 + 169.769 110 210.769 93 270.769 93 c 0 + 281.769 93 331.769 94 376.769 125 c 1 +EndSplineSet +EndChar + +StartChar: d +Encoding: 100 100 1 +Width: 592 +VWidth: 1023 +Flags: W +HStem: -10 106<227.604 400.609> 0 21G<425.316 522.407> 389 103<226.676 401.158> 673 20G<402.407 522.407> +VStem: 44.9072 119<161.081 327.685> 402.407 120<105.799 380.751 476 693> +LayerCount: 3 +Fore +SplineSet +44.9072 233 m 4xbc + 44.9072 402 154.907 492 299.807 492 c 4 + 338.507 492 372.707 486 402.407 476 c 5 + 402.407 693 l 5 + 522.407 693 l 5 + 522.407 0 l 5 + 434.407 0 l 5x7c + 424.407 22 l 5 + 377.207 -1 327.707 -10 285.407 -10 c 4 + 175.606 -10 44.9072 50 44.9072 233 c 4xbc +313.307 96 m 4xbc + 347.507 96 379.007 104 402.407 113 c 5 + 402.407 375 l 5 + 379.007 382 346.606 389 312.407 389 c 4 + 253.907 389 163.907 367 163.907 245 c 4 + 163.907 122 253.007 96 313.307 96 c 4xbc +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 2 +Width: 562 +VWidth: 1023 +Flags: HMW +HStem: 0 90 200 65 400 90 +LayerCount: 3 +Back +SplineSet +295.639 491.729 m 4 + 335.815 491.729 444.803 481.807 468.949 342.727 c 4 + 474.198 312.496 474.609 281.659 474.609 250.977 c 6 + 474.609 203.613 l 5 + 143.066 203.613 l 5 + 148.102 134.537 205.297 54.1953 324.332 54.1953 c 4 + 365.6 54.1953 406.471 63.457 434.082 71.7773 c 5 + 448.242 17.0898 l 5 + 406.529 2.73438 352.84 -9.75195 293.75 -9.76562 c 4 + 109.512 -9.76562 63.4521 116.621 63.4521 225.768 c 4 + 63.4521 412.687 182.298 491.729 295.639 491.729 c 4 +278.48 422.233 m 4 + 188.4 422.233 146.184 341.938 145.02 264.16 c 5 + 396.973 264.16 l 5 + 397.061 267.328 397.105 270.5 397.105 273.672 c 4 + 397.105 402.854 325.931 422.233 278.48 422.233 c 4 +EndSplineSet +Fore +SplineSet +483.007 115 m 1 + 483.007 12 l 1 + 467.007 8 l 2 + 415.007 -5 372.907 -9 308.106 -9 c 0 + 99.9072 -9 44.9072 115 44.9072 227 c 0 + 44.9072 412 155.6 492 300.907 492 c 0 + 458.007 492 519.007 348 519.007 246 c 2 + 519.007 184 l 1 + 173.907 184 l 1 + 184.807 141 225.307 98 339.606 98 c 0 + 402.007 98 483.007 115 483.007 115 c 1 +291.907 388 m 0 + 209.6 388 174.907 328 174.907 268 c 1 + 399.007 268 l 1 + 399.007 351 349.507 388 291.907 388 c 0 +EndSplineSet +Layer: 2 +SplineSet +333.691 491.699 m 4 + 502.344 491.699 562.012 347.168 562.012 245.605 c 6 + 562.012 183.594 l 5 + 191.895 183.594 l 5 + 204.102 140.625 264.16 94.2383 375.977 94.2383 c 4 + 420.41 94.2383 461.426 103.027 488.281 110.84 c 6 + 508.301 116.699 l 5 + 532.227 23.9258 l 5 + 514.648 18.0664 l 6 + 471.68 3.41797 412.598 -9.76562 340.82 -9.76562 c 4 + 118.164 -9.76562 63.4766 114.746 63.4766 226.562 c 4 + 63.4766 411.621 191.602 491.699 333.691 491.699 c 4 +322.754 382.324 m 4 + 243.652 382.324 200.684 335.938 192.871 284.18 c 5 + 442.383 284.18 l 5 + 437.012 358.398 386.719 382.324 322.754 382.324 c 4 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 3 +Width: 584 +VWidth: 1023 +Flags: W +HStem: 0 21G<66.291 186.291 397.791 516.791> 380 111<214.967 366.456> 673 20G<66.291 186.291> +VStem: 66.291 120<0 361.306 458 693> 397.791 119<0 348.095> +LayerCount: 3 +Back +SplineSet +301.82 420.039 m 4 + 276.027 420.039 231.5 412.926 172.852 382.266 c 5 + 172.852 0 l 5 + 92.7734 0 l 5 + 92.7734 737.793 l 5 + 172.852 737.793 l 5 + 172.852 445.816 l 5 + 205.15 462.916 268.846 491.406 332.842 491.406 c 4 + 388.896 491.406 483.584 467.354 492.7 331.335 c 4 + 493.633 317.381 493.872 303.4 493.872 289.412 c 4 + 493.872 278.717 493.73 268.018 493.652 257.324 c 6 + 491.699 0 l 5 + 411.621 0 l 5 + 411.133 290.527 l 6 + 411.078 322.608 411.813 391.296 341.021 414.221 c 4 + 328.378 418.314 315.131 420.039 301.82 420.039 c 4 +EndSplineSet +Fore +SplineSet +300.591 380 m 0 + 278.99 380 239.391 375 186.291 353 c 1 + 186.291 0 l 1 + 66.291 0 l 1 + 66.291 693 l 5 + 186.291 693 l 5 + 186.291 458 l 1 + 224.091 474 277.19 491 332.99 491 c 0 + 509.791 491 516.791 348 516.791 274 c 2 + 516.791 0 l 1 + 397.791 0 l 1 + 397.791 282 l 2 + 397.791 308 394.19 380 300.591 380 c 0 +EndSplineSet +EndChar + +StartChar: i +Encoding: 105 105 4 +Width: 253 +VWidth: 1023 +Flags: W +HStem: 0 21G<64.7373 184.737> 462 20G<64.7373 184.737> 562 132<57.7373 191.737> +VStem: 57.7373 134<562 694> 64.7373 120<0 482> +LayerCount: 3 +Fore +SplineSet +57.7373 694 m 1xf0 + 191.737 694 l 1 + 191.737 562 l 1 + 57.7373 562 l 1 + 57.7373 694 l 1xf0 +64.7373 482 m 5xe8 + 184.737 482 l 5 + 184.737 0 l 5 + 64.7373 0 l 5 + 64.7373 482 l 5xe8 +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 5 +Width: 579 +VWidth: 1023 +Flags: W +HStem: 0 21G<63 183 390.9 511.9> 380 112<215.58 363.707> 462 20G<63 156.697> +VStem: 63 120<0 361.288> 390.9 121<0 354.174> +LayerCount: 3 +Back +SplineSet +87.8906 482.422 m 1 + 144.043 482.422 l 1 + 161.621 441.406 l 1 + 236.816 482.422 294.922 492.188 331.543 492.188 c 0 + 469.238 492.188 486.816 384.766 486.816 287.598 c 2 + 486.816 0 l 25 + 406.25 0 l 1 + 406.25 290.527 l 2 + 406.25 320.801 407.715 419.922 296.875 419.922 c 0 + 251.465 419.922 203.613 400.879 167.969 382.324 c 1 + 167.969 0 l 1 + 87.8906 0 l 1 + 87.8906 482.422 l 1 +EndSplineSet +Fore +SplineSet +63 482 m 1xb8 + 147 482 l 1xb8 + 163 449 l 1 + 237 483 294.6 492 333.3 492 c 0 + 488.9 492 511.9 383 511.9 285 c 2 + 511.9 0 l 1 + 390.9 0 l 1 + 390.9 283 l 2 + 390.9 317 387.3 380 297.3 380 c 0xd8 + 254.1 380 209.1 364 183 353 c 1 + 183 0 l 1 + 63 0 l 1 + 63 482 l 1xb8 +EndSplineSet +EndChar + +StartChar: o +Encoding: 111 111 6 +Width: 594 +VWidth: 1023 +Flags: HMW +HStem: -10 90<225.784 374.967> 400 90<217.913 369.22> +VStem: 40 119<168.275 325.09> 436.199 118<159.172 317.512> +LayerCount: 3 +Fore +SplineSet +300.3 492 m 4 + 442.199 492 554.199 406 554.199 250 c 4 + 554.199 89 445.199 -10 292.199 -10 c 4 + 147 -10 40 82 40 236 c 4 + 40 393 146 492 300.3 492 c 4 +293.1 383 m 4 + 228.3 383 159 340 159 249 c 4 + 159 166 215.699 99 301.199 99 c 4 + 375.899 99 436.199 152 436.199 236 c 4 + 436.199 335 360.6 383 293.1 383 c 4 +EndSplineSet +EndChar + +StartChar: s +Encoding: 115 115 7 +Width: 524 +VWidth: 1023 +Flags: HMW +HStem: -10 90<131.439 340.099> 400 90<314.613 433.891> +VStem: 62.9072 127<318.934 371.287> 354.807 129<108.717 162.947> +LayerCount: 3 +Fore +SplineSet +354.807 144 m 1 + 350.307 205 62.9072 183 62.9072 341 c 0 + 62.9072 400 116.907 492 311.407 492 c 0 + 380.407 492 410.407 481 444.407 471 c 2 + 464.407 465 l 1 + 431.407 367 l 1 + 412.407 372 l 2 + 380.407 381 348.307 389 297.007 389 c 0 + 200.707 389 189.907 352 189.907 340 c 0 + 189.907 285 485.407 292 483.807 143 c 0 + 483.807 80 438.807 -10 242.307 -10 c 0 + 199.106 -10 136.907 -2 63.9072 28 c 2 + 44.9072 36 l 1 + 81.9072 133 l 1 + 99.9072 126 l 1 + 163.907 102 203.606 93 245.907 93 c 0 + 321.507 93 354.807 110 354.807 144 c 1 +EndSplineSet +EndChar + +StartChar: bar +Encoding: 124 124 8 +Width: 365 +VWidth: 1023 +Flags: W +VStem: 123.553 120<-170 802> +LayerCount: 3 +Fore +SplineSet +123.553 802 m 1 + 243.553 802 l 1 + 243.553 -170 l 1 + 123.553 -170 l 1 + 123.553 802 l 1 +EndSplineSet +EndChar + +StartChar: b +Encoding: 98 98 9 +Width: 592 +VWidth: 1023 +Flags: W +HStem: -10 103<186.823 361.644> 0 21G<66.291 161.291> 386 106<187.811 358.41> 674 20G<66.291 186.291> +VStem: 66.291 120<101.249 377.171 471 694> 423.891 118<152.01 320.827> +LayerCount: 3 +Fore +SplineSet +66.291 694 m 5x7c + 186.291 694 l 5 + 186.291 471 l 5 + 219.591 484 258.291 492 301.49 492 c 4 + 406.791 492 541.891 436 541.891 247 c 4 + 541.891 86 436.891 -10 287.091 -10 c 4xbc + 238.49 -10 194.391 2 161.291 16 c 5 + 155.291 0 l 5 + 66.291 0 l 5 + 66.291 694 l 5x7c +272.69 386 m 4 + 246.591 386 217.791 382 186.291 370 c 5 + 186.291 107 l 5 + 208.791 100 240.291 93 274.49 93 c 4 + 334.791 93 423.891 118 423.891 234 c 4 + 423.891 362 332.99 386 272.69 386 c 4 +EndSplineSet +EndChar + +StartChar: l +Encoding: 108 108 10 +Width: 322 +VWidth: 1023 +Flags: W +HStem: -9.90039 104.22<141.5 304.592> 673.75 20G<69.3868 189.4> +VStem: 69 120.145<102.826 693.75> +LayerCount: 3 +Back +SplineSet +69.8545 738 m 5 + 189.854 738 l 5 + 189.854 0 l 5 + 69.8545 0 l 5 + 69.8545 738 l 5 +EndSplineSet +Fore +SplineSet +252.645 94.3193 m 4 + 271.645 94.3193 287.895 98.4863 310 105.1 c 5 + 310 14.0996 l 5 + 292.645 8.09961 277.4 -9.90039 173 -9.90039 c 4 + 110 -9.90039 68.9541 37.0928 69 105.1 c 6 + 69.4004 693.75 l 5 + 189.4 693.75 l 5 + 189.145 163.32 l 5 + 189.145 126.1 191.046 94.3193 252.645 94.3193 c 4 +EndSplineSet +EndChar + +StartChar: w +Encoding: 119 119 11 +Width: 877 +VWidth: 1023 +Flags: W +HStem: 0 21G<198.953 322.962 548.564 673.536> 462 20G<20.6709 156.113 381.252 502.59 732.865 869.071> +LayerCount: 3 +Back +SplineSet +708.008 482.422 m 1 + 793.457 482.422 l 1 + 924.316 77.6367 l 1 + 1048.34 482.422 l 1 + 1126.95 482.422 l 1 + 1255.86 78.125 l 1 + 1386.72 482.422 l 1 + 1472.17 482.422 l 1 + 1295.9 0 l 1 + 1215.33 0 l 1 + 1086.91 391.113 l 1 + 959.961 0 l 1 + 879.395 0 l 1 + 708.008 482.422 l 1 +EndSplineSet +Fore +SplineSet +20.6709 482 m 1 + 149.671 482 l 1 + 264.671 125 l 1 + 388.171 482 l 1 + 496.171 482 l 1 + 611.071 124 l 1 + 740.071 482 l 1 + 869.071 482 l 1 + 665.071 0 l 1 + 555.071 0 l 1 + 442.171 347 l 1 + 315.671 0 l 1 + 206.671 0 l 1 + 20.6709 482 l 1 +EndSplineSet +EndChar + +StartChar: exclam +Encoding: 33 33 12 +Width: 266 +VWidth: 1023 +Flags: W +HStem: 0 118<68 194> +VStem: 68 126<0 118 204 714> +LayerCount: 3 +Fore +SplineSet +68 118 m 5 + 194 118 l 1 + 194 0 l 1 + 68 0 l 5 + 68 118 l 5 +68 714 m 5 + 194 714 l 1 + 194 204 l 1 + 68 204 l 5 + 68 714 l 5 +EndSplineSet +EndChar + +StartChar: space +Encoding: 32 32 13 +Width: 273 +VWidth: 1023 +Flags: W +LayerCount: 3 +EndChar + +StartChar: u +Encoding: 117 117 14 +Width: 586 +VWidth: 1023 +Flags: W +HStem: -10 112<211.106 361.091> 0 21G<419.735 517.826> 462 20G<62.7266 182.727 397.826 517.826> +VStem: 62.7266 120<127.826 482> 397.826 120<120.712 482> +LayerCount: 3 +Fore +SplineSet +397.826 482 m 1xb8 + 517.826 482 l 1 + 517.826 0 l 1 + 428.826 0 l 1x78 + 413.826 33 l 1 + 341.127 -1 281.727 -10 242.127 -10 c 0 + 84.7266 -10 62.7266 99 62.7266 197 c 2 + 62.7266 482 l 1 + 182.727 482 l 1 + 182.727 198 l 2 + 182.727 166 186.326 102 279.927 102 c 0 + 324.026 102 370.826 118 397.826 129 c 1 + 397.826 482 l 1xb8 +EndSplineSet +EndChar + +StartChar: p +Encoding: 112 112 15 +Width: 591 +VWidth: 1023 +Flags: W +HStem: -10 103<188.934 361.733> 385 107<189.98 360.562> 462 20G<62.7266 161.292> +VStem: 62.7266 125<-259 7 102.057 375.31> 422.627 118<154.882 323.631> +LayerCount: 3 +Fore +SplineSet +302.927 492 m 0xd8 + 407.326 492 540.627 434 540.627 246 c 0 + 540.627 85 435.627 -10 288.526 -10 c 0 + 249.826 -10 216.526 -3 187.727 7 c 1 + 187.727 -259 l 1 + 62.7266 -259 l 1 + 62.7266 482 l 1 + 151.727 482 l 1xb8 + 162.727 459 l 1 + 212.927 482 261.526 492 302.927 492 c 0xd8 +275.026 385 m 0xd8 + 248.927 385 219.227 380 187.727 368 c 1 + 187.727 108 l 1 + 210.227 101 241.727 93 275.927 93 c 0 + 335.326 93 422.627 119 422.627 234 c 0 + 422.627 362 334.427 385 275.026 385 c 0xd8 +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 16 +Width: 584 +VWidth: 1023 +Flags: W +HStem: -10 107<225.617 394.191> 387 105<219.517 395.226> 462 20G<423.622 518.193> +VStem: 44.1934 119<159.617 327.332> 397.193 121<-259 13 106.69 375.187> +LayerCount: 3 +Fore +SplineSet +293.693 492 m 0xd8 + 313.493 492 353.093 491 423.193 461 c 1 + 432.193 482 l 1 + 518.193 482 l 5xb8 + 518.193 -259 l 5 + 397.193 -259 l 1 + 397.193 13 l 1 + 364.793 0 325.193 -10 281.993 -10 c 0 + 173.993 -10 44.1934 50 44.1934 238 c 0 + 44.1934 409 169.493 492 293.693 492 c 0xd8 +299.093 387 m 0xd8 + 217.193 387 163.193 335 163.193 246 c 0 + 163.193 123 251.394 97 310.793 97 c 0 + 336.894 97 365.693 102 397.193 114 c 1 + 397.193 369 l 1 + 351.293 384 319.793 387 299.093 387 c 0xd8 +EndSplineSet +EndChar + +StartChar: m +Encoding: 109 109 17 +Width: 877 +VWidth: 1023 +Flags: W +HStem: 0 21G<62.7266 182.727 375.326 495.326 688.826 808.826> 378 114<210.385 350.81 508.948 664.799> 462 20G<62.7266 160.759> +VStem: 62.7266 120<0 360.252> 375.326 120<0 350.967> 688.826 120<0 351.278> +LayerCount: 3 +Fore +SplineSet +285.326 378 m 0xdc + 263.727 378 238.526 374 182.727 352 c 1 + 182.727 0 l 1 + 62.7266 0 l 1 + 62.7266 482 l 1 + 151.727 482 l 1xbc + 165.727 451 l 1 + 201.627 469 259.227 492 320.427 492 c 0 + 388.326 492 426.326 464 446.326 443 c 1 + 490.326 466 553.826 491 625.826 491 c 0 + 773.826 491 808.826 398 808.826 286 c 2 + 808.826 0 l 1 + 688.826 0 l 1 + 688.826 285 l 2 + 688.826 344 663.627 378 597.026 378 c 0 + 562.826 378 525.026 366 491.326 352 c 1 + 495.326 330 495.326 306 495.326 283 c 0 + 495.326 189 495.326 94 495.326 0 c 1 + 375.326 0 l 1 + 375.326 287 l 2 + 375.326 365 324.927 378 285.326 378 c 0xdc +EndSplineSet +EndChar + +StartChar: c +Encoding: 99 99 18 +Width: 518 +VWidth: 1023 +Flags: MW +HStem: -10 90<232.52 435.388> 400 90<221.782 439.724> +VStem: 44.9072 118<159.813 323.276> +LayerCount: 3 +Fore +SplineSet +44.9072 231 m 0 + 44.9072 427 181.807 491 313.207 491 c 0 + 367.207 491 415.207 481 460.207 461 c 2 + 478.207 454 l 1 + 446.207 358 l 1 + 427.207 365 l 2 + 395.207 376 361.207 382 324.007 382 c 0 + 243.007 382 162.907 355 162.907 246 c 0 + 162.907 138 231.307 96 333.907 96 c 0 + 365.207 96 394.207 101 421.207 111 c 1 + 440.207 118 l 1 + 473.207 25 l 1 + 455.207 19 l 2 + 401.207 -2 348.307 -10 303.307 -10 c 0 + 180.007 -10 44.9072 43 44.9072 231 c 0 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 19 +Width: 432 +VWidth: 1023 +Flags: W +HStem: -10 103<238.605 394.75> 379 103<24.2363 99.2363 219.236 388.336> +VStem: 99.2363 120<112.105 379 482 621> +LayerCount: 3 +Back +SplineSet +409.18 8.78906 m 6 + 352.539 -5.85938 316.895 -9.76562 289.062 -9.76562 c 4 + 129.883 -9.76562 99.1211 69.3359 99.1211 154.785 c 6 + 99.1211 379.395 l 5 + 34.1797 379.395 l 5 + 34.1797 482.422 l 5 + 99.1211 482.422 l 5 + 99.1211 620.605 l 5 + 242.188 620.605 l 5 + 242.188 482.422 l 5 + 406.25 482.422 l 5 + 406.25 379.395 l 5 + 242.188 379.395 l 5 + 242.188 163.086 l 6 + 242.188 133.789 246.582 92.7734 318.359 92.7734 c 4 + 331.055 92.7734 337.402 93.75 389.648 102.539 c 6 + 408.691 105.957 l 5 + 427.734 13.6719 l 5 + 409.18 8.78906 l 6 +EndSplineSet +Fore +SplineSet +391.336 9 m 6 + 334.336 -6 299.336 -10 273.236 -10 c 4 + 120.236 -10 99.2363 70 99.2363 155 c 6 + 99.2363 379 l 5 + 24.2363 379 l 5 + 24.2363 482 l 5 + 99.2363 482 l 5 + 99.2363 621 l 5 + 219.236 621 l 5 + 219.236 482 l 5 + 388.336 482 l 5 + 388.336 379 l 5 + 219.236 379 l 5 + 219.236 163 l 6 + 219.236 134 234.536 93 300.336 93 c 4 + 313.336 93 320.336 94 372.336 103 c 5 + 391.336 106 l 5 + 410.336 14 l 5 + 391.336 9 l 6 +EndSplineSet +EndChar + +StartChar: r +Encoding: 114 114 20 +Width: 429 +VWidth: 1023 +Flags: W +HStem: 0 21G<62.7266 182.727> 383 109<187.704 392.666> 462 20G<62.7266 153.927> +VStem: 62.7266 120<0 368.266> +LayerCount: 3 +Fore +SplineSet +156.727 457 m 5xb0 + 198.927 478 250.227 492 306.326 492 c 4 + 340.326 492 374.326 486 406.326 471 c 6 + 423.326 463 l 5 + 385.326 363 l 5 + 366.326 370 l 6 + 343.326 379 320.326 383 293.427 383 c 4xd0 + 255.627 383 216.927 375 182.727 360 c 5 + 182.727 0 l 5 + 62.7266 0 l 5 + 62.7266 482 l 5 + 142.727 482 l 5 + 156.727 457 l 5xb0 +EndSplineSet +EndChar + +StartChar: v +Encoding: 118 118 21 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 21G<206.843 339.428> 462 20G<22.8096 167.3 383.02 515.409> +LayerCount: 3 +Back +SplineSet +448.242 482.422 m 5 + 278.809 0 l 5 + 200.684 0 l 5 + 31.7383 482.422 l 5 + 114.746 482.422 l 5 + 239.746 79.5898 l 5 + 365.234 482.422 l 5 + 448.242 482.422 l 5 +EndSplineSet +Fore +SplineSet +515.409 482 m 1 + 331.81 0 l 1 + 214.81 0 l 1 + 22.8096 482 l 1 + 160.81 482 l 1 + 276.01 127 l 1 + 389.409 482 l 1 + 515.409 482 l 1 +EndSplineSet +EndChar + +StartChar: k +Encoding: 107 107 22 +Width: 558 +VWidth: 1023 +Flags: W +HStem: 0 21G<62.7266 182.727 377.427 543.127> 472 20G<370.144 535.127> 674 20G<62.7266 182.727> +VStem: 62.7266 120<0 240 289 694> +LayerCount: 3 +Fore +SplineSet +182.727 289 m 1 + 390.627 492 l 1 + 535.127 492 l 1 + 297.026 271 l 1 + 543.127 0 l 1 + 395.127 0 l 1 + 182.727 240 l 1 + 182.727 0 l 1 + 62.7266 0 l 1 + 62.7266 694 l 5 + 182.727 694 l 5 + 182.727 289 l 1 +EndSplineSet +EndChar + +StartChar: j +Encoding: 106 106 23 +Width: 270 +VWidth: 1023 +Flags: W +HStem: 462 20G<92.416 212.416> 562 132<84.416 219.416> +VStem: 84.416 135<562 694> 92.416 120<-124.777 482> +LayerCount: 3 +Fore +SplineSet +84.416 694 m 1xe0 + 219.416 694 l 1 + 219.416 562 l 1 + 84.416 562 l 1 + 84.416 694 l 1xe0 +92.416 482 m 1xd0 + 212.416 482 l 1 + 212.416 -47 l 2 + 212.416 -109 207.416 -210 70.416 -260 c 1 + 53.416 -266 l 1 + 6.41602 -171 l 1 + 24.416 -162 l 2 + 89.416 -131 92.416 -81 92.416 -55 c 2 + 92.416 482 l 1xd0 +EndSplineSet +EndChar + +StartChar: x +Encoding: 120 120 24 +Width: 558 +VWidth: 1023 +Flags: W +HStem: 0 21G<28.8096 177.231 392.537 549.609> 462 20G<22.8096 179.741 407.891 558.209> +LayerCount: 3 +Fore +SplineSet +22.8096 482 m 1 + 164.81 482 l 1 + 296.209 306 l 1 + 422.209 482 l 1 + 558.209 482 l 1 + 364.409 237 l 1 + 549.609 0 l 1 + 407.609 0 l 1 + 282.51 166 l 1 + 162.81 0 l 1 + 28.8096 0 l 1 + 214.109 237 l 1 + 22.8096 482 l 1 +EndSplineSet +EndChar + +StartChar: z +Encoding: 122 122 25 +Width: 546 +VWidth: 1023 +Flags: W +HStem: 0 103<218.835 490.035> 379 103<52.0352 308.835> +LayerCount: 3 +Fore +SplineSet +52.0352 482 m 1 + 478.035 482 l 1 + 478.035 420 l 1 + 218.835 103 l 1 + 490.035 103 l 1 + 490.035 0 l 1 + 52.0352 0 l 1 + 52.0352 62 l 1 + 308.835 379 l 1 + 52.0352 379 l 1 + 52.0352 482 l 1 +EndSplineSet +EndChar + +StartChar: y +Encoding: 121 121 26 +Width: 559 +VWidth: 1023 +Flags: W +HStem: 462 20G<17.1074 162.843 420.801 554.807> +LayerCount: 3 +Back +SplineSet +24.4141 482.422 m 5 + 107.422 482.422 l 5 + 261.719 73.2422 l 5 + 405.273 482.422 l 5 + 488.281 482.422 l 5 + 209.961 -259.277 l 5 + 124.512 -259.277 l 5 + 223.633 -18.5547 l 5 + 24.4141 482.422 l 5 +EndSplineSet +Fore +SplineSet +17.1074 482 m 1 + 155.107 482 l 1 + 298.207 112 l 1 + 427.807 482 l 1 + 554.807 482 l 1 + 259.507 -259 l 1 + 125.107 -259 l 1 + 235.207 -4 l 1 + 17.1074 482 l 1 +EndSplineSet +EndChar + +StartChar: f +Encoding: 102 102 27 +Width: 459 +VWidth: 1023 +Flags: W +HStem: 0 21G<127.044 247.044> 379 103<47.0439 127.044 247.044 428.044> 591 107<272.764 449.778> +VStem: 127.044 120<0 379 482 567.089> +LayerCount: 3 +Back +SplineSet +323.318 630.762 m 4 + 210.623 630.762 216.771 541.855 216.797 528.32 c 6 + 216.882 482.422 l 5 + 378.418 482.422 l 5 + 378.418 419.434 l 5 + 216.998 419.434 l 5 + 217.773 0 l 5 + 136.719 0 l 5 + 135.947 419.434 l 5 + 65.918 419.434 l 5 + 65.918 482.422 l 5 + 135.832 482.422 l 5 + 135.742 531.25 l 6 + 135.74 532.319 135.738 533.389 135.738 534.458 c 4 + 135.738 562.729 136.691 596.313 154.57 627.739 c 4 + 180.199 672.788 231.644 697.729 296.711 697.729 c 4 + 339.584 697.729 383.08 687.705 412.598 678.711 c 5 + 400.391 619.141 l 5 + 385.474 623.262 354.147 630.762 323.318 630.762 c 4 +EndSplineSet +Fore +SplineSet +127.044 511 m 6 + 127.044 584 129.044 698 323.544 698 c 4 + 349.044 698 390.044 696 449.044 678 c 6 + 466.044 672 l 5 + 446.044 575 l 5 + 426.044 580 l 6 + 412.044 583 382.044 591 353.044 591 c 4 + 277.645 591 247.044 561 247.044 515 c 6 + 247.044 482 l 5 + 428.044 482 l 5 + 428.044 379 l 5 + 247.044 379 l 5 + 247.044 0 l 5 + 127.044 0 l 5 + 127.044 379 l 5 + 47.0439 379 l 5 + 47.0439 482 l 5 + 127.044 482 l 5 + 127.044 511 l 6 +EndSplineSet +EndChar + +StartChar: G +Encoding: 71 71 28 +Width: 755 +VWidth: 1023 +Flags: W +HStem: -10 114<324.64 534.136> 278 108<369.3 564.6> 586 113<317.604 537.267> +VStem: 50 124<247.869 448.158> 564.6 121<130.36 278> +LayerCount: 3 +Fore +SplineSet +685.6 101 m 1 + 659.6 73 580.6 -10 413.399 -10 c 0 + 164 -10 50 175 50 346 c 0 + 50 528 178.5 699 411.6 699 c 0 + 504.3 699 584.6 671 643.6 638 c 1 + 660.6 628 l 1 + 609.6 531 l 1 + 591.6 541 l 1 + 553.8 561 486.3 586 416.1 586 c 0 + 292.8 586 174 499 174 351 c 0 + 174 207 282.899 104 432.3 104 c 0 + 490.8 104 534 121 564.6 145 c 1 + 564.6 278 l 1 + 369.3 278 l 1 + 369.3 386 l 1 + 685.6 386 l 1 + 685.6 101 l 1 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 29 +Width: 739 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203 536.899 659.899> 301 114<203 536.899> 674 20G<80 203 536.899 659.899> +VStem: 80 123<0 301 415 694> 536.899 123<0 301 415 694> +LayerCount: 3 +Fore +SplineSet +536.899 694 m 1 + 659.899 694 l 1 + 659.899 0 l 1 + 536.899 0 l 1 + 536.899 301 l 1 + 203 301 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 415 l 1 + 536.899 415 l 1 + 536.899 694 l 1 +EndSplineSet +EndChar + +StartChar: g +Encoding: 103 103 30 +Width: 589 +VWidth: 1023 +Flags: W +HStem: -264 107<130.489 340.633> -10 106<231.992 400.981> 387 105<227.837 400.947> 462 20G<425.626 522.293> +VStem: 44.1934 125<161.09 328.324> 402.293 120<-92.3037 12 106.606 375.187> +LayerCount: 3 +Back +SplineSet +286.684 492.041 m 4xec + 313.293 492.041 352.924 487.618 419.733 453.651 c 5 + 430.176 482.422 l 5 + 486.328 482.422 l 5xdc + 486.328 -23.4375 l 6 + 486.328 -62.5078 491.895 -210.006 326.172 -254.395 c 4 + 300.925 -261.156 274.907 -264.252 248.799 -264.252 c 4 + 196.57 -264.252 144.227 -251.671 99.6094 -232.91 c 5 + 122.07 -174.805 l 5 + 163.115 -190.082 203.31 -197.343 238.229 -197.434 c 6 + 238.88 -197.434 l 6 + 286.901 -197.434 390.503 -182.414 404.046 -57.8594 c 4 + 406.107 -38.9043 406.254 -19.8086 406.254 -0.730469 c 6 + 406.25 23.25 l 5 + 372.193 5.11621 327.293 -9.56543 278.64 -9.56543 c 4 + 178.387 -9.56543 62.6016 55.1787 62.6016 239.893 c 4 + 62.6016 435.66 205.028 492.041 286.684 492.041 c 4xec +291.559 427.169 m 4xec + 200.986 427.169 140.604 356.376 140.604 248.859 c 4 + 140.604 143.656 193.689 56.3145 301.394 56.3145 c 4 + 343.336 56.3145 380.688 70.2812 406.25 83.9062 c 5 + 406.25 400.048 l 5 + 341.643 426.57 302.857 427.169 291.559 427.169 c 4xec +EndSplineSet +Fore +SplineSet +299.693 492 m 0xec + 319.493 492 359.093 491 425.293 461 c 1 + 432.293 482 l 1 + 522.293 482 l 1xdc + 522.293 -10 l 2 + 522.293 -124 472.293 -264 260.993 -264 c 0 + 215.993 -264 156.193 -255 94.1934 -231 c 1 + 76.1934 -224 l 1 + 112.193 -129 l 1 + 132.193 -136 l 1 + 162.193 -146 204.293 -157 249.293 -157 c 0 + 382.493 -157 402.293 -69 402.293 8 c 2 + 402.293 12 l 1 + 369.894 -1 332.993 -10 291.593 -10 c 0 + 179.093 -10 44.1934 56 44.1934 240 c 0 + 44.1934 431 203.394 492 299.693 492 c 0xec +304.193 387 m 0xec + 223.193 387 169.193 333 169.193 248 c 0 + 169.193 164 216.894 96 314.993 96 c 0 + 349.193 96 378.894 105 402.293 114 c 1 + 402.293 369 l 1 + 357.293 384 323.993 387 304.193 387 c 0xec +EndSplineSet +EndChar + +StartChar: O +Encoding: 79 79 31 +Width: 784 +VWidth: 1023 +Flags: W +HStem: -7 112<301.375 487.946> 588 113<295.621 481.674> +VStem: 50 126<241.41 466.352> 608 126<231.566 456.638> +LayerCount: 3 +Fore +SplineSet +392.899 701 m 0 + 583.699 701 734 568 734 354 c 0 + 734 139 587.3 -7 389.3 -7 c 0 + 220.1 -7 50 109 50 345 c 0 + 50 562 199.399 701 392.899 701 c 0 +388.399 588 m 0 + 285.8 588 176 518 176 355 c 0 + 176 201 273.199 105 395.6 105 c 0 + 496.399 105 608 176 608 346 c 0 + 608 518 490.1 588 388.399 588 c 0 +EndSplineSet +EndChar + +StartChar: A +Encoding: 65 65 32 +Width: 681 +VWidth: 1023 +Flags: W +HStem: 0 21G<20 147.615 526.486 661.2> 182 112<248 425.3> 674 20G<272.022 408.499> +LayerCount: 3 +Fore +SplineSet +279.5 694 m 1 + 401 694 l 1 + 661.2 0 l 1 + 534.2 0 l 1 + 464 182 l 1 + 209.3 182 l 1 + 140 0 l 1 + 20 0 l 1 + 279.5 694 l 1 +425.3 294 m 1 + 337.1 552 l 1 + 248 294 l 1 + 425.3 294 l 1 +EndSplineSet +EndChar + +StartChar: L +Encoding: 76 76 33 +Width: 570 +VWidth: 1023 +Flags: W +HStem: 0 113<203 530.899> 674 20G<80 203> +VStem: 80 123<113 694> +LayerCount: 3 +Fore +SplineSet +80 694 m 1 + 203 694 l 1 + 203 113 l 1 + 530.899 113 l 1 + 530.899 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 34 +Width: 581 +VWidth: 1023 +Flags: W +HStem: 0 113<203 541.699> 301 113<203 515.699> 581 113<203 541.699> +VStem: 80 123<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +80 0 m 1 + 80 694 l 1 + 541.699 694 l 1 + 541.699 581 l 1 + 203 581 l 1 + 203 414 l 1 + 515.699 414 l 1 + 515.699 301 l 1 + 203 301 l 1 + 203 113 l 1 + 541.699 113 l 1 + 541.699 0 l 1 + 80 0 l 1 +EndSplineSet +EndChar + +StartChar: F +Encoding: 70 70 35 +Width: 578 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203> 301 113<203 508.1> 581 113<203 538.1> +VStem: 80 123<0 301 414 581> +LayerCount: 3 +Fore +SplineSet +203 581 m 1 + 203 414 l 1 + 508.1 414 l 1 + 508.1 301 l 1 + 203 301 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 538.1 694 l 1 + 538.1 581 l 1 + 203 581 l 1 +EndSplineSet +EndChar + +StartChar: N +Encoding: 78 78 36 +Width: 766 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203 523.047 686> 674 20G<80 240.378 563 686> +VStem: 80 123<0 534> 563 123<161 694> +LayerCount: 3 +Fore +SplineSet +80 694 m 1 + 227.8 694 l 1 + 563 161 l 1 + 563 694 l 1 + 686 694 l 1 + 686 0 l 1 + 535.5 0 l 5 + 203 534 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +EndChar + +StartChar: V +Encoding: 86 86 37 +Width: 658 +VWidth: 1023 +Flags: W +HStem: 0 21G<255.902 416.101> 674 20G<10 155.743 509.875 648.699> +LayerCount: 3 +Fore +SplineSet +10 694 m 1 + 148.899 694 l 1 + 341.199 132 l 1 + 516.1 694 l 1 + 648.699 694 l 1 + 409.199 0 l 1 + 263.199 0 l 1 + 10 694 l 1 +EndSplineSet +EndChar + +StartChar: Z +Encoding: 90 90 38 +Width: 618 +VWidth: 1023 +Flags: W +HStem: 0 113<180.399 608.199> 581 113<24 416.199> +LayerCount: 3 +Fore +SplineSet +24 694 m 1 + 595.199 694 l 1 + 595.199 619 l 1 + 180.399 113 l 1 + 608.199 113 l 1 + 608.199 0 l 1 + 10 0 l 1 + 10 76 l 1 + 416.199 581 l 1 + 24 581 l 1 + 24 694 l 1 +EndSplineSet +EndChar + +StartChar: T +Encoding: 84 84 39 +Width: 619 +VWidth: 1023 +Flags: W +HStem: 0 21G<247.9 371.9> 581 113<10 247.9 371.9 609.801> +VStem: 247.9 124<0 581> +LayerCount: 3 +Fore +SplineSet +10 694 m 1 + 609.801 694 l 1 + 609.801 581 l 1 + 371.9 581 l 1 + 371.9 0 l 1 + 247.9 0 l 1 + 247.9 581 l 1 + 10 581 l 1 + 10 694 l 1 +EndSplineSet +EndChar + +StartChar: I +Encoding: 73 73 40 +Width: 283 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203> 674 20G<80 203> +VStem: 80 123<0 694> +LayerCount: 3 +Fore +SplineSet +80 694 m 1 + 203 694 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +EndChar + +StartChar: X +Encoding: 88 88 41 +Width: 694 +VWidth: 1023 +Flags: W +HStem: 0 21G<10 174.304 514.895 684.199> 674 20G<40 198.965 501.475 657.199> +LayerCount: 3 +Fore +SplineSet +514.699 694 m 1 + 657.199 694 l 1 + 424.699 363 l 1 + 684.199 0 l 1 + 528.199 0 l 1 + 344.6 276 l 1 + 161 0 l 1 + 10 0 l 1 + 272.6 362 l 1 + 40 694 l 1 + 185.3 694 l 1 + 352.699 449 l 1 + 514.699 694 l 1 +EndSplineSet +EndChar + +StartChar: Y +Encoding: 89 89 42 +Width: 652 +VWidth: 1023 +Flags: W +HStem: 0 21G<253.301 391.301> 674 20G<10 165.496 490.678 642.7> +VStem: 253.301 138<0 324> +LayerCount: 3 +Fore +SplineSet +10 694 m 1 + 152.5 694 l 1 + 327.301 425 l 1 + 503.801 694 l 1 + 642.7 694 l 1 + 391.301 324 l 1 + 391.301 0 l 1 + 253.301 0 l 1 + 253.301 324 l 1 + 10 694 l 1 +EndSplineSet +EndChar + +StartChar: K +Encoding: 75 75 43 +Width: 700 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203 484.014 660.8> 674 20G<80 203 469.513 643.8> +VStem: 80 123<0 336 376 694> +LayerCount: 3 +Fore +SplineSet +203 376 m 1 + 487.399 694 l 1 + 643.8 694 l 1 + 329 362 l 1 + 660.8 0 l 1 + 501.8 0 l 1 + 203 336 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 376 l 1 +EndSplineSet +EndChar + +StartChar: M +Encoding: 77 77 44 +Width: 858 +VWidth: 1023 +Flags: W +HStem: 0 21G<79.2002 202.2 655.62 778.62> 674 20G<79.2002 253.101 610.444 778.62> +VStem: 79.2002 123<0 519> 655.62 123<0 519> +LayerCount: 3 +Fore +SplineSet +79.2002 694 m 1 + 242.97 694 l 1 + 429.9 325 l 5 + 620.79 694 l 1 + 778.62 694 l 1 + 778.62 0 l 1 + 655.62 0 l 1 + 655.62 519 l 1 + 480.39 199 l 1 + 376.439 199 l 1 + 202.2 519 l 1 + 202.2 0 l 1 + 79.2002 0 l 1 + 79.2002 694 l 1 +EndSplineSet +EndChar + +StartChar: hyphen +Encoding: 45 45 45 +Width: 553 +VWidth: 1023 +Flags: W +HStem: 268 107<46.7998 506.8> +LayerCount: 3 +Fore +SplineSet +46.7998 375 m 1 + 506.8 375 l 1 + 506.8 268 l 1 + 46.7998 268 l 1 + 46.7998 375 l 1 +EndSplineSet +EndChar + +StartChar: J +Encoding: 74 74 46 +Width: 492 +VWidth: 1023 +Flags: W +HStem: -8 113<52.0469 231.065> 9 108<53.6959 139.007> 674 20G<289.092 412.092> +VStem: 289.092 123<163.703 694> +LayerCount: 3 +Fore +SplineSet +289.092 694 m 1xb0 + 412.092 694 l 1 + 412.092 250 l 2 + 412.092 141 384.092 -8 153.992 -8 c 0xb0 + 119.992 -8 85.9922 -4 52.9922 4 c 2 + 34.9922 9 l 1 + 54.9922 117 l 1x70 + 75.9922 112 l 2 + 96.9922 107 118.992 105 139.992 105 c 0 + 282.792 105 289.092 207 289.092 250 c 2 + 289.092 694 l 1xb0 +EndSplineSet +EndChar + +StartChar: R +Encoding: 82 82 47 +Width: 647 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203 470.751 643.8> 269 113<203 308.3> 581 113<203 421.023> +VStem: 80 123<0 269 382 581> 460.399 128<420.441 544.004> +LayerCount: 3 +Fore +SplineSet +588.399 495 m 0 + 588.399 410 549.399 324 438.8 290 c 1 + 643.8 0 l 1 + 483.8 0 l 1 + 308.3 269 l 1 + 203 269 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 357.8 694 l 2 + 433.399 694 588.399 681 588.399 495 c 0 +203 581 m 1 + 203 382 l 1 + 304.699 382 l 2 + 383 382 460.399 394 460.399 484 c 0 + 460.399 549 415.399 581 325.399 581 c 2 + 203 581 l 1 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 48 +Width: 730 +VWidth: 0 +Flags: W +HStem: 0 113<203 428.959> 581 113<203 432.047> +VStem: 80 123<113 581> 557.6 123<238.84 455.43> +LayerCount: 3 +Back +SplineSet +141.602 693.848 m 5 + 335.449 693.848 l 6 + 388.852 693.848 706.079 709.16 706.079 367.926 c 4 + 706.079 -20.4775 382.459 0 291.992 0 c 6 + 141.602 0 l 5 + 141.602 693.848 l 5 +224.609 620.605 m 5 + 224.609 73.2422 l 5 + 325.684 73.2422 l 6 + 438.754 73.2422 622.764 91.7266 622.764 351.336 c 4 + 622.764 466.555 570.088 620.605 359.375 620.605 c 6 + 224.609 620.605 l 5 +EndSplineSet +Fore +SplineSet +316.399 581 m 2 + 203 581 l 1 + 203 113 l 1 + 283.1 113 l 2 + 359.6 113 470.3 116 527 221 c 0 + 539.6 244 557.6 286 557.6 351 c 0 + 557.6 499 459.5 564 376.7 577 c 0 + 357.8 580 337.1 581 316.399 581 c 2 +313.7 694 m 2 + 600.6 694 680.6 520 680.6 367 c 0 + 680.6 226 624.6 61 431.6 15 c 1 + 372.2 0 311.899 0 253.399 0 c 2 + 80 0 l 1 + 80 694 l 1 + 313.7 694 l 2 +EndSplineSet +EndChar + +StartChar: P +Encoding: 80 80 49 +Width: 640 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203> 268 112<203 414.091> 581 113<203 419.946> +VStem: 80 123<0 270 383 581> 464.899 126<425.702 542.68> +LayerCount: 3 +Fore +SplineSet +80 694 m 1 + 316.399 694 l 2 + 406.399 694 590.899 690 590.899 499 c 0 + 590.899 288 407.3 268 257 268 c 0 + 238.1 268 221 269 203 270 c 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 +203 581 m 1 + 203 383 l 1 + 223.699 382 243.5 380 264.199 380 c 0 + 369.5 380 464.899 389 464.899 485 c 0 + 464.899 570 383 581 293.899 581 c 2 + 203 581 l 1 +EndSplineSet +EndChar + +StartChar: B +Encoding: 66 66 50 +Width: 669 +VWidth: 1023 +Flags: W +HStem: 0 113<203 438.236> 320 78<203 375.177> 590 104<203 398.33> +VStem: 80 123<113 314 398 590> 433.399 136<443.934 558.378> 496.399 123<157.174 266.575> +LayerCount: 3 +Fore +SplineSet +304.699 590 m 2xf8 + 203 590 l 1 + 203 398 l 1 + 304.699 400 433.399 400 433.399 503 c 0 + 433.399 538 416.3 590 304.699 590 c 2xf8 +311.899 320 m 0 + 301.1 320 289.399 318 203 314 c 1 + 203 113 l 1 + 301.1 113 l 2 + 360.5 113 496.399 115 496.399 212 c 0xf4 + 496.399 279 424.399 320 311.899 320 c 0 +80 694 m 1 + 329.899 694 l 2 + 532.399 694 569.399 576 569.399 517 c 0xf8 + 569.399 471 541.399 422 506.399 392 c 1 + 579.399 362 619.399 294 619.399 218 c 0 + 619.399 152 574.399 0 312.8 0 c 2 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +EndChar + +StartChar: U +Encoding: 85 85 51 +Width: 728 +VWidth: 1023 +Flags: W +HStem: -10 112<268.836 458.093> 674 20G<80 203 525.199 647.199> +VStem: 80 123<160.884 694> 525.199 123<163.255 694> +LayerCount: 3 +Back +SplineSet +141.602 693.848 m 5 + 224.609 693.848 l 5 + 224.609 244.141 l 6 + 224.609 198.398 227.598 155.326 261.23 117.188 c 4 + 276.926 99.3896 318.848 62.0117 405.273 62.0117 c 4 + 496.265 62.0117 561.855 103.221 580.083 176.818 c 4 + 585.513 198.742 585.938 221.554 585.938 244.141 c 6 + 585.938 693.848 l 5 + 668.945 693.848 l 5 + 668.945 302.734 l 6 + 668.945 280.773 669.727 258.656 669.727 236.623 c 4 + 669.727 156.677 661.968 -10.2539 405.273 -10.2539 c 4 + 203.904 -10.2539 161.146 97.8154 149.414 146.484 c 4 + 142.311 175.951 140.818 206.203 140.818 236.613 c 4 + 140.818 258.65 141.602 280.77 141.602 302.734 c 6 + 141.602 693.848 l 5 +EndSplineSet +Fore +SplineSet +364.1 -10 m 0 + 84 -10 80 160 80 237 c 0 + 80 239 80 241 80 243 c 2 + 80 694 l 1 + 203 694 l 1 + 203 254 l 2 + 203 212 206.6 177 234.5 147 c 0 + 246.199 134 284 102 364.1 102 c 0 + 446.899 102 503.6 135 518.899 195 c 0 + 523.399 213 525.199 233 525.199 254 c 2 + 525.199 694 l 1 + 647.199 694 l 1 + 647.199 250 648.199 295 648.199 250 c 0 + 648.199 166 636.199 -10 364.1 -10 c 0 +EndSplineSet +EndChar + +StartChar: Q +Encoding: 81 81 52 +Width: 779 +VWidth: 1023 +Flags: W +HStem: -7 112<307.637 498.918> 588 113<295.581 481.251> +VStem: 50 126<238.677 466.327> 606.199 128<217.347 456.017> +LayerCount: 3 +Fore +SplineSet +392.899 701 m 0 + 592.699 701 734.199 561 734.199 346 c 0 + 734.199 254 710.199 179 668.199 121 c 1 + 757.199 37 l 1 + 686.199 -36 l 1 + 590 53 l 1 + 527.899 8 456.8 -7 393.8 -7 c 0 + 206.6 -7 50 121 50 344 c 0 + 50 563 199.399 701 392.899 701 c 0 +385.699 588 m 0 + 287.6 588 176 520 176 353 c 0 + 176 190 282.199 105 402.8 105 c 0 + 448.699 105 484.699 118 507.199 131 c 1 + 360.5 263 l 1 + 437.899 338 l 1 + 579.199 206 l 1 + 597.199 240 606.199 282 606.199 335 c 0 + 606.199 537 473.899 588 385.699 588 c 0 +EndSplineSet +EndChar + +StartChar: W +Encoding: 87 87 53 +Width: 1077 +VWidth: 1023 +Flags: W +HStem: 0 21G<232.4 363.644 678.038 809.365> 674 20G<10 146.003 479.598 594.093 930.382 1067.7> +LayerCount: 3 +Fore +SplineSet +10 694 m 1 + 139.999 694 l 1 + 300 161 l 1 + 486.6 694 l 1 + 588.3 694 l 1 + 742.699 161 l 1 + 937.699 694 l 1 + 1067.7 694 l 1 + 801.699 0 l 1 + 683.699 0 l 1 + 533.399 531 l 1 + 357 0 l 1 + 238.999 0 l 1 + 10 694 l 1 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 54 +Width: 682 +VWidth: 1023 +Flags: W +HStem: -10 116<321.041 556.178> 585 114<312.582 547.523> +VStem: 50 124<248.993 445.898> +LayerCount: 3 +Fore +SplineSet +418.801 699 m 0 + 472.801 699 541.301 689 614.301 660 c 1 + 632.301 653 l 1 + 594.301 547 l 1 + 575.301 554 l 1 + 498 581 447.601 585 416.101 585 c 0 + 265.801 585 174 472 174 347 c 0 + 174 218 272.101 106 434.101 106 c 0 + 478.2 106 530.301 116 584.301 135 c 2 + 602.301 141 l 1 + 642.301 43 l 1 + 624.301 36 l 2 + 551.301 5 476.4 -10 412.5 -10 c 0 + 187.5 -10 50 149 50 346 c 0 + 50 546 193.801 699 418.801 699 c 0 +EndSplineSet +EndChar + +StartChar: S +Encoding: 83 83 55 +Width: 653 +VWidth: 1023 +Flags: W +HStem: -10 122<188.829 415.221> 558 113<466.099 541.492> 582 118<263.165 511.052> +VStem: 80 134<460.459 540.749> 461.7 132<150.841 238.8> +LayerCount: 3 +Fore +SplineSet +377.8 700 m 0xb8 + 450.7 700 519.899 683 558.899 671 c 2 + 578.899 666 l 1 + 538.899 552 l 1 + 519.899 558 l 1xd8 + 451.6 578 401.2 582 370.6 582 c 0 + 286.899 582 214 549 214 499 c 0 + 214 380 595.899 423 593.7 200 c 0 + 593.7 106 512.7 -10 299.7 -10 c 0 + 211.5 -10 145 13 78 39 c 1 + 60 45 l 1 + 102 164 l 1 + 121 156 l 1 + 210.6 123 271.8 112 309.6 112 c 0 + 399.6 112 461.7 146 461.7 196 c 0 + 465.1 328 80 272 80 493 c 0 + 80 606 199 700 377.8 700 c 0xb8 +EndSplineSet +EndChar + +StartChar: at +Encoding: 64 64 56 +Width: 992 +VWidth: 1023 +Flags: W +HStem: -229 110<366.19 590.004> -76 106<710.983 783.758> -30 103<434.277 584.433> 390 100<431.299 585.147> 584 119<387.001 659.525> +VStem: 48.96 122<86.8278 354.362> 253.96 115<139.488 323.618> 585.96 116<82.7344 382.024> 836.96 123<105.523 402.705> +LayerCount: 3 +Fore +SplineSet +603.96 468 m 1xbf80 + 612.96 493 l 1 + 701.96 493 l 1 + 701.96 123 l 2 + 701.96 62 707.96 30 744.96 30 c 0 + 770.96 30 836.96 70 836.96 249 c 0 + 836.96 431 772.96 584 517.96 584 c 0 + 237.96 584 170.96 360 170.96 214 c 0 + 170.96 -6 321.96 -119 477.96 -119 c 0 + 530.96 -119 574.96 -106 610.96 -88 c 1 + 628.96 -80 l 1 + 677.96 -173 l 1 + 659.96 -182 l 2 + 607.96 -209 542.96 -229 464.96 -229 c 0 + 329.96 -229 48.96 -165 48.96 197 c 0 + 48.96 429 151.96 703 538.96 703 c 0 + 896.96 703 959.96 464 959.96 259 c 0 + 959.96 -21 810.96 -76 734.96 -76 c 0xdf80 + 676.96 -76 629.96 -46 605.96 0 c 1 + 563.96 -21 519.96 -30 482.96 -30 c 0 + 352.96 -30 253.96 66 253.96 221 c 0 + 253.96 378 350.96 490 495.96 490 c 0 + 537.96 490 574.96 480 603.96 468 c 1xbf80 +506.96 390 m 0 + 426.96 390 368.96 335 368.96 232 c 0 + 368.96 127 429.96 73 508.96 73 c 0xbf80 + 531.96 73 558.96 78 585.96 91 c 1 + 585.96 375 l 1 + 564.96 383 536.96 390 506.96 390 c 0 +EndSplineSet +EndChar + +StartChar: question +Encoding: 63 63 57 +Width: 486 +VWidth: 1023 +Flags: W +HStem: 1 117<125.561 255.561> 612 110<75.9303 282.192> +VStem: 125.561 130<1 118> 132.561 123<171 269.925> 320.561 121<461.034 575.502> +LayerCount: 3 +Fore +SplineSet +125.561 118 m 1xe8 + 255.561 118 l 5 + 255.561 1 l 5 + 125.561 1 l 1 + 125.561 118 l 1xe8 +441.561 536 m 0 + 441.561 328 255.561 355 255.561 191 c 2 + 255.561 171 l 1 + 132.561 171 l 1 + 132.561 191 l 2xd8 + 132.561 407 320.561 401 320.561 522 c 0 + 320.561 556 300.561 612 186.561 612 c 0 + 149.561 612 101.561 601 75.5605 590 c 2 + 56.5605 583 l 1 + 16.5605 678 l 1 + 33.5605 687 l 2 + 85.5605 713 144.561 722 200.561 722 c 0 + 346.561 722 441.561 661 441.561 536 c 0 +EndSplineSet +EndChar + +StartChar: eight +Encoding: 56 56 58 +Width: 660 +VWidth: 1023 +Flags: HW +HStem: -10 114<232.886 423.294> 593 110<244.775 408.225> +VStem: 40 126.001<160.431 278.382> 79 128.001<471.105 558.631> 444 126<467.352 559.72> 482 127<156.571 277.446> +LayerCount: 3 +Fore +SplineSet +321 593 m 0xd8 + 253 593 207.001 554 207.001 516 c 0 + 207.001 459 290 434 348 418 c 1 + 414 455 444 478 444 511 c 0 + 444 566 386 593 321 593 c 0xd8 +482 214 m 0xe4 + 482 294 402 330 308 354 c 1 + 218.001 329 166.001 272 166.001 218 c 0 + 166.001 160 227.001 104 332 104 c 0 + 427 104 482 155 482 214 c 0xe4 +321 703 m 0 + 492 703 570 633 570 524 c 0xd8 + 570 469 540 428 489 388 c 1 + 572 343 609 278 609 208 c 0 + 609 100 514 -10 327 -10 c 0 + 162.001 -10 40 75 40 199 c 0xe4 + 40 272 88.001 342 159.001 385 c 1 + 93.001 430 79 491 79 526 c 0xd0 + 79 623 166.001 703 321 703 c 0 +EndSplineSet +EndChar + +StartChar: nine +Encoding: 57 57 59 +Width: 660 +VWidth: 1023 +Flags: HW +HStem: -7 112<115.813 339.617> 236 108<253.242 421.689> 595 109<253.933 408.999> +VStem: 60 121<405.369 525.662> 487 121<242.525 519.154> +LayerCount: 3 +Fore +SplineSet +343 704 m 0 + 456 704 608 654 608 404 c 0 + 608 84 414 -7 189 -7 c 0 + 166 -7 147 -6 126 -4 c 2 + 106 -2 l 1 + 116 110 l 1 + 136 108 l 2 + 153 106 169 105 187 105 c 0 + 395 105 445 187 465 272 c 1 + 419 247 366 236 316 236 c 0 + 164 236 60 330 60 458 c 0 + 60 591 172 704 343 704 c 0 +331 595 m 0 + 251 595 181 530 181 466 c 0 + 181 397 255 344 337 344 c 0 + 420 344 487 398 487 461 c 0 + 487 523 417 595 331 595 c 0 +EndSplineSet +EndChar + +StartChar: six +Encoding: 54 54 60 +Width: 660 +VWidth: 1023 +Flags: HW +HStem: -12 108<258.381 412.346> 367 108<244.187 417.006> 586 113<336.623 552> +VStem: 60 121<171.887 304.497> 487 120<166.829 305.096> +LayerCount: 3 +Fore +SplineSet +478 699 m 0 + 501 699 521 698 542 696 c 2 + 561 694 l 1 + 552 582 l 1 + 532 583 l 2 + 515 585 499 586 481 586 c 0 + 290 586 227 513 203 438 c 1 + 244 461 295 475 353 475 c 0 + 508 475 607 380 607 245 c 0 + 607 106 502 -12 326 -12 c 0 + 212 -12 60 36 60 285 c 0 + 60 608 253 699 478 699 c 0 +331 367 m 0 + 248 367 181 316 181 242 c 0 + 181 170 247 96 337 96 c 0 + 419 96 487 160 487 236 c 0 + 487 317 412 367 331 367 c 0 +EndSplineSet +EndChar + +StartChar: seven +Encoding: 55 55 61 +Width: 660 +VWidth: 0 +Flags: HW +HStem: 0 21G<124 276.981> 576 118<50 477> +LayerCount: 3 +Fore +SplineSet +40 694 m 5 + 627 694 l 5 + 627 621 l 5 + 255 0 l 5 + 114 0 l 5 + 467 576 l 5 + 40 576 l 5 + 40 694 l 5 +EndSplineSet +EndChar + +StartChar: five +Encoding: 53 53 62 +Width: 660 +VWidth: 1023 +Flags: HW +HStem: -10 115<79.8125 404.459> 12 113<82.5133 265.142> 343 115<220.574 404.521> 581 113<218.999 593> +VStem: 95 123.999<454 581> 488 128<166.877 279.804> +LayerCount: 3 +Fore +SplineSet +95 694 m 1xbc + 593 694 l 1 + 593 581 l 1 + 218.999 581 l 1 + 218.999 454 l 1 + 243.999 456 276 458 309 458 c 0 + 559 458 616 321 616 231 c 0 + 616 135 554 -10 275 -10 c 0xbc + 200.999 -10 136.999 -3 80 8 c 2 + 60 12 l 1 + 84 125 l 1x7c + 103.999 121 l 1 + 147.999 112 206.999 105 268 105 c 0 + 449 105 488 177 488 224 c 0 + 488 269 446 343 278 343 c 0 + 244.999 343 192.999 341 116.999 332 c 1 + 95 329 l 1 + 95 694 l 1xbc +EndSplineSet +EndChar + +StartChar: two +Encoding: 50 50 63 +Width: 660 +VWidth: 0 +Flags: HW +HStem: 0 113<238 603> 587 112<168.226 405.085> +VStem: 464 126<449.13 538.233> +LayerCount: 3 +Back +SplineSet +96.6797 644.043 m 5 + 155.896 673.452 233.834 698.75 313.556 698.75 c 4 + 453.259 698.75 540.112 617.007 540.112 520.049 c 4 + 540.112 345.451 290.514 308.498 210.875 73.2422 c 5 + 552.734 73.2422 l 5 + 552.734 0 l 5 + 109.863 0 l 5 + 109.863 45.4102 l 5 + 185.488 281.876 380.651 378.309 430.302 442.562 c 4 + 441.684 457.291 453.467 477.879 453.467 505.4 c 4 + 453.467 571.147 383.816 627.061 297.678 627.061 c 4 + 256.503 627.061 214.643 613.662 194.74 607.529 c 6 + 115.723 582.031 l 5 + 96.6797 644.043 l 5 +EndSplineSet +Fore +SplineSet +64 64 m 5 + 160 345 448 397 448 492 c 4 + 448 541 381 587 291 587 c 4 + 240 587 182 577 97 548 c 6 + 78 542 l 5 + 41 642 l 5 + 58 650 l 5 + 123 678 212 699 309 699 c 4 + 476 699 574 616 574 513 c 4 + 574 344 325 306 222 113 c 5 + 587 113 l 5 + 587 0 l 5 + 64 0 l 5 + 64 64 l 5 +EndSplineSet +EndChar + +StartChar: three +Encoding: 51 51 64 +Width: 660 +VWidth: 1023 +Flags: HW +HStem: -22 117<135.565 390.904> 314 111<209 371.798> 587 115<175.419 394.959> +VStem: 430 130<470.228 555.221> 465 125<154.173 256.482> +LayerCount: 3 +Fore +SplineSet +85 650 m 6xf0 + 131 673 214 702 309 702 c 4 + 459 702 560 629 560 527 c 4xf0 + 560 466 531 413 483 381 c 5 + 560 347 590 287 590 220 c 4 + 590 75 466 -22 275 -22 c 4 + 208 -22 139 -10 73 17 c 6 + 55 24 l 5 + 91 127 l 5 + 109 123 l 6 + 194 101 240 95 276 95 c 4 + 378 95 465 139 465 205 c 4xe8 + 465 248 426 314 232 314 c 6 + 209 314 l 5 + 209 425 l 5 + 232 425 l 6 + 391 425 430 479 430 514 c 4 + 430 556 378 587 297 587 c 4 + 262 587 203 580 130 548 c 5 + 111 540 l 5 + 69 642 l 5 + 85 650 l 6xf0 +EndSplineSet +EndChar + +StartChar: one +Encoding: 49 49 65 +Width: 660 +VWidth: 0 +Flags: HW +HStem: 0 113<76.7002 251.7 392.7 560.7> 674 20G<196.196 392.7> +VStem: 251.7 141<113 573> +LayerCount: 3 +Fore +SplineSet +265.7 694 m 5 + 405.7 694 l 5 + 405.7 113 l 5 + 573.7 113 l 5 + 573.7 0 l 5 + 89.7002 0 l 5 + 89.7002 113 l 5 + 264.7 113 l 5 + 264.7 573 l 5 + 133.3 529.5 l 5 + 86.2998 630.5 l 5 + 265.7 694 l 5 +EndSplineSet +EndChar + +StartChar: zero +Encoding: 48 48 66 +Width: 660 +VWidth: 1023 +Flags: HWO +HStem: -10 114<253.279 407.14> 588 115<251.172 408.419> +VStem: 26.5 123<227.02 470.272> 510.5 123<225.789 469.377> +LayerCount: 3 +Fore +SplineSet +329.5 588 m 0 + 257.5 588 149.5 535 149.5 355 c 0 + 149.5 159 257.5 104 330.5 104 c 0 + 402.5 104 510.5 159 510.5 352 c 0 + 510.5 535 402.5 588 329.5 588 c 0 +329.5 703 m 0 + 458.5 703 633.5 624 633.5 354 c 0 + 633.5 72 459.5 -10 330.5 -10 c 0 + 200.5 -10 26.5 74 26.5 355 c 0 + 26.5 624 201.5 703 329.5 703 c 0 +EndSplineSet +EndChar + +StartChar: four +Encoding: 52 52 67 +Width: 660 +VWidth: 0 +Flags: HW +HStem: 0 21G<396 516> 148 113<193.999 381 516 637> 674 20G<336.78 516> +VStem: 381 135<261 542> 396 120<0 148> +LayerCount: 3 +Fore +SplineSet +350 694 m 1xe8 + 516 694 l 1xe8 + 516 261 l 1xf0 + 637 261 l 1 + 637 148 l 1 + 516 148 l 1 + 516 0 l 1 + 396 0 l 1 + 396 148 l 1 + 40 148 l 1 + 40 225 l 1 + 350 694 l 1xe8 +381 261 m 1xf0 + 381 542 l 1 + 193.999 261 l 1 + 381 261 l 1xf0 +EndSplineSet +EndChar + +StartChar: period +Encoding: 46 46 68 +Width: 239 +VWidth: 1023 +Flags: W +HStem: -20 143<48.96 190.96> +VStem: 48.96 142<-20 123> +LayerCount: 3 +Fore +SplineSet +48.96 123 m 1 + 190.96 123 l 1 + 190.96 -20 l 1 + 48.96 -20 l 1 + 48.96 123 l 1 +EndSplineSet +EndChar + +StartChar: comma +Encoding: 44 44 69 +Width: 262 +VWidth: 1023 +Flags: W +HStem: -127 230<86.5195 124.52> +VStem: -6.48047 224 +LayerCount: 3 +Fore +SplineSet +86.5195 103 m 1 + 217.52 103 l 1 + 124.52 -127 l 1 + -6.48047 -127 l 1 + 86.5195 103 l 1 +EndSplineSet +EndChar + +StartChar: bracketleft +Encoding: 91 91 70 +Width: 364 +VWidth: 1023 +Flags: HMW +HStem: -220 113<199.999 344> 645 113<199.999 344> +VStem: 80 120<-107 645> +LayerCount: 3 +Fore +SplineSet +80 758 m 1 + 344 758 l 1 + 344 645 l 1 + 199.999 645 l 1 + 199.999 -107 l 1 + 344 -107 l 1 + 344 -220 l 1 + 80 -220 l 1 + 80 758 l 1 +EndSplineSet +EndChar + +StartChar: bracketright +Encoding: 93 93 71 +Width: 364 +VWidth: 1023 +Flags: HMW +HStem: -220 113<20 164> 645 113<20 164> +VStem: 164 120<-107 645> +LayerCount: 3 +Fore +SplineSet +20 758 m 1 + 284 758 l 1 + 284 -220 l 1 + 20 -220 l 1 + 20 -107 l 1 + 164 -107 l 1 + 164 645 l 1 + 20 645 l 1 + 20 758 l 1 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 72 +Width: 334 +VWidth: 1023 +Flags: W +VStem: 62.6396 126<111.171 449.732> +LayerCount: 3 +Fore +SplineSet +226.64 782 m 1 + 326.64 730 l 1 + 315.64 712 l 2 + 252.64 607 188.64 453 188.64 280 c 0 + 188.64 109 252.64 -44 315.64 -148 c 1 + 326.64 -165 l 1 + 229.64 -227 l 1 + 218.64 -209 l 2 + 152.64 -100 62.6396 85 62.6396 281 c 0 + 62.6396 475 151.64 657 217.64 766 c 2 + 226.64 782 l 1 +EndSplineSet +EndChar + +StartChar: parenright +Encoding: 41 41 73 +Width: 334 +VWidth: 1023 +Flags: W +VStem: 145.92 126<110.359 449.849> +LayerCount: 3 +Fore +SplineSet +271.92 281 m 0 + 271.92 83 179.92 -104 115.92 -209 c 2 + 104.92 -227 l 1 + 8.91992 -165 l 1 + 18.9199 -148 l 1 + 81.9199 -44 145.92 109 145.92 280 c 0 + 145.92 453 80.9199 608 18.9199 712 c 2 + 7.91992 730 l 1 + 107.92 782 l 1 + 117.92 766 l 2 + 183.92 657 271.92 475 271.92 281 c 0 +EndSplineSet +EndChar + +StartChar: slash +Encoding: 47 47 74 +Width: 361 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +249.239 714 m 1 + 375.239 714 l 1 + 119.239 -64 l 1 + -5.76074 -64 l 1 + 249.239 714 l 1 +EndSplineSet +EndChar + +StartChar: backslash +Encoding: 92 92 75 +Width: 361 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +-12.96 714 m 1 + 112.04 714 l 1 + 368.04 -64 l 1 + 242.04 -64 l 1 + -12.96 714 l 1 +EndSplineSet +EndChar + +StartChar: plus +Encoding: 43 43 76 +Width: 659 +VWidth: 1023 +Flags: W +HStem: 268 107<29.5195 274.52 386.52 631.52> +VStem: 274.52 112<21 268 375 622> +LayerCount: 3 +Fore +SplineSet +274.52 622 m 1 + 386.52 622 l 1 + 386.52 375 l 1 + 631.52 375 l 1 + 631.52 268 l 1 + 386.52 268 l 1 + 386.52 21 l 1 + 274.52 21 l 1 + 274.52 268 l 1 + 29.5195 268 l 1 + 29.5195 375 l 1 + 274.52 375 l 1 + 274.52 622 l 1 +EndSplineSet +EndChar + +StartChar: asterisk +Encoding: 42 42 77 +Width: 549 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +212.2 714 m 1 + 337.2 714 l 1 + 330.2 577 l 1 + 444.2 652 l 1 + 507.2 543 l 1 + 385.2 482 l 1 + 507.2 420 l 1 + 444.2 311 l 1 + 330.2 386 l 1 + 337.2 250 l 1 + 212.2 250 l 1 + 220.2 386 l 1 + 106.2 311 l 1 + 43.2002 420 l 1 + 166.2 482 l 1 + 43.2002 543 l 1 + 106.2 652 l 1 + 220.2 577 l 1 + 212.2 714 l 1 +EndSplineSet +EndChar + +StartChar: numbersign +Encoding: 35 35 78 +Width: 682 +VWidth: 1023 +Flags: W +HStem: 165 113<2.43945 156.439 274.439 409.439 527.439 682.439> 410 113<1.43945 156.439 274.439 409.439 527.439 682.439> +VStem: 156.439 118<-35 165 278 410 523 714> 409.439 118<-35 165 278 410 523 714> +LayerCount: 3 +Fore +SplineSet +156.439 714 m 1 + 274.439 714 l 1 + 274.439 523 l 1 + 409.439 523 l 1 + 409.439 714 l 1 + 527.439 714 l 1 + 527.439 523 l 1 + 682.439 523 l 1 + 682.439 410 l 1 + 527.439 410 l 1 + 527.439 278 l 1 + 682.439 278 l 1 + 682.439 165 l 1 + 527.439 165 l 1 + 527.439 -35 l 1 + 409.439 -35 l 1 + 409.439 165 l 1 + 274.439 165 l 1 + 274.439 -35 l 1 + 156.439 -35 l 1 + 156.439 165 l 1 + 2.43945 165 l 1 + 2.43945 278 l 1 + 156.439 278 l 1 + 156.439 410 l 1 + 1.43945 410 l 1 + 1.43945 523 l 1 + 156.439 523 l 1 + 156.439 714 l 1 +274.439 410 m 1 + 274.439 278 l 1 + 409.439 278 l 1 + 409.439 410 l 1 + 274.439 410 l 1 +EndSplineSet +EndChar + +StartChar: dollar +Encoding: 36 36 79 +Width: 607 +VWidth: 1023 +Flags: W +HStem: 104 97<160.639 253.92 374.92 392.83> 503 95<377.476 487.515> 520 97<374.92 484.639> +VStem: 96.9199 127<452.027 500.582> 253.92 121<-32 104 617 738> 409.92 129<219.386 278.766> +LayerCount: 3 +Fore +SplineSet +223.92 473 m 0xbc + 223.92 412 538.92 422 538.92 265 c 0 + 538.92 209 506.92 131 374.92 109 c 1 + 374.92 -32 l 1 + 253.92 -32 l 1 + 253.92 104 l 1 + 207.92 106 155.92 117 97.9199 139 c 2 + 79.9199 146 l 1 + 115.92 239 l 1 + 135.92 232 l 1 + 196.92 208 230.92 201 278.92 201 c 0 + 377.92 201 409.92 220 409.92 256 c 1 + 404.92 319 96.9199 297 96.9199 463 c 0 + 96.9199 513 131.92 584 253.92 608 c 1 + 253.92 738 l 1 + 374.92 738 l 1 + 374.92 617 l 1xbc + 429.92 616 454.92 610 497.92 598 c 2 + 517.92 592 l 1 + 484.92 499 l 1 + 466.92 503 l 1xdc + 434.92 511 399.92 520 342.92 520 c 0 + 257.92 520 223.92 493 223.92 473 c 0xbc +EndSplineSet +EndChar + +StartChar: semicolon +Encoding: 59 59 80 +Width: 262 +VWidth: 1023 +Flags: W +HStem: 362 143<70.5195 212.52> +VStem: 70.5195 142<362 505> +LayerCount: 3 +Fore +SplineSet +86.5195 103 m 1 + 217.52 103 l 1 + 124.52 -127 l 1 + -6.48047 -127 l 1 + 86.5195 103 l 1 +70.5195 505 m 1 + 212.52 505 l 1 + 212.52 362 l 1 + 70.5195 362 l 1 + 70.5195 505 l 1 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 81 +Width: 239 +VWidth: 1023 +Flags: W +HStem: -20 143<48.96 190.96> 362 143<48.96 190.96> +VStem: 48.96 142<-20 123 362 505> +LayerCount: 3 +Fore +SplineSet +48.96 123 m 1 + 190.96 123 l 1 + 190.96 -20 l 1 + 48.96 -20 l 1 + 48.96 123 l 1 +48.96 505 m 1 + 190.96 505 l 1 + 190.96 362 l 1 + 48.96 362 l 1 + 48.96 505 l 1 +EndSplineSet +EndChar + +StartChar: equal +Encoding: 61 61 82 +Width: 634 +VWidth: 1023 +Flags: W +HStem: 151 114<62.6396 571.64> 373 113<62.6396 571.64> +LayerCount: 3 +Fore +SplineSet +62.6396 265 m 1 + 571.64 265 l 1 + 571.64 151 l 1 + 62.6396 151 l 1 + 62.6396 265 l 1 +62.6396 486 m 1 + 571.64 486 l 1 + 571.64 373 l 1 + 62.6396 373 l 1 + 62.6396 486 l 1 +EndSplineSet +EndChar + +StartChar: quotedbl +Encoding: 34 34 83 +Width: 368 +VWidth: 1023 +Flags: W +HStem: 509 249<24.4805 154.48 214.48 344.48> +VStem: 24.4805 130<509 758> 214.48 130<509 758> +LayerCount: 3 +Fore +SplineSet +214.48 758 m 1 + 344.48 758 l 1 + 344.48 509 l 1 + 214.48 509 l 1 + 214.48 758 l 1 +24.4805 758 m 1 + 154.48 758 l 1 + 154.48 509 l 1 + 24.4805 509 l 1 + 24.4805 758 l 1 +EndSplineSet +EndChar + +StartChar: quotesingle +Encoding: 39 39 84 +Width: 177 +VWidth: 1023 +Flags: W +HStem: 509 249<24.4805 154.48> +VStem: 24.4805 130<509 758> +LayerCount: 3 +Fore +SplineSet +24.4805 758 m 1 + 154.48 758 l 1 + 154.48 509 l 1 + 24.4805 509 l 1 + 24.4805 758 l 1 +EndSplineSet +EndChar + +StartChar: underscore +Encoding: 95 95 85 +Width: 535 +VWidth: 1023 +Flags: W +HStem: -20 113<38.1602 498.16> +LayerCount: 3 +Fore +SplineSet +38.1602 93 m 1 + 498.16 93 l 1 + 498.16 -20 l 1 + 38.1602 -20 l 1 + 38.1602 93 l 1 +EndSplineSet +EndChar + +StartChar: percent +Encoding: 37 37 86 +Width: 712 +VWidth: 1023 +Flags: W +HStem: 0 21G<30.2393 177.772> 12 86<506.065 581.105> 237 87<505.225 581.84> 374 85<153.531 226.456> 599 87<150.817 228.375> 674 20G<553.706 701.239> +VStem: 54.2393 88<468.603 590.916> 237.239 97<468.845 590.485> 399.239 96<107.006 228.543> 591.239 87<107.239 230.27> +LayerCount: 3 +Fore +SplineSet +189.239 599 m 0x3bc0 + 151.239 599 142.239 567 142.239 534 c 0 + 142.239 497 150.239 459 189.239 459 c 0 + 227.239 459 237.239 495 237.239 532 c 0 + 237.239 593 209.239 599 189.239 599 c 0x3bc0 +189.239 686 m 0 + 249.239 686 334.239 657 334.239 533 c 0 + 334.239 434 271.239 374 189.239 374 c 0 + 121.239 374 54.2393 413 54.2393 534 c 0 + 54.2393 636 119.239 686 189.239 686 c 0 +543.239 237 m 0 + 505.239 237 495.239 205 495.239 172 c 0 + 495.239 135 504.239 98 543.239 98 c 0x73c0 + 581.239 98 591.239 133 591.239 170 c 0 + 591.239 231 563.239 237 543.239 237 c 0 +543.239 324 m 0 + 603.239 324 678.239 293 678.239 171 c 0 + 678.239 72 621.239 12 543.239 12 c 0 + 472.239 12 399.239 51 399.239 172 c 0 + 399.239 274 470.239 324 543.239 324 c 0 +569.239 694 m 1xb7c0 + 701.239 694 l 1 + 162.239 0 l 1 + 30.2393 0 l 1 + 569.239 694 l 1xb7c0 +EndSplineSet +EndChar + +StartChar: braceright +Encoding: 125 125 87 +Width: 393 +VWidth: 1023 +Flags: W +HStem: -223 102<36.1284 81.3581> 655 103<35.8759 84.0895> +LayerCount: 3 +Fore +SplineSet +251.256 529 m 4 + 253.256 502 255.256 475 258.256 450 c 4 + 269.256 366 313.256 329 360.256 321 c 5 + 376.256 319 l 5 + 376.256 217 l 5 + 360.256 215 l 6 + 343.256 212 326.256 205 312.256 195 c 4 + 250.256 150 258.256 69 251.256 1 c 4 + 232.256 -186 100.256 -218 54.2559 -221 c 5 + 37.2559 -223 l 5 + 14.2559 -121 l 5 + 36.2559 -118 l 6 + 69.2559 -114 96.2559 -93 112.256 -69 c 4 + 166.256 14 108.256 174 219.256 268 c 5 + 109.256 362 167.256 521 112.256 605 c 4 + 96.2559 629 69.2559 651 36.2559 655 c 6 + 14.2559 658 l 5 + 37.2559 759 l 5 + 54.2559 758 l 6 + 108.256 754 233.256 718 251.256 529 c 4 +EndSplineSet +EndChar + +StartChar: asciitilde +Encoding: 126 126 88 +Width: 583 +VWidth: 1023 +Flags: W +HStem: 284 99<338.29 385.131> 373 99<197.663 244.953> +VStem: 90 93<294.022 366.81> 397 92<386.755 462.472> +LayerCount: 3 +Fore +SplineSet +368 383 m 0xb0 + 386 383 391 422 397 457 c 2 + 400 476 l 1 + 493 462 l 1 + 489 441 l 1 + 478 386 468 284 371 284 c 1xb0 + 281 288 241 373 215 373 c 0 + 197 373 192 335 186 302 c 2 + 183 282 l 1 + 90 295 l 1 + 94 316 l 2 + 105 371 115 472 212 472 c 1x70 + 302 468 343 383 368 383 c 0xb0 +EndSplineSet +EndChar + +StartChar: grave +Encoding: 96 96 89 +Width: 487 +VWidth: 1023 +Flags: W +HStem: 543 259 +LayerCount: 3 +Fore +SplineSet +132.32 802 m 1 + 412.32 630 l 1 + 361.32 543 l 1 + 76.3203 707 l 1 + 132.32 802 l 1 +EndSplineSet +EndChar + +StartChar: asciicircum +Encoding: 94 94 90 +Width: 608 +VWidth: 1023 +Flags: W +HStem: 541 241 +VStem: 135.36 319 +LayerCount: 3 +Fore +SplineSet +301.36 782 m 1 + 454.36 612 l 1 + 380.36 541 l 1 + 295.36 636 l 1 + 208.36 542 l 1 + 135.36 607 l 1 + 301.36 782 l 1 +EndSplineSet +EndChar + +StartChar: ampersand +Encoding: 38 38 91 +Width: 750 +VWidth: 1023 +Flags: W +HStem: -43 112<204.935 347.801> 613 110<255.896 372.047> +VStem: 48.96 121<105.02 222.545> 107.96 122<496.391 586.779> 387.96 121<513.122 597.716> +LayerCount: 3 +Fore +SplineSet +508.96 574 m 0xd8 + 508.96 486 429.96 426 365.96 375 c 1 + 505.96 225 l 1 + 663.96 397 l 1 + 736.96 323 l 1 + 579.96 147 l 1 + 736.96 -20 l 1 + 582.96 -20 l 1 + 495.96 70 l 1 + 443.96 21 366.96 -43 242.96 -43 c 0 + 119.96 -43 48.96 37 48.96 138 c 0xe8 + 48.96 261 145.96 339 196.96 378 c 1 + 152.96 423 107.96 475 107.96 548 c 0 + 107.96 653 206.96 723 325.96 723 c 0 + 435.96 723 508.96 659 508.96 574 c 0xd8 +317.96 613 m 0 + 267.96 613 229.96 579 229.96 544 c 0xd8 + 229.96 512 256.96 489 292.96 452 c 1 + 352.96 498 387.96 522 387.96 558 c 0 + 387.96 584 362.96 613 317.96 613 c 0 +272.96 301 m 1 + 217.96 258 169.96 218 169.96 160 c 0xe8 + 169.96 111 211.96 69 270.96 69 c 0 + 331.96 69 381.96 109 420.96 146 c 1 + 272.96 301 l 1 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 92 +Width: 506 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +486.88 583 m 1 + 486.88 463 l 1 + 170.88 304 l 1 + 486.88 152 l 1 + 486.88 27 l 1 + 20.8799 248 l 1 + 20.8799 354 l 1 + 486.88 583 l 1 +EndSplineSet +EndChar + +StartChar: greater +Encoding: 62 62 93 +Width: 506 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +20.8799 583 m 1 + 486.88 354 l 1 + 486.88 248 l 1 + 20.8799 27 l 1 + 20.8799 152 l 1 + 336.88 304 l 1 + 20.8799 463 l 1 + 20.8799 583 l 1 +EndSplineSet +EndChar + +StartChar: braceleft +Encoding: 123 123 94 +Width: 393 +VWidth: 1023 +Flags: W +HStem: 655 103<311.508 359.448> +LayerCount: 3 +Back +SplineSet +43.9453 302.246 m 5 + 99.6973 311.622 150.392 354.225 162.771 447.896 c 4 + 166.273 474.408 166.975 501.206 169.434 527.832 c 4 + 186.06 707.827 304.289 734.995 347.656 738.281 c 5 + 362.305 675.293 l 5 + 325.494 670.21 291.863 647.773 271.484 616.699 c 4 + 208.237 520.254 278.531 353.778 147.328 268.599 c 5 + 278.488 183.775 209.525 16.2109 271.484 -79.1016 c 4 + 291.751 -110.277 325.446 -132.784 362.305 -137.695 c 5 + 347.656 -200.684 l 5 + 309.929 -197.559 187.201 -172.471 169.434 3.41797 c 4 + 162.809 68.998 170.144 160.436 99.7871 211.615 c 4 + 83.3301 223.586 64.04 231.648 43.9453 234.863 c 5 + 43.9453 302.246 l 5 + Spiro + 43.9453 302.246 v + 96.731 323.325 o + 138.886 370.648 o + 162.771 447.897 o + 165.506 474.46 o + 167.394 501.191 o + 169.434 527.832 o + 213.327 661.567 o + 285.945 722.29 o + 347.656 738.281 v + 362.305 675.293 v + 326.96 664.766 o + 295.879 644.546 o + 271.484 616.699 o + 240.354 502.642 o + 223.74 375.15 o + 147.328 268.599 v + 224.007 162.059 o + 240.917 34.4282 o + 271.484 -79.1016 o + 295.819 -107.033 o + 326.915 -127.265 o + 362.305 -137.695 v + 347.656 -200.684 v + 288.704 -185.498 o + 215.085 -126.886 o + 169.434 3.41797 o + 164.075 75.0933 o + 147.612 149.536 o + 99.7871 211.615 o + 82.479 222.239 o + 63.6772 230.074 o + 43.9453 234.863 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +138.008 450 m 0 + 141.008 475 142.008 502 144.008 529 c 0 + 162.008 719 288.008 754 341.008 758 c 2 + 358.008 759 l 1 + 382.008 658 l 1 + 360.008 655 l 2 + 327.008 651 299.008 629 283.008 605 c 0 + 228.008 521 286.008 362 176.008 268 c 1 + 287.008 174 229.008 14 283.008 -69 c 0 + 299.008 -93 327.008 -114 360.008 -118 c 2 + 382.008 -121 l 1 + 358.008 -223 l 1 + 341.008 -221 l 1 + 295.008 -218 163.008 -186 144.008 1 c 0 + 137.008 69 145.008 150 83.0078 195 c 0 + 69.0078 205 53.0078 212 36.0078 215 c 2 + 19.0078 217 l 1 + 19.0078 319 l 1 + 36.0078 321 l 1 + 83.0078 329 127.008 366 138.008 450 c 0 +EndSplineSet +EndChar + +StartChar: sterling +Encoding: 163 163 95 +Width: 634 +VWidth: 1023 +Flags: W +HStem: -20 106<54 173 293 581> 303 106<87 173 293 552> 612 107<351.313 540.627> +VStem: 173 120<86 303 409 550.617> +LayerCount: 3 +Fore +SplineSet +173 86 m 1 + 173 303 l 1 + 87 303 l 1 + 87 409 l 1 + 173 409 l 1 + 173 458 l 2 + 173 662 310 719 431 719 c 0 + 473 719 514 711 551 699 c 2 + 572 693 l 1 + 534 597 l 1 + 517 601 l 2 + 493 607 466 612 441 612 c 0 + 317 612 293 537 293 445 c 2 + 293 409 l 1 + 552 409 l 1 + 552 303 l 1 + 293 303 l 1 + 293 86 l 1 + 581 86 l 1 + 581 -20 l 1 + 54 -20 l 1 + 54 86 l 1 + 173 86 l 1 +EndSplineSet +EndChar + +StartChar: exclamdown +Encoding: 161 161 96 +Width: 317 +VWidth: 1023 +Flags: W +HStem: 344 138<90 228> +VStem: 90 138<344 482> 97 123<-261 258> +LayerCount: 3 +Fore +SplineSet +97 258 m 1xa0 + 220 258 l 1 + 220 -261 l 5 + 97 -261 l 5 + 97 258 l 1xa0 +90 482 m 1xc0 + 228 482 l 1 + 228 344 l 1 + 90 344 l 1 + 90 482 l 1xc0 +EndSplineSet +EndChar + +StartChar: cent +Encoding: 162 162 97 +Width: 498 +VWidth: 1023 +Flags: W +HStem: -52 248<247.318 342.836> 93 103<344 429.703> 518 240<245.697 342.469> +VStem: 53 118<267.528 458.675> 245 99<-52 95 622.117 758> +LayerCount: 3 +Fore +SplineSet +245 620 m 1xb8 + 245 758 l 1 + 344 758 l 1 + 344 625 l 1 + 386 621 425 607 450 596 c 2 + 467 589 l 1 + 436 494 l 1 + 417 500 l 2 + 385 511 351 518 317 518 c 0 + 218 518 171 462 171 365 c 0 + 171 224 258 196 327 196 c 0xb8 + 355 196 384 201 411 211 c 1 + 430 217 l 1 + 462 125 l 1 + 444 118 l 2 + 413 106 379 96 344 93 c 1x78 + 344 -52 l 1 + 245 -52 l 1 + 245 95 l 1 + 139 114 53 191 53 348 c 0 + 53 491 121 594 245 620 c 1xb8 +EndSplineSet +EndChar + +StartChar: currency +Encoding: 164 164 98 +Width: 634 +Flags: W +HStem: 173 109<265.012 369.521> 442 109<264.249 370.211> +VStem: 128 112<306.46 417.519> 395 111<307.299 417.076> +LayerCount: 3 +Fore +SplineSet +398 532 m 1 + 483 617 l 1 + 572 527 l 1 + 487 443 l 1 + 501 415 506 386 506 362 c 0 + 506 334 500 306 488 281 c 1 + 572 197 l 1 + 482 108 l 1 + 398 192 l 1 + 373 180 345 173 317 173 c 0 + 293 173 264 177 236 191 c 1 + 152 107 l 1 + 62 196 l 1 + 147 281 l 1 + 133 309 128 338 128 362 c 0 + 128 390 135 418 147 443 c 1 + 62 528 l 1 + 151 618 l 1 + 237 532 l 1 + 265 546 293 551 317 551 c 0 + 345 551 373 544 398 532 c 1 +317 442 m 0 + 275 442 240 407 240 362 c 0 + 240 318 274 282 317 282 c 0 + 359 282 395 318 395 362 c 0 + 395 407 359 442 317 442 c 0 +EndSplineSet +EndChar + +StartChar: yen +Encoding: 165 165 99 +Width: 634 +VWidth: 1023 +Flags: W +HStem: 102 101<121 255 373 514> 260 101<121 237 392 514> +VStem: 255 118<-20 102 203 260> +LayerCount: 3 +Fore +SplineSet +35 714 m 1 + 172 714 l 1 + 318 441 l 1 + 468 714 l 1 + 600 714 l 1 + 392 361 l 1 + 514 361 l 1 + 514 260 l 1 + 373 260 l 1 + 373 203 l 1 + 514 203 l 1 + 514 102 l 1 + 373 102 l 1 + 373 -20 l 1 + 255 -20 l 1 + 255 102 l 1 + 121 102 l 1 + 121 203 l 1 + 255 203 l 1 + 255 260 l 1 + 121 260 l 1 + 121 361 l 1 + 237 361 l 1 + 35 714 l 1 +EndSplineSet +EndChar + +StartChar: brokenbar +Encoding: 166 166 100 +Width: 431 +VWidth: 1023 +Flags: W +VStem: 156 120<-170 245 389 802> +LayerCount: 3 +Fore +SplineSet +156 245 m 1 + 276 245 l 1 + 276 -170 l 1 + 156 -170 l 1 + 156 245 l 1 +156 802 m 1 + 276 802 l 1 + 276 389 l 1 + 156 389 l 1 + 156 802 l 1 +EndSplineSet +EndChar + +StartChar: section +Encoding: 167 167 101 +Width: 554 +VWidth: 1023 +Flags: W +HStem: -30 103<129.884 342.726> 596 102<321.163 443.526> 614 106<220.438 445.229> +VStem: 75 128<347.836 401.536 530.276 594.691> 364 132<94.6852 171.04 294.79 354.978> +LayerCount: 3 +Fore +SplineSet +456 698 m 2xd8 + 476 693 l 1 + 441 590 l 1 + 422 596 l 2xd8 + 388 607 345 614 306 614 c 0 + 245 614 203 593 203 561 c 0 + 203 485 496 498 496 333 c 0 + 496 303 488 266 463 233 c 1 + 494 199 496 164 496 149 c 0 + 496 77 448 -30 256 -30 c 2 + 250 -30 l 2 + 213 -30 152 -29 71 3 c 1 + 53 11 l 1 + 89 108 l 1 + 107 102 l 1 + 162 82 212 73 249 73 c 0 + 335 73 364 100 364 140 c 0 + 364 219 75 187 75 367 c 0 + 75 394 85 429 110 460 c 1 + 86 485 75 516 75 550 c 0 + 75 618 132 720 318 720 c 0xb8 + 386 720 420 708 456 698 c 2xd8 +212 402 m 1 + 203 391 203 380 203 376 c 0 + 203 337 283 320 356 294 c 1 + 360 300 364 310 364 323 c 0 + 364 365 286 377 212 402 c 1 +EndSplineSet +EndChar + +StartChar: copyright +Encoding: 169 169 102 +Width: 859 +VWidth: 1023 +Flags: W +HStem: -27 105<327.703 532.18> 136 87<385.027 540.828> 445 90<379.383 541.799> 589 105<327.172 532.18> +VStem: 63 105<235.367 430.043> 253 97<259.834 412.916> 691 105<235.544 430.573> +LayerCount: 3 +Fore +SplineSet +549 512 m 2 + 565 505 l 1 + 538 426 l 1 + 519 433 l 1 + 496 441 473 445 449 445 c 0 + 370 445 350 395 350 339 c 0 + 350 279 371 223 455 223 c 0 + 475 223 496 227 516 234 c 2 + 534 240 l 1 + 562 163 l 1 + 544 156 l 2 + 510 143 474 136 437 136 c 0 + 354 136 253 180 253 329 c 0 + 253 484 354 535 442 535 c 0 + 479 535 516 527 549 512 c 2 +430 589 m 0 + 283 589 168 471 168 333 c 0 + 168 195 283 78 430 78 c 0 + 577 78 691 195 691 333 c 0 + 691 471 577 589 430 589 c 0 +796 333 m 0 + 796 139 636 -27 430 -27 c 0 + 224 -27 63 138 63 333 c 0 + 63 524 221 694 430 694 c 0 + 636 694 796 527 796 333 c 0 +EndSplineSet +EndChar + +StartChar: guillemotleft +Encoding: 171 171 103 +Width: 526 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +381 502 m 5 + 521 502 l 5 + 373 304 l 5 + 521 106 l 5 + 381 106 l 5 + 242 304 l 5 + 381 502 l 5 +151 502 m 5 + 292 502 l 5 + 143 304 l 5 + 292 106 l 5 + 151 106 l 5 + 12 304 l 5 + 151 502 l 5 +EndSplineSet +EndChar + +StartChar: guillemotright +Encoding: 187 187 104 +Width: 526 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +5 502 m 1 + 146 502 l 1 + 284 304 l 1 + 146 106 l 1 + 5 106 l 1 + 154 304 l 1 + 5 502 l 1 +235 502 m 1 + 375 502 l 1 + 514 304 l 1 + 375 106 l 1 + 235 106 l 1 + 384 304 l 1 + 235 502 l 1 +EndSplineSet +EndChar + +StartChar: registered +Encoding: 174 174 105 +Width: 601 +VWidth: 1023 +Flags: W +HStem: 244 79<213.581 388.109> 468 62<266 301> 593 64<266 343.936> 696 78<214.575 387.539> +VStem: 32 78<425.221 593.686> 196 70<367 468 530 593> 348 68<533.522 590.02> 491 79<423.235 593.466> +LayerCount: 3 +Fore +SplineSet +301 593 m 2 + 266 593 l 1 + 266 530 l 1 + 291 530 283 530 298 530 c 0 + 335 530 348 539 348 560 c 0 + 348 586 333 593 301 593 c 2 +317 657 m 2 + 396 657 416 608 416 565 c 0 + 416 537 407 500 369 481 c 1 + 426 369 l 1 + 467 404 491 454 491 509 c 0 + 491 609 408 696 301 696 c 0 + 195 696 110 610 110 509 c 0 + 110 409 194 323 301 323 c 0 + 348 323 390 340 423 367 c 1 + 350 367 l 1 + 301 468 l 1 + 266 468 l 1 + 266 367 l 1 + 196 367 l 1 + 196 657 l 1 + 317 657 l 2 +570 509 m 0 + 570 362 448 244 301 244 c 0 + 150 244 32 365 32 509 c 0 + 32 656 154 774 301 774 c 0 + 448 774 570 656 570 509 c 0 +EndSplineSet +EndChar + +StartChar: paragraph +Encoding: 182 182 106 +Width: 647 +VWidth: 1023 +Flags: W +HStem: 645 113<377 455> +VStem: 43 334<442.125 639.808> 257 120<-20 317.537> 455 120<-20 645> +LayerCount: 3 +Fore +SplineSet +293 758 m 6xd0 + 575 758 l 5 + 575 -20 l 5 + 455 -20 l 5 + 455 645 l 5 + 377 645 l 5 + 377 -20 l 5 + 257 -20 l 5 + 257 315 l 5xb0 + 166 322 43 376 43 553 c 4 + 43 753 216 758 293 758 c 6xd0 +EndSplineSet +EndChar + +StartChar: periodcentered +Encoding: 183 183 107 +Width: 288 +VWidth: 1023 +Flags: W +HStem: 287 142<73 215> +VStem: 73 142<287 429> +LayerCount: 3 +Fore +SplineSet +73 429 m 1 + 215 429 l 1 + 215 287 l 1 + 73 287 l 1 + 73 429 l 1 +EndSplineSet +EndChar + +StartChar: questiondown +Encoding: 191 191 108 +Width: 511 +VWidth: 1023 +Flags: W +HStem: -275 109<193.764 376.019> +VStem: 37 120<-129.162 -12.852> 222 123<188.532 250> +LayerCount: 3 +Fore +SplineSet +345 270 m 1 + 222 270 l 1 + 222 250 l 2 + 222 148 37 54 37 -68 c 0 + 37 -189 163 -275 258 -275 c 0 + 332 -275 385 -258 444 -230 c 1 + 461 -222 l 1 + 421 -126 l 1 + 403 -134 l 2 + 335 -162 297 -166 271 -166 c 0 + 194 -166 157 -121 157 -76 c 0 + 157 38 345 88 345 250 c 6 + 345 270 l 1 +353 482 m 1 + 215 482 l 1 + 215 344 l 1 + 353 344 l 1 + 353 482 l 1 +EndSplineSet +EndChar + +StartChar: uni00B5 +Encoding: 181 181 109 +Width: 579 +VWidth: 1023 +Flags: W +HStem: -33 108<229.011 373.305> +VStem: 73 120<-220 -12 113.894 502> 392 120<95.2864 502> +LayerCount: 3 +Fore +SplineSet +73 502 m 1 + 193 502 l 1 + 193 210 l 2 + 193 122 224 75 292 75 c 0 + 313 75 338 79 392 105 c 1 + 392 502 l 1 + 512 502 l 1 + 512 -20 l 1 + 422 -20 l 1 + 412 4 l 1 + 374 -17 325 -33 278 -33 c 0 + 251 -33 221 -27 193 -12 c 1 + 193 -220 l 1 + 73 -220 l 1 + 73 502 l 1 +EndSplineSet +EndChar + +StartChar: uni00AD +Encoding: 173 173 110 +Width: 524 +VWidth: 1023 +Flags: W +HStem: 268 107<87 437> +LayerCount: 3 +Fore +SplineSet +87 375 m 1 + 437 375 l 1 + 437 268 l 1 + 87 268 l 1 + 87 375 l 1 +EndSplineSet +EndChar + +StartChar: plusminus +Encoding: 177 177 111 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 53 107<87 596> 406 107<87 286 397 596> +VStem: 286 111<205 406 513 714> +LayerCount: 3 +Fore +SplineSet +87 160 m 1 + 596 160 l 1 + 596 53 l 1 + 87 53 l 1 + 87 160 l 1 +286 714 m 1 + 397 714 l 1 + 397 513 l 1 + 596 513 l 1 + 596 406 l 1 + 397 406 l 1 + 397 205 l 1 + 286 205 l 1 + 286 406 l 1 + 87 406 l 1 + 87 513 l 1 + 286 513 l 1 + 286 714 l 1 +EndSplineSet +EndChar + +StartChar: ae +Encoding: 230 230 112 +Width: 897 +VWidth: 0 +Flags: W +HStem: -10 104<204.753 348.71 569.156 770.973> 193 100<503 716> 213 78<207.809 368> 369 87<117.241 161.377> 382 109<547.31 683.332> 393 98<127.287 335.847> +VStem: 60 120<117.62 188.684> +LayerCount: 3 +Fore +SplineSet +180 154 m 0xa2 + 180 124 223 94 274 94 c 0 + 311 94 344 108 368 129 c 1 + 368 213 l 1 + 196 211 180 182 180 154 c 0xa2 +621 382 m 0xca + 554 382 511 341 503 293 c 1 + 716 293 l 1 + 712 335 691 382 621 382 c 0xca +104 462 m 2 + 168 484 236 491 282 491 c 0x86 + 372 491 424 457 452 420 c 1 + 499 462 565 491 636 491 c 0 + 809 491 833 338 833 213 c 2xaa + 833 193 l 1 + 500 193 l 1xc2 + 511 137 578 95 668 95 c 0 + 706 95 746 105 767 111 c 2 + 787 118 l 1 + 809 25 l 1 + 792 19 l 1 + 735 -2 676 -10 635 -10 c 0 + 565 -10 493 9 441 54 c 1 + 395 10 331 -10 257 -10 c 0 + 153 -10 60 51 60 138 c 0 + 60 214 127 274 260 286 c 0 + 293 289 338 291 368 291 c 1 + 368 295 l 2 + 368 343 346 393 260 393 c 0xa6 + 235 393 201 390 136 374 c 1 + 118 369 l 1 + 85 456 l 1x92 + 104 462 l 2 +EndSplineSet +EndChar + +StartChar: germandbls +Encoding: 223 223 113 +Width: 694 +VWidth: 1023 +Flags: W +HStem: -13 105<274.863 502.228> 0 21G<98 218> 11 95<272.022 396.271> 586 112<253.948 376.134> +VStem: 98 120<0 551.348> 406 133<482.518 557.383> 511 125<103.034 174.888> +LayerCount: 3 +Fore +SplineSet +324 698 m 0x5c + 469 698 539 598 539 518 c 0x5c + 539 405 396 382 396 341 c 0 + 396 280 636 309 636 136 c 0 + 636 77 595 -13 444 -13 c 0x9a + 399 -13 333 -6 266 11 c 1 + 244 17 l 1 + 273 110 l 1 + 294 106 l 1x3a + 342 98 388 92 425 92 c 0 + 492 92 511 110 511 141 c 0x9a + 511 230 258 186 258 341 c 0 + 258 447 406 461 406 513 c 0 + 406 557 356 586 314 586 c 0 + 293 586 218 577 218 479 c 2 + 218 0 l 1 + 98 0 l 1 + 98 479 l 2 + 98 635 210 698 324 698 c 0x5c +EndSplineSet +EndChar + +StartChar: multiply +Encoding: 215 215 114 +Width: 714 +VWidth: 1023 +Flags: W +LayerCount: 3 +Fore +SplineSet +169 81 m 1 + 89 160 l 1 + 270 319 l 1 + 93 474 l 1 + 172 554 l 1 + 369 392 l 1 + 562 551 l 1 + 641 471 l 1 + 461 312 l 1 + 638 157 l 1 + 558 77 l 1 + 361 239 l 1 + 169 81 l 1 +EndSplineSet +EndChar + +StartChar: divide +Encoding: 247 247 115 +Width: 763 +VWidth: 1023 +Flags: W +HStem: 41 135<307 457> 267 108<61 703> 467 135<307 457> +VStem: 307 150<41 176 467 602> +LayerCount: 3 +Fore +SplineSet +307 602 m 1 + 457 602 l 1 + 457 467 l 1 + 307 467 l 1 + 307 602 l 1 +307 176 m 1 + 457 176 l 1 + 457 41 l 1 + 307 41 l 1 + 307 176 l 1 +61 375 m 1 + 703 375 l 1 + 703 267 l 1 + 61 267 l 1 + 61 375 l 1 +EndSplineSet +EndChar + +StartChar: oslash +Encoding: 248 248 116 +Width: 671 +VWidth: 1023 +Flags: W +HStem: -10 109<269.382 424.541> 383 109<248.337 417.206> +VStem: 63 119<169.036 320.588> 490 118<163.739 298.564> +LayerCount: 3 +Back +SplineSet +576.172 494.141 m 1 + 633.301 442.871 l 1 + 577.637 389.648 l 1 + 602.539 352.051 616.211 305.176 616.211 250.488 c 0 + 616.211 89.8438 506.348 -9.76562 338.379 -9.76562 c 0 + 271.973 -9.76562 211.914 7.32422 165.527 40.0391 c 1 + 110.84 -15.625 l 1 + 53.7109 35.6445 l 1 + 112.305 91.3086 l 1 + 85.9375 130.371 71.7773 179.199 71.7773 235.84 c 0 + 71.7773 392.578 177.734 491.699 347.168 491.699 c 0 + 414.551 491.699 477.051 474.609 524.414 440.918 c 1 + 576.172 494.141 l 1 +339.355 383.301 m 0 + 268.066 383.301 192.383 333.008 192.383 229.492 c 0 + 192.383 201.66 197.266 175.781 207.031 152.832 c 1 + 429.688 354.492 l 1 + 402.344 374.023 370.605 383.301 339.355 383.301 c 0 +496.094 254.883 m 0 + 496.094 283.203 490.723 307.617 482.422 328.125 c 1 + 259.277 126.465 l 1 + 283.691 108.887 313.965 98.6328 348.145 98.6328 c 0 + 429.688 98.6328 496.094 158.691 496.094 254.883 c 0 +EndSplineSet +Fore +SplineSet +578 498 m 1 + 630 440 l 1 + 570 386 l 1 + 594 349 608 304 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 269 -10 215 3 173 28 c 1 + 112 -27 l 1 + 60 31 l 1 + 114 80 l 1 + 82 120 63 173 63 236 c 0 + 63 393 169 492 339 492 c 0 + 409 492 470 475 516 442 c 1 + 578 498 l 1 +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 218 190 188 207 164 c 1 + 423 358 l 1 + 396 375 362 383 331 383 c 0 +476 300 m 1 + 268 113 l 1 + 289 104 313 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 261 485 281 476 300 c 1 +EndSplineSet +EndChar + +StartChar: uni00A0 +Encoding: 160 160 117 +Width: 273 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: OE +Encoding: 338 338 118 +Width: 1055 +VWidth: 1023 +Flags: W +HStem: 0 113<359.359 532 664 978> 301 113<664 951> 581 113<367.966 532 664 978> +VStem: 105 123<240.326 452.151> 532 132<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +532 113 m 1 + 532 581 l 1 + 524 581 l 2 + 491 581 459 580 429 576 c 0 + 301 558 228 473 228 343 c 0 + 228 215 306 156 362 133 c 0 + 406 114 444 113 488 113 c 2 + 532 113 l 1 +196 597 m 1 + 296 691 442 694 560 694 c 2 + 978 694 l 1 + 978 581 l 1 + 664 581 l 1 + 664 414 l 1 + 951 414 l 1 + 951 301 l 1 + 664 301 l 1 + 664 113 l 1 + 978 113 l 1 + 978 0 l 1 + 513 0 l 2 + 443 0 369 2 300 28 c 0 + 183 73 105 176 105 343 c 0 + 105 495 167 568 196 597 c 1 +EndSplineSet +EndChar + +StartChar: oe +Encoding: 339 339 119 +Width: 960 +VWidth: 0 +Flags: W +HStem: -11 95<631.247 838.072> -10 108<244.22 391.444> 17 82<772.669 851.571> 179 100<568 780> 381 108<238.185 382.212> 397 90<617.415 743.654> +VStem: 63 119<163.558 323.154> 443 454<179.12 277.817> 780 117<279 358.826> +LayerCount: 3 +Fore +SplineSet +443 232 m 0x5b + 443 340 372 381 311 381 c 0 + 234 381 182 324 182 245 c 0 + 182 164 236 98 319 98 c 0 + 384 98 443 141 443 232 c 0x5b +682 397 m 0x1680 + 612 397 575 341 568 279 c 1 + 780 279 l 1 + 776 369 737 397 682 397 c 0x1680 +700 487 m 0 + 886 487 897 337 897 232 c 2x17 + 897 179 l 1 + 567 179 l 1 + 578 135 629 84 731 84 c 0x9680 + 752 84 784 87 830 99 c 2 + 851 104 l 1 + 873 22 l 1 + 856 17 l 1x3280 + 815 2 761 -11 697 -11 c 0x9280 + 594 -11 533 25 498 65 c 1 + 452 17 387 -10 310 -10 c 0 + 160 -10 63 86 63 237 c 0 + 63 391 163 489 319 489 c 0x5a80 + 403 489 470 459 512 408 c 1 + 575 478 660 487 700 487 c 0 +EndSplineSet +EndChar + +StartChar: AE +Encoding: 198 198 120 +Width: 1015 +VWidth: 1023 +Flags: W +HStem: 0 113<632 946> 182 112<316 501> 301 113<632 919> 581 113<442 501 632 946> +VStem: 501 131<113 182 294 301 414 581> +LayerCount: 3 +Fore +SplineSet +442 581 m 1 + 316 294 l 1 + 501 294 l 1 + 501 581 l 1 + 442 581 l 1 +361 694 m 1 + 946 694 l 1 + 946 581 l 1 + 632 581 l 1 + 632 414 l 1 + 919 414 l 1 + 919 301 l 1 + 632 301 l 1 + 632 113 l 1 + 946 113 l 1 + 946 0 l 1 + 501 0 l 1 + 501 182 l 1 + 269 182 l 1 + 186 0 l 1 + 63 0 l 1 + 361 694 l 1 +EndSplineSet +EndChar + +StartChar: onequarter +Encoding: 188 188 121 +Width: 878 +VWidth: 0 +Flags: W +HStem: 83 78<595 679 768 820> +VStem: 144 89<290 614> 679 89<-12 83 161 293> +LayerCount: 3 +Fore +SplineSet +569 706 m 1 + 683 706 l 1 + 268 -12 l 1 + 154 -12 l 1 + 569 706 l 1 +165 706 m 1 + 233 706 l 1 + 233 290 l 1 + 144 290 l 1 + 144 614 l 1 + 79 596 l 1 + 59 677 l 1 + 165 706 l 1 +673 420 m 1 + 768 420 l 1 + 768 161 l 1 + 820 161 l 1 + 820 83 l 1 + 768 83 l 1 + 768 -12 l 1 + 679 -12 l 1 + 679 83 l 1 + 488 83 l 1 + 488 143 l 1 + 673 420 l 1 +679 293 m 1 + 595 161 l 1 + 679 161 l 1 + 679 293 l 1 +EndSplineSet +EndChar + +StartChar: onehalf +Encoding: 189 189 122 +Width: 926 +VWidth: 0 +Flags: W +HStem: -12 81<683 860> 343 80<616.758 755.283> +VStem: 144 89<285 614> 766 94<262.221 330.377> +LayerCount: 3 +Back +SplineSet +166.504 693.848 m 5 + 221.191 693.848 l 5 + 221.191 296.875 l 5 + 156.25 296.875 l 5 + 156.25 630.371 l 5xf6 + 87.8906 611.328 l 5 + 73.2422 668.457 l 5 + 166.504 693.848 l 5 +102.231 676.24 m 1 + 131.785 690.703 173.225 707.788 220.553 707.788 c 0 + 290.296 707.788 343.551 666.689 343.551 609.497 c 0xf960 + 343.551 573.247 325.658 541.89 297.709 523.999 c 1 + 343.764 504.99 360.201 468.377 360.201 430.64 c 0 + 360.201 348.383 293.219 294.238 204.465 293.677 c 1 + 203.365 293.677 l 2 + 159.999 293.677 125.272 305.244 94.9502 317.561 c 1 + 112.834 368.977 l 1 + 161.192 355.638 182.089 352.222 204.977 352.222 c 0 + 254.713 352.222 297.896 379.722 297.896 420.972 c 0xf8e0 + 297.896 448.256 276.305 489.185 189.938 489.185 c 2 + 176.51 489.185 l 1 + 176.51 544.302 l 1 + 266.223 546.646 281.783 578.906 281.783 601.978 c 0 + 281.783 626.479 257.955 650.317 214.645 650.317 c 0xf960 + 176.07 650.317 140.941 633.618 123.422 625.537 c 1 + 102.231 676.24 l 1 +EndSplineSet +Fore +SplineSet +569 706 m 1 + 683 706 l 1 + 268 -12 l 1 + 154 -12 l 1 + 569 706 l 1 +165 706 m 1 + 233 706 l 1 + 233 285 l 1 + 144 285 l 1 + 144 614 l 1 + 79 596 l 1 + 59 677 l 1 + 165 706 l 1 +577 37 m 5 + 627 199 766 251 766 297 c 4 + 766 318 741 343 700 343 c 4 + 681 343 659 338 605 317 c 6 + 594 313 l 5 + 564 383 l 5 + 575 389 l 5 + 607 404 652 423 709 423 c 4 + 789 423 854 376 854 305 c 4 + 854 204 735 171 683 69 c 5 + 860 69 l 5 + 860 -12 l 5 + 577 -12 l 5 + 577 37 l 5 +EndSplineSet +EndChar + +StartChar: threequarters +Encoding: 190 190 123 +Width: 952 +VWidth: 0 +Flags: W +HStem: 83 78<668 752 841 894> 281 83<101.374 267.655> 477 80<164 260.25> 638 82<134.362 264.974> +VStem: 270 85<570.658 630.488> 286 87<383.205 460.073> 752 89<-12 83 161 293> +LayerCount: 3 +Fore +SplineSet +647 706 m 1xf2 + 761 706 l 1 + 346 -12 l 1 + 232 -12 l 1 + 647 706 l 1xf2 +746 420 m 1 + 841 420 l 1 + 841 161 l 1 + 894 161 l 1 + 894 83 l 1 + 841 83 l 1 + 841 -12 l 1 + 752 -12 l 1 + 752 83 l 1 + 562 83 l 1 + 562 143 l 1 + 746 420 l 1 +752 293 m 1 + 668 161 l 1 + 752 161 l 1 + 752 293 l 1 +221 720 m 0 + 296 720 355 674 355 609 c 0xfa + 355 576 341 547 320 526 c 1 + 357 504 373 468 373 431 c 0 + 373 341 299 281 203 281 c 0 + 158 281 122 293 90 306 c 2 + 80 311 l 1 + 105 384 l 1 + 116 381 l 1 + 164 368 184 364 205 364 c 0 + 247 364 286 387 286 421 c 0xf6 + 286 458 254 477 176 477 c 2 + 164 477 l 1 + 164 557 l 1 + 176 557 l 2 + 219 557 270 566 270 602 c 0xfa + 270 618 254 638 215 638 c 0 + 180 638 149 623 129 614 c 2 + 117 609 l 1 + 86 682 l 1 + 97 687 l 2 + 128 702 171 720 221 720 c 0 +EndSplineSet +EndChar + +StartChar: degree +Encoding: 176 176 124 +Width: 287 +Flags: W +HStem: 473 85<108.425 179.026> 648 84<108.373 178.974> +VStem: 17 84<563.935 641.833> 186 85<564.207 642.019> +LayerCount: 3 +Fore +SplineSet +144 648 m 0 + 119 648 101 627 101 603 c 0 + 101 579 118 558 144 558 c 0 + 167 558 186 579 186 603 c 0 + 186 627 168 648 144 648 c 0 +271 603 m 0 + 271 531 214 473 144 473 c 0 + 75 473 17 531 17 603 c 0 + 17 674 74 732 144 732 c 0 + 213 732 271 675 271 603 c 0 +EndSplineSet +EndChar + +StartChar: ccedilla +Encoding: 231 231 125 +Width: 568 +VWidth: 1023 +Flags: W +HStem: -243 86<221.982 364.73> -212 83<194.639 258.316> 379 109<251.904 479.066> +VStem: 63 125<161.956 318.773> 367 93<-154.931 -121.255> +LayerCount: 3 +Back +SplineSet +331.543 -163.574 m 0 + 331.543 -127.93 291.016 -122.07 219.727 -100.098 c 1 + 244.629 -6.83594 l 1 + 155.762 6.83594 63.4766 65.4297 63.4766 229.98 c 0 + 63.4766 427.246 185.547 491.211 297.363 491.211 c 0 + 343.75 491.211 390.137 480.957 432.617 462.402 c 1 + 413.086 403.809 l 1 + 378.906 415.527 343.262 422.363 307.129 422.363 c 0 + 228.027 422.363 141.113 387.207 141.113 247.07 c 0 + 141.113 94.2383 231.445 56.1523 315.918 56.1523 c 0 + 347.168 56.1523 378.418 62.0117 407.715 72.2656 c 1 + 427.246 17.0898 l 1 + 383.301 0 341.309 -7.32422 306.152 -9.27734 c 1 + 290.527 -70.8008 l 1 + 312.988 -77.6367 380.371 -91.8633 380.371 -158.27 c 0 + 380.371 -200.262 345.703 -247.625 280.762 -247.625 c 0 + 244.629 -247.625 195.801 -230.535 169.434 -222.723 c 1 + 182.129 -178.289 l 1 + 240.723 -195.867 262.695 -201.238 282.715 -201.238 c 0 + 313.965 -201.238 331.543 -183.105 331.543 -163.574 c 0 +EndSplineSet +Fore +SplineSet +333 -157 m 0xb8 + 355 -157 367 -148 367 -139 c 0 + 367 -121 330 -116 251 -95 c 1 + 229 -89 l 1 + 256 -5 l 1 + 152 15 63 77 63 228 c 0 + 63 424 209 488 350 488 c 0 + 407 488 455 478 500 458 c 2 + 518 450 l 1 + 486 355 l 1 + 467 361 l 2 + 435 372 401 379 362 379 c 0 + 275 379 188 352 188 243 c 0 + 188 135 262 93 372 93 c 0 + 405 93 434 98 461 108 c 1 + 480 114 l 1 + 513 22 l 1 + 495 15 l 2 + 454 -1 415 -9 377 -12 c 1 + 371 -33 l 1 + 407 -43 460 -68 460 -134 c 0 + 460 -187 417 -243 331 -243 c 0xb8 + 288 -243 242 -230 192 -217 c 1 + 169 -212 l 1 + 197 -129 l 1x78 + 220 -135 l 2 + 287 -152 312 -157 331 -157 c 0 + 333 -157 l 0xb8 +EndSplineSet +EndChar + +StartChar: cedilla +Encoding: 184 184 126 +Width: 537 +VWidth: 0 +Flags: W +HStem: -263 87<207.57 330.536> -231 83<185.976 235.225> +VStem: 331 88<-175.47 -138.27> +LayerCount: 3 +Fore +SplineSet +302 -176 m 0xa0 + 325 -176 331 -165 331 -158 c 0 + 331 -140 300 -135 233 -114 c 1 + 214 -109 l 1 + 252 31 l 1 + 355 31 l 1 + 334 -52 l 1 + 365 -62 419 -87 419 -153 c 0 + 419 -206 376 -263 300 -263 c 0xa0 + 263 -263 225 -250 183 -237 c 1 + 164 -231 l 1 + 188 -148 l 1x60 + 207 -154 l 2 + 258 -170 285 -176 302 -176 c 0xa0 +EndSplineSet +EndChar + +StartChar: Ccedilla +Encoding: 199 199 127 +Width: 788 +VWidth: 0 +Flags: W +HStem: -247 92<379.231 507.192> -215 90<347.744 406.141> -10 116<527 677.968> 585 114<414.412 669.04> +VStem: 134 127<253.335 439.507> +LayerCount: 3 +Back +SplineSet +535.928 -154.191 m 0 + 535.928 -201.617 496.196 -246.98 432.426 -246.98 c 0 + 406.274 -246.98 389.642 -242.516 333.252 -225.931 c 2 + 316.65 -221.048 l 1 + 331.299 -170.267 l 1 + 345.947 -174.661 l 2 + 398.936 -190.279 418.01 -194.707 436.025 -194.707 c 0 + 465.219 -194.707 481.023 -178.023 481.023 -160.225 c 0 + 481.023 -129.678 441.952 -120.596 433.35 -118.021 c 2 + 366.455 -98.001 l 1 + 393.057 -1.03516 l 1 + 230.14 34.7666 134.277 176.499 134.277 346.191 c 0 + 134.277 545.898 267.578 698.73 481.445 698.73 c 0 + 533.203 698.73 599.609 689.453 669.922 661.621 c 1 + 644.531 592.773 l 1 + 565.43 620.117 512.207 625.488 479.004 625.488 c 0 + 317.383 625.488 217.285 491.699 217.285 346.68 c 0 + 217.285 194.824 325.195 66.4062 497.07 66.4062 c 0 + 543.945 66.4062 598.145 75.6836 653.809 95.7031 c 1 + 679.199 34.1797 l 1 + 608.887 3.90625 537.109 -9.76562 476.074 -9.76562 c 0 + 471.426 -9.76562 466.816 -9.68945 462.248 -9.53906 c 1 + 448.006 -65.875 l 1 + 457.831 -68.8223 535.928 -83.5371 535.928 -154.191 c 0 +EndSplineSet +Fore +SplineSet +480 -155 m 0xb8 + 504 -155 508 -145 508 -140 c 0 + 508 -125 470 -116 397 -97 c 2 + 376 -92 l 1 + 406 4 l 1 + 229 46 134 185 134 347 c 0 + 134 547 283 699 531 699 c 0 + 591 699 664 689 737 660 c 1 + 755 653 l 1 + 717 547 l 1 + 698 554 l 2 + 618 581 562 585 528 585 c 0 + 363 585 261 472 261 347 c 0 + 261 218 370 106 548 106 c 0 + 597 106 653 116 707 135 c 2 + 725 141 l 1 + 765 43 l 1 + 747 36 l 2 + 675 5 596 -10 527 -10 c 1 + 521 -32 l 1 + 554 -42 613 -68 613 -134 c 0 + 613 -193 559 -247 477 -247 c 0xb8 + 450 -247 440 -246 342 -220 c 1 + 321 -215 l 1 + 350 -125 l 1x78 + 371 -131 l 2 + 420 -145 457 -155 480 -155 c 0xb8 +EndSplineSet +EndChar + +StartChar: dieresis +Encoding: 168 168 128 +Width: 585 +VWidth: 0 +Flags: W +HStem: 583 131<118 249 337 468> +VStem: 118 131<583 714> 337 131<583 714> +LayerCount: 3 +Fore +SplineSet +118 714 m 1 + 249 714 l 1 + 249 583 l 1 + 118 583 l 1 + 118 714 l 1 +337 714 m 1 + 468 714 l 1 + 468 583 l 1 + 337 583 l 1 + 337 714 l 1 +EndSplineSet +EndChar + +StartChar: Adieresis +Encoding: 196 196 129 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 674 20G<330.075 480.925> 796 130<214 358 455 599> +VStem: 214 144<796 926> 455 144<796 926> +LayerCount: 3 +Fore +SplineSet +338 694 m 1 + 473 694 l 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 338 694 l 1 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +214 926 m 1 + 358 926 l 1 + 358 796 l 1 + 214 796 l 1 + 214 926 l 1 +455 926 m 1 + 599 926 l 1 + 599 796 l 1 + 455 796 l 1 + 455 926 l 1 +EndSplineSet +EndChar + +StartChar: Edieresis +Encoding: 203 203 130 +Width: 706 +VWidth: 1023 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> 796 131<190 332 438 580> +VStem: 142 123<113 301 414 581> 190 142<796 927> 438 142<796 927> +LayerCount: 3 +Fore +SplineSet +142 694 m 1xfa + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 + 142 694 l 1xfa +190 927 m 1xf6 + 332 927 l 1 + 332 796 l 1 + 190 796 l 1 + 190 927 l 1xf6 +438 927 m 1 + 580 927 l 1 + 580 796 l 1 + 438 796 l 1 + 438 927 l 1 +EndSplineSet +EndChar + +StartChar: Idieresis +Encoding: 207 207 131 +Width: 367 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265> 674 20G<142 265> 760 131<43 173 233 363> +VStem: 43 130<760 891> 142 123<0 694> 233 130<760 891> +LayerCount: 3 +Fore +SplineSet +142 694 m 1xe8 + 265 694 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1xe8 +43 891 m 1xf0 + 173 891 l 1 + 173 760 l 1 + 43 760 l 1 + 43 891 l 1xf0 +233 891 m 1xe4 + 363 891 l 1 + 363 760 l 1 + 233 760 l 1 + 233 891 l 1xe4 +EndSplineSet +EndChar + +StartChar: Odieresis +Encoding: 214 214 132 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.076> 796 131<286 428 525 667> +VStem: 105 126<248.908 459.514> 286 142<796 927> 525 142<796 927> 711 126<238.736 449.155> +LayerCount: 3 +Fore +SplineSet +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +711 346 m 0 + 711 517 581 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +286 927 m 1 + 428 927 l 1 + 428 796 l 1 + 286 796 l 1 + 286 927 l 1 +525 927 m 1 + 667 927 l 1 + 667 796 l 1 + 525 796 l 1 + 525 927 l 1 +EndSplineSet +EndChar + +StartChar: Udieresis +Encoding: 220 220 133 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<333.479 555.722> 674 20G<142 265 626 749> 796 131<250 396 495 640> +VStem: 142 123<167.592 694> 250 146<796 927> 495 145<796 927> 626 123<167.162 694> +LayerCount: 3 +Fore +SplineSet +142 694 m 1xf2 + 265 694 l 1 + 265 254 l 2 + 265 179 290 102 445 102 c 0 + 590 102 626 169 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 242 l 2 + 749 170 746 -10 441 -10 c 0 + 144 -10 142 171 142 242 c 2 + 142 694 l 1xf2 +250 927 m 1xe8 + 396 927 l 1 + 396 796 l 1 + 250 796 l 1 + 250 927 l 1xe8 +495 927 m 1xe4 + 640 927 l 1 + 640 796 l 1 + 495 796 l 1 + 495 927 l 1xe4 +EndSplineSet +EndChar + +StartChar: adieresis +Encoding: 228 228 134 +Width: 564 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 563 131<93 241 350 483> +VStem: 93 148<563 694> 350 133<563 694> +LayerCount: 3 +Fore +SplineSet +350 694 m 1 + 483 694 l 1 + 483 563 l 1 + 350 563 l 1 + 350 694 l 1 +93 694 m 1 + 241 694 l 1 + 241 563 l 1 + 93 563 l 1 + 93 694 l 1 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: edieresis +Encoding: 235 235 135 +Width: 564 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 563 131<104 252 357 494> +VStem: 104 148<563 694> 357 137<563 694> +LayerCount: 3 +Fore +SplineSet +104 694 m 1 + 252 694 l 1 + 252 563 l 1 + 104 563 l 1 + 104 694 l 1 +357 694 m 1 + 494 694 l 1 + 494 563 l 1 + 357 563 l 1 + 357 694 l 1 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: idieresis +Encoding: 239 239 136 +Width: 295 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208> 462 20G<88 208> 563 131<-7 123 173 303> +VStem: -7 130<563 694> 88 120<0 482> 173 130<563 694> +LayerCount: 3 +Fore +SplineSet +88 482 m 1xe8 + 208 482 l 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1xe8 +-7 694 m 1xf0 + 123 694 l 1 + 123 563 l 1 + -7 563 l 1 + -7 694 l 1xf0 +173 694 m 1xe4 + 303 694 l 1 + 303 563 l 1 + 173 563 l 1 + 173 694 l 1xe4 +EndSplineSet +EndChar + +StartChar: odieresis +Encoding: 246 246 137 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<256.861 424.541> 383 109<248.337 414.946> 563 131<156 302 404 545> +VStem: 63 119<172.971 320.588> 156 146<563 694> 404 141<563 694> 490 118<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +339 492 m 0xf2 + 496 492 608 406 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 170 -10 63 82 63 236 c 0 + 63 393 169 492 339 492 c 0xf2 +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 166 245 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 335 406 383 331 383 c 0 +156 694 m 1xe8 + 302 694 l 1 + 302 563 l 1 + 156 563 l 1 + 156 694 l 1xe8 +404 694 m 1xe4 + 545 694 l 1 + 545 563 l 1 + 404 563 l 1 + 404 694 l 1xe4 +EndSplineSet +EndChar + +StartChar: udieresis +Encoding: 252 252 138 +Width: 654 +VWidth: 0 +Flags: W +HStem: -10 112<237.115 405.808> 0 21G<468.909 567> 462 20G<88 208 447 567> 563 131<135 277 383 524> +VStem: 88 120<132.365 482> 135 142<563 694> 383 141<563 694> 447 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +447 482 m 1xb9 + 567 482 l 1 + 567 0 l 1 + 478 0 l 1x79 + 463 33 l 1 + 384 -1 318 -10 274 -10 c 0 + 110 -10 88 99 88 197 c 2 + 88 482 l 1 + 208 482 l 1 + 208 198 l 2 + 208 166 212 102 316 102 c 0 + 365 102 417 118 447 129 c 1 + 447 482 l 1xb9 +135 694 m 1x34 + 277 694 l 1 + 277 563 l 1 + 135 563 l 1 + 135 694 l 1x34 +383 694 m 1x32 + 524 694 l 1 + 524 563 l 1 + 383 563 l 1 + 383 694 l 1x32 +EndSplineSet +EndChar + +StartChar: ydieresis +Encoding: 255 255 139 +Width: 592 +VWidth: 0 +Flags: W +HStem: 462 20G<24 159.703 452 587> 563 131<117 262 364 507> +VStem: 117 145<563 694> 364 143<563 694> +LayerCount: 3 +Fore +SplineSet +24 482 m 1 + 151 482 l 1 + 312 112 l 1 + 460 482 l 1 + 587 482 l 1 + 269 -259 l 1 + 124 -259 l 1 + 244 1 l 1 + 24 482 l 1 +117 694 m 1 + 262 694 l 1 + 262 563 l 1 + 117 563 l 1 + 117 694 l 1 +364 694 m 1 + 507 694 l 1 + 507 563 l 1 + 364 563 l 1 + 364 694 l 1 +EndSplineSet +EndChar + +StartChar: dotlessi +Encoding: 305 305 140 +Width: 295 +VWidth: 1023 +Flags: W +HStem: 0 21G<88 208> 462 20G<88 208> +VStem: 88 120<0 482> +LayerCount: 3 +Fore +SplineSet +88 482 m 1 + 208 482 l 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1 +EndSplineSet +EndChar + +StartChar: Agrave +Encoding: 192 192 141 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 674 20G<330.075 480.925> +LayerCount: 3 +Fore +SplineSet +338 694 m 1 + 473 694 l 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 338 694 l 1 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +288 950 m 1 + 596 777 l 1 + 541 690 l 1 + 228 854 l 1 + 288 950 l 1 +EndSplineSet +EndChar + +StartChar: Aacute +Encoding: 193 193 142 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 674 20G<330.075 480.925> +LayerCount: 3 +Fore +SplineSet +338 694 m 1 + 473 694 l 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 338 694 l 1 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +522 950 m 1 + 583 854 l 1 + 269 690 l 1 + 214 777 l 1 + 522 950 l 1 +EndSplineSet +EndChar + +StartChar: Acircumflex +Encoding: 194 194 143 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 674 20G<330.075 480.925> +LayerCount: 3 +Fore +SplineSet +338 694 m 1 + 473 694 l 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 338 694 l 1 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +417 949 m 1 + 584 779 l 1 + 503 708 l 1 + 409 803 l 1 + 313 709 l 1 + 233 774 l 1 + 417 949 l 1 +EndSplineSet +EndChar + +StartChar: Atilde +Encoding: 195 195 144 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 674 20G<330.075 480.925> 729 99<468.134 519.774> 817 99<314.07 365.866> +VStem: 195 102<738.108 807.578> 533 100<833.331 905.469> +LayerCount: 3 +Fore +SplineSet +537 920 m 1xf6 + 637 905 l 1 + 633 885 l 2 + 622 828 611 729 504 729 c 1xf6 + 405 733 361 817 333 817 c 0 + 313 817 308 780 301 745 c 2 + 297 726 l 1 + 195 739 l 1 + 200 760 l 2 + 212 815 223 916 330 916 c 1xee + 429 912 473 828 501 828 c 0 + 520 828 525 862 533 901 c 2 + 537 920 l 1xf6 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +338 694 m 1 + 473 694 l 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 338 694 l 1 +EndSplineSet +EndChar + +StartChar: Aring +Encoding: 197 197 145 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 824 91<358.594 454.987> +VStem: 243 103<727.703 810.55> 467 104<727.443 811.147> +LayerCount: 3 +Fore +SplineSet +407 915 m 0 + 495 915 571 852 571 770 c 0 + 571 720 539 676 492 652 c 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 320 653 l 1 + 275 677 243 720 243 770 c 0 + 243 851 318 915 407 915 c 0 +408 824 m 0 + 371 824 346 798 346 770 c 0 + 346 743 369 715 408 715 c 0 + 443 715 467 742 467 770 c 0 + 467 798 443 824 408 824 c 0 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +EndSplineSet +EndChar + +StartChar: uni00B2 +Encoding: 178 178 146 +Width: 390 +VWidth: 0 +Flags: W +HStem: 358 76<159 319> 682 74<92.5507 221.568> +VStem: 231 88<607.083 671.237> +LayerCount: 3 +Fore +SplineSet +60 404 m 1 + 106 552 231 598 231 640 c 0 + 231 658 209 682 173 682 c 0 + 156 682 135 678 86 658 c 2 + 75 653 l 1 + 48 719 l 1 + 58 724 l 1 + 87 739 129 756 181 756 c 0 + 254 756 313 712 313 647 c 0 + 313 555 206 525 159 434 c 1 + 319 434 l 1 + 319 358 l 1 + 60 358 l 1 + 60 404 l 1 +EndSplineSet +EndChar + +StartChar: uni00B3 +Encoding: 179 179 147 +Width: 390 +VWidth: 1023 +Flags: W +HStem: 354 78<63.0981 221.203> 532 74<123 212.367> 678 77<90.3929 215.787> +VStem: 219 80<616.515 672.487> 233 81<446.829 518.014> +LayerCount: 3 +Fore +SplineSet +175 755 m 0xf0 + 244 755 299 713 299 653 c 0xf0 + 299 624 288 597 268 578 c 1 + 301 557 314 525 314 491 c 0 + 314 409 248 354 160 354 c 0 + 118 354 86 364 57 376 c 2 + 46 381 l 1 + 69 449 l 1 + 81 446 l 1 + 125 434 141 432 161 432 c 0 + 199 432 233 452 233 482 c 0xe8 + 233 525 182 532 135 532 c 2 + 123 532 l 1 + 123 606 l 1 + 135 606 l 2 + 175 606 219 614 219 646 c 0 + 219 660 205 678 170 678 c 0 + 139 678 110 665 92 657 c 2 + 81 651 l 1 + 52 720 l 1 + 62 725 l 1 + 89 738 127 755 175 755 c 0xf0 +EndSplineSet +EndChar + +StartChar: acute +Encoding: 180 180 148 +Width: 558 +VWidth: 0 +Flags: W +HStem: 501 264 +VStem: 120 318 +LayerCount: 3 +Fore +SplineSet +367 765 m 5 + 438 681 l 5 + 190 501 l 5 + 120 581 l 5 + 367 765 l 5 +EndSplineSet +EndChar + +StartChar: uni00B9 +Encoding: 185 185 149 +Width: 265 +VWidth: 0 +Flags: W +VStem: 100 80<359 669> +LayerCount: 3 +Fore +SplineSet +121 750 m 1 + 180 750 l 1 + 180 359 l 1 + 100 359 l 1 + 100 669 l 1 + 33 650 l 1 + 15 721 l 1 + 121 750 l 1 +EndSplineSet +EndChar + +StartChar: ordmasculine +Encoding: 186 186 150 +Width: 372 +VWidth: 1023 +Flags: W +HStem: 355 73<135.378 239.96> 679 75<132.075 240.938> +VStem: 21 80<465.601 646.076> 271 81<462.515 647.513> +LayerCount: 3 +Fore +SplineSet +186 679 m 0 + 152 679 101 662 101 561 c 0 + 101 447 153 428 187 428 c 0 + 221 428 271 447 271 558 c 0 + 271 664 220 679 186 679 c 0 +352 559 m 0 + 352 431 279 355 186 355 c 0 + 103 355 21 404 21 560 c 0 + 21 690 104 754 187 754 c 0 + 253 754 352 721 352 559 c 0 +EndSplineSet +EndChar + +StartChar: Egrave +Encoding: 200 200 151 +Width: 706 +VWidth: 0 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> 700 21G<477.366 528.494> +VStem: 142 123<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 + 142 694 l 1 +247 959 m 1 + 567 787 l 1 + 517 700 l 1 + 192 864 l 1 + 247 959 l 1 +EndSplineSet +EndChar + +StartChar: Eacute +Encoding: 201 201 152 +Width: 706 +VWidth: 0 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> 700 21G<250.506 301.512> +VStem: 142 123<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 + 142 694 l 1 +532 959 m 1 + 586 864 l 1 + 262 700 l 1 + 212 787 l 1 + 532 959 l 1 +EndSplineSet +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 153 +Width: 706 +VWidth: 0 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> +VStem: 142 123<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 + 142 694 l 1 +394 953 m 1 + 564 782 l 1 + 486 712 l 1 + 385 807 l 1 + 281 713 l 1 + 205 778 l 1 + 394 953 l 1 +EndSplineSet +EndChar + +StartChar: Icircumflex +Encoding: 206 206 154 +Width: 396 +VWidth: 0 +Flags: W +HStem: 0 21G<165 288> 674 20G<165 288> +VStem: 165 123<0 694> +LayerCount: 3 +Fore +SplineSet +165 694 m 1 + 288 694 l 1 + 288 0 l 1 + 165 0 l 1 + 165 694 l 1 +235 949 m 5 + 388 778 l 5 + 312 708 l 5 + 228 803 l 5 + 142 709 l 5 + 68 774 l 5 + 235 949 l 5 +EndSplineSet +EndChar + +StartChar: Igrave +Encoding: 204 204 155 +Width: 396 +VWidth: 0 +Flags: W +HStem: 0 21G<164 287> 674 20G<164 287> +VStem: 164 123<0 694> +LayerCount: 3 +Fore +SplineSet +164 694 m 1 + 287 694 l 1 + 287 0 l 1 + 164 0 l 1 + 164 694 l 1 +122 949 m 1 + 402 776 l 1 + 351 690 l 1 + 66 854 l 1 + 122 949 l 1 +EndSplineSet +EndChar + +StartChar: Iacute +Encoding: 205 205 156 +Width: 436 +VWidth: 0 +Flags: W +HStem: 0 21G<203 326> 674 20G<203 326> 731 264 +VStem: 132 318 203 123<0 694> +LayerCount: 3 +Fore +SplineSet +203 694 m 1xe8 + 326 694 l 1 + 326 0 l 1 + 203 0 l 1 + 203 694 l 1xe8 +EndSplineSet +Refer: 148 180 S 1 0 0 1 12 230 2 +EndChar + +StartChar: Ntilde +Encoding: 209 209 157 +Width: 890 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 635.581 788> 674 20G<142 291.559 665 788> 729 99<531.76 583.271> 817 99<377.828 429.844> +VStem: 142 123<0 534> 259 101<738.099 804.36> 665 123<161 694> +LayerCount: 3 +Fore +SplineSet +601 920 m 1xe6 + 701 905 l 1 + 696 885 l 2 + 685 828 675 729 568 729 c 1xe6 + 469 733 425 817 397 817 c 0 + 377 817 371 780 364 745 c 2 + 360 726 l 1 + 259 739 l 1 + 263 760 l 2 + 275 815 287 916 394 916 c 1xd6 + 493 912 536 828 564 828 c 0 + 583 828 588 862 596 901 c 2 + 601 920 l 1xe6 +142 694 m 1xca + 277 694 l 1 + 665 161 l 1 + 665 694 l 1 + 788 694 l 1 + 788 0 l 1 + 650 0 l 1 + 265 534 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1xca +EndSplineSet +EndChar + +StartChar: Ograve +Encoding: 210 210 158 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.076> +VStem: 105 126<248.908 459.514> 711 126<238.736 449.155> +LayerCount: 3 +Fore +SplineSet +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +711 346 m 0 + 711 517 581 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +386 951 m 1 + 691 779 l 1 + 636 692 l 1 + 326 856 l 1 + 386 951 l 1 +EndSplineSet +EndChar + +StartChar: Oacute +Encoding: 211 211 159 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.076> +VStem: 105 126<248.908 459.514> 711 126<238.736 449.155> +LayerCount: 3 +Fore +SplineSet +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +711 346 m 0 + 711 517 581 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +598 950 m 1 + 657 855 l 1 + 347 690 l 1 + 293 778 l 1 + 598 950 l 1 +EndSplineSet +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 160 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.076> +VStem: 105 126<248.908 459.514> 711 126<238.736 449.155> +LayerCount: 3 +Fore +SplineSet +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +711 346 m 0 + 711 517 581 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +487 949 m 1 + 653 779 l 1 + 572 708 l 1 + 479 803 l 1 + 385 709 l 1 + 305 774 l 1 + 487 949 l 1 +EndSplineSet +EndChar + +StartChar: Otilde +Encoding: 213 213 161 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.298> 729 99<535.64 589.271> 817 99<383.331 437.36> +VStem: 105 126<248.908 459.514> 265 101<738.099 804.36> 602 100<833.331 905.312> 711 126<238.736 452.067> +LayerCount: 3 +Fore +SplineSet +606 920 m 5xef + 707 905 l 5 + 702 885 l 6 + 691 828 681 729 574 729 c 5xef + 475 733 431 817 403 817 c 4 + 383 817 377 780 370 745 c 6 + 366 726 l 5 + 265 739 l 5 + 269 760 l 6 + 281 815 292 916 399 916 c 5xdf + 498 912 542 828 570 828 c 4 + 589 828 594 862 602 901 c 6 + 606 920 l 5xef +711 346 m 0 + 711 517 582 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +EndSplineSet +EndChar + +StartChar: Ugrave +Encoding: 217 217 162 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<333.479 555.722> 674 20G<142 265 626 749> +VStem: 142 123<167.592 694> 626 123<167.162 694> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 265 694 l 1 + 265 254 l 2 + 265 179 290 102 445 102 c 0 + 590 102 626 169 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 242 l 2 + 749 170 746 -10 441 -10 c 0 + 144 -10 142 171 142 242 c 2 + 142 694 l 1 +324 963 m 5 + 638 791 l 5 + 583 705 l 5 + 263 868 l 5 + 324 963 l 5 +EndSplineSet +EndChar + +StartChar: Uacute +Encoding: 218 218 163 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<333.479 555.722> 674 20G<142 265 626 749> +VStem: 142 123<167.592 694> 626 123<167.162 694> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 265 694 l 1 + 265 254 l 2 + 265 179 290 102 445 102 c 0 + 590 102 626 169 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 242 l 2 + 749 170 746 -10 441 -10 c 0 + 144 -10 142 171 142 242 c 2 + 142 694 l 1 +582 965 m 5 + 641 870 l 5 + 323 705 l 5 + 267 792 l 5 + 582 965 l 5 +EndSplineSet +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 164 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<333.479 555.722> 674 20G<142 265 626 749> +VStem: 142 123<167.592 694> 626 123<167.162 694> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 265 694 l 1 + 265 254 l 2 + 265 179 290 102 445 102 c 0 + 590 102 626 169 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 242 l 2 + 749 170 746 -10 441 -10 c 0 + 144 -10 142 171 142 242 c 2 + 142 694 l 1 +454 949 m 1 + 625 778 l 1 + 541 708 l 1 + 445 803 l 1 + 348 709 l 1 + 266 774 l 1 + 454 949 l 1 +EndSplineSet +EndChar + +StartChar: Yacute +Encoding: 221 221 165 +Width: 696 +VWidth: 0 +Flags: W +HStem: 0 21G<306 444> 674 20G<49 207.829 554.948 710> +VStem: 306 138<0 324> +LayerCount: 3 +Fore +SplineSet +49 694 m 1 + 194 694 l 1 + 380 425 l 1 + 569 694 l 1 + 710 694 l 1 + 444 324 l 1 + 444 0 l 1 + 306 0 l 1 + 306 324 l 1 + 49 694 l 1 +501 965 m 5 + 562 870 l 5 + 244 705 l 5 + 188 792 l 5 + 501 965 l 5 +EndSplineSet +EndChar + +StartChar: agrave +Encoding: 224 224 166 +Width: 563 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 +LayerCount: 3 +Fore +SplineSet +248 760 m 1 + 482 576 l 1 + 419 496 l 1 + 164 676 l 1 + 248 760 l 1 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: aacute +Encoding: 225 225 167 +Width: 563 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 501 264 +VStem: 120 318 +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 0 0 2 +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acircumflex +Encoding: 226 226 168 +Width: 564 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 541 241 +VStem: 123 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 -7 0 2 +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: atilde +Encoding: 227 227 169 +Width: 563 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 517 98<347.396 401.099> 605 99<177.108 236.764> +LayerCount: 3 +Fore +SplineSet +418 708 m 5xf0 + 510 693 l 5 + 498 631 l 6 + 495 613 479 517 387 517 c 5xf0 + 278 521 230 605 199 605 c 4 + 178 605 173 571 170 557 c 6 + 160 514 l 5 + 67 527 l 5 + 80 589 l 6 + 84 608 97 704 195 704 c 5xe8 + 302 700 354 615 383 615 c 4 + 403 615 408 658 409 664 c 6 + 418 708 l 5xf0 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: aring +Encoding: 229 229 170 +Width: 563 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 509 84<270.344 356.539> 684 84<269.831 357.633> +VStem: 162 99<602.609 674.844> 366 90<602.609 675.021> +LayerCount: 3 +Fore +SplineSet +314 684 m 0 + 283 684 261 663 261 639 c 0 + 261 615 282 593 314 593 c 0 + 343 593 366 615 366 639 c 0 + 366 663 343 684 314 684 c 0 +313 768 m 0 + 397 768 456 711 456 639 c 0 + 456 567 399 509 314 509 c 0 + 229 509 162 567 162 639 c 0 + 162 710 227 768 313 768 c 0 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: egrave +Encoding: 232 232 171 +Width: 564 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 +LayerCount: 3 +Fore +SplineSet +254 765 m 1 + 490 581 l 1 + 425 501 l 1 + 171 681 l 1 + 254 765 l 1 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: eacute +Encoding: 233 233 172 +Width: 565 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 501 264 +VStem: 122 318 +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 2 0 2 +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 173 +Width: 562 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 541 241 +VStem: 124 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 -6 0 2 +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: igrave +Encoding: 236 236 174 +Width: 295 +VWidth: 0 +Flags: W +HStem: 0 21G<96 216> 462 20G<96 216> +VStem: 96 120<0 482> +LayerCount: 3 +Fore +SplineSet +96 482 m 1 + 216 482 l 1 + 216 0 l 1 + 96 0 l 1 + 96 482 l 1 +71 765 m 1 + 278 581 l 1 + 215 501 l 1 + 0 681 l 1 + 71 765 l 1 +EndSplineSet +EndChar + +StartChar: iacute +Encoding: 237 237 175 +Width: 295 +VWidth: 1023 +Flags: W +HStem: 0 21<88 208> 462 20<88 208> 501 264 +VStem: 20 318 88 120<0 482> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 -100 0 2 +Refer: 140 305 N 1 0 0 1 0 0 2 +EndChar + +StartChar: icircumflex +Encoding: 238 238 176 +Width: 295 +VWidth: 1023 +Flags: W +HStem: 0 21<88 208 88 208> 462 20<88 208 88 208> 541 241 +VStem: -3 319 88 120<0 482 0 482> +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 -133 0 2 +Refer: 140 305 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ograve +Encoding: 242 242 177 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<256.861 424.541> 383 109<248.337 414.946> +VStem: 63 119<172.971 320.588> 490 118<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +291 765 m 1 + 523 581 l 1 + 456 501 l 1 + 208 681 l 1 + 291 765 l 1 +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 166 245 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 335 406 383 331 383 c 0 +339 492 m 0 + 496 492 608 406 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 170 -10 63 82 63 236 c 0 + 63 393 169 492 339 492 c 0 +EndSplineSet +EndChar + +StartChar: oacute +Encoding: 243 243 178 +Width: 594 +VWidth: 1023 +Flags: W +HStem: -10 90<225.784 374.967> 400 90<217.913 369.22> 501 264 +VStem: 40 119<168.275 325.09> 115.093 318 436.199 118<159.172 317.512> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 -4.9072 0 2 +Refer: 6 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 179 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<256.861 424.541> 383 109<248.337 414.946> 717 20G<325.4 367.118> +VStem: 63 119<172.971 320.588> 490 118<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +339 492 m 0 + 496 492 608 406 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 170 -10 63 82 63 236 c 0 + 63 393 169 492 339 492 c 0 +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 166 245 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 335 406 383 331 383 c 0 +347 737 m 1 + 518 567 l 1 + 437 496 l 1 + 339 591 l 1 + 239 498 l 1 + 158 562 l 1 + 347 737 l 1 +EndSplineSet +EndChar + +StartChar: otilde +Encoding: 245 245 180 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<256.861 424.541> 383 109<248.337 414.946> 519 98<397.396 451.096> 607 99<226.817 286.764> +VStem: 63 119<172.971 320.588> 490 118<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +467 710 m 1xec + 560 695 l 1 + 547 633 l 2 + 544 615 529 519 437 519 c 1xec + 328 523 280 607 249 607 c 0 + 228 607 222 573 219 559 c 2 + 209 516 l 1 + 117 529 l 1 + 129 591 l 2 + 133 610 147 706 245 706 c 1xdc + 352 702 404 617 433 617 c 0 + 453 617 458 660 459 666 c 2 + 467 710 l 1xec +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 166 245 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 335 406 383 331 383 c 0 +339 492 m 0 + 496 492 608 406 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 170 -10 63 82 63 236 c 0 + 63 393 169 492 339 492 c 0 +EndSplineSet +EndChar + +StartChar: ugrave +Encoding: 249 249 181 +Width: 654 +VWidth: 0 +Flags: W +HStem: -10 112<237.115 405.808> 0 21G<468.909 567> 462 20G<88 208 447 567> +VStem: 88 120<132.365 482> 447 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +447 482 m 1xb8 + 567 482 l 1 + 567 0 l 1 + 478 0 l 1x78 + 463 33 l 1 + 384 -1 318 -10 274 -10 c 0 + 110 -10 88 99 88 197 c 2 + 88 482 l 1 + 208 482 l 1 + 208 198 l 2 + 208 166 212 102 316 102 c 0 + 365 102 417 118 447 129 c 1 + 447 482 l 1xb8 +260 765 m 1 + 498 581 l 1 + 432 501 l 1 + 180 681 l 1 + 260 765 l 1 +EndSplineSet +EndChar + +StartChar: uacute +Encoding: 250 250 182 +Width: 586 +VWidth: 1023 +Flags: W +HStem: -10 112<211.106 361.091> 0 21<419.735 517.826> 462 20<62.7266 182.727 397.826 517.826> 501 264 +VStem: 62.7266 120<127.826 482> 164 318 397.826 120<120.712 482> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 44 0 2 +Refer: 14 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 183 +Width: 654 +VWidth: 0 +Flags: W +HStem: -10 112<237.115 405.808> 0 21G<468.909 567> 462 20G<88 208 447 567> 717 20G<319.4 361> +VStem: 88 120<132.365 482> 447 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +447 482 m 1xbc + 567 482 l 1 + 567 0 l 1 + 478 0 l 1x7c + 463 33 l 1 + 384 -1 318 -10 274 -10 c 0 + 110 -10 88 99 88 197 c 2 + 88 482 l 1 + 208 482 l 1 + 208 198 l 2 + 208 166 212 102 316 102 c 0 + 365 102 417 118 447 129 c 1 + 447 482 l 1xbc +341 737 m 1 + 511 567 l 1 + 435 496 l 1 + 333 591 l 1 + 229 498 l 1 + 152 562 l 1 + 341 737 l 1 +EndSplineSet +EndChar + +StartChar: yacute +Encoding: 253 253 184 +Width: 592 +VWidth: 0 +Flags: W +HStem: 462 20G<24 159.703 452 587> +LayerCount: 3 +Fore +SplineSet +24 482 m 1 + 151 482 l 1 + 312 112 l 1 + 460 482 l 1 + 587 482 l 1 + 269 -259 l 1 + 124 -259 l 1 + 244 1 l 1 + 24 482 l 1 +443 765 m 1 + 517 681 l 1 + 278 501 l 1 + 206 581 l 1 + 443 765 l 1 +EndSplineSet +EndChar + +StartChar: ntilde +Encoding: 241 241 185 +Width: 654 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208 446 567> 380 112<247.69 417.016> 462 20G<88 185.485> 519 99<405.291 461.028> 607 99<238.809 298.539> +VStem: 88 120<0 360.146> 446 121<0 349.635> +LayerCount: 3 +Fore +SplineSet +477 710 m 1x96 + 570 696 l 1 + 557 634 l 2 + 554 616 539 519 447 519 c 1x96 + 339 523 292 607 261 607 c 0 + 241 607 234 574 231 560 c 2 + 221 516 l 1 + 126 530 l 1 + 139 592 l 2 + 143 611 157 706 257 706 c 1x8e + 364 702 413 618 442 618 c 0 + 462 618 467 657 469 666 c 2 + 477 710 l 1x96 +88 482 m 1xa6 + 177 482 l 1xa6 + 191 449 l 1 + 270 483 336 492 380 492 c 0 + 544 492 567 383 567 285 c 2 + 567 0 l 1 + 446 0 l 1 + 446 283 l 2 + 446 317 442 380 339 380 c 0xc6 + 290 380 238 364 208 353 c 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1xa6 +EndSplineSet +EndChar + +StartChar: eth +Encoding: 240 240 186 +Width: 691 +VWidth: 1023 +Flags: W +HStem: -10 106<259.714 410.593> 394 70<245.035 427.604> 680 20G<515 562.605> +VStem: 63 118<174.094 319.141> 486 118<178.354 353.812> +LayerCount: 3 +Fore +SplineSet +181 255 m 0 + 181 162 253 96 336 96 c 0 + 382 96 463 117 481 235 c 0 + 485 267 486 301 486 327 c 2 + 486 346 l 1 + 409 386 360 394 327 394 c 0 + 244 394 181 339 181 255 c 0 +290 711 m 2 + 348 697 403 675 452 645 c 1 + 551 700 l 1 + 598 619 l 1 + 527 578 l 1 + 588 508 604 426 604 332 c 0 + 604 160 566 -10 327 -10 c 0 + 166 -10 63 74 63 212 c 0 + 63 348 157 464 315 464 c 0 + 349 464 399 460 473 431 c 1 + 462 463 443 491 412 518 c 1 + 307 465 l 1 + 253 546 l 1 + 320 580 l 1 + 295 592 269 602 242 610 c 2 + 217 618 l 1 + 271 716 l 1 + 290 711 l 2 +EndSplineSet +EndChar + +StartChar: thorn +Encoding: 254 254 187 +Width: 676 +VWidth: 1023 +Flags: W +HStem: -11 108<258.044 426.206> 381 109<260.865 420.244> 674 20G<93 219> +VStem: 93 126<-259 21 135.219 338.167 456 694> 495 118<161.51 310.646> +LayerCount: 3 +Back +SplineSet +298.34 420.898 m 4 + 185.547 420.898 168.457 314.453 168.457 228.027 c 4 + 168.457 176.27 175.293 57.1289 300.293 57.1289 c 4 + 361.816 57.1289 454.59 101.074 454.59 234.863 c 4 + 454.59 357.422 373.535 420.898 298.34 420.898 c 4 +312.012 489.746 m 4 + 431.641 489.746 532.715 400.879 532.715 249.023 c 4 + 532.715 97.6562 435.547 -11.2305 307.617 -11.2305 c 4 + 259.277 -11.2305 209.473 6.83594 172.852 41.0156 c 5 + 172.852 -259.277 l 5 + 92.7734 -259.277 l 5 + 92.7734 693.848 l 5 + 172.852 693.848 l 5 + 172.852 432.129 l 5 + 208.984 472.656 261.23 489.746 312.012 489.746 c 4 +EndSplineSet +Fore +SplineSet +339 381 m 0 + 262 381 213 343 213 229 c 0 + 213 174 227 97 341 97 c 0 + 402 97 495 130 495 235 c 0 + 495 333 412 381 339 381 c 0 +354 490 m 0 + 501 490 613 400 613 249 c 0 + 613 100 508 -11 350 -11 c 0 + 305 -11 259 0 219 21 c 1 + 219 -259 l 1 + 93 -259 l 1 + 93 694 l 1 + 219 694 l 1 + 219 456 l 1 + 260 480 308 490 354 490 c 0 +EndSplineSet +EndChar + +StartChar: Eth +Encoding: 208 208 188 +Width: 863 +VWidth: 1023 +Flags: W +HStem: 0 113<287 531.112> 301 114<57 164 287 414> 581 113<287 536.007> +VStem: 164 123<113 301 415 581> 684 124<239.352 449.531> +LayerCount: 3 +Fore +SplineSet +164 694 m 1 + 396 694 l 2 + 503 694 808 678 808 367 c 0 + 808 21 508 0 365 0 c 2 + 164 0 l 1 + 164 301 l 1 + 57 301 l 1 + 57 415 l 1 + 164 415 l 1 + 164 694 l 1 +402 581 m 2 + 287 581 l 1 + 287 415 l 1 + 414 415 l 1 + 414 301 l 1 + 287 301 l 1 + 287 113 l 1 + 368 113 l 2 + 492 113 684 128 684 351 c 0 + 684 448 632 581 402 581 c 2 +EndSplineSet +EndChar + +StartChar: Oslash +Encoding: 216 216 189 +Width: 937 +VWidth: 0 +Flags: W +HStem: -7 112<382.676 587.057> -0 21G<113.226 154> 588 113<374.001 584.875> +VStem: 115 126<244.469 459.303> 721 126<238.736 456.46> +LayerCount: 3 +Back +SplineSet +827.988 692.007 m 29 + 77.6553 62.4023 l 29 + 130.384 -0.436523 l 29 + 880.718 629.17 l 29 + 827.988 692.007 l 29 +481.445 701.172 m 4 + 693.359 701.172 847.168 568.848 847.168 354.492 c 4 + 847.168 139.16 697.266 -7.32422 477.539 -7.32422 c 4 + 289.062 -7.32422 114.746 108.887 114.746 345.215 c 4 + 114.746 562.5 266.602 701.172 481.445 701.172 c 4 +476.562 588.379 m 4 + 362.793 588.379 240.723 518.066 240.723 354.98 c 4 + 240.723 200.684 349.121 105.469 484.863 105.469 c 4 + 596.68 105.469 721.191 176.27 721.191 346.191 c 4 + 721.191 518.066 589.844 588.379 476.562 588.379 c 4 +EndSplineSet +Fore +SplineSet +477 588 m 0x38 + 363 588 241 518 241 355 c 0 + 241 305 252 261 272 225 c 1 + 639 534 l 1 + 592 572 533 588 477 588 c 0x38 +828 692 m 1 + 881 629 l 1 + 791 554 l 1 + 827 500 847 432 847 354 c 0 + 847 139 698 -7 478 -7 c 0xb8 + 384 -7 293 22 226 80 c 1 + 130 -0 l 1x78 + 78 62 l 1 + 172 141 l 1 + 136 194 115 262 115 345 c 0 + 115 562 266 701 481 701 c 0 + 583 701 672 671 736 615 c 1 + 828 692 l 1 +692 471 m 1 + 324 162 l 1 + 367 126 423 105 485 105 c 0 + 597 105 721 176 721 346 c 0 + 721 396 711 437 692 471 c 1 +EndSplineSet +EndChar + +StartChar: logicalnot +Encoding: 172 172 190 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 265 112<41 530> +VStem: 530 113<118 265> +LayerCount: 3 +Fore +SplineSet +41 377 m 1 + 643 377 l 1 + 643 118 l 1 + 530 118 l 1 + 530 265 l 1 + 41 265 l 1 + 41 377 l 1 +EndSplineSet +EndChar + +StartChar: macron +Encoding: 175 175 191 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 708 113<119 564> +LayerCount: 3 +Fore +SplineSet +119 821 m 1 + 564 821 l 1 + 564 708 l 1 + 119 708 l 1 + 119 821 l 1 +EndSplineSet +EndChar + +StartChar: ordfeminine +Encoding: 170 170 192 +Width: 374 +VWidth: 1023 +Flags: W +HStem: 350 64<148.62 235.995> 485 65<151.666 243> 603 63<89.4375 235.08> +VStem: 73 72<419.506 475.691> 243 72<422.972 485 550 593.789> +LayerCount: 3 +Fore +SplineSet +243 485 m 1 + 242 485 l 2 + 178 485 145 476 145 448 c 0 + 145 434 160 414 192 414 c 0 + 211 414 229 424 243 444 c 1 + 243 485 l 1 +243 550 m 1 + 243 569 239 603 186 603 c 0 + 154 603 114 592 106 590 c 2 + 94 586 l 1 + 80 644 l 1 + 90 647 l 1 + 122 659 156 666 191 666 c 0 + 309 666 315 592 315 552 c 2 + 315 359 l 1 + 261 359 l 1 + 254 376 l 1 + 235 360 211 350 185 350 c 0 + 122 350 73 385 73 447 c 0 + 73 531 134 549 243 550 c 1 +EndSplineSet +EndChar + +StartChar: Thorn +Encoding: 222 222 193 +Width: 727 +VWidth: 1023 +Flags: W +HStem: 0 21G<142 265> 139 112<265 505.256> 472 99<265 507.007> 674 20G<142 265> +VStem: 142 123<0 141 254 469 566 694> 559 125<298.113 425.572> +LayerCount: 3 +Fore +SplineSet +367 472 m 0 + 332 472 299 471 265 469 c 1 + 265 254 l 1 + 307 252 335 251 352 251 c 2 + 367 251 l 2 + 462 251 559 261 559 367 c 0 + 559 459 467 472 367 472 c 0 +142 694 m 1 + 265 694 l 1 + 265 566 l 1 + 307 569 349 571 393 571 c 0 + 558 571 684 532 684 377 c 0 + 684 299 652 189 525 155 c 1 + 489 146 429 139 334 139 c 0 + 311 139 288 140 265 141 c 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 +EndSplineSet +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 194 +Width: 405 +VWidth: 1023 +Flags: W +HStem: 506 252<65 130 251 315> +LayerCount: 3 +Fore +SplineSet +388 758 m 1 + 315 506 l 1 + 178 506 l 1 + 251 758 l 1 + 388 758 l 1 +203 758 m 1 + 130 506 l 1 + -7 506 l 1 + 65 758 l 1 + 203 758 l 1 +EndSplineSet +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 195 +Width: 405 +VWidth: 1023 +Flags: W +HStem: 506 252<65 130 251 315> +LayerCount: 3 +Fore +SplineSet +251 758 m 1 + 388 758 l 1 + 315 506 l 1 + 178 506 l 1 + 251 758 l 1 +65 758 m 1 + 203 758 l 1 + 130 506 l 1 + -7 506 l 1 + 65 758 l 1 +EndSplineSet +EndChar + +StartChar: Ydieresis +Encoding: 376 376 196 +Width: 696 +VWidth: 0 +Flags: W +HStem: 0 21G<306 444> 674 20G<49 207.829 554.948 710> 796 131<184 328 428 574> +VStem: 184 144<796 927> 306 138<0 324> 428 146<796 927> +LayerCount: 3 +Fore +SplineSet +49 694 m 1xe8 + 194 694 l 1 + 380 425 l 1 + 569 694 l 1 + 710 694 l 1 + 444 324 l 1 + 444 0 l 1 + 306 0 l 1 + 306 324 l 1 + 49 694 l 1xe8 +428 927 m 1xe4 + 574 927 l 1 + 574 796 l 1 + 428 796 l 1 + 428 927 l 1xe4 +184 927 m 1xf0 + 328 927 l 1 + 328 796 l 1 + 184 796 l 1 + 184 927 l 1xf0 +EndSplineSet +EndChar + +StartChar: zcaron +Encoding: 382 382 197 +Width: 606 +VWidth: 0 +Flags: W +HStem: 0 103<245 533> 379 103<73 345> 719 20G<382.204 428.438> +LayerCount: 3 +Fore +SplineSet +73 482 m 1 + 521 482 l 1 + 521 420 l 1 + 245 103 l 1 + 533 103 l 1 + 533 0 l 1 + 73 0 l 1 + 73 62 l 1 + 345 379 l 1 + 73 379 l 1 + 73 482 l 1 +291 500 m 1 + 121 669 l 1 + 195 740 l 1 + 299 646 l 1 + 405 739 l 1 + 480 675 l 1 + 291 500 l 1 +EndSplineSet +EndChar + +StartChar: Zcaron +Encoding: 381 381 198 +Width: 743 +VWidth: 0 +Flags: W +HStem: 0 113<252 714> 581 113<90 514> +LayerCount: 3 +Fore +SplineSet +90 694 m 1 + 701 694 l 1 + 701 619 l 1 + 252 113 l 1 + 714 113 l 1 + 714 0 l 1 + 76 0 l 1 + 76 76 l 1 + 514 581 l 1 + 90 581 l 1 + 90 694 l 1 +389 711 m 1 + 220 881 l 1 + 302 952 l 1 + 397 857 l 1 + 494 951 l 1 + 575 886 l 1 + 389 711 l 1 +EndSplineSet +EndChar + +StartChar: Scaron +Encoding: 352 352 199 +Width: 653 +VWidth: 1023 +Flags: W +HStem: -10 122<188.829 415.221> 558 113<466.099 541.492> 582 118<263.165 511.052> 720 240 +VStem: 80 134<460.459 540.749> 172 319 461.7 132<150.841 238.8> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 71 200 2 +Refer: 55 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: scaron +Encoding: 353 353 200 +Width: 524 +VWidth: 1023 +Flags: W +HStem: -10 90<131.439 340.099> 400 90<314.613 433.891> 520 240 +VStem: 62.9072 127<318.934 371.287> 101 319 354.807 129<108.717 162.947> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 0 0 2 +Refer: 7 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Euro +Encoding: 8364 8364 201 +Width: 651 +VWidth: 1023 +Flags: W +HStem: -30 116<352.045 561.175> 226 104<4 103 242 432> 394 104<36 105 255 463> 605 114<343.37 547.944> +VStem: 103 115<330 394> +LayerCount: 3 +Fore +SplineSet +117 226 m 1 + 4 226 l 1 + 4 330 l 1 + 103 330 l 1 + 103 335 103 340 103 346 c 0 + 103 362 104 378 105 394 c 1 + 36 394 l 1 + 36 498 l 1 + 127 498 l 1 + 174 633 288 719 435 719 c 0 + 506 719 567 700 612 680 c 2 + 629 673 l 1 + 594 566 l 1 + 574 574 l 1 + 494 605 447 605 433 605 c 0 + 355 605 292 563 255 498 c 1 + 463 498 l 1 + 463 394 l 1 + 221 394 l 1 + 219 378 217 363 217 346 c 0 + 217 341 218 335 218 330 c 1 + 432 330 l 1 + 432 226 l 1 + 242 226 l 1 + 277 146 347 86 448 86 c 0 + 488 86 532 94 583 114 c 2 + 602 122 l 1 + 638 24 l 1 + 622 16 l 2 + 574 -7 507 -30 430 -30 c 0 + 273 -30 156 74 117 226 c 1 +EndSplineSet +EndChar + +StartChar: emdash +Encoding: 8212 8212 202 +Width: 715 +VWidth: 1023 +Flags: W +HStem: 268 107<0 716> +LayerCount: 3 +Fore +SplineSet +0 375 m 5 + 716 375 l 5 + 716 268 l 5 + 0 268 l 5 + 0 375 l 5 +EndSplineSet +EndChar + +StartChar: endash +Encoding: 8211 8211 203 +Width: 605 +VWidth: 1023 +Flags: W +HStem: 268 107<0 606> +LayerCount: 3 +Fore +SplineSet +0 375 m 5 + 606 375 l 5 + 606 268 l 5 + 0 268 l 5 + 0 375 l 5 +EndSplineSet +EndChar + +StartChar: afii00208 +Encoding: 8213 8213 204 +Width: 821 +VWidth: 1023 +Flags: W +HStem: 268 107<0 821> +LayerCount: 3 +Fore +SplineSet +0 375 m 5 + 821 375 l 5 + 821 268 l 5 + 0 268 l 5 + 0 375 l 5 +EndSplineSet +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 205 +Width: 839 +VWidth: 1023 +Flags: W +HStem: -20 143<68 210 344 486 620 762> +VStem: 68 142<-20 123> 344 142<-20 123> 620 142<-20 123> +CounterMasks: 1 70 +LayerCount: 3 +Fore +SplineSet +68 123 m 1 + 210 123 l 1 + 210 -20 l 1 + 68 -20 l 1 + 68 123 l 1 +344 123 m 1 + 486 123 l 1 + 486 -20 l 1 + 344 -20 l 1 + 344 123 l 1 +620 123 m 1 + 762 123 l 1 + 762 -20 l 1 + 620 -20 l 1 + 620 123 l 1 +EndSplineSet +EndChar + +StartChar: bullet +Encoding: 8226 8226 206 +Width: 680 +VWidth: 0 +Flags: W +HStem: 99 476<242.083 437.917> +VStem: 102 476<239.083 434.917> +LayerCount: 3 +Back +SplineSet +173 337 m 132 + 173 383 189.333 422.333 222 455 c 132 + 254.667 487.667 294 504 340 504 c 132 + 386 504 425.333 487.667 458 455 c 132 + 490.667 422.333 507 383 507 337 c 132 + 507 291 490.667 251.667 458 219 c 132 + 425.333 186.333 386 170 340 170 c 132 + 294 170 254.667 186.333 222 219 c 132 + 189.333 251.667 173 291 173 337 c 132 +EndSplineSet +Fore +SplineSet +173 337 m 132 + 173 383 189.333 422.333 222 455 c 132 + 254.667 487.667 294 504 340 504 c 132 + 386 504 425.333 487.667 458 455 c 132 + 490.667 422.333 507 383 507 337 c 132 + 507 291 490.667 251.667 458 219 c 132 + 425.333 186.333 386 170 340 170 c 132 + 294 170 254.667 186.333 222 219 c 132 + 189.333 251.667 173 291 173 337 c 132 +EndSplineSet +EndChar + +StartChar: uni203D +Encoding: 8253 8253 207 +Width: 510 +VWidth: 1023 +Flags: W +HStem: -20 138<132 270> 612 110<82.7998 288.49> +VStem: 132 138<-20 118> 144 113<171 266.122 412 547> 327 121<460.977 575.458> +LayerCount: 3 +Fore +SplineSet +132 118 m 1xe8 + 270 118 l 1 + 270 -20 l 1 + 132 -20 l 1 + 132 118 l 1xe8 +448 534 m 0 + 448 335 257 341 257 191 c 2 + 257 171 l 1 + 144 171 l 1 + 144 547 l 1 + 257 547 l 1 + 257 412 l 1xd8 + 292 441 327 476 327 523 c 0 + 327 559 303 612 199 612 c 0 + 170 612 125 608 82 590 c 2 + 63 583 l 1 + 23 678 l 1 + 40 687 l 2 + 86 709 142 722 207 722 c 0 + 320 722 448 684 448 534 c 0 +EndSplineSet +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 208 +Width: 219 +VWidth: 1023 +Flags: W +HStem: 506 252<90 154> +VStem: 17 210 +LayerCount: 3 +Fore +SplineSet +17 758 m 1 + 154 758 l 1 + 227 506 l 1 + 90 506 l 1 + 17 758 l 1 +EndSplineSet +EndChar + +StartChar: quoteright +Encoding: 8217 8217 209 +Width: 219 +VWidth: 1023 +Flags: W +HStem: 506 252<65 130> +VStem: -7 210 +LayerCount: 3 +Fore +SplineSet +65 758 m 1 + 203 758 l 1 + 130 506 l 1 + -7 506 l 1 + 65 758 l 1 +EndSplineSet +EndChar + +StartChar: fraction +Encoding: 8260 8260 210 +Width: 505 +VWidth: 0 +Flags: W +LayerCount: 3 +Fore +SplineSet +399 714 m 1 + 531 714 l 1 + 107 -20 l 1 + -25 -20 l 1 + 399 714 l 1 +EndSplineSet +EndChar + +StartChar: florin +Encoding: 402 402 211 +Width: 480 +VWidth: 1023 +Flags: W +HStem: -264 107<-41.6016 127.597> -239 98<-39.4286 34.125> 379 103<56 150 289 462> 591 107<311.921 482.875> +VStem: 150 139<-137.525 379 482 568.287> +LayerCount: 3 +Fore +SplineSet +56 482 m 1xb8 + 150 482 l 1 + 150 515 l 2 + 150 546 152 583 175 618 c 0 + 209 671 276 698 357 698 c 0 + 406 698 452 687 482 678 c 2 + 500 672 l 1 + 479 575 l 1 + 459 580 l 1 + 423 589 402 591 387 591 c 0 + 292 591 289 537 289 508 c 2 + 289 482 l 1 + 462 482 l 1 + 462 379 l 1 + 289 379 l 1 + 289 -86 l 2 + 289 -143 275 -264 83 -264 c 0xb8 + 59 -264 18 -262 -41 -244 c 2 + -58 -239 l 1 + -38 -141 l 1x78 + -18 -146 l 2 + -4 -149 26 -157 55 -157 c 0 + 147 -157 150 -109 150 -77 c 2 + 150 379 l 1 + 56 379 l 1 + 56 482 l 1xb8 +EndSplineSet +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 212 +Width: 296 +VWidth: 1023 +Flags: W +VStem: 12 280 +LayerCount: 3 +Fore +SplineSet +150 502 m 1 + 292 502 l 1 + 143 304 l 1 + 292 106 l 1 + 151 106 l 1 + 12 304 l 1 + 150 502 l 1 +EndSplineSet +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 213 +Width: 296 +VWidth: 1023 +Flags: W +VStem: 5 279 +LayerCount: 3 +Fore +SplineSet +5 502 m 5 + 146 502 l 5 + 284 304 l 5 + 146 106 l 5 + 5 106 l 5 + 154 304 l 5 + 5 502 l 5 +EndSplineSet +EndChar + +StartChar: dagger +Encoding: 8224 8224 214 +Width: 459 +VWidth: 1023 +Flags: W +HStem: 548 96<63 175 285 397> +VStem: 175 110<52 553 639 758> +LayerCount: 3 +Fore +SplineSet +175 553 m 1 + 63 548 l 1 + 63 644 l 1 + 175 639 l 1 + 175 758 l 1 + 285 758 l 1 + 285 639 l 1 + 397 644 l 1 + 397 548 l 1 + 285 553 l 1 + 285 52 l 1 + 175 52 l 1 + 175 553 l 1 +EndSplineSet +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 215 +Width: 459 +VWidth: 1023 +Flags: W +HStem: -23 95<63 175 285 397> 548 96<63 175 285 397> +VStem: 175 110<-137 -19 67 553 639 758> +LayerCount: 3 +Fore +SplineSet +175 553 m 1 + 63 548 l 1 + 63 644 l 1 + 175 639 l 1 + 175 758 l 1 + 285 758 l 1 + 285 639 l 1 + 397 644 l 1 + 397 548 l 1 + 285 553 l 1 + 285 67 l 1 + 397 72 l 1 + 397 -23 l 1 + 285 -19 l 1 + 285 -137 l 1 + 175 -137 l 1 + 175 -19 l 1 + 63 -23 l 1 + 63 72 l 1 + 175 67 l 1 + 175 553 l 1 +EndSplineSet +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 216 +Width: 219 +VWidth: 1023 +Flags: W +HStem: -125 251<65 130> +VStem: -7 210 +LayerCount: 3 +Fore +SplineSet +65 126 m 1 + 203 126 l 1 + 130 -125 l 1 + -7 -125 l 1 + 65 126 l 1 +EndSplineSet +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 217 +Width: 405 +VWidth: 1023 +Flags: W +HStem: -127 252<65 130 251 315> +LayerCount: 3 +Fore +SplineSet +251 125 m 1 + 388 125 l 1 + 315 -127 l 1 + 178 -127 l 1 + 251 125 l 1 +65 125 m 1 + 203 125 l 1 + 130 -127 l 1 + -7 -127 l 1 + 65 125 l 1 +EndSplineSet +EndChar + +StartChar: perthousand +Encoding: 8240 8240 218 +Width: 937 +VWidth: 1023 +Flags: W +HStem: 12 86<442.299 509.89 738.538 805.923> 237 87<441.324 511.927 737.586 807.98> 374 85<126.129 193.185> 599 87<125.047 195.04> +VStem: 28 88<466.114 593.489> 203 88<465.797 593.249> 345 87<106.597 229.272> 520 87<104.59 230.878> 641 88<106.207 231.489> 816 88<104.59 230.878> +LayerCount: 3 +Fore +SplineSet +504 714 m 1 + 636 714 l 1 + 135 -20 l 1 + 3 -20 l 1 + 504 714 l 1 +904 171 m 0 + 904 72 846 12 772 12 c 0 + 708 12 641 51 641 172 c 0 + 641 274 706 324 772 324 c 0 + 828 324 904 293 904 171 c 0 +772 237 m 0 + 737 237 729 205 729 172 c 0 + 729 135 737 98 772 98 c 0 + 807 98 816 133 816 170 c 0 + 816 231 790 237 772 237 c 0 +607 171 m 0 + 607 72 550 12 476 12 c 0 + 412 12 345 51 345 172 c 0 + 345 274 410 324 476 324 c 0 + 532 324 607 293 607 171 c 0 +476 237 m 0 + 441 237 432 205 432 172 c 0 + 432 135 441 98 476 98 c 0 + 511 98 520 133 520 170 c 0 + 520 231 494 237 476 237 c 0 +291 533 m 0 + 291 434 233 374 159 374 c 0 + 95 374 28 413 28 534 c 0 + 28 636 94 686 160 686 c 0 + 214 686 291 657 291 533 c 0 +159 599 m 0 + 124 599 116 567 116 534 c 0 + 116 497 125 459 160 459 c 0 + 195 459 203 495 203 532 c 0 + 203 593 177 599 159 599 c 0 +EndSplineSet +EndChar + +StartChar: circumflex +Encoding: 710 710 219 +Width: 569 +VWidth: 1023 +Flags: W +HStem: 541 241 +VStem: 130 319 +LayerCount: 3 +Fore +SplineSet +296 782 m 1 + 449 612 l 1 + 375 541 l 1 + 289 636 l 1 + 203 542 l 1 + 130 607 l 1 + 296 782 l 1 +EndSplineSet +EndChar + +StartChar: tilde +Encoding: 732 732 220 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 320 100<398.855 457.87> 409 99<250.676 307.303> +LayerCount: 3 +Fore +SplineSet +431.7 420 m 4x80 + 452.7 420 464.7 456 485.7 497 c 5 + 494.7 514 l 5 + 582.7 475 l 5 + 573.7 457 l 6 + 550.7 409 516.7 320 431.7 320 c 5x80 + 340.7 324 305.7 409 274.7 409 c 4 + 253.7 409 241.7 372 220.7 330 c 6 + 211.7 313 l 5 + 124.7 352 l 5 + 132.7 371 l 6 + 155.7 419 189.7 508 274.7 508 c 5x40 + 365.7 504 399.7 420 431.7 420 c 4x80 +EndSplineSet +EndChar + +StartChar: ring +Encoding: 730 730 221 +Width: 529 +VWidth: 0 +Flags: W +HStem: 529 84<246.538 319.026> 704 84<247.52 318.513> +VStem: 156 84<619.833 697.561> 326 85<619.833 698.019> +LayerCount: 3 +Fore +SplineSet +284 704 m 0 + 259 704 240 683 240 659 c 0 + 240 635 258 613 284 613 c 0 + 307 613 326 635 326 659 c 0 + 326 683 308 704 284 704 c 0 +411 659 m 0 + 411 587 354 529 284 529 c 0 + 215 529 156 587 156 659 c 0 + 156 730 213 788 283 788 c 0 + 352 788 411 731 411 659 c 0 +EndSplineSet +EndChar + +StartChar: breve +Encoding: 728 728 222 +Width: 526 +VWidth: 0 +Flags: W +HStem: 528.6 86.4004<204.179 312.742> 673.4 20G<128.2 173 359.4 398.333> +LayerCount: 3 +Back +SplineSet +253 520 m 5 + 101 689 l 5 + 175 760 l 5 + 260 666 l 5 + 347 759 l 5 + 420 695 l 5 + 253 520 l 5 +EndSplineSet +Fore +SplineSet +90.5996 653.4 m 5 + 165.8 693.4 l 5 + 173 679 l 6 + 179.4 664.6 206.6 615 257 615 c 4 + 297.8 615 337 651.8 359.4 681.4 c 5 + 369 693.4 l 5 + 439.4 645.4 l 5 + 429 631.8 l 5 + 387.4 577.4 321.8 528.6 250.6 528.6 c 4 + 169 528.6 115.4 587 95.4004 640.6 c 6 + 90.5996 653.4 l 5 +EndSplineSet +EndChar + +StartChar: caron +Encoding: 711 711 223 +Width: 526 +VWidth: 0 +Flags: W +HStem: 520 240 +VStem: 101 319 +LayerCount: 3 +Fore +SplineSet +253 520 m 5 + 101 689 l 5 + 175 760 l 5 + 260 666 l 5 + 347 759 l 5 + 420 695 l 5 + 253 520 l 5 +EndSplineSet +EndChar + +StartChar: dotaccent +Encoding: 729 729 224 +Width: 585 +VWidth: 0 +Flags: W +HStem: 582 142<217 359> +VStem: 217 142<582 724> +LayerCount: 3 +Fore +SplineSet +217 724 m 1 + 359 724 l 1 + 359 582 l 1 + 217 582 l 1 + 217 724 l 1 +EndSplineSet +EndChar + +StartChar: trademark +Encoding: 8482 8482 225 +Width: 695 +VWidth: 1023 +Flags: W +HStem: 448 302<127 199 325 397 557 629> 687 63<42 127 199 285> +VStem: 127 72<448 687> 325 72<448 629> 557 72<448 630> +LayerCount: 3 +Fore +SplineSet +199 448 m 1xb8 + 127 448 l 1xb8 + 127 687 l 1 + 42 687 l 1 + 42 750 l 1 + 285 750 l 1 + 285 687 l 1 + 199 687 l 1x78 + 199 448 l 1xb8 +325 750 m 1 + 401 750 l 1 + 478 609 l 1 + 551 750 l 1x78 + 629 750 l 1 + 629 448 l 1 + 557 448 l 1 + 557 630 l 1 + 499 522 l 1 + 451 522 l 1 + 397 629 l 1 + 397 448 l 1 + 325 448 l 1 + 325 750 l 1 +EndSplineSet +EndChar + +StartChar: Amacron +Encoding: 256 256 226 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 674 20G<330.075 480.925> 726 103<187 627> +LayerCount: 3 +Fore +SplineSet +338 694 m 1 + 473 694 l 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 338 694 l 1 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +187 829 m 1 + 627 829 l 1 + 627 726 l 1 + 187 726 l 1 + 187 829 l 1 +EndSplineSet +EndChar + +StartChar: amacron +Encoding: 257 257 227 +Width: 563 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 548 103<118 458> +LayerCount: 3 +Fore +SplineSet +118 651 m 5 + 458 651 l 5 + 458 548 l 5 + 118 548 l 5 + 118 651 l 5 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Abreve +Encoding: 258 258 228 +Width: 755 +VWidth: 0 +Flags: W +HStem: 0 21G<63 191.462 612.429 748> 182 112<303 500> 674 20G<330.075 480.925> 720 108<343.164 475.831> +LayerCount: 3 +Fore +SplineSet +178 876 m 5 + 282 926 l 5 + 292 908 l 6 + 301 890 338 828 407 828 c 4 + 463 828 517 874 548 911 c 6 + 561 926 l 5 + 655 866 l 5 + 642 849 l 5 + 587 781 496 720 398 720 c 4 + 286 720 212 792 185 860 c 5 + 178 876 l 5 +500 294 m 1 + 402 552 l 1 + 303 294 l 1 + 500 294 l 1 +338 694 m 1 + 473 694 l 1 + 748 0 l 1 + 621 0 l 1 + 543 182 l 1 + 260 182 l 1 + 183 0 l 1 + 63 0 l 1 + 338 694 l 1 +EndSplineSet +EndChar + +StartChar: abreve +Encoding: 259 259 229 +Width: 566 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 508 108<211.499 357.771> +LayerCount: 3 +Fore +SplineSet +54 664 m 1 + 148 714 l 1 + 158 696 l 1 + 168 678 207 616 282 616 c 0 + 343 616 401 662 430 699 c 2 + 442 714 l 1 + 530 654 l 1 + 517 637 l 1 + 465 569 379 508 273 508 c 0 + 152 508 85 581 60 648 c 2 + 54 664 l 1 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Cacute +Encoding: 262 262 230 +Width: 682 +VWidth: 1023 +Flags: W +HStem: -10 116<321.041 556.178> 585 114<312.582 547.523> 721 264 +VStem: 50 124<248.993 445.898> 176 318 +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 56 220 2 +Refer: 54 67 N 1 0 0 1 0 0 2 +EndChar + +StartChar: cacute +Encoding: 263 263 231 +Width: 518 +VWidth: 0 +Flags: W +HStem: -10 90<232.52 435.388> 400 90<221.782 439.724> 501 264 +VStem: 44.9072 118<159.813 323.276> 124 318 +LayerCount: 3 +Fore +Refer: 18 99 S 1 0 0 1 0 0 2 +Refer: 148 180 N 1 0 0 1 4 0 2 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 232 +Width: 682 +VWidth: 1023 +Flags: W +HStem: -10 116<321.041 556.178> 585 114<312.582 547.523> 721 241 +VStem: 50 124<248.993 445.898> 222 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 92 180 2 +Refer: 54 67 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 233 +Width: 518 +VWidth: 1023 +Flags: W +HStem: -10 90<232.52 435.388> 400 90<221.782 439.724> 541 241 +VStem: 44.9072 118<159.813 323.276> 126 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 -4 0 2 +Refer: 18 99 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 234 +Width: 788 +VWidth: 0 +Flags: W +HStem: -10 116<421.749 676.691> 585 114<412.52 668.923> 750 143<381 540> +VStem: 134 124<255.911 443.299> 381 159<750 893> +LayerCount: 3 +Fore +SplineSet +381 893 m 1 + 540 893 l 1 + 540 750 l 1 + 381 750 l 1 + 381 893 l 1 +134 346 m 0 + 134 546 280 699 530 699 c 0 + 590 699 664 689 737 660 c 1 + 755 653 l 1 + 717 547 l 1 + 698 554 l 1 + 618 581 562 585 527 585 c 0 + 360 585 258 472 258 347 c 0 + 258 218 367 106 547 106 c 0 + 596 106 653 116 707 135 c 2 + 725 141 l 1 + 765 43 l 1 + 747 36 l 2 + 674 5 594 -10 523 -10 c 0 + 273 -10 134 149 134 346 c 0 +EndSplineSet +EndChar + +StartChar: cdotaccent +Encoding: 267 267 235 +Width: 568 +VWidth: 0 +Flags: W +HStem: -10 106<255.865 475.152> 382 109<247.328 479.508> 552 142<247 415> +VStem: 63 118<165.011 321.773> 247 168<552 694> +LayerCount: 3 +Fore +SplineSet +63 231 m 0 + 63 427 202 491 348 491 c 0 + 407 491 455 481 500 461 c 2 + 518 454 l 1 + 486 358 l 1 + 467 365 l 2 + 435 376 401 382 360 382 c 0 + 270 382 181 355 181 246 c 0 + 181 138 257 96 371 96 c 0 + 405 96 434 101 461 111 c 1 + 480 118 l 1 + 513 25 l 1 + 495 19 l 2 + 441 -2 387 -10 337 -10 c 0 + 200 -10 63 43 63 231 c 0 +247 694 m 5 + 415 694 l 5 + 415 552 l 5 + 247 552 l 5 + 247 694 l 5 +EndSplineSet +EndChar + +StartChar: Ccaron +Encoding: 268 268 236 +Width: 682 +VWidth: 1023 +Flags: W +HStem: -10 116<321.041 556.178> 585 114<312.582 547.523> 720 240 +VStem: 50 124<248.993 445.898> 222 319 +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 121 200 2 +Refer: 54 67 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ccaron +Encoding: 269 269 237 +Width: 518 +VWidth: 1023 +Flags: W +HStem: -10 90<232.52 435.388> 400 90<221.782 439.724> 520 240 +VStem: 44.9072 118<159.813 323.276> 134 319 +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 33 0 2 +Refer: 18 99 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Dcaron +Encoding: 270 270 238 +Width: 860 +VWidth: 0 +Flags: W +HStem: 0 113<265 516.066> 581 113<265 518.636> +VStem: 142 123<113 581> 659 123<245.346 452.971> +LayerCount: 3 +Back +SplineSet +376.953 693.848 m 5xb8 + 706.543 693.848 786.133 520.02 786.133 367.188 c 4 + 786.133 226.074 729.98 61.0352 514.648 15.1367 c 4 + 444.824 0 375 0 315.918 0 c 4 + 314.453 0 313.477 0 312.012 0 c 6 + 141.602 0 l 5 + 141.602 693.848 l 5xb8 + 376.953 693.848 l 5xb8 +379.883 580.566 m 6xd8 + 264.648 580.566 l 5xb8 + 264.648 113.281 l 5 + 345.703 113.281 l 6 + 431.152 113.281 560.059 115.723 626.953 220.703 c 4 + 641.602 243.652 662.109 286.133 662.109 351.074 c 4 + 662.109 499.023 548.34 563.965 451.172 577.148 c 4 + 428.711 580.078 404.785 580.566 379.883 580.566 c 6xd8 +440.43 711.426 m 5 + 279.297 881.348 l 5 + 353.516 952.148 l 5 + 448.73 857.422 l 5 + 549.316 950.684 l 5 + 634.277 885.742 l 5 + 440.43 711.426 l 5 +EndSplineSet +Fore +SplineSet +435 712 m 1 + 283 882 l 1 + 357 953 l 1 + 442 858 l 1 + 529 951 l 1 + 602 888 l 1 + 435 712 l 1 +391 581 m 2 + 265 581 l 1 + 265 113 l 1 + 354 113 l 2 + 439 113 562 116 625 221 c 0 + 639 244 659 286 659 351 c 0 + 659 499 550 564 458 577 c 0 + 437 580 414 581 391 581 c 2 +388 694 m 2 + 702 694 782 520 782 367 c 0 + 782 226 726 62 519 15 c 0 + 453 0 386 0 321 0 c 2 + 142 0 l 1 + 142 694 l 1 + 388 694 l 2 +EndSplineSet +EndChar + +StartChar: dcaron +Encoding: 271 271 239 +Width: 841 +VWidth: 1023 +Flags: W +HStem: -10 106<253.293 443.689> 0 21G<469.909 567> 389 103<249.155 445.612> 718 20G<447 567 668.996 825> +VStem: 63 119<162.788 326.028> 447 120<106.547 380.141 476 738> +LayerCount: 3 +Fore +SplineSet +678 738 m 1x3c + 825 738 l 1 + 720 507 l 1 + 574 507 l 1 + 678 738 l 1x3c +63 233 m 0 + 63 402 173 492 333 492 c 0 + 376 492 414 486 447 476 c 1 + 447 738 l 1 + 567 738 l 1 + 567 0 l 1 + 479 0 l 1x7c + 469 22 l 1 + 419 -1 364 -10 317 -10 c 0xbc + 195 -10 63 50 63 233 c 0 +348 96 m 0xbc + 386 96 421 104 447 113 c 1 + 447 375 l 1 + 421 382 385 389 347 389 c 0 + 282 389 182 367 182 245 c 0 + 182 122 281 96 348 96 c 0xbc +EndSplineSet +EndChar + +StartChar: Dcroat +Encoding: 272 272 240 +Width: 863 +VWidth: 0 +Flags: W +HStem: 0 113<287 531.112> 301 114<57 164 287 414> 581 113<287 536.007> +VStem: 164 123<113 301 415 581> 684 124<239.352 449.531> +LayerCount: 3 +Back +SplineSet +398.926 693.848 m 5xdc + 728.516 693.848 808.105 520.02 808.105 367.188 c 4 + 808.105 226.074 751.953 61.0352 536.621 15.1367 c 4 + 466.797 0 396.973 0 337.891 0 c 4 + 336.426 0 335.449 0 333.984 0 c 6 + 163.574 0 l 5 + 163.574 301.27 l 5 + 57.1289 301.27 l 5 + 57.1289 414.551 l 5 + 163.574 414.551 l 5 + 163.574 693.848 l 5xdc + 163.574 693.848 236.328 702.637 306.152 702.637 c 4xec + 340.82 702.637 375 700.684 398.926 693.848 c 5xdc +413.574 301.27 m 5 + 286.621 301.27 l 5 + 286.621 113.281 l 5 + 367.676 113.281 l 6 + 453.125 113.281 582.031 115.723 648.926 220.703 c 4 + 663.574 243.652 684.082 286.133 684.082 351.074 c 4 + 684.082 499.023 570.312 563.965 473.145 577.148 c 4 + 450.684 580.078 426.758 580.566 401.855 580.566 c 6xec + 286.621 580.566 l 5 + 286.621 414.551 l 5 + 413.574 414.551 l 5 + 413.574 301.27 l 5 +EndSplineSet +Fore +SplineSet +402 581 m 2 + 287 581 l 1 + 287 415 l 1 + 414 415 l 1 + 414 301 l 1 + 287 301 l 1 + 287 113 l 1 + 368 113 l 2 + 492 113 684 128 684 351 c 0 + 684 448 632 581 402 581 c 2 +164 694 m 1 + 396 694 l 2 + 503 694 808 678 808 367 c 0 + 808 21 508 0 365 0 c 2 + 164 0 l 1 + 164 301 l 1 + 57 301 l 1 + 57 415 l 1 + 164 415 l 1 + 164 694 l 1 +EndSplineSet +EndChar + +StartChar: Emacron +Encoding: 274 274 241 +Width: 706 +VWidth: 0 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> 726 103<176 614> +VStem: 142 123<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +142 0 m 1 + 142 694 l 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 +176 829 m 1 + 614 829 l 1 + 614 726 l 1 + 176 726 l 1 + 176 829 l 1 +EndSplineSet +EndChar + +StartChar: emacron +Encoding: 275 275 242 +Width: 564 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 538 113<112 481> +LayerCount: 3 +Fore +SplineSet +112 651 m 5 + 481 651 l 5 + 481 538 l 5 + 112 538 l 5 + 112 651 l 5 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ebreve +Encoding: 276 276 243 +Width: 706 +VWidth: 0 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> 721 107<315.194 462.047> +VStem: 142 123<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +545 926 m 1 + 634 866 l 1 + 621 849 l 1 + 555 761 465 721 375 721 c 0 + 272 721 194 774 163 860 c 2 + 157 876 l 1 + 252 926 l 1 + 261 908 l 1 + 289 858 335 828 386 828 c 0 + 429 828 482 849 534 911 c 1 + 545 926 l 1 +142 0 m 1 + 142 694 l 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 +EndSplineSet +EndChar + +StartChar: ebreve +Encoding: 277 277 244 +Width: 570 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 508 108<219.987 364.028> +LayerCount: 3 +Fore +SplineSet +59 664 m 1 + 157 714 l 1 + 167 696 l 2 + 177 678 216 616 289 616 c 0 + 349 616 406 662 435 699 c 2 + 447 714 l 1 + 535 654 l 1 + 523 637 l 1 + 471 569 385 508 281 508 c 0 + 162 508 90 581 65 648 c 2 + 59 664 l 1 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 245 +Width: 706 +VWidth: 0 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> 750 143<294 464> +VStem: 142 123<113 301 414 581> 294 170<750 893> +LayerCount: 3 +Fore +SplineSet +142 0 m 1 + 142 694 l 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 +294 893 m 1 + 464 893 l 1 + 464 750 l 1 + 294 750 l 1 + 294 893 l 1 +EndSplineSet +EndChar + +StartChar: edotaccent +Encoding: 279 279 246 +Width: 564 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 552 142<204 374> +VStem: 204 170<552 694> +LayerCount: 3 +Fore +SplineSet +204 694 m 5 + 374 694 l 5 + 374 552 l 5 + 204 552 l 5 + 204 694 l 5 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ecaron +Encoding: 282 282 247 +Width: 706 +VWidth: 0 +Flags: W +HStem: 0 113<265 628> 301 113<265 602> 581 113<265 628> +VStem: 142 123<113 301 414 581> +LayerCount: 3 +Fore +SplineSet +142 0 m 1 + 142 694 l 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 0 l 1 + 142 0 l 1 +377 711 m 1 + 206 881 l 1 + 283 952 l 1 + 385 857 l 1 + 489 951 l 1 + 565 886 l 1 + 377 711 l 1 +EndSplineSet +EndChar + +StartChar: ecaron +Encoding: 283 283 248 +Width: 564 +VWidth: 0 +Flags: W +HStem: 0 90 200 65 400 90 520 240 +VStem: 147 319 +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 46 0 2 +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 249 +Width: 755 +VWidth: 1023 +Flags: W +HStem: -10 114<324.64 534.136> 278 108<369.3 564.6> 586 113<317.604 537.267> 721 241 +VStem: 50 124<247.869 448.158> 227 319 564.6 121<130.36 278> +LayerCount: 3 +Fore +Refer: 219 710 N 1 0 0 1 97 180 2 +Refer: 28 71 N 1 0 0 1 0 0 2 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 250 +Width: 589 +VWidth: 1023 +Flags: W +HStem: -264 107<130.489 340.633> -10 106<231.992 400.981> 387 105<227.837 400.947> 462 20<425.626 522.293> 541 241 +VStem: 44.1934 125<161.09 328.324> 130 319 402.293 120<-92.3037 12 106.606 375.187> +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 0 0 2 +Refer: 30 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gbreve +Encoding: 286 286 251 +Width: 856 +VWidth: 0 +Flags: W +HStem: -10 114<397.983 627.714> 278 108<446 663> 586 113<388.464 631.362> 720 108<409.747 543.818> +VStem: 105 124<254.813 446.18> 663 121<132.304 278> +LayerCount: 3 +Fore +SplineSet +245 876 m 1 + 348 926 l 1 + 358 908 l 2 + 367 890 404 828 474 828 c 0 + 530 828 584 874 615 911 c 2 + 627 926 l 1 + 719 866 l 1 + 706 849 l 1 + 656 784 567 720 465 720 c 0 + 353 720 278 792 251 860 c 1 + 245 876 l 1 +784 101 m 1 + 758 73 679 -10 495 -10 c 0 + 227 -10 105 163 105 340 c 0 + 105 519 231 699 493 699 c 0 + 596 699 683 671 742 638 c 1 + 759 628 l 1 + 708 531 l 1 + 690 541 l 1 + 651 561 576 586 498 586 c 0 + 361 586 229 499 229 351 c 0 + 229 207 350 104 516 104 c 0 + 581 104 629 121 663 145 c 1 + 663 278 l 1 + 446 278 l 1 + 446 386 l 1 + 784 386 l 1 + 784 101 l 1 +EndSplineSet +EndChar + +StartChar: gbreve +Encoding: 287 287 252 +Width: 654 +VWidth: 0 +Flags: W +HStem: -264 107<147.07 370.058> -10 106<251.334 439.542> 387 105<244.506 439.466> 462 20G<467.429 566> 508 108<277.097 418.367> +VStem: 62 119<167.641 323.418> 441 125<-88.2017 12 107.391 374.641> +LayerCount: 3 +Fore +SplineSet +283 -264 m 0xde + 233 -264 170 -255 112 -231 c 1 + 94 -224 l 1 + 130 -129 l 1 + 149 -136 l 1 + 189 -150 233 -157 271 -157 c 0 + 449 -157 441 -22 441 12 c 1 + 405 -1 363 -10 317 -10 c 0 + 192 -10 62 56 62 240 c 0 + 62 431 218 492 326 492 c 0xee + 348 492 392 491 467 461 c 1 + 476 482 l 1 + 566 482 l 1 + 566 -3 l 2 + 566 -207 423 -264 283 -264 c 0xde +181 248 m 0 + 181 164 233 96 343 96 c 0 + 381 96 415 105 441 114 c 1 + 441 369 l 1 + 390 384 355 387 332 387 c 0 + 241 387 181 333 181 248 c 0 +120 648 m 2 + 114 664 l 1 + 212 714 l 1 + 222 696 l 2 + 232 678 271 616 344 616 c 0 + 404 616 460 662 490 699 c 1 + 502 714 l 1 + 590 654 l 1 + 577 637 l 1 + 525 569 439 508 335 508 c 0 + 217 508 145 581 120 648 c 2 +EndSplineSet +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 253 +Width: 856 +VWidth: 0 +Flags: W +HStem: -10 114<396.834 627.714> 278 108<446 663> 586 113<388.775 631.362> 750 143<406 562> +VStem: 105 124<254.627 445.232> 406 156<750 893> 663 121<132.304 278> +LayerCount: 3 +Fore +SplineSet +406 893 m 1 + 562 893 l 1 + 562 750 l 1 + 406 750 l 1 + 406 893 l 1 +784 101 m 1 + 758 73 679 -10 495 -10 c 0 + 219 -10 105 175 105 346 c 0 + 105 527 233 699 493 699 c 0 + 596 699 683 671 742 638 c 1 + 759 628 l 1 + 708 531 l 1 + 690 541 l 1 + 651 561 576 586 498 586 c 0 + 361 586 229 499 229 351 c 0 + 229 207 350 104 516 104 c 0 + 581 104 629 121 663 145 c 1 + 663 278 l 1 + 446 278 l 1 + 446 386 l 1 + 784 386 l 1 + 784 101 l 1 +EndSplineSet +EndChar + +StartChar: gdotaccent +Encoding: 289 289 254 +Width: 654 +VWidth: 0 +Flags: W +HStem: -264 107<147.07 371.577> -10 106<251.334 439.542> 387 105<244.506 439.466> 462 20G<467.429 566> 552 142<244 409> +VStem: 62 119<167.641 323.418> 244 165<552 694> 441 125<-86.8073 12 107.391 374.641> +LayerCount: 3 +Fore +SplineSet +244 552 m 1xcf + 244 694 l 1 + 409 694 l 1 + 409 552 l 1 + 244 552 l 1xcf +181 248 m 0 + 181 164 233 96 343 96 c 0 + 381 96 415 105 441 114 c 1 + 441 369 l 1 + 390 384 355 387 332 387 c 0xef + 241 387 181 333 181 248 c 0 +326 492 m 0 + 348 492 392 491 467 461 c 1 + 476 482 l 1 + 566 482 l 1xdf + 566 -10 l 2 + 566 -124 515 -264 283 -264 c 0 + 233 -264 170 -255 112 -231 c 1 + 94 -224 l 1 + 130 -129 l 1 + 149 -136 l 2 + 175 -146 220 -157 271 -157 c 0 + 449 -157 441 -22 441 12 c 1 + 405 -1 363 -10 317 -10 c 0 + 192 -10 62 56 62 240 c 0 + 62 431 218 492 326 492 c 0 +EndSplineSet +EndChar + +StartChar: Gcommaaccent +Encoding: 290 290 255 +Width: 856 +VWidth: 0 +Flags: W +HStem: -10 114<396.834 627.714> 278 108<446 663> 586 113<388.931 631.362> +VStem: 105 124<254.627 445.418> 663 121<132.304 278> +LayerCount: 3 +Fore +SplineSet +784 101 m 1 + 758 73 679 -10 495 -10 c 0 + 219 -10 105 175 105 346 c 0 + 105 528 234 699 493 699 c 0 + 596 699 683 671 742 638 c 1 + 759 628 l 1 + 708 531 l 1 + 690 541 l 1 + 651 561 576 586 498 586 c 0 + 361 586 229 499 229 351 c 0 + 229 207 350 104 516 104 c 0 + 581 104 629 121 663 145 c 1 + 663 278 l 1 + 446 278 l 1 + 446 386 l 1 + 784 386 l 1 + 784 101 l 1 +460 -29 m 1 + 605 -29 l 1 + 502 -259 l 1 + 358 -259 l 1 + 460 -29 l 1 +EndSplineSet +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 256 +Width: 739 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203 536.899 659.899> 301 114<203 536.899> 674 20<80 203 536.899 659.899> 721 241 +VStem: 80 123<0 301 415 694> 219 319 536.899 123<0 301 415 694> +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 89 180 2 +Refer: 29 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 257 +Width: 584 +VWidth: 1023 +Flags: W +HStem: 0 21<66.291 186.291 397.791 516.791> 380 111<214.967 366.456> 673 20<66.291 186.291> 718 241 +VStem: -31 319 66.291 120<0 361.306 458 693> 397.791 119<0 348.095> +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 -161 177 2 +Refer: 3 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Itilde +Encoding: 296 296 258 +Width: 396 +VWidth: 0 +Flags: W +HStem: 0 21G<161 284> 674 20G<161 284> +VStem: 41 89<751.112 801.213> 161 123<0 694> 314 89<837.094 891.966> +LayerCount: 3 +Back +SplineSet +148.926 795.898 m 6 + 130.371 729.004 l 5 + 41.0156 752.93 l 5 + 59.082 820.312 l 6 + 62.5 833.008 80.5664 911.133 165.527 911.133 c 4 + 213.379 911.133 235.84 878.418 244.141 866.699 c 6 + 267.578 835.938 l 6 + 273.438 829.102 279.785 820.801 284.18 818.848 c 5 + 288.086 822.754 292.969 835.449 295.41 846.68 c 5 + 314.453 915.039 l 5 + 403.32 890.137 l 5 + 385.742 823.73 l 6 + 379.395 800.781 356.445 716.797 277.344 716.797 c 4 + 229.492 716.797 206.055 754.395 200.195 762.207 c 6 + 176.758 793.457 l 6 + 168.457 803.711 160.156 811.035 155.762 811.523 c 5 + 153.32 809.57 150.879 802.734 148.926 795.898 c 6 +160.645 0 m 5 + 160.645 693.848 l 5 + 283.691 693.848 l 5 + 283.691 0 l 5 + 160.645 0 l 5 +284.668 818.848 m 5 + 284.668 818.848 l 5 +EndSplineSet +Fore +SplineSet +277 717 m 4 + 203 717 180 811 159 811 c 4 + 152 811 151 804 130 729 c 5 + 41 753 l 5 + 61 825 71 911 166 911 c 4 + 243 911 263 821 284 821 c 4 + 290 821 290 827 314 915 c 5 + 403 890 l 5 + 384 820 369 717 277 717 c 4 +161 0 m 1 + 161 694 l 1 + 284 694 l 1 + 284 0 l 1 + 161 0 l 1 +EndSplineSet +EndChar + +StartChar: itilde +Encoding: 297 297 259 +Width: 295 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208> 462 20G<88 208> +VStem: -28 89<581.191 634.784> 88 120<0 482> 245 89<667.955 722.966> +LayerCount: 3 +Back +SplineSet +367.188 609.375 m 4 + 401.855 609.375 416.504 650.879 440.43 698.242 c 5 + 491.211 675.293 l 5 + 465.82 623.047 437.5 549.805 367.188 549.805 c 4 + 290.039 549.805 256.348 637.695 211.426 637.695 c 4 + 176.758 637.695 162.598 596.68 138.672 548.828 c 5 + 86.9141 571.777 l 5 + 112.305 624.023 141.113 697.266 211.426 697.266 c 4 + 288.574 697.266 322.266 609.375 367.188 609.375 c 4 +EndSplineSet +Fore +SplineSet +88 482 m 1 + 208 482 l 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1 +208 547 m 0 + 134 547 110 641 89 641 c 0 + 82 641 82 635 61 560 c 1 + -28 583 l 1 + -8 655 1 742 96 742 c 0 + 173 742 193 651 214 651 c 0 + 220 651 221 658 245 746 c 1 + 334 721 l 1 + 315 651 300 547 208 547 c 0 +EndSplineSet +EndChar + +StartChar: Imacron +Encoding: 298 298 260 +Width: 396 +VWidth: 0 +Flags: W +HStem: 0 21G<156 279> 674 20G<156 279> 726 103<98 338> +VStem: 156 123<0 694> +LayerCount: 3 +Fore +SplineSet +98 829 m 1 + 338 829 l 1 + 338 726 l 1 + 98 726 l 1 + 98 829 l 1 +156 694 m 1 + 279 694 l 1 + 279 0 l 1 + 156 0 l 1 + 156 694 l 1 +EndSplineSet +EndChar + +StartChar: imacron +Encoding: 299 299 261 +Width: 295 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208> 462 20G<88 208> 548 103<39 257> +VStem: 88 120<0 482> +LayerCount: 3 +Fore +SplineSet +88 482 m 1 + 208 482 l 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1 +39 651 m 1 + 257 651 l 1 + 257 548 l 1 + 39 548 l 1 + 39 651 l 1 +EndSplineSet +EndChar + +StartChar: Ibreve +Encoding: 300 300 262 +Width: 436 +VWidth: 0 +Flags: W +HStem: 0 21G<160 283> 674 20G<160 283> 719 107<174.574 280.165> +VStem: 160 123<0 694> +LayerCount: 3 +Back +SplineSet +40.5273 872.559 m 5 + 135.254 923.34 l 5 + 143.555 901.855 l 6 + 159.668 859.375 188.965 832.52 219.727 832.52 c 4 + 252.93 832.52 281.738 858.398 356.934 905.762 c 5 + 369.629 922.852 l 5 + 444.336 860.84 l 5 + 436.035 846.191 l 6 + 394.043 775.391 299.805 720.215 204.59 720.215 c 4 + 109.863 720.215 63.9648 796.875 45.4102 856.934 c 6 + 40.5273 872.559 l 5 +EndSplineSet +Fore +SplineSet +42 875 m 5 + 136 925 l 5 + 145 906 l 6 + 153 888 163 826 226 826 c 4 + 277 826 306 873 334 910 c 5 + 346 925 l 5 + 434 865 l 5 + 421 848 l 5 + 369 780 307 719 218 719 c 4 + 116 719 73 791 48 858 c 6 + 42 875 l 5 +160 694 m 1 + 283 694 l 1 + 283 0 l 1 + 160 0 l 1 + 160 694 l 1 +EndSplineSet +EndChar + +StartChar: ibreve +Encoding: 301 301 263 +Width: 335 +VWidth: 0 +Flags: W +HStem: 0 21G<92 212> 462 20G<92 212> 543 107<110.732 216.435> +VStem: 92 120<0 482> +LayerCount: 3 +Fore +SplineSet +-21 699 m 5 + 72 749 l 5 + 82 730 l 6 + 90 712 99 650 162 650 c 4 + 213 650 243 697 271 734 c 5 + 283 749 l 5 + 371 689 l 5 + 358 672 l 5 + 306 604 243 543 154 543 c 4 + 52 543 9 616 -16 683 c 6 + -21 699 l 5 +92 482 m 1 + 212 482 l 1 + 212 0 l 1 + 92 0 l 1 + 92 482 l 1 +EndSplineSet +EndChar + +StartChar: Idotaccent +Encoding: 304 304 264 +Width: 396 +VWidth: 0 +Flags: W +HStem: 0 21G<156 279> 674 20G<156 279> 750 143<146 288> +VStem: 146 142<750 893> 156 123<0 694> +LayerCount: 3 +Fore +SplineSet +146 893 m 1xf0 + 288 893 l 1 + 288 750 l 1 + 146 750 l 1 + 146 893 l 1xf0 +156 694 m 1xe8 + 279 694 l 1 + 279 0 l 1 + 156 0 l 1 + 156 694 l 1xe8 +EndSplineSet +EndChar + +StartChar: IJ +Encoding: 306 306 265 +Width: 941 +VWidth: 0 +Flags: W +HStem: -8 113<467.93 653.585> 0 21G<156 279> 9 108<469.639 555.014> 674 20G<156 279 720 843> +VStem: 156 123<0 694> 720 123<164.285 694> +LayerCount: 3 +Fore +SplineSet +156 694 m 1x5c + 279 694 l 1 + 279 0 l 1 + 156 0 l 1 + 156 694 l 1x5c +720 694 m 1 + 843 694 l 1 + 843 250 l 2 + 843 141 814 -8 569 -8 c 0x9c + 535 -8 502 -4 469 4 c 2 + 450 9 l 1 + 471 117 l 1x3c + 491 112 l 2 + 512 107 535 105 556 105 c 0x9c + 713 105 720 207 720 250 c 2 + 720 694 l 1 +EndSplineSet +EndChar + +StartChar: ij +Encoding: 307 307 266 +Width: 591 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208> 462 20G<88 208 382 502> 562 132<81 217 375 511> +VStem: 81 136<562 694> 88 120<0 482> 375 136<562 694> 382 120<-120.677 482> +LayerCount: 3 +Fore +SplineSet +382 482 m 1xe2 + 502 482 l 1 + 502 -47 l 2 + 502 -103 500 -209 354 -260 c 1 + 333 -266 l 1 + 271 -171 l 1 + 295 -162 l 2 + 369 -135 382 -96 382 -57 c 2 + 382 482 l 1xe2 +375 694 m 1xe4 + 511 694 l 1 + 511 562 l 1 + 375 562 l 1 + 375 694 l 1xe4 +88 482 m 1xe8 + 208 482 l 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1xe8 +81 694 m 1xf0 + 217 694 l 1 + 217 562 l 1 + 81 562 l 1 + 81 694 l 1xf0 +EndSplineSet +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 267 +Width: 545 +VWidth: 1023 +Flags: W +HStem: -8 113<71.0547 257.063> 9 108<72.7037 158.015> 674 20G<323 446> +VStem: 323 123<164.285 694> +LayerCount: 3 +Back +SplineSet +388.184 952.637 m 5x20 + 540.527 782.715 l 5 + 465.82 711.914 l 5 + 380.859 806.641 l 5 + 283.691 713.379 l 5 + 183.594 778.32 l 5 + 388.184 952.637 l 5x20 +323.242 693.848 m 5xa8 + 446.289 693.848 l 5xa8 + 446.289 215.332 l 6 + 446.289 150.879 437.988 99.1211 387.207 54.1992 c 5 + 359.863 31.25 297.363 -8.30078 172.852 -8.30078 c 4xb0 + 139.16 -8.30078 104.98 -4.39453 72.2656 3.90625 c 6 + 53.7109 8.78906 l 5 + 74.2188 117.188 l 5x70 + 94.7266 112.305 l 6 + 115.234 107.422 137.695 104.98 159.18 104.98 c 4 + 298.34 104.98 304.199 172.852 304.199 216.309 c 5xb0 + 323.242 693.848 l 5xa8 +EndSplineSet +Fore +SplineSet +323 694 m 1xb0 + 446 694 l 1 + 446 250 l 2 + 446 141 418 -8 173 -8 c 0xb0 + 139 -8 105 -4 72 4 c 2 + 54 9 l 1 + 74 117 l 1x70 + 95 112 l 2 + 116 107 138 105 159 105 c 0 + 316 105 323 207 323 250 c 2 + 323 694 l 1xb0 +387 953 m 1 + 540 783 l 1 + 465 712 l 1 + 380 807 l 1 + 293 713 l 1 + 220 778 l 1 + 387 953 l 1 +EndSplineSet +EndChar + +StartChar: jcircumflex +Encoding: 309 309 268 +Width: 295 +VWidth: 0 +Flags: W +HStem: 462 20G<96 216> 719 20G<141.938 174.838> +VStem: 96 120<-124.777 482> +LayerCount: 3 +Fore +SplineSet +159 739 m 1 + 296 566 l 1 + 222 495 l 1 + 152 583 l 1 + 81 497 l 1 + 8 562 l 1 + 159 739 l 1 +96 482 m 1 + 216 482 l 1 + 216 -47 l 2 + 216 -109 211 -210 74 -260 c 1 + 57 -266 l 1 + 10 -171 l 1 + 28 -162 l 2 + 93 -131 96 -81 96 -55 c 2 + 96 482 l 1 +EndSplineSet +EndChar + +StartChar: Kcommaaccent +Encoding: 310 310 269 +Width: 771 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 577.238 756> 674 20G<142 265 561.126 739> +VStem: 142 123<0 336 376 694> +LayerCount: 3 +Fore +SplineSet +142 0 m 1 + 142 694 l 1 + 265 694 l 1 + 265 376 l 1 + 581 694 l 1 + 739 694 l 1 + 405 362 l 1 + 756 0 l 1 + 597 0 l 1 + 265 336 l 1 + 265 0 l 1 + 142 0 l 1 +229 -250 m 5 + 331 -20 l 5 + 480 -20 l 5 + 374 -250 l 5 + 229 -250 l 5 +EndSplineSet +EndChar + +StartChar: kcommaaccent +Encoding: 311 311 270 +Width: 604 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208 424.333 592> 472 20G<416.241 584> 718 20G<88 208> +VStem: 88 120<0 240 289 738> +LayerCount: 3 +Fore +SplineSet +151 -250 m 5 + 253 -20 l 5 + 402 -20 l 5 + 296 -250 l 5 + 151 -250 l 5 +88 0 m 1 + 88 738 l 1 + 208 738 l 1 + 208 289 l 1 + 439 492 l 1 + 584 492 l 1 + 335 271 l 1 + 592 0 l 1 + 444 0 l 1 + 208 240 l 1 + 208 0 l 1 + 88 0 l 1 +EndSplineSet +EndChar + +StartChar: Lacute +Encoding: 313 313 271 +Width: 633 +VWidth: 0 +Flags: W +HStem: 0 113<274 623> 674 20G<148 271.103> +VStem: 148 126<113 694> +LayerCount: 3 +Fore +SplineSet +148 694 m 1 + 271 694 l 1 + 274 113 l 1 + 623 113 l 1 + 623 0 l 1 + 148 0 l 1 + 148 694 l 1 +449 973 m 1 + 513 877 l 1 + 188 713 l 1 + 138 800 l 1 + 449 973 l 1 +EndSplineSet +EndChar + +StartChar: lacute +Encoding: 314 314 272 +Width: 355 +VWidth: 0 +Flags: W +HStem: -9.67395 104.22<141.5 304.592> 673.976 20<69.3868 189.4> 726 264 +VStem: 0 318 69 120.145<103.052 693.976> +LayerCount: 3 +Fore +Refer: 148 180 N 1 0 0 1 -120 225 2 +Refer: 10 108 S 1 0 0 1 0 0.22644 2 +EndChar + +StartChar: Lcommaaccent +Encoding: 315 315 273 +Width: 633 +VWidth: 0 +Flags: W +HStem: 0 113<277 626> 674 20G<151 274.103> +VStem: 151 126<113 694> +LayerCount: 3 +Fore +SplineSet +151 694 m 1 + 274 694 l 1 + 277 113 l 1 + 626 113 l 1 + 626 0 l 1 + 151 0 l 1 + 151 694 l 1 +234 -20 m 1 + 385 -20 l 1 + 274 -250 l 1 + 141 -250 l 1 + 234 -20 l 1 +EndSplineSet +EndChar + +StartChar: lcommaaccent +Encoding: 316 316 274 +Width: 315 +VWidth: 0 +Flags: W +HStem: -9.90039 104.22<141.5 304.592> 673.75 20<69.3868 189.4> +VStem: 69 120.145<102.826 693.75> +LayerCount: 3 +Fore +SplineSet +127 -27 m 5 + 259 -27 l 5 + 165 -257 l 5 + 34 -257 l 5 + 127 -27 l 5 +EndSplineSet +Refer: 10 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Lcaron +Encoding: 317 317 275 +Width: 633 +VWidth: 0 +Flags: W +HStem: 0 113<265 616> 674 20G<142 265 445.861 585> +VStem: 142 123<113 694> +LayerCount: 3 +Fore +SplineSet +454 694 m 1 + 585 694 l 1 + 491 463 l 1 + 360 463 l 1 + 454 694 l 1 +142 694 m 1 + 265 694 l 1 + 265 113 l 1 + 616 113 l 1 + 616 0 l 1 + 142 0 l 1 + 142 694 l 1 +EndSplineSet +EndChar + +StartChar: lcaron +Encoding: 318 318 276 +Width: 433 +VWidth: 0 +Flags: W +HStem: -9.90039 104.22<141.5 304.592> 673.75 20<69.3868 189.4> +VStem: 69 120.145<102.826 693.75> +LayerCount: 3 +Fore +SplineSet +293 738 m 1 + 416 738 l 1 + 346 507 l 1 + 224 507 l 1 + 293 738 l 1 +EndSplineSet +Refer: 10 108 S 1 0 0 1 0 0 2 +EndChar + +StartChar: Ldot +Encoding: 319 319 277 +Width: 633 +VWidth: 0 +Flags: W +HStem: 0 113<265 616> 279 143<346 514> 674 20G<142 265> +VStem: 142 123<113 694> 346 168<279 422> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 265 694 l 1 + 265 113 l 1 + 616 113 l 1 + 616 0 l 1 + 142 0 l 1 + 142 694 l 1 +346 422 m 1 + 514 422 l 1 + 514 279 l 1 + 346 279 l 1 + 346 422 l 1 +EndSplineSet +EndChar + +StartChar: ldot +Encoding: 320 320 278 +Width: 442 +VWidth: 0 +Flags: W +HStem: -9.90039 104.22<141.5 304.592> 287 142<261 403> 673.75 20<69.3868 189.4> +VStem: 69 120.145<102.826 693.75> 261 142<287 429> +LayerCount: 3 +Fore +SplineSet +261 429 m 1 + 403 429 l 1 + 403 287 l 1 + 261 287 l 1 + 261 429 l 1 +EndSplineSet +Refer: 10 108 S 1 0 0 1 0 0 2 +EndChar + +StartChar: Nacute +Encoding: 323 323 279 +Width: 890 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 635.581 788> 674 20G<142 291.559 665 788> 731 264 +VStem: 142 123<0 534> 335 318 665 123<161 694> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 277 694 l 1 + 665 161 l 1 + 665 694 l 1 + 788 694 l 1 + 788 0 l 1 + 650 0 l 1 + 265 534 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 +EndSplineSet +Refer: 148 180 S 1 0 0 1 215 230 2 +EndChar + +StartChar: nacute +Encoding: 324 324 280 +Width: 579 +VWidth: 1023 +Flags: W +HStem: 0 21<63 183 390.9 511.9> 380 112<215.58 363.707> 462 20<63 156.697> 501 264 +VStem: 63 120<0 361.288> 120 318 390.9 121<0 354.174> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 0 0 2 +Refer: 5 110 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ncommaaccent +Encoding: 325 325 281 +Width: 890 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 635.581 788> 674 20G<142 291.559 665 788> +VStem: 142 123<0 534> 665 123<161 694> +LayerCount: 3 +Fore +SplineSet +390 -20 m 1 + 536 -20 l 1 + 432 -250 l 1 + 286 -250 l 1 + 390 -20 l 1 +142 694 m 1 + 277 694 l 1 + 665 161 l 1 + 665 694 l 1 + 788 694 l 1 + 788 0 l 1 + 650 0 l 1 + 265 534 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 +EndSplineSet +EndChar + +StartChar: ncommaaccent +Encoding: 326 326 282 +Width: 654 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208 446 567> 380 112<247.69 417.016> 462 20G<88 185.485> +VStem: 88 120<0 360.146> 446 121<0 349.635> +LayerCount: 3 +Fore +SplineSet +88 482 m 1xb8 + 177 482 l 1xb8 + 191 449 l 1 + 270 483 336 492 380 492 c 0 + 544 492 567 383 567 285 c 2 + 567 0 l 1 + 446 0 l 1 + 446 283 l 2 + 446 317 442 380 339 380 c 0xd8 + 290 380 238 364 208 353 c 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1xb8 +259 -20 m 1 + 417 -20 l 1 + 305 -250 l 1 + 157 -250 l 1 + 259 -20 l 1 +EndSplineSet +EndChar + +StartChar: Ncaron +Encoding: 327 327 283 +Width: 890 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 635.581 788> 674 20G<142 291.559 665 788> +VStem: 142 123<0 534> 665 123<161 694> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 277 694 l 1 + 665 161 l 1 + 665 694 l 1 + 788 694 l 1 + 788 0 l 1 + 650 0 l 1 + 265 534 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 +483 711 m 1 + 313 882 l 1 + 397 952 l 1 + 491 857 l 1 + 588 951 l 1 + 669 886 l 1 + 483 711 l 1 +EndSplineSet +EndChar + +StartChar: ncaron +Encoding: 328 328 284 +Width: 654 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208 446 567> 380 112<247.69 417.016> 462 20G<88 185.485> +VStem: 88 120<0 360.146> 446 121<0 349.635> +LayerCount: 3 +Fore +SplineSet +88 482 m 1xb8 + 177 482 l 1xb8 + 191 449 l 1 + 270 483 336 492 380 492 c 0 + 544 492 567 383 567 285 c 2 + 567 0 l 1 + 446 0 l 1 + 446 283 l 2 + 446 317 442 380 339 380 c 0xd8 + 290 380 238 364 208 353 c 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1xb8 +333 501 m 1 + 159 671 l 1 + 239 742 l 1 + 340 648 l 1 + 445 741 l 1 + 519 675 l 1 + 333 501 l 1 +EndSplineSet +EndChar + +StartChar: Omacron +Encoding: 332 332 285 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.298> 726 103<263 700> +VStem: 105 126<248.908 459.514> 711 126<238.736 452.067> +LayerCount: 3 +Fore +SplineSet +711 346 m 0 + 711 517 582 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +263 829 m 1 + 700 829 l 1 + 700 726 l 1 + 263 726 l 1 + 263 829 l 1 +EndSplineSet +EndChar + +StartChar: omacron +Encoding: 333 333 286 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<256.861 424.541> 383 109<248.337 414.946> 519 103<123 564> +VStem: 63 119<172.971 320.588> 490 118<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +339 492 m 0 + 496 492 608 406 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 170 -10 63 82 63 236 c 0 + 63 393 169 492 339 492 c 0 +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 166 245 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 335 406 383 331 383 c 0 +123 622 m 5 + 564 622 l 5 + 564 519 l 5 + 123 519 l 5 + 123 622 l 5 +EndSplineSet +EndChar + +StartChar: Obreve +Encoding: 334 334 287 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.298> 720 108<416.258 547.822> +VStem: 105 126<248.908 459.514> 711 126<238.736 452.067> +LayerCount: 3 +Fore +SplineSet +253 876 m 1 + 355 926 l 1 + 365 908 l 2 + 374 890 411 828 479 828 c 0 + 535 828 589 874 619 911 c 2 + 631 926 l 1 + 727 866 l 1 + 713 849 l 1 + 657 781 568 720 471 720 c 0 + 360 720 286 793 259 860 c 2 + 253 876 l 1 +711 346 m 0 + 711 517 582 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +EndSplineSet +EndChar + +StartChar: obreve +Encoding: 335 335 288 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<256.861 424.541> 383 109<248.337 414.946> 508 108<289.216 429.941> +VStem: 63 119<172.971 320.588> 490 118<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +125 664 m 5 + 225 714 l 5 + 235 696 l 6 + 245 678 283 616 356 616 c 4 + 415 616 472 662 502 699 c 5 + 514 714 l 5 + 602 654 l 5 + 589 637 l 5 + 537 569 450 508 347 508 c 0 + 229 508 156 581 131 648 c 6 + 125 664 l 5 +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 166 245 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 335 406 383 331 383 c 0 +339 492 m 0 + 496 492 608 406 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 170 -10 63 82 63 236 c 0 + 63 393 169 492 339 492 c 0 +EndSplineSet +EndChar + +StartChar: Racute +Encoding: 340 340 289 +Width: 782 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 562.63 737> 269 113<265 383> 581 113<265 506.534> +VStem: 142 123<0 269 382 581> 551 129<423.803 541.185> +LayerCount: 3 +Fore +SplineSet +680 495 m 0 + 680 410 641 324 528 290 c 1 + 737 0 l 1 + 577 0 l 5 + 383 270 l 1 + 375 270 367 269 359 269 c 2 + 265 269 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 + 438 694 l 2 + 498 694 572 691 626 640 c 1 + 661 605 680 554 680 495 c 0 +265 581 m 1 + 265 382 l 1 + 378 382 l 2 + 453 382 512 389 540 438 c 0 + 547 450 551 465 551 484 c 0 + 551 523 527 565 459 577 c 0 + 437 581 412 581 386 581 c 2 + 265 581 l 1 +513 973 m 1 + 575 877 l 1 + 253 713 l 1 + 203 800 l 1 + 513 973 l 1 +EndSplineSet +EndChar + +StartChar: racute +Encoding: 341 341 290 +Width: 471 +VWidth: 0 +Flags: W +HStem: 0 21G<88 217> 383 109<224.182 432.719> 462 20G<88 188.2> +VStem: 88 129<0 367.693> +LayerCount: 3 +Fore +SplineSet +191 457 m 1xb0 + 235 478 292 492 354 492 c 0xd0 + 388 492 423 485 455 470 c 2 + 472 462 l 1xb0 + 433 363 l 1 + 415 370 l 2 + 393 379 368 383 341 383 c 2 + 340 383 l 2xd0 + 298 383 255 375 217 360 c 1 + 217 0 l 1 + 88 0 l 1 + 88 482 l 1 + 177 482 l 1 + 191 457 l 1xb0 +358 765 m 1 + 429 681 l 1 + 174 501 l 1 + 111 581 l 1 + 358 765 l 1 +EndSplineSet +EndChar + +StartChar: Rcommaaccent +Encoding: 342 342 291 +Width: 782 +VWidth: 0 +Flags: W +HStem: 0 21G<144 267 564.63 739> 269 113<267 385> 581 113<267 507.828> +VStem: 144 123<0 269 382 581> 553 129<423.803 541.185> +LayerCount: 3 +Fore +SplineSet +235 -20 m 1 + 380 -20 l 1 + 273 -250 l 1 + 142 -250 l 1 + 235 -20 l 1 +267 581 m 1 + 267 382 l 1 + 380 382 l 2 + 455 382 514 389 542 438 c 0 + 549 450 553 465 553 484 c 0 + 553 523 529 565 461 577 c 0 + 439 581 414 581 388 581 c 2 + 267 581 l 1 +682 495 m 0 + 682 410 643 324 530 290 c 1 + 739 0 l 1 + 579 0 l 5 + 385 270 l 1 + 377 270 369 269 361 269 c 2 + 267 269 l 1 + 267 0 l 1 + 144 0 l 1 + 144 694 l 1 + 439 694 l 2 + 499 694 574 691 628 640 c 1 + 663 605 682 554 682 495 c 0 +EndSplineSet +EndChar + +StartChar: rcommaaccent +Encoding: 343 343 292 +Width: 471 +VWidth: 0 +Flags: W +HStem: 0 21G<98 227> 383 109<234.182 442.703> 462 20G<98 198.2> +VStem: 98 129<0 367.693> +LayerCount: 3 +Fore +SplineSet +201 457 m 1xb0 + 245 478 302 492 364 492 c 0xd0 + 398 492 432 485 464 470 c 2 + 481 462 l 1xb0 + 443 363 l 1 + 424 370 l 2 + 402 379 378 383 351 383 c 2 + 350 383 l 2xd0 + 308 383 265 375 227 360 c 1 + 227 0 l 1 + 98 0 l 1 + 98 482 l 1 + 187 482 l 1 + 201 457 l 1xb0 +106 -20 m 1 + 252 -20 l 1 + 144 -250 l 1 + 13 -250 l 1 + 106 -20 l 1 +EndSplineSet +EndChar + +StartChar: Rcaron +Encoding: 344 344 293 +Width: 782 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 562.63 737> 269 113<265 383> 581 113<265 506.534> +VStem: 142 123<0 269 382 581> 551 129<423.803 541.185> +LayerCount: 3 +Fore +SplineSet +680 495 m 0 + 680 410 641 324 528 290 c 1 + 737 0 l 1 + 577 0 l 5 + 383 270 l 1 + 375 270 367 269 359 269 c 2 + 265 269 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 + 438 694 l 2 + 498 694 572 691 626 640 c 1 + 661 605 680 554 680 495 c 0 +265 581 m 1 + 265 382 l 1 + 378 382 l 2 + 453 382 512 389 540 438 c 0 + 547 450 551 465 551 484 c 0 + 551 523 527 565 459 577 c 0 + 437 581 412 581 386 581 c 2 + 265 581 l 1 +374 711 m 1 + 208 881 l 1 + 285 952 l 1 + 382 857 l 1 + 481 951 l 1 + 564 886 l 1 + 374 711 l 1 +EndSplineSet +EndChar + +StartChar: rcaron +Encoding: 345 345 294 +Width: 471 +VWidth: 0 +Flags: W +HStem: 0 21G<88 217> 383 109<224.182 432.719> 462 20G<88 188.2> 719 20G<372.28 416.812> +VStem: 88 129<0 367.693> +LayerCount: 3 +Fore +SplineSet +191 457 m 1xb8 + 235 478 292 492 354 492 c 0xd8 + 388 492 423 485 455 470 c 2 + 472 462 l 1xb8 + 433 363 l 1 + 415 370 l 2 + 393 379 368 383 341 383 c 2 + 340 383 l 2xd8 + 298 383 255 375 217 360 c 1 + 217 0 l 1 + 88 0 l 1 + 88 482 l 1 + 177 482 l 1 + 191 457 l 1xb8 +284 500 m 1 + 107 670 l 1 + 184 740 l 1 + 293 646 l 1 + 394 739 l 1 + 467 675 l 1 + 284 500 l 1 +EndSplineSet +EndChar + +StartChar: Sacute +Encoding: 346 346 295 +Width: 653 +VWidth: 1023 +Flags: W +HStem: -10 122<188.829 415.221> 558 113<466.099 541.492> 582 118<263.165 511.052> 721 264 +VStem: 80 134<460.459 540.749> 160 318 461.7 132<150.841 238.8> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 40 220 2 +Refer: 55 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: sacute +Encoding: 347 347 296 +Width: 524 +VWidth: 1023 +Flags: W +HStem: -10 90<131.439 340.099> 400 90<314.613 433.891> 501 264 +VStem: 62.9072 127<318.934 371.287> 120 318 354.807 129<108.717 162.947> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 0 0 2 +Refer: 7 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 297 +Width: 653 +VWidth: 1023 +Flags: W +HStem: -10 122<188.829 415.221> 558 113<466.099 541.492> 582 118<263.165 511.052> 721 241 +VStem: 80 134<460.459 540.749> 158 319 461.7 132<150.841 238.8> +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 28 180 2 +Refer: 55 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: scircumflex +Encoding: 349 349 298 +Width: 524 +VWidth: 1023 +Flags: W +HStem: -10 90<131.439 340.099> 400 90<314.613 433.891> 541 241 +VStem: 62.9072 127<318.934 371.287> 115 319 354.807 129<108.717 162.947> +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 -15 0 2 +Refer: 7 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Scedilla +Encoding: 350 350 299 +Width: 744 +VWidth: 0 +Flags: W +HStem: -247 92<305.118 437.751> -215 90<271.744 333.485> -9 121<251.143 328 460 483> 582 118<328.575 596.647> +VStem: 137 136<460.459 539.871> 551 131<152.958 238.198> +LayerCount: 3 +Back +SplineSet +462.402 -154.785 m 4x2f + 462.402 -202.148 422.852 -247.559 358.887 -247.559 c 4xaf + 332.52 -247.559 315.918 -243.164 259.766 -226.562 c 6 + 243.164 -221.68 l 5 + 257.812 -170.898 l 5x4f + 272.461 -175.293 l 6 + 325.684 -190.918 344.238 -195.312 362.305 -195.312 c 4 + 391.602 -195.312 407.227 -178.711 407.227 -161.133 c 4 + 407.227 -129.395 366.211 -121.094 359.375 -118.652 c 6 + 292.969 -98.6328 l 5 + 317.383 -9.76562 l 5xaf + 240.234 -9.76562 181.152 11.7188 117.188 37.1094 c 5 + 145.508 117.676 l 5x1f + 234.863 84.4727 297.363 72.2656 338.379 72.2656 c 4 + 436.035 72.2656 505.859 114.746 505.859 181.641 c 4 + 505.859 346.191 131.348 278.32 131.348 499.023 c 4 + 131.348 606.445 236.328 700.195 400.879 700.195 c 4 + 463.379 700.195 526.367 686.523 573.242 672.363 c 5 + 546.387 596.68 l 5 + 524.414 603.027 455.078 622.07 394.043 622.07 c 4 + 299.805 622.07 221.68 578.125 221.68 512.695 c 4 + 221.68 361.816 596.191 417.969 596.191 193.848 c 4 + 596.191 114.746 539.062 15.625 389.648 -5.37109 c 5 + 374.512 -66.4062 l 5 + 384.277 -69.3359 462.402 -83.9844 462.402 -154.785 c 4x2f +EndSplineSet +Fore +SplineSet +409 -155 m 0xbc + 434 -155 439 -145 439 -140 c 0 + 439 -125 399 -116 324 -97 c 2 + 302 -92 l 1 + 328 -9 l 1 + 249 -5 192 17 135 39 c 1 + 117 45 l 1 + 159 164 l 1 + 178 156 l 1 + 272 123 340 112 382 112 c 0 + 483 112 551 146 551 196 c 0 + 551 328 137 272 137 493 c 0 + 137 606 258 700 454 700 c 0 + 535 700 606 683 645 671 c 2 + 665 666 l 1 + 624 552 l 1 + 606 558 l 1 + 536 578 479 582 446 582 c 0 + 354 582 273 549 273 499 c 0 + 273 380 682 423 682 200 c 0 + 682 119 622 22 460 -3 c 1 + 452 -32 l 1 + 486 -42 548 -68 548 -134 c 0 + 548 -193 491 -247 406 -247 c 0xbc + 378 -247 369 -246 267 -220 c 1 + 245 -215 l 1 + 274 -125 l 1x7c + 296 -131 l 2 + 347 -145 385 -155 409 -155 c 0xbc +EndSplineSet +EndChar + +StartChar: scedilla +Encoding: 351 351 300 +Width: 576 +VWidth: 1023 +Flags: W +HStem: -243 86<188.3 341.14> 372 99<347.437 471.484> 389 103<232.899 476.133> +VStem: 81 131<319.068 368.165> 396 127<110.525 164.241> +LayerCount: 3 +Back +SplineSet +344.727 -153.809 m 4 + 344.727 -191.406 326.172 -237.305 244.629 -237.305 c 4 + 216.309 -237.305 179.688 -231.934 133.789 -218.262 c 5 + 146.484 -173.828 l 5 + 205.078 -191.406 227.539 -196.777 247.559 -196.777 c 4 + 278.809 -196.777 296.387 -178.711 296.387 -159.18 c 4 + 296.387 -124.023 258.301 -118.164 184.57 -95.7031 c 5 + 207.52 -9.76562 l 5 + 171.875 -9.76562 122.07 2.92969 63.4766 26.8555 c 5 + 85.9375 87.4023 l 5 + 150.391 63.4766 188.965 53.2227 230.957 53.2227 c 4 + 289.062 53.2227 350.098 65.918 350.098 128.906 c 4 + 350.098 221.191 75.1953 184.57 75.1953 346.191 c 4 + 75.1953 400.391 119.629 491.699 288.086 491.699 c 4 + 350.586 491.699 375.977 482.422 410.645 472.168 c 5 + 390.137 411.133 l 5 + 358.398 419.922 323.73 429.199 274.902 429.199 c 4 + 173.34 429.199 158.203 375.977 158.203 354.492 c 4 + 158.203 268.066 437.5 288.574 437.5 138.184 c 4 + 437.5 83.0078 405.273 -7.8125 270.02 -7.8125 c 5 + 255.371 -66.4062 l 5 + 277.832 -73.2422 344.727 -87.4023 344.727 -153.809 c 4 +EndSplineSet +Fore +SplineSet +306 -157 m 0xb8 + 333 -157 342 -146 342 -139 c 0 + 342 -121 304 -116 221 -95 c 1 + 198 -89 l 1 + 225 -8 l 1 + 181 -4 135 6 82 28 c 2 + 63 36 l 1 + 100 133 l 1 + 118 126 l 1 + 182 102 226 93 274 93 c 0 + 359 93 396 110 396 144 c 1 + 392 205 81 183 81 341 c 0 + 81 400 134 492 344 492 c 0xb8 + 418 492 448 481 482 471 c 2 + 502 465 l 1 + 469 367 l 1 + 450 372 l 2xd8 + 418 381 383 389 328 389 c 0 + 246 389 212 361 212 341 c 0 + 212 284 523 292 523 143 c 0 + 523 89 490 15 355 -5 c 1 + 346 -33 l 1 + 385 -43 440 -68 440 -134 c 0 + 440 -187 397 -243 304 -243 c 0 + 258 -243 212 -230 164 -217 c 1 + 145 -212 l 1 + 168 -129 l 1 + 188 -135 l 1 + 247 -149 283 -157 306 -157 c 0xb8 +EndSplineSet +EndChar + +StartChar: Tcommaaccent +Encoding: 354 354 301 +Width: 710 +VWidth: 0 +Flags: W +HStem: -247 93<250.4 380.965> 581 113<42 293 417 668> +VStem: 293 124<-32.9469 581> +LayerCount: 3 +Back +SplineSet +41.5039 693.848 m 5 + 668.457 693.848 l 5 + 668.457 580.566 l 5 + 416.504 580.566 l 5 + 416.504 0 l 5 + 293.457 0 l 5 + 293.457 580.566 l 5 + 41.5039 580.566 l 5 + 41.5039 693.848 l 5 +EndSplineSet +Fore +SplineSet +356 -154 m 1 + 373 -154 382 -148 382 -141 c 0 + 382 -123 328 -112 275 -97 c 1 + 250 -91 l 1 + 257 -73 l 2 + 290 10 293 5 293 83 c 2 + 293 581 l 1 + 42 581 l 1 + 42 694 l 1 + 668 694 l 1 + 668 581 l 1 + 417 581 l 1 + 417 90 l 2 + 417 40 414 9 398 -35 c 1 + 440 -49 501 -75 501 -134 c 0 + 501 -189 443 -247 351 -247 c 0 + 314 -247 289 -238 208 -220 c 1 + 181 -215 l 1 + 217 -125 l 1 + 244 -131 l 1 + 307 -146 334 -154 356 -154 c 1 +EndSplineSet +EndChar + +StartChar: tcommaaccent +Encoding: 355 355 302 +Width: 448 +VWidth: 0 +Flags: W +HStem: -243 86<160.055 321.311> 379 103<34 99 234 406> +VStem: 99 135<105.335 379 482 621> 322 89<-155.081 -121.193> +LayerCount: 3 +Back +SplineSet +257.812 515.137 m 5xd0 + 359.375 745.605 l 5 + 508.301 745.605 l 5xc8 + 402.344 515.137 l 5 + 257.812 515.137 l 5xd0 +99.1211 620.605 m 5 + 234.375 620.605 l 5 + 234.375 482.422 l 5 + 406.25 482.422 l 5 + 406.25 379.395 l 5 + 234.375 379.395 l 5 + 234.375 163.086 l 6 + 234.375 133.789 237.793 92.7734 306.641 92.7734 c 4 + 322.754 92.7734 330.078 93.75 389.648 102.539 c 5 + 408.691 105.957 l 5 + 427.734 13.6719 l 5 + 409.18 8.78906 l 5 + 349.121 -5.85938 305.176 -9.76562 276.855 -9.76562 c 4 + 130.371 -9.76562 99.1211 69.3359 99.1211 154.785 c 6 + 99.1211 379.395 l 5 + 34.1797 379.395 l 5 + 34.1797 482.422 l 5 + 99.1211 482.422 l 5 + 99.1211 620.605 l 5 +EndSplineSet +Fore +SplineSet +99 621 m 1 + 234 621 l 1 + 234 482 l 1 + 406 482 l 1 + 406 379 l 1 + 234 379 l 1 + 234 157 l 2 + 234 127 246 85 318 85 c 0 + 331 85 338 86 390 94 c 2 + 409 97 l 1 + 428 14 l 1 + 409 9 l 2 + 393 5 363 -4 332 -8 c 1 + 326 -33 l 1 + 357 -43 411 -68 411 -134 c 0 + 411 -187 367 -243 285 -243 c 0 + 229 -243 149 -222 134 -218 c 2 + 115 -212 l 1 + 139 -129 l 1 + 160 -135 l 1 + 187 -141 249 -157 288 -157 c 0 + 309 -157 322 -152 322 -140 c 0 + 322 -121 305 -120 195 -95 c 1 + 169 -90 l 1 + 203 0 l 1 + 102 29 99 116 99 148 c 2 + 99 379 l 1 + 34 379 l 1 + 34 482 l 1 + 99 482 l 1 + 99 621 l 1 +EndSplineSet +EndChar + +StartChar: Tcaron +Encoding: 356 356 303 +Width: 670 +VWidth: 0 +Flags: W +HStem: 0 21G<293 417> 581 113<42 293 417 668> +VStem: 293 124<0 581> +LayerCount: 3 +Fore +SplineSet +42 694 m 5 + 668 694 l 5 + 668 581 l 5 + 417 581 l 5 + 417 0 l 5 + 293 0 l 5 + 293 581 l 5 + 42 581 l 5 + 42 694 l 5 +361 711 m 1 + 191 881 l 1 + 274 952 l 1 + 370 857 l 1 + 466 951 l 1 + 548 886 l 1 + 361 711 l 1 +EndSplineSet +EndChar + +StartChar: tcaron +Encoding: 357 357 304 +Width: 448 +VWidth: 0 +Flags: W +HStem: -10 103<248.737 412.414> 9 94<307.744 409.854> 379 103<34 99 234 406> +VStem: 99 135<108.209 379 482 621> +LayerCount: 3 +Fore +SplineSet +258 515 m 5x30 + 359 746 l 5 + 508 746 l 5 + 402 515 l 5 + 258 515 l 5x30 +99 621 m 5 + 234 621 l 5 + 234 482 l 5 + 406 482 l 5 + 406 379 l 5 + 234 379 l 5 + 234 163 l 6 + 234 134 238 93 307 93 c 4xb0 + 323 93 330 94 390 103 c 5 + 409 106 l 5 + 428 14 l 5 + 409 9 l 5x70 + 349 -6 305 -10 277 -10 c 4xb0 + 131 -10 99 70 99 155 c 6 + 99 379 l 5 + 34 379 l 5 + 34 482 l 5 + 99 482 l 5 + 99 621 l 5 +EndSplineSet +EndChar + +StartChar: Utilde +Encoding: 360 360 305 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<340.189 554.424> 674 20G<142 265 626 749> 722 99<485.369 551.448> 810 99<318.141 383.622> +VStem: 142 123<162.922 694> 626 123<166.699 694> +LayerCount: 3 +Fore +SplineSet +445 -10 m 0xcc + 141 -10 141 171 141 243 c 0 + 141 266 142 289 142 305 c 2 + 142 694 l 1 + 265 694 l 1 + 265 254 l 2 + 265 212 268 177 300 147 c 0 + 314 134 355 102 445 102 c 0 + 538 102 602 135 620 195 c 0 + 625 213 626 233 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 305 l 2 + 749 285 750 264 750 243 c 0 + 750 168 742 -10 445 -10 c 0xcc +347 909 m 1xdc + 450 905 487 821 522 821 c 0 + 545 821 562 860 584 899 c 2 + 594 916 l 1 + 685 877 l 1 + 676 858 l 2 + 653 810 618 722 522 722 c 1xec + 418 726 383 810 347 810 c 0 + 324 810 306 770 285 732 c 2 + 275 715 l 1 + 187 754 l 1 + 195 772 l 2 + 218 820 253 909 347 909 c 1xdc +EndSplineSet +EndChar + +StartChar: utilde +Encoding: 361 361 306 +Width: 656 +VWidth: 0 +Flags: W +HStem: -10 112<244.115 414.232> 0 21G<476.121 574> 462 20G<95 215 454 574> 510 99<391 458.403> 598 99<214.335 282.648> +VStem: 95 120<132.365 482> 454 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +243 697 m 1x2e + 354 693 392 609 430 609 c 0 + 454 609 467 642 490 687 c 2 + 499 705 l 1 + 585 665 l 1 + 576 646 l 1 + 553 598 519 510 430 510 c 1x36 + 320 514 282 598 244 598 c 0 + 219 598 207 566 184 520 c 1 + 175 503 l 1 + 87 542 l 1 + 96 561 l 1 + 119 608 153 697 243 697 c 1x2e +454 482 m 1 + 574 482 l 1 + 574 0 l 1 + 484 0 l 1x66 + 471 33 l 1 + 392 -1 325 -10 281 -10 c 0 + 117 -10 95 99 95 197 c 2 + 95 482 l 1 + 215 482 l 1 + 215 198 l 2 + 215 166 219 102 323 102 c 0xa6 + 372 102 424 118 454 129 c 1 + 454 482 l 1 +EndSplineSet +EndChar + +StartChar: Umacron +Encoding: 362 362 307 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<340.189 554.424> 674 20G<142 265 626 749> 726 103<193 678> +VStem: 142 123<162.922 694> 626 123<166.699 694> +LayerCount: 3 +Fore +SplineSet +445 -10 m 0 + 141 -10 141 171 141 243 c 0 + 141 266 142 289 142 305 c 2 + 142 694 l 1 + 265 694 l 1 + 265 254 l 2 + 265 212 268 177 300 147 c 0 + 314 134 355 102 445 102 c 0 + 538 102 602 135 620 195 c 0 + 625 213 626 233 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 305 l 2 + 749 285 750 264 750 243 c 0 + 750 168 742 -10 445 -10 c 0 +193 829 m 1 + 678 829 l 1 + 678 726 l 1 + 193 726 l 1 + 193 829 l 1 +EndSplineSet +EndChar + +StartChar: umacron +Encoding: 363 363 308 +Width: 654 +VWidth: 0 +Flags: W +HStem: -10 112<237.115 405.808> 0 21G<468.909 567> 462 20G<88 208 447 567> 548 103<143 515> +VStem: 88 120<132.365 482> 447 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +447 482 m 1xbc + 567 482 l 1 + 567 0 l 1 + 478 0 l 1x7c + 463 33 l 1 + 384 -1 318 -10 274 -10 c 0 + 110 -10 88 99 88 197 c 2 + 88 482 l 1 + 208 482 l 1 + 208 198 l 2 + 208 166 212 102 316 102 c 0 + 365 102 417 118 447 129 c 1 + 447 482 l 1xbc +143 651 m 1 + 515 651 l 1 + 515 548 l 1 + 143 548 l 1 + 143 651 l 1 +EndSplineSet +EndChar + +StartChar: Ubreve +Encoding: 364 364 309 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<340.332 554.424> 674 20G<142 265 626 749> 720 108<336.974 472.644> +VStem: 142 123<163.271 694> 626 123<166.699 694> +LayerCount: 3 +Fore +SplineSet +179 876 m 1 + 273 926 l 1 + 284 908 l 2 + 294 890 331 828 402 828 c 0 + 460 828 515 874 546 911 c 1 + 559 926 l 1 + 655 866 l 1 + 642 849 l 1 + 586 781 493 720 393 720 c 0 + 278 720 210 793 185 860 c 2 + 179 876 l 1 +445 -10 m 0 + 142 -10 141 172 141 243 c 0 + 141 264 142 285 142 305 c 2 + 142 694 l 1 + 265 694 l 1 + 265 254 l 2 + 265 212 268 177 300 147 c 0 + 314 134 355 102 445 102 c 0 + 538 102 602 135 620 195 c 0 + 625 213 626 233 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 305 l 2 + 749 285 750 264 750 243 c 0 + 750 168 742 -10 445 -10 c 0 +EndSplineSet +EndChar + +StartChar: ubreve +Encoding: 365 365 310 +Width: 654 +VWidth: 0 +Flags: W +HStem: -10 112<237.115 405.808> 0 21G<468.909 567> 462 20G<88 208 447 567> 508 108<253.721 401.051> +VStem: 88 120<132.365 482> 447 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +447 482 m 1xbc + 567 482 l 1 + 567 0 l 1 + 478 0 l 1x7c + 463 33 l 1 + 384 -1 318 -10 274 -10 c 0 + 110 -10 88 99 88 197 c 2 + 88 482 l 1 + 208 482 l 1 + 208 198 l 2 + 208 166 212 102 316 102 c 0 + 365 102 417 118 447 129 c 1 + 447 482 l 1xbc +97 664 m 1 + 191 714 l 1 + 200 696 l 2 + 209 678 249 616 325 616 c 0 + 387 616 445 662 473 699 c 2 + 485 714 l 1 + 573 654 l 1 + 561 637 l 1 + 509 569 422 508 315 508 c 0 + 195 508 128 580 103 648 c 2 + 97 664 l 1 +EndSplineSet +EndChar + +StartChar: Uring +Encoding: 366 366 311 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<340.332 554.424> 674 20G<142 265 626 749> 721 84<392.64 474.446> 896 84<392.578 474.328> +VStem: 142 123<163.271 694> 291 94<814.283 887.159> 482 96<812.267 887.517> 626 123<166.699 694> +LayerCount: 3 +Fore +SplineSet +435 980 m 0 + 513 980 578 923 578 851 c 0 + 578 779 514 721 435 721 c 0 + 357 721 291 779 291 851 c 0 + 291 922 356 980 435 980 c 0 +435 896 m 0 + 407 896 385 875 385 851 c 0 + 385 827 406 805 435 805 c 0 + 466 805 482 831 482 851 c 0 + 482 874 462 896 435 896 c 0 +445 -10 m 0 + 142 -10 141 172 141 243 c 0 + 141 264 142 285 142 305 c 2 + 142 694 l 1 + 265 694 l 1 + 265 254 l 2 + 265 212 268 177 300 147 c 0 + 314 134 355 102 445 102 c 0 + 538 102 602 135 620 195 c 0 + 625 213 626 233 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 305 l 2 + 749 285 750 264 750 243 c 0 + 750 168 742 -10 445 -10 c 0 +EndSplineSet +EndChar + +StartChar: uring +Encoding: 367 367 312 +Width: 654 +VWidth: 0 +Flags: W +HStem: -10 112<237.115 405.808> 0 21G<468.909 567> 462 20G<88 208 447 567> 509 84<285.573 371.728> 684 84<287.279 371.552> +VStem: 88 120<132.365 482> 182 96<602.283 674.844> 380 97<602.283 675.336> 447 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +447 482 m 1xbc80 + 567 482 l 1 + 567 0 l 1 + 478 0 l 1x7c80 + 463 33 l 1 + 384 -1 318 -10 274 -10 c 0 + 110 -10 88 99 88 197 c 2 + 88 482 l 1 + 208 482 l 1 + 208 198 l 2 + 208 166 212 102 316 102 c 0 + 365 102 417 118 447 129 c 1 + 447 482 l 1xbc80 +330 768 m 0 + 413 768 477 711 477 639 c 0 + 477 567 414 509 330 509 c 0 + 247 509 182 567 182 639 c 0x3b + 182 710 246 768 330 768 c 0 +330 684 m 0 + 300 684 278 663 278 639 c 0 + 278 615 299 593 330 593 c 0 + 358 593 380 615 380 639 c 0 + 380 663 358 684 330 684 c 0 +EndSplineSet +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 313 +Width: 1172 +VWidth: 0 +Flags: W +HStem: 0 21G<291.372 423.382 772.71 904.493> 674 20G<68 205.004 552.458 679.191 1025.68 1157> +LayerCount: 3 +Fore +SplineSet +68 694 m 1 + 199 694 l 1 + 359 161 l 1 + 560 694 l 1 + 673 694 l 1 + 838 161 l 1 + 1033 694 l 1 + 1157 694 l 1 + 897 0 l 1 + 779 0 l 1 + 612 531 l 1 + 416 0 l 1 + 298 0 l 1 + 68 694 l 1 +620 955 m 1 + 784 785 l 1 + 701 714 l 1 + 613 809 l 1 + 521 715 l 1 + 439 780 l 1 + 620 955 l 1 +EndSplineSet +EndChar + +StartChar: wcircumflex +Encoding: 373 373 314 +Width: 877 +VWidth: 1023 +Flags: W +HStem: 0 21<198.953 322.962 548.564 673.536> 462 20<20.6709 156.113 381.252 502.59 732.865 869.071> 541 241 +VStem: 281 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 151 0 2 +Refer: 11 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 315 +Width: 696 +VWidth: 0 +Flags: W +HStem: 0 21G<306 444> 674 20G<49 207.829 554.948 710> +VStem: 306 138<0 324> +LayerCount: 3 +Fore +SplineSet +49 694 m 1 + 194 694 l 1 + 380 425 l 1 + 569 694 l 1 + 710 694 l 1 + 444 324 l 1 + 444 0 l 1 + 306 0 l 1 + 306 324 l 1 + 49 694 l 1 +389 953 m 1 + 559 783 l 1 + 476 712 l 1 + 381 807 l 1 + 283 713 l 1 + 202 778 l 1 + 389 953 l 1 +EndSplineSet +EndChar + +StartChar: ycircumflex +Encoding: 375 375 316 +Width: 559 +VWidth: 1023 +Flags: W +HStem: 462 20<17.1074 162.843 420.801 554.807> 541 241 +VStem: 130 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 0 0 2 +Refer: 26 121 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Zacute +Encoding: 377 377 317 +Width: 743 +VWidth: 0 +Flags: W +HStem: 0 113<252 714> 581 113<90 514> +LayerCount: 3 +Fore +SplineSet +90 694 m 1 + 701 694 l 1 + 701 619 l 1 + 252 113 l 1 + 714 113 l 1 + 714 0 l 1 + 76 0 l 1 + 76 76 l 1 + 514 581 l 1 + 90 581 l 1 + 90 694 l 1 +530 973 m 1 + 590 877 l 1 + 274 713 l 1 + 218 800 l 1 + 530 973 l 1 +EndSplineSet +EndChar + +StartChar: zacute +Encoding: 378 378 318 +Width: 546 +VWidth: 1023 +Flags: W +HStem: 0 103<218.835 490.035> 379 103<52.0352 308.835> 501 264 +VStem: 120 318 +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 0 0 2 +Refer: 25 122 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 319 +Width: 743 +VWidth: 0 +Flags: W +HStem: 0 113<252 714> 581 113<90 514> 750 143<307 466> +VStem: 307 159<750 893> +LayerCount: 3 +Fore +SplineSet +90 694 m 1 + 701 694 l 1 + 701 619 l 1 + 252 113 l 1 + 714 113 l 1 + 714 0 l 1 + 76 0 l 1 + 76 76 l 1 + 514 581 l 1 + 90 581 l 1 + 90 694 l 1 +307 893 m 1 + 466 893 l 1 + 466 750 l 1 + 307 750 l 1 + 307 893 l 1 +EndSplineSet +EndChar + +StartChar: zdotaccent +Encoding: 380 380 320 +Width: 606 +VWidth: 0 +Flags: W +HStem: 0 103<245 533> 379 103<73 345> 562 132<215 380> +VStem: 215 165<562 694> +LayerCount: 3 +Fore +SplineSet +73 482 m 1 + 521 482 l 1 + 521 420 l 1 + 245 103 l 1 + 533 103 l 1 + 533 0 l 1 + 73 0 l 1 + 73 62 l 1 + 345 379 l 1 + 73 379 l 1 + 73 482 l 1 +215 694 m 1 + 380 694 l 1 + 380 562 l 1 + 215 562 l 1 + 215 694 l 1 +EndSplineSet +EndChar + +StartChar: gcommaaccent +Encoding: 291 291 321 +Width: 654 +VWidth: 1023 +Flags: W +HStem: -265 107<147.07 371.366> -10 105<251.334 439.542> 386 105<244.506 439.466> 462 20G<467.818 566> +VStem: 62 119<166.667 322.418> 441 125<-87.8073 11 106.391 373.641> +LayerCount: 3 +Fore +SplineSet +213 525 m 1xcc + 321 755 l 1 + 473 755 l 1 + 364 525 l 1 + 213 525 l 1xcc +181 247 m 0 + 181 163 233 95 343 95 c 0 + 381 95 415 104 441 113 c 1 + 441 368 l 1 + 390 383 355 386 332 386 c 0xec + 241 386 181 332 181 247 c 0 +326 491 m 0 + 348 491 392 490 467 460 c 1 + 476 482 l 1 + 566 482 l 1xdc + 566 -11 l 2 + 566 -125 515 -265 283 -265 c 0 + 233 -265 170 -256 112 -232 c 1 + 94 -225 l 1 + 130 -130 l 1 + 149 -137 l 2 + 175 -147 220 -158 271 -158 c 0 + 448 -158 441 -26 441 11 c 1 + 405 -1 363 -10 317 -10 c 0 + 192 -10 62 55 62 239 c 0 + 62 430 218 491 326 491 c 0 +EndSplineSet +EndChar + +StartChar: eng +Encoding: 331 331 322 +Width: 654 +VWidth: 1023 +Flags: W +HStem: -169 107<268.07 431.215> -151 99<271.021 377.303> 0 21G<88 213> 380 112<250.323 418.552> 462 20G<88 187> +VStem: 88 125<0 360.477> 446 120<-48.6463 350.044> +LayerCount: 3 +Fore +SplineSet +341 380 m 0xb6 + 317 380 273 375 213 353 c 1 + 213 0 l 1 + 88 0 l 1 + 88 482 l 1 + 177 482 l 1x2e + 193 450 l 1 + 274 484 339 492 379 492 c 0 + 561 492 566 346 566 292 c 2 + 566 12 l 2 + 566 -84 535 -169 406 -169 c 0xb6 + 379 -169 337 -166 271 -151 c 2 + 249 -146 l 1 + 272 -49 l 1 + 295 -52 l 1x66 + 357 -61 363 -62 378 -62 c 0 + 435 -62 446 -30 446 12 c 2 + 446 284 l 2 + 446 318 442 380 341 380 c 0xb6 +EndSplineSet +EndChar + +StartChar: uni0237 +Encoding: 567 567 323 +Width: 295 +VWidth: 1023 +Flags: W +HStem: 462 20G<95 215> +VStem: 95 120<-124.777 482> +LayerCount: 3 +Fore +SplineSet +95 482 m 1 + 215 482 l 1 + 215 -47 l 2 + 215 -109 210 -210 73 -260 c 1 + 56 -266 l 1 + 9 -171 l 1 + 27 -162 l 2 + 92 -131 95 -81 95 -55 c 2 + 95 482 l 1 +EndSplineSet +EndChar + +StartChar: Eng +Encoding: 330 330 324 +Width: 884 +VWidth: 1023 +Flags: W +HStem: -178 107<470.391 638.847> -161 99<473.298 574.336> 0 21G<142 269> 602 122<386.858 588.136> 674 20G<142 239.769> +VStem: 142 127<0 554.045> 659 123<-50.3505 528.369> +LayerCount: 3 +Fore +SplineSet +659 14 m 2xa6 + 659 413 l 2 + 659 473 659 602 492 602 c 0xb6 + 449 602 383 591 269 546 c 1 + 269 0 l 1 + 142 0 l 1 + 142 694 l 1 + 229 694 l 1x2e + 250 655 l 1 + 389 711 468 724 528 724 c 0 + 679 724 763 638 779 523 c 0 + 782 497 782 472 782 447 c 2 + 782 3 l 2 + 782 -137 691 -178 600 -178 c 0xb6 + 574 -178 534 -176 473 -161 c 2 + 452 -156 l 1 + 474 -58 l 1 + 496 -62 l 2x66 + 536 -69 561 -71 575 -71 c 0 + 658 -71 659 -14 659 14 c 2xa6 +EndSplineSet +EndChar + +StartChar: Lslash +Encoding: 321 321 325 +Width: 633 +VWidth: 1023 +Flags: W +HStem: 0 113<276 616> 674 20G<142 265> +VStem: 142 134<113 242> 142 123<438 694> +LayerCount: 3 +Fore +SplineSet +142 694 m 1xd0 + 265 694 l 1 + 265 438 l 1xd0 + 418 511 l 1 + 418 381 l 1 + 276 313 l 1 + 276 113 l 1xe0 + 616 113 l 1 + 616 0 l 1 + 142 0 l 1xd0 + 142 242 l 1xe0 + 71 204 l 1 + 71 327 l 1 + 142 365 l 1 + 142 694 l 1xd0 +EndSplineSet +EndChar + +StartChar: lslash +Encoding: 322 322 326 +Width: 322 +VWidth: 1023 +Flags: W +HStem: -9.90039 104.22<141.5 304.592> 673.75 20<69.3868 189.4> +VStem: 69 120.145<102.826 693.75> +LayerCount: 3 +Fore +SplineSet +4.5 193.1 m 5 + 4.5 312.1 l 5 + 296.5 461.1 l 5 + 296.5 341.1 l 5 + 4.5 193.1 l 5 +EndSplineSet +Refer: 10 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 327 +Width: 603 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208 421.013 593> 462 20G<88 208 409.863 567> +VStem: 88 120<0 223 271 482> +LayerCount: 3 +Fore +SplineSet +208 271 m 1 + 431 482 l 1 + 567 482 l 1 + 336 256 l 1 + 593 0 l 1 + 442 0 l 1 + 208 223 l 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1 + 208 482 l 1 + 208 271 l 1 +EndSplineSet +EndChar + +StartChar: napostrophe +Encoding: 329 329 328 +Width: 737 +VWidth: 1023 +Flags: W +HStem: 0 21G<170 291 529 649> 380 112<331.534 499.665> 462 20G<170 268.485> 674 20G<34 147> +VStem: 34 113<442 694> 170 121<0 360.146> 529 120<0 349.635> +LayerCount: 3 +Fore +SplineSet +170 482 m 1xbe + 260 482 l 1xbe + 274 449 l 1 + 353 483 419 492 463 492 c 0 + 627 492 649 383 649 285 c 2 + 649 0 l 1 + 529 0 l 1 + 529 283 l 2 + 529 317 524 380 421 380 c 0xde + 372 380 321 364 291 353 c 1 + 291 0 l 1 + 170 0 l 1 + 170 482 l 1xbe +34 694 m 1 + 147 694 l 1 + 147 442 l 1 + 34 442 l 1 + 34 694 l 1 +EndSplineSet +EndChar + +StartChar: ogonek +Encoding: 731 731 329 +Width: 529 +VWidth: 0 +Flags: W +HStem: -286 105<318.129 406.753> +VStem: 205 110<-178.159 -92.5619> +LayerCount: 3 +Fore +SplineSet +205 -164 m 0 + 205 -63 301 54 433 90 c 1 + 453 95 l 1 + 477 3 l 1 + 459 -3 l 2 + 364 -38 315 -108 315 -147 c 0 + 315 -167 326 -181 347 -181 c 0 + 358 -181 379 -177 417 -155 c 2 + 435 -144 l 1 + 476 -222 l 1 + 462 -232 l 2 + 441 -247 382 -286 323 -286 c 0 + 252 -286 205 -233 205 -164 c 0 +EndSplineSet +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 330 +Width: 806 +VWidth: 1023 +Flags: W +HStem: 533 278 +LayerCount: 3 +Fore +SplineSet +168 533 m 5 + 106 623 l 5 + 375 811 l 5 + 433 729 l 5 + 168 533 l 5 +629 811 m 5 + 691 721 l 5 + 422 533 l 5 + 365 615 l 5 + 629 811 l 5 +EndSplineSet +EndChar + +StartChar: uni02EE +Encoding: 750 750 331 +Width: 407 +VWidth: 1023 +Flags: W +HStem: 509 249<34 164 224 354> +VStem: 34 130<509 758> 224 130<509 758> +LayerCount: 3 +Fore +SplineSet +224 758 m 1 + 354 758 l 1 + 354 509 l 1 + 224 509 l 1 + 224 758 l 1 +34 758 m 1 + 164 758 l 1 + 164 509 l 1 + 34 509 l 1 + 34 758 l 1 +EndSplineSet +EndChar + +StartChar: uni0302 +Encoding: 770 770 332 +Width: 0 +VWidth: 1023 +Flags: W +HStem: 541 241 +VStem: -384 319 +LayerCount: 3 +Fore +SplineSet +-218 782 m 5 + -65 612 l 5 + -139 541 l 5 + -225 636 l 5 + -311 542 l 5 + -384 607 l 5 + -218 782 l 5 +EndSplineSet +EndChar + +StartChar: Tbar +Encoding: 358 358 333 +Width: 670 +VWidth: 1023 +Flags: W +HStem: 0 21G<293 417> 274 114<111 293 417 599> 581 113<42 293 417 668> +VStem: 293 124<0 274 388 581> +LayerCount: 3 +Fore +SplineSet +42 694 m 1 + 668 694 l 1 + 668 581 l 1 + 417 581 l 1 + 417 388 l 1 + 599 388 l 1 + 599 274 l 1 + 417 274 l 1 + 417 0 l 1 + 293 0 l 1 + 293 274 l 1 + 111 274 l 1 + 111 388 l 1 + 293 388 l 1 + 293 581 l 1 + 42 581 l 1 + 42 694 l 1 +EndSplineSet +EndChar + +StartChar: tbar +Encoding: 359 359 334 +Width: 448 +VWidth: 1023 +Flags: W +HStem: -10 103<253.393 412.414> 214 93<34 99 234 406> 379 103<34 99 234 406> +VStem: 99 135<110.837 214 307 379 482 621> +LayerCount: 3 +Back +SplineSet +257.812 515.137 m 5xd0 + 359.375 745.605 l 5 + 508.301 745.605 l 5xc8 + 402.344 515.137 l 5 + 257.812 515.137 l 5xd0 +99.1211 620.605 m 5 + 234.375 620.605 l 5 + 234.375 482.422 l 5 + 406.25 482.422 l 5 + 406.25 379.395 l 5 + 234.375 379.395 l 5 + 234.375 163.086 l 6 + 234.375 133.789 237.793 92.7734 306.641 92.7734 c 4 + 322.754 92.7734 330.078 93.75 389.648 102.539 c 5 + 408.691 105.957 l 5 + 427.734 13.6719 l 5 + 409.18 8.78906 l 5 + 349.121 -5.85938 305.176 -9.76562 276.855 -9.76562 c 4 + 130.371 -9.76562 99.1211 69.3359 99.1211 154.785 c 6 + 99.1211 379.395 l 5 + 34.1797 379.395 l 5 + 34.1797 482.422 l 5 + 99.1211 482.422 l 5 + 99.1211 620.605 l 5 +EndSplineSet +Fore +SplineSet +409 9 m 2 + 352 -6 317 -10 289 -10 c 0 + 164 -10 99 36 99 157 c 2 + 99 214 l 1 + 34 214 l 1 + 34 307 l 1 + 99 307 l 1 + 99 379 l 1 + 34 379 l 1 + 34 482 l 1 + 99 482 l 1 + 99 621 l 1 + 234 621 l 1 + 234 482 l 1 + 406 482 l 1 + 406 379 l 1 + 234 379 l 1 + 234 307 l 1 + 406 307 l 1 + 406 214 l 1 + 234 214 l 1 + 234 162 l 2 + 234 134 246 93 318 93 c 0 + 331 93 338 94 390 103 c 1 + 409 106 l 1 + 428 14 l 1 + 409 9 l 2 +EndSplineSet +EndChar + +StartChar: Hbar +Encoding: 294 294 335 +Width: 861 +VWidth: 1023 +Flags: W +HStem: 0 21G<142 265 636 759> 301 114<265 636> 523 102<68 142 759 832> 533 88<265 636> 674 20G<142 265 636 759> +VStem: 142 123<0 301 415 523 625 694> 636 123<0 301 415 523 625 694> +LayerCount: 3 +Fore +SplineSet +636 694 m 1xde + 759 694 l 1 + 759 625 l 1 + 832 625 l 1 + 832 523 l 1 + 759 523 l 1 + 759 0 l 1 + 636 0 l 1 + 636 301 l 1 + 265 301 l 1 + 265 0 l 1 + 142 0 l 1 + 142 523 l 1 + 68 523 l 1 + 68 625 l 1 + 142 625 l 1xee + 142 694 l 1 + 265 694 l 1 + 265 621 l 1 + 636 621 l 1 + 636 694 l 1xde +636 415 m 1 + 636 533 l 1 + 265 533 l 1xde + 265 415 l 1 + 636 415 l 1 +EndSplineSet +EndChar + +StartChar: hbar +Encoding: 295 295 336 +Width: 661 +VWidth: 1023 +Flags: W +HStem: 0 21G<93 213 447 574> 380 111<245.191 416.317> 535 103<27 93 213 398> 718 20G<93 213> +VStem: 93 120<0 360.477 458 535 638 738> 447 127<0 348.956> +LayerCount: 3 +Back +SplineSet +276.855 56.1523 m 4xbe + 235.352 56.1523 198.242 69.8242 172.852 83.4961 c 5 + 172.852 405.762 l 5 + 196.777 416.504 235.84 429.199 277.832 429.199 c 4 + 347.168 429.199 438.477 392.578 438.477 245.605 c 4 + 438.477 91.7969 341.309 56.1523 276.855 56.1523 c 4xbe +516.602 232.91 m 4 + 516.602 403.32 416.504 492.188 289.551 492.188 c 4 + 242.676 492.188 205.078 480.469 172.852 466.309 c 5 + 172.852 574.707 l 5 + 303.711 574.707 l 5 + 303.711 637.695 l 5 + 172.852 637.695 l 5 + 172.852 737.793 l 5 + 92.7734 737.793 l 5 + 92.7734 637.695 l 5 + 26.8555 637.695 l 5 + 26.8555 574.707 l 5 + 92.7734 574.707 l 5 + 92.7734 0 l 5 + 148.438 0 l 5x7e + 161.621 30.2734 l 5 + 210.449 1.46484 260.742 -9.76562 303.223 -9.76562 c 4 + 398.926 -9.76562 516.602 49.8047 516.602 232.91 c 4 +EndSplineSet +Fore +SplineSet +93 738 m 1 + 213 738 l 1 + 213 638 l 1 + 398 638 l 1 + 398 535 l 1 + 213 535 l 1 + 213 458 l 1 + 255 474 316 491 378 491 c 0 + 538 491 574 392 574 286 c 2 + 574 0 l 1 + 447 0 l 1 + 447 284 l 2 + 447 316 443 380 341 380 c 0 + 316 380 273 375 213 353 c 1 + 213 0 l 1 + 93 0 l 1 + 93 535 l 1 + 27 535 l 1 + 27 638 l 1 + 93 638 l 1 + 93 738 l 1 +EndSplineSet +EndChar + +StartChar: dcroat +Encoding: 273 273 337 +Width: 684 +VWidth: 1023 +Flags: W +HStem: -10 106<257.731 443.994> 0 21G<469.909 567> 389 103<256.726 445.659> 535 103<297 447 567 633> 718 20G<447 567> +VStem: 63 125<162.788 326.028> 447 120<106.171 380.447 476 535 638 738> +LayerCount: 3 +Back +SplineSet +303.223 56.1523 m 0xbe + 344.727 56.1523 381.836 69.8242 407.227 83.4961 c 1 + 407.227 405.762 l 1 + 383.301 416.504 344.238 429.199 302.246 429.199 c 0 + 232.91 429.199 141.602 392.578 141.602 245.605 c 0 + 141.602 91.7969 238.77 56.1523 303.223 56.1523 c 0xbe +63.4766 232.91 m 0 + 63.4766 403.32 163.574 492.188 290.527 492.188 c 0 + 337.402 492.188 375 480.469 407.227 466.309 c 1 + 407.227 574.707 l 1 + 276.367 574.707 l 1 + 276.367 637.695 l 1 + 407.227 637.695 l 1 + 407.227 737.793 l 1 + 487.305 737.793 l 1 + 487.305 637.695 l 1 + 560.547 637.695 l 1 + 560.547 574.707 l 1 + 487.305 574.707 l 1 + 487.305 0 l 1 + 431.641 0 l 1x7e + 418.457 30.2734 l 1 + 369.629 1.46484 319.336 -9.76562 276.855 -9.76562 c 0 + 181.152 -9.76562 63.4766 49.8047 63.4766 232.91 c 0 +EndSplineSet +Fore +SplineSet +350 389 m 0xbe + 287 389 188 367 188 245 c 0 + 188 122 286 96 351 96 c 0 + 388 96 422 104 447 113 c 1 + 447 375 l 1 + 422 382 387 389 350 389 c 0xbe +336 492 m 0 + 378 492 415 486 447 476 c 1 + 447 535 l 1 + 297 535 l 1 + 297 638 l 1 + 447 638 l 1 + 447 738 l 1 + 567 738 l 1 + 567 638 l 1 + 633 638 l 1 + 633 535 l 1 + 567 535 l 1 + 567 0 l 1 + 479 0 l 1x7e + 469 22 l 1 + 420 -1 366 -10 320 -10 c 0 + 201 -10 63 50 63 233 c 0 + 63 402 178 492 336 492 c 0 +EndSplineSet +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 338 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<364.58 570.298> +VStem: 105 126<248.908 459.514> 711 126<238.736 452.067> +LayerCount: 3 +Fore +SplineSet +770 982 m 1 + 833 892 l 1 + 550 704 l 1 + 487 786 l 1 + 770 982 l 1 +498 982 m 1 + 566 892 l 1 + 273 704 l 1 + 211 786 l 1 + 498 982 l 1 +711 346 m 0 + 711 517 582 588 465 588 c 0 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +EndSplineSet +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 339 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<255.314 417.026> 383 109<246.335 410.555> +VStem: 63 119<172.971 320.588> 484 124<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +335 492 m 0 + 490 492 608 406 608 250 c 0 + 608 89 494 -10 327 -10 c 0 + 170 -10 63 82 63 236 c 0 + 63 393 168 492 335 492 c 0 +328 383 m 0 + 257 383 182 340 182 249 c 0 + 182 166 244 99 337 99 c 0 + 418 99 484 152 484 236 c 0 + 484 335 402 383 328 383 c 0 +584 765 m 1 + 655 681 l 1 + 428 501 l 1 + 356 581 l 1 + 584 765 l 1 +349 765 m 1 + 429 681 l 1 + 187 501 l 1 + 123 581 l 1 + 349 765 l 1 +EndSplineSet +EndChar + +StartChar: Aogonek +Encoding: 260 260 340 +Width: 795 +VWidth: 0 +Flags: W +HStem: -266 106<566.335 672.923> 0 21G<63 192.231> 182 112<313 528> 674 20G<355.326 495.674> +VStem: 432 132<-156.683 -76.4426> +LayerCount: 3 +Fore +SplineSet +63 0 m 1 + 364 694 l 1 + 487 694 l 1 + 788 0 l 1 + 759 0 l 1 + 581 -4 564 -125 564 -129 c 1 + 564 -142 572 -160 602 -160 c 0 + 636 -160 676 -139 683 -135 c 2 + 701 -124 l 1 + 743 -202 l 1 + 729 -212 l 2 + 703 -232 643 -266 575 -266 c 0 + 493 -266 432 -216 432 -146 c 0 + 432 -64 530 24 631 58 c 1 + 576 182 l 1 + 267 182 l 1 + 183 0 l 1 + 63 0 l 1 +528 294 m 1 + 422 552 l 1 + 313 294 l 1 + 528 294 l 1 +EndSplineSet +EndChar + +StartChar: aogonek +Encoding: 261 261 341 +Width: 602 +VWidth: 0 +Flags: W +HStem: -265 99<347.122 450.335> -8 105<189.502 351.48> 198 92<209.011 393> 379 106<129.218 371.771> +VStem: 60 120<111.113 173.063> 210 136<-162.177 -96.9349> 393 121<117.39 198 290 356.05> +LayerCount: 3 +Fore +SplineSet +180 138 m 4 + 180 112 215 97 277 97 c 0 + 322 97 363 111 393 128 c 1 + 393 198 l 5 + 280 198 226 195 196 169 c 4 + 186 161 180 149 180 138 c 4 +272 379 m 0 + 242 379 193 375 131 358 c 1 + 112 353 l 1 + 87 449 l 1 + 104 455 l 1 + 166 478 233 485 288 485 c 0 + 475 485 514 403 514 309 c 2 + 514 -14 l 1 + 503 -20 l 1 + 427 -59 346 -90 346 -136 c 0 + 346 -155 362 -166 385 -166 c 0 + 399 -166 418 -162 457 -141 c 2 + 474 -132 l 1 + 517 -206 l 1 + 501 -216 l 2 + 474 -234 418 -265 355 -265 c 0 + 270 -265 210 -216 210 -152 c 0 + 210 -78 288 -24 353 8 c 1 + 321 -2 287 -8 250 -8 c 0 + 138 -8 60 59 60 133 c 0 + 60 181 93 254 209 277 c 1 + 246 283 295 289 393 290 c 1 + 393 301 l 2 + 393 341 385 379 272 379 c 0 +EndSplineSet +EndChar + +StartChar: Eogonek +Encoding: 280 280 342 +Width: 706 +VWidth: 0 +Flags: W +HStem: -265 105<466.545 566.21> 0 113<265 422> 301 113<265 602> 581 113<265 628> +VStem: 142 123<113 301 414 581> 333 131<-156.474 -82.5345> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 628 694 l 1 + 628 581 l 1 + 265 581 l 1 + 265 414 l 1 + 602 414 l 1 + 602 301 l 1 + 265 301 l 1 + 265 113 l 1 + 628 113 l 1 + 628 23 l 1 + 620 18 l 2 + 536 -42 464 -79 464 -128 c 0 + 464 -149 482 -160 503 -160 c 0 + 528 -160 558 -144 573 -134 c 2 + 591 -123 l 1 + 633 -201 l 1 + 619 -211 l 2 + 594 -230 540 -265 475 -265 c 0 + 392 -265 333 -217 333 -146 c 0 + 333 -81 377 -34 422 0 c 1 + 142 0 l 1 + 142 694 l 1 +EndSplineSet +EndChar + +StartChar: eogonek +Encoding: 281 281 343 +Width: 618 +VWidth: 0 +Flags: W +HStem: -266 99<359.062 464.699> 179 100<187 437> 377 110<239.52 401.426> +VStem: 227 130<-164.272 -80.7098> +LayerCount: 3 +Fore +SplineSet +63 219 m 0 + 63 418 209 487 341 487 c 0 + 546 487 555 337 555 234 c 2 + 555 179 l 1 + 186 179 l 1 + 200 132 271 93 375 93 c 0 + 406 93 448 97 488 109 c 2 + 508 116 l 1 + 532 22 l 1 + 515 17 l 2 + 420 -14 357 -92 357 -133 c 0 + 357 -156 374 -167 396 -167 c 0 + 410 -167 433 -163 472 -142 c 2 + 490 -132 l 1 + 532 -206 l 1 + 517 -216 l 2 + 487 -236 432 -266 367 -266 c 0 + 282 -266 227 -215 227 -149 c 0 + 227 -96 260 -48 300 -9 c 1 + 147 4 63 79 63 219 c 0 +320 377 m 0 + 239 377 195 331 187 279 c 1 + 437 279 l 1 + 432 353 386 377 320 377 c 0 +EndSplineSet +EndChar + +StartChar: Iogonek +Encoding: 302 302 344 +Width: 396 +VWidth: 0 +Flags: W +HStem: -266 105<127.235 217.982> 674 20G<156 279> +VStem: 15 110<-159.289 -78.5669> 156 123<34.3438 694> +LayerCount: 3 +Fore +SplineSet +15 -146 m 0 + 15 -70 76 5 156 47 c 1 + 156 694 l 1 + 279 694 l 1 + 279 22 l 1 + 269 17 l 1 + 142 -52 125 -106 125 -128 c 0 + 125 -141 132 -161 158 -161 c 0 + 168 -161 189 -157 227 -135 c 2 + 245 -124 l 1 + 287 -202 l 1 + 272 -212 l 2 + 243 -233 190 -266 134 -266 c 0 + 67 -266 15 -218 15 -146 c 0 +EndSplineSet +EndChar + +StartChar: iogonek +Encoding: 303 303 345 +Width: 295 +VWidth: 0 +Flags: W +HStem: -271 105<52.1396 142.553> 462 20G<88 208> 562 132<81 215> +VStem: -60 110<-164.405 -78.9219> 81 134<562 694> 88 120<47.0445 482> +LayerCount: 3 +Fore +SplineSet +-60 -148 m 0xf4 + -60 -66 8 14 88 58 c 1 + 88 482 l 1 + 208 482 l 1 + 208 17 l 1 + 195 12 l 1 + 108 -19 50 -88 50 -132 c 0 + 50 -152 62 -166 83 -166 c 0 + 97 -166 117 -160 152 -140 c 2 + 170 -130 l 1 + 211 -206 l 1 + 197 -216 l 1 + 168 -237 115 -271 59 -271 c 0 + -10 -271 -60 -220 -60 -148 c 0xf4 +81 694 m 1xf8 + 215 694 l 1 + 215 562 l 1 + 81 562 l 1 + 81 694 l 1xf8 +EndSplineSet +EndChar + +StartChar: Uogonek +Encoding: 370 370 346 +Width: 851 +VWidth: 0 +Flags: W +HStem: -266 105<455.497 557.403> 674 20G<142 265 626 749> +VStem: 142 123<163.847 694> 328 125<-159.061 -75.9358> 626 123<166.368 694> +LayerCount: 3 +Fore +SplineSet +141 243 m 0 + 141 264 142 285 142 305 c 2 + 142 694 l 1 + 265 694 l 1 + 265 254 l 2 + 265 212 268 177 300 147 c 0 + 314 134 355 102 445 102 c 0 + 538 102 602 135 620 195 c 0 + 625 213 626 233 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 305 l 2 + 749 286 750 267 750 247 c 0 + 750 93 699 54 593 8 c 1 + 473 -43 453 -106 453 -127 c 0 + 453 -147 465 -161 489 -161 c 0 + 514 -161 549 -145 565 -135 c 2 + 586 -123 l 1 + 633 -202 l 1 + 618 -212 l 1 + 588 -233 526 -266 460 -266 c 0 + 380 -266 328 -217 328 -146 c 0 + 328 -95 353 -46 388 -8 c 1 + 154 11 141 165 141 243 c 0 +EndSplineSet +EndChar + +StartChar: uogonek +Encoding: 371 371 347 +Width: 656 +VWidth: 0 +Flags: W +HStem: -265 100<404.804 509.293> -10 112<239.035 413.275> 462 20G<90 210 449 569> +VStem: 90 120<131.364 482> 271 132<-162.424 -97.1839> 449 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +210 482 m 1 + 210 387 210 293 210 198 c 0 + 210 171 212 102 318 102 c 0 + 367 102 419 118 449 129 c 1 + 449 482 l 1 + 569 482 l 1 + 569 -14 l 1 + 558 -20 l 1 + 489 -56 403 -89 403 -135 c 0 + 403 -153 412 -165 440 -165 c 0 + 470 -165 503 -147 513 -142 c 2 + 530 -132 l 1 + 573 -206 l 1 + 558 -216 l 2 + 507 -250 460 -265 414 -265 c 0 + 325 -265 271 -214 271 -153 c 0 + 271 -78 342 -23 437 20 c 1 + 393 4 337 -10 280 -10 c 0 + 251 -10 223 -6 198 3 c 0 + 95 40 88 127 88 206 c 0 + 88 214 90 222 90 226 c 2 + 90 482 l 1 + 210 482 l 1 +EndSplineSet +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 348 +Width: 851 +VWidth: 0 +Flags: W +HStem: -10 112<340.332 554.424> 674 20G<142 265 626 749> +VStem: 142 123<163.271 694> 626 123<166.699 694> +LayerCount: 3 +Fore +SplineSet +271 708 m 5 + 208 798 l 5 + 478 987 l 5 + 535 905 l 5 + 271 708 l 5 +731 987 m 5 + 793 897 l 5 + 524 708 l 5 + 467 791 l 5 + 731 987 l 5 +445 -10 m 0 + 142 -10 141 172 141 243 c 0 + 141 264 142 285 142 305 c 2 + 142 694 l 1 + 265 694 l 1 + 265 254 l 2 + 265 212 268 177 300 147 c 0 + 314 134 355 102 445 102 c 0 + 538 102 602 135 620 195 c 0 + 625 213 626 233 626 254 c 2 + 626 694 l 1 + 749 694 l 1 + 749 305 l 2 + 749 285 750 264 750 243 c 0 + 750 168 742 -10 445 -10 c 0 +EndSplineSet +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 349 +Width: 656 +VWidth: 0 +Flags: W +HStem: -10 112<237.115 405.808> 0 21G<468.909 567> 462 20G<88 208 447 567> +VStem: 88 120<132.365 482> 447 120<121.854 482> +LayerCount: 3 +Fore +SplineSet +325 765 m 1x38 + 396 681 l 1 + 181 501 l 1 + 104 581 l 1 + 325 765 l 1x38 +447 482 m 1 + 567 482 l 1 + 567 0 l 1 + 478 0 l 1x78 + 463 33 l 1 + 384 -1 318 -10 274 -10 c 0 + 110 -10 88 99 88 197 c 2 + 88 482 l 1 + 208 482 l 1 + 208 198 l 2 + 208 166 212 102 316 102 c 0xb8 + 365 102 417 118 447 129 c 1 + 447 482 l 1 +589 765 m 1 + 660 681 l 1 + 445 501 l 1 + 369 581 l 1 + 589 765 l 1 +EndSplineSet +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 350 +Width: 219 +VWidth: 1023 +Flags: W +HStem: 506 252<90 154> +VStem: 17 210 +LayerCount: 3 +Fore +SplineSet +154 758 m 1 + 227 506 l 1 + 90 506 l 1 + 17 758 l 1 + 154 758 l 1 +EndSplineSet +EndChar + +StartChar: uni201F +Encoding: 8223 8223 351 +Width: 405 +VWidth: 1023 +Flags: W +HStem: 506 252<139 203 324 389> +LayerCount: 3 +Fore +SplineSet +154 758 m 1 + 227 506 l 1 + 90 506 l 1 + 17 758 l 1 + 154 758 l 1 +340 758 m 1 + 413 506 l 1 + 275 506 l 1 + 203 758 l 1 + 340 758 l 1 +EndSplineSet +EndChar + +StartChar: exclamdbl +Encoding: 8252 8252 352 +Width: 634 +VWidth: 0 +Flags: W +HStem: -20 138<90 228 407 545> +VStem: 90 138<-20 118> 97 123<204 714> 407 138<-20 118> 415 123<204 714> +LayerCount: 3 +Fore +SplineSet +90 118 m 1xc0 + 228 118 l 1 + 228 -20 l 1 + 90 -20 l 1 + 90 118 l 1xc0 +97 714 m 1xa0 + 220 714 l 1 + 220 204 l 1 + 97 204 l 1 + 97 714 l 1xa0 +407 118 m 1x90 + 545 118 l 1 + 545 -20 l 1 + 407 -20 l 1 + 407 118 l 1x90 +415 714 m 1x88 + 538 714 l 1 + 538 204 l 1 + 415 204 l 1 + 415 714 l 1x88 +EndSplineSet +EndChar + +StartChar: uni204B +Encoding: 8267 8267 353 +Width: 647 +VWidth: 1023 +Flags: W +HStem: 645 113<212 290> +VStem: 92 120<-20 645> 290 334<442.125 639.808> 290 120<-20 317.537> +LayerCount: 3 +Fore +SplineSet +92 758 m 1xd0 + 374 758 l 2 + 451 758 624 753 624 553 c 0xe0 + 624 376 501 322 410 315 c 1 + 410 -20 l 1 + 290 -20 l 1 + 290 645 l 1 + 212 645 l 1 + 212 -20 l 1 + 92 -20 l 1 + 92 758 l 1xd0 +EndSplineSet +EndChar + +StartChar: minute +Encoding: 8242 8242 354 +Width: 197 +VWidth: 0 +Flags: W +HStem: 509 249<34 164> +VStem: 34 130<509 758> +LayerCount: 3 +Fore +SplineSet +34 758 m 1 + 164 758 l 1 + 164 509 l 1 + 34 509 l 1 + 34 758 l 1 +EndSplineSet +EndChar + +StartChar: second +Encoding: 8243 8243 355 +Width: 395 +VWidth: 0 +Flags: W +HStem: 509 249<34 164 231 362> +VStem: 34 130<509 758> 231 131<509 758> +LayerCount: 3 +Fore +SplineSet +34 758 m 1 + 164 758 l 1 + 164 509 l 1 + 34 509 l 1 + 34 758 l 1 +231 758 m 1 + 362 758 l 1 + 362 509 l 1 + 231 509 l 1 + 231 758 l 1 +EndSplineSet +EndChar + +StartChar: uni2034 +Encoding: 8244 8244 356 +Width: 593 +VWidth: 0 +Flags: W +HStem: 509 249<34 164 231 362 429 560> +VStem: 34 130<509 758> 231 131<509 758> 429 131<509 758> +LayerCount: 3 +Fore +SplineSet +34 758 m 1 + 164 758 l 1 + 164 509 l 1 + 34 509 l 1 + 34 758 l 1 +231 758 m 1 + 362 758 l 1 + 362 509 l 1 + 231 509 l 1 + 231 758 l 1 +429 758 m 1 + 560 758 l 1 + 560 509 l 1 + 429 509 l 1 + 429 758 l 1 +EndSplineSet +EndChar + +StartChar: uni2035 +Encoding: 8245 8245 357 +Width: 197 +VWidth: 1023 +Flags: W +HStem: 506 252<51 146> +VStem: 11 176 +LayerCount: 3 +Fore +SplineSet +11 758 m 1 + 146 758 l 1 + 187 506 l 1 + 51 506 l 1 + 11 758 l 1 +EndSplineSet +EndChar + +StartChar: uni0191 +Encoding: 401 401 358 +Width: 689 +VWidth: 1023 +Flags: W +HStem: -264 106<-35.7344 129.166> 301 113<288 598> 581 113<288 627> +VStem: 153 135<-133.92 301 414 581> +LayerCount: 3 +Fore +SplineSet +-52 -239 m 1 + -32 -141 l 1 + -12 -146 l 2 + 2 -150 32 -158 61 -158 c 0 + 135 -158 153 -119 153 -75 c 2 + 153 694 l 1 + 627 694 l 1 + 627 581 l 1 + 288 581 l 1 + 288 414 l 1 + 598 414 l 1 + 598 301 l 1 + 288 301 l 1 + 288 -78 l 2 + 288 -209 201 -264 86 -264 c 0 + 45 -264 5 -257 -35 -245 c 2 + -52 -239 l 1 +EndSplineSet +EndChar + +StartChar: uni022C +Encoding: 556 556 359 +Width: 903 +VWidth: 0 +Flags: W +HStem: -7 112<370.856 577.057> 588 113<367.176 566.695> 729 99<537.465 588.441> 817 99<385.568 436.535> 950 103<263 700> +VStem: 105 126<248.908 459.514> 268 101<738.03 807.578> 602 100<834.19 905.312> 711 126<238.736 449.361> +LayerCount: 3 +Fore +SplineSet +263 1053 m 5xcf80 + 700 1053 l 5 + 700 950 l 5 + 263 950 l 5 + 263 1053 l 5xcf80 +606 920 m 1 + 707 905 l 1 + 702 885 l 2 + 690 830 679 729 573 729 c 1xef80 + 475 733 432 817 404 817 c 0 + 385 817 380 780 373 744 c 2 + 369 725 l 1 + 268 739 l 1 + 272 760 l 2 + 284 815 295 916 401 916 c 1xdf80 + 499 912 542 828 570 828 c 0xef80 + 589 828 595 869 602 901 c 2 + 606 920 l 1 +711 346 m 0 + 711 518 580 588 467 588 c 2 + 465 588 l 2 + 355 588 231 519 231 355 c 0 + 231 201 339 105 475 105 c 0 + 587 105 711 176 711 346 c 0 +472 701 m 0 + 684 701 837 568 837 354 c 0 + 837 139 688 -7 468 -7 c 0 + 280 -7 105 109 105 345 c 0 + 105 562 257 701 472 701 c 0 +EndSplineSet +EndChar + +StartChar: uni1E6B +Encoding: 7787 7787 360 +Width: 448 +VWidth: 0 +Flags: W +HStem: -10 103<251.648 412.414> 379 103<34 109 229 406> 649 143<86 258> +VStem: 86 172<649 792> 109 120<115.809 379 482 621> +LayerCount: 3 +Fore +SplineSet +409 9 m 6xe8 + 352 -6 317 -10 289 -10 c 4 + 130 -10 109 70 109 155 c 6 + 109 379 l 5 + 34 379 l 5 + 34 482 l 5 + 109 482 l 5 + 109 621 l 5 + 229 621 l 5 + 229 482 l 5 + 406 482 l 5 + 406 379 l 5 + 229 379 l 5 + 229 163 l 6 + 229 134 246 93 318 93 c 4 + 331 93 338 94 390 103 c 5 + 409 106 l 5 + 428 14 l 5 + 409 9 l 6xe8 +86 792 m 1xf0 + 258 792 l 1 + 258 649 l 1 + 86 649 l 1 + 86 792 l 1xf0 +EndSplineSet +EndChar + +StartChar: uni1E6A +Encoding: 7786 7786 361 +Width: 670 +VWidth: 0 +Flags: W +HStem: 0 21G<293 417> 581 113<42 293 417 668> 784 143<275 434> +VStem: 275 159<784 927> 293 124<0 581> +LayerCount: 3 +Fore +SplineSet +42 694 m 1xe8 + 668 694 l 1 + 668 581 l 1 + 417 581 l 1 + 417 0 l 1 + 293 0 l 1 + 293 581 l 1 + 42 581 l 1 + 42 694 l 1xe8 +275 927 m 5xf0 + 434 927 l 5 + 434 784 l 5 + 275 784 l 5 + 275 927 l 5xf0 +EndSplineSet +EndChar + +StartChar: uni1E02 +Encoding: 7682 7682 362 +Width: 775 +VWidth: 0 +Flags: W +HStem: 0 113<265 531.117> 320 78<265 456.308> 590 104<265 478.227> 784 143<332 493> +VStem: 142 123<113 314 398 590> 332 161<784 927> 521 136<446.334 555.781> 591 123<159.37 263.738> +LayerCount: 3 +Fore +SplineSet +378 590 m 2xfe + 265 590 l 1 + 265 398 l 1 + 378 400 521 400 521 503 c 0 + 521 538 502 590 378 590 c 2xfe +386 320 m 0 + 374 320 361 318 265 314 c 1 + 265 113 l 1 + 374 113 l 2 + 440 113 591 115 591 212 c 0xfd + 591 279 511 320 386 320 c 0 +142 694 m 1 + 406 694 l 2 + 620 694 657 576 657 517 c 0xfe + 657 471 629 422 594 392 c 1 + 667 362 714 294 714 218 c 0 + 714 152 669 0 387 0 c 2 + 142 0 l 1 + 142 694 l 1 +332 927 m 1 + 493 927 l 1 + 493 784 l 1 + 332 784 l 1 + 332 927 l 1 +EndSplineSet +EndChar + +StartChar: uni1E03 +Encoding: 7683 7683 363 +Width: 657 +VWidth: 0 +Flags: W +HStem: -10 103<214.214 407.067> 0 21G<93 188> 386 106<214.666 406.521> 718 20G<93 213> 784 143<265 434> +VStem: 93 120<101.553 376.356 471 738> 265 169<784 927> 477 118<156.724 319.235> +LayerCount: 3 +Fore +SplineSet +213 471 m 1x7f + 250 484 293 492 341 492 c 0 + 458 492 595 437 595 247 c 0 + 595 86 490 -10 325 -10 c 0xbf + 271 -10 222 2 188 16 c 1 + 182 0 l 1 + 93 0 l 1 + 93 738 l 1 + 213 738 l 1 + 213 471 l 1x7f +309 386 m 0 + 280 386 247 382 213 370 c 1 + 213 107 l 1 + 238 100 273 93 311 93 c 0 + 378 93 477 118 477 234 c 0 + 477 362 376 386 309 386 c 0 +265 927 m 1 + 434 927 l 1 + 434 784 l 1 + 265 784 l 1 + 265 927 l 1 +EndSplineSet +EndChar + +StartChar: uni1E0A +Encoding: 7690 7690 364 +Width: 864 +VWidth: 0 +Flags: W +HStem: 0 113<265 512.337> 581 113<265 513.025> 784 143<362 525> +VStem: 142 123<113 581> 362 163<784 927> 662 124<245.261 449.356> +LayerCount: 3 +Fore +SplineSet +362 927 m 1 + 525 927 l 1 + 525 784 l 1 + 362 784 l 1 + 362 927 l 1 +380 581 m 2 + 265 581 l 1 + 265 113 l 1 + 346 113 l 2 + 431 113 560 116 627 221 c 0 + 642 244 662 286 662 351 c 0 + 662 499 548 564 451 577 c 0 + 429 580 405 581 380 581 c 2 +376 694 m 2 + 706 694 786 520 786 367 c 0 + 786 226 730 61 515 15 c 0 + 445 0 375 0 316 0 c 2 + 142 0 l 1 + 142 694 l 1 + 376 694 l 2 +EndSplineSet +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 365 +Width: 1172 +VWidth: 0 +Flags: W +HStem: 0 21G<291.372 423.382 772.71 904.493> 674 20G<68 205.004 552.458 679.191 1025.68 1157> +LayerCount: 3 +Fore +SplineSet +68 694 m 1 + 199 694 l 1 + 359 161 l 1 + 560 694 l 1 + 673 694 l 1 + 838 161 l 1 + 1033 694 l 1 + 1157 694 l 1 + 897 0 l 1 + 779 0 l 1 + 612 531 l 1 + 416 0 l 1 + 298 0 l 1 + 68 694 l 1 +528 949 m 1 + 830 777 l 1 + 773 690 l 1 + 467 854 l 1 + 528 949 l 1 +EndSplineSet +EndChar + +StartChar: Wacute +Encoding: 7810 7810 366 +Width: 1172 +VWidth: 0 +Flags: W +HStem: 0 21G<291.372 423.382 772.71 904.493> 674 20G<68 205.004 552.458 679.191 1025.68 1157> +LayerCount: 3 +Fore +SplineSet +68 694 m 1 + 199 694 l 1 + 359 161 l 1 + 560 694 l 1 + 673 694 l 1 + 838 161 l 1 + 1033 694 l 1 + 1157 694 l 1 + 897 0 l 1 + 779 0 l 1 + 612 531 l 1 + 416 0 l 1 + 298 0 l 1 + 68 694 l 1 +725 949 m 1 + 786 854 l 1 + 480 690 l 1 + 423 777 l 1 + 725 949 l 1 +EndSplineSet +EndChar + +StartChar: uni1E0B +Encoding: 7691 7691 367 +Width: 660 +VWidth: 0 +Flags: W +HStem: -10 106<253.293 443.689> 0 21G<469.909 567> 389 103<249.155 445.634> 718 20G<447 567> 784 143<237 405> +VStem: 63 119<162.788 326.028> 237 168<784 927> 447 120<106.547 380.141 476 738> +LayerCount: 3 +Fore +SplineSet +182 245 m 0xbf + 182 122 281 96 348 96 c 0 + 386 96 421 104 447 113 c 1 + 447 375 l 1 + 421 382 385 389 347 389 c 0 + 282 389 182 367 182 245 c 0xbf +237 784 m 1 + 237 927 l 1 + 405 927 l 1 + 405 784 l 1 + 237 784 l 1 +333 492 m 0 + 376 492 415 485 447 476 c 1 + 447 738 l 1 + 567 738 l 1 + 567 0 l 1 + 479 0 l 1x7f + 469 22 l 1 + 419 -1 364 -10 317 -10 c 0 + 195 -10 63 50 63 233 c 0 + 63 402 173 492 333 492 c 0 +EndSplineSet +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 368 +Width: 696 +VWidth: 0 +Flags: W +HStem: 0 21G<306 444> 674 20G<49 207.829 554.948 710> +VStem: 306 138<0 324> +LayerCount: 3 +Fore +SplineSet +49 694 m 1 + 194 694 l 1 + 380 425 l 1 + 569 694 l 1 + 710 694 l 1 + 444 324 l 1 + 444 0 l 1 + 306 0 l 1 + 306 324 l 1 + 49 694 l 1 +261 949 m 1 + 574 777 l 1 + 519 690 l 1 + 200 854 l 1 + 261 949 l 1 +EndSplineSet +EndChar + +StartChar: uni1E1E +Encoding: 7710 7710 369 +Width: 689 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265> 301 113<265 594> 581 113<265 624> 784 143<291 462> +VStem: 142 123<0 301 414 581> 291 171<784 927> +LayerCount: 3 +Fore +SplineSet +265 581 m 1 + 265 414 l 1 + 594 414 l 1 + 594 301 l 1 + 265 301 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 + 624 694 l 1 + 624 581 l 1 + 265 581 l 1 +291 927 m 1 + 462 927 l 1 + 462 784 l 1 + 291 784 l 1 + 291 927 l 1 +EndSplineSet +EndChar + +StartChar: uni1E1F +Encoding: 7711 7711 370 +Width: 480 +VWidth: 0 +Flags: W +HStem: 0 21G<146 266> 379 103<66 146 266 458> 591 107<296.209 479.734> 750 143<211 389> +VStem: 146 120<0 379 482 563.17> 211 178<750 893> +LayerCount: 3 +Fore +SplineSet +146 511 m 6xf8 + 146 584 148 698 351 698 c 4 + 379 698 420 696 479 678 c 6 + 496 672 l 5 + 476 575 l 5 + 456 580 l 6 + 442 583 412 591 383 591 c 4 + 300 591 266 561 266 515 c 6 + 266 482 l 5 + 458 482 l 5 + 458 379 l 5 + 266 379 l 5 + 266 0 l 5 + 146 0 l 5 + 146 379 l 5 + 66 379 l 5 + 66 482 l 5 + 146 482 l 5 + 146 511 l 6xf8 +211 893 m 1xf4 + 389 893 l 1 + 389 750 l 1 + 211 750 l 1 + 211 893 l 1xf4 +EndSplineSet +EndChar + +StartChar: uni1E40 +Encoding: 7744 7744 371 +Width: 1000 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265 774 897> 674 20G<142 302.529 743.271 897> 784 143<436 592> +VStem: 142 123<0 519> 436 156<784 927> 774 123<0 519> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 291 694 l 1 + 521 295 l 1 + 755 694 l 1 + 897 694 l 1 + 897 0 l 1 + 774 0 l 1 + 774 519 l 1 + 577 199 l 1 + 461 199 l 1 + 265 519 l 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 +436 927 m 1 + 592 927 l 1 + 592 784 l 1 + 436 784 l 1 + 436 927 l 1 +EndSplineSet +EndChar + +StartChar: uni1E41 +Encoding: 7745 7745 372 +Width: 964 +VWidth: 0 +Flags: W +HStem: 0 21G<88 208 422 542 756 877> 378 114<238.999 394.329 558.853 728.82> 462 20G<88 186.032> 552 142<415 563> +VStem: 88 120<0 359.434> 415 148<552 694> 422 120<0 350.874> 756 121<0 351.278> +LayerCount: 3 +Fore +SplineSet +322 378 m 0xdb + 298 378 270 374 208 352 c 1 + 208 0 l 1 + 88 0 l 1 + 88 482 l 1 + 177 482 l 1xbb + 191 451 l 1 + 229 469 293 492 361 492 c 0 + 435 492 473 464 493 443 c 1 + 537 466 607 491 687 491 c 0 + 842 491 877 398 877 286 c 2 + 877 0 l 1 + 756 0 l 1 + 756 285 l 2 + 756 344 729 378 655 378 c 0 + 617 378 575 366 538 352 c 1 + 542 328 542 302 542 277 c 2 + 542 0 l 1 + 422 0 l 1 + 422 287 l 2 + 422 365 366 378 322 378 c 0xdb +415 694 m 1x9d + 563 694 l 1 + 563 552 l 1 + 415 552 l 1 + 415 694 l 1x9d +EndSplineSet +EndChar + +StartChar: uni1E56 +Encoding: 7766 7766 373 +Width: 733 +VWidth: 0 +Flags: W +HStem: 0 21G<142 265> 268 112<265 496.72> 581 113<265 508.868> 784 143<296 454> +VStem: 142 123<0 270 383 581> 296 158<784 927> 556 126<426.974 541.607> +LayerCount: 3 +Fore +SplineSet +142 694 m 1 + 391 694 l 2 + 491 694 682 690 682 499 c 0 + 682 288 492 268 325 268 c 0 + 304 268 285 269 265 270 c 1 + 265 0 l 1 + 142 0 l 1 + 142 694 l 1 +265 581 m 1 + 265 383 l 1 + 288 382 310 380 333 380 c 0 + 450 380 556 389 556 485 c 0 + 556 570 465 581 366 581 c 2 + 265 581 l 1 +296 927 m 1 + 454 927 l 1 + 454 784 l 1 + 296 784 l 1 + 296 927 l 1 +EndSplineSet +EndChar + +StartChar: wgrave +Encoding: 7809 7809 374 +Width: 942 +VWidth: 0 +Flags: W +HStem: 0 21G<207.282 332.818 583.487 709.585> 462 20G<29 164.443 414.597 537.425 793.285 931> +LayerCount: 3 +Fore +SplineSet +29 482 m 1 + 158 482 l 1 + 273 125 l 1 + 423 482 l 1 + 531 482 l 1 + 646 124 l 1 + 802 482 l 1 + 931 482 l 1 + 700 0 l 1 + 590 0 l 1 + 477 347 l 1 + 324 0 l 1 + 215 0 l 1 + 29 482 l 1 +408 765 m 1 + 633 581 l 1 + 558 501 l 1 + 325 681 l 1 + 408 765 l 1 +EndSplineSet +EndChar + +StartChar: uni1E57 +Encoding: 7767 7767 375 +Width: 654 +VWidth: 0 +Flags: W +HStem: -10 103<214.319 405.571> 385 107<217.067 407.287> 462 20G<88 186.565> 552 142<275 440> +VStem: 88 125<-259 7 102.379 374.463> 275 165<552 694> 474 118<156.495 318.354> +LayerCount: 3 +Fore +SplineSet +275 552 m 1x9e + 275 694 l 1 + 440 694 l 1 + 440 552 l 1 + 275 552 l 1x9e +474 234 m 0 + 474 362 376 385 310 385 c 0xde + 281 385 248 380 213 368 c 1 + 213 108 l 1 + 238 101 273 93 311 93 c 0 + 377 93 474 119 474 234 c 0 +188 459 m 1 + 241 482 295 492 341 492 c 0xde + 457 492 592 434 592 246 c 0 + 592 85 487 -10 325 -10 c 0 + 282 -10 244 -2 213 7 c 1 + 213 -259 l 1 + 88 -259 l 1 + 88 482 l 1 + 177 482 l 1xbe + 188 459 l 1 +EndSplineSet +EndChar + +StartChar: wacute +Encoding: 7811 7811 376 +Width: 942 +VWidth: 0 +Flags: W +HStem: 0 21G<207.282 332.818 583.487 709.585> 462 20G<29 164.443 414.597 537.425 793.285 931> +LayerCount: 3 +Fore +SplineSet +29 482 m 1 + 158 482 l 1 + 273 125 l 1 + 423 482 l 1 + 531 482 l 1 + 646 124 l 1 + 802 482 l 1 + 931 482 l 1 + 700 0 l 1 + 590 0 l 1 + 477 347 l 1 + 324 0 l 1 + 215 0 l 1 + 29 482 l 1 +567 765 m 1 + 650 681 l 1 + 417 501 l 1 + 342 581 l 1 + 567 765 l 1 +EndSplineSet +EndChar + +StartChar: uni1E60 +Encoding: 7776 7776 377 +Width: 744 +VWidth: 0 +Flags: W +HStem: -10 122<249.292 496.476> 558 113<548.908 627.593> 582 118<327.007 596.457> 784 143<333 496> +VStem: 137 134<462.416 539.871> 333 163<784 927> 550 132<153.719 238.198> +LayerCount: 3 +Fore +SplineSet +333 927 m 1x9e + 496 927 l 1 + 496 784 l 1 + 333 784 l 1 + 333 927 l 1x9e +453 700 m 0xbe + 534 700 606 683 645 671 c 2 + 665 666 l 1 + 625 552 l 1 + 606 558 l 1xde + 535 578 479 582 445 582 c 0 + 352 582 271 549 271 499 c 0 + 271 380 682 423 682 200 c 0 + 682 106 601 -10 370 -10 c 0 + 272 -10 202 13 135 39 c 1 + 117 45 l 1 + 159 164 l 1 + 178 156 l 1 + 271 123 339 112 381 112 c 0 + 481 112 550 146 550 196 c 0 + 550 328 137 272 137 493 c 0 + 137 606 256 700 453 700 c 0xbe +EndSplineSet +EndChar + +StartChar: ygrave +Encoding: 7923 7923 378 +Width: 592 +VWidth: 0 +Flags: W +HStem: 462 20G<24 159.703 452 587> +LayerCount: 3 +Fore +SplineSet +24 482 m 1 + 151 482 l 1 + 312 112 l 1 + 460 482 l 1 + 587 482 l 1 + 269 -259 l 1 + 124 -259 l 1 + 244 1 l 1 + 24 482 l 1 +219 765 m 1 + 458 581 l 1 + 384 501 l 1 + 140 681 l 1 + 219 765 l 1 +EndSplineSet +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 379 +Width: 1172 +VWidth: 0 +Flags: W +HStem: 0 21G<291.372 423.382 772.71 904.493> 674 20G<68 205.004 552.458 679.191 1025.68 1157> 796 131<423 568 658 802> +VStem: 423 145<796 927> 658 144<796 927> +LayerCount: 3 +Fore +SplineSet +68 694 m 1 + 199 694 l 1 + 359 161 l 1 + 560 694 l 1 + 673 694 l 1 + 838 161 l 1 + 1033 694 l 1 + 1157 694 l 1 + 897 0 l 1 + 779 0 l 1 + 612 531 l 1 + 416 0 l 1 + 298 0 l 1 + 68 694 l 1 +423 927 m 1 + 568 927 l 1 + 568 796 l 1 + 423 796 l 1 + 423 927 l 1 +658 927 m 1 + 802 927 l 1 + 802 796 l 1 + 658 796 l 1 + 658 927 l 1 +EndSplineSet +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 380 +Width: 942 +VWidth: 0 +Flags: W +HStem: 0 21G<207.282 332.818 583.487 709.585> 462 20G<29 164.443 414.597 537.425 793.285 931> 564 130<281 433 522 673> +VStem: 281 152<564 694> 522 151<564 694> +LayerCount: 3 +Fore +SplineSet +29 482 m 1 + 158 482 l 1 + 273 125 l 1 + 423 482 l 1 + 531 482 l 1 + 646 124 l 1 + 802 482 l 1 + 931 482 l 1 + 700 0 l 1 + 590 0 l 1 + 477 347 l 1 + 324 0 l 1 + 215 0 l 1 + 29 482 l 1 +281 694 m 1 + 433 694 l 1 + 433 564 l 1 + 281 564 l 1 + 281 694 l 1 +522 694 m 1 + 673 694 l 1 + 673 564 l 1 + 522 564 l 1 + 522 694 l 1 +EndSplineSet +EndChar + +StartChar: uni1E61 +Encoding: 7777 7777 381 +Width: 576 +VWidth: 0 +Flags: W +HStem: -10 103<150.277 378.767> 372 99<346.483 471.484> 389 103<226.72 476.133> 552 142<221 396> +VStem: 81 127<318.934 370.3> 221 175<552 694> 394 129<110.992 164.244> +LayerCount: 3 +Fore +SplineSet +221 552 m 1x9c + 221 694 l 1 + 396 694 l 1 + 396 552 l 1 + 221 552 l 1x9c +394 144 m 1xba + 389 205 81 183 81 341 c 0 + 81 400 135 492 343 492 c 0xba + 418 492 448 481 482 471 c 2 + 502 465 l 1 + 469 367 l 1 + 450 372 l 2xda + 418 381 384 389 327 389 c 0 + 220 389 208 352 208 340 c 0 + 208 285 523 292 523 143 c 0 + 523 80 478 -10 269 -10 c 0 + 221 -10 155 -2 82 28 c 2 + 63 36 l 1 + 100 133 l 1 + 118 126 l 1 + 182 102 226 93 273 93 c 0 + 357 93 394 110 394 144 c 1xba +EndSplineSet +EndChar + +StartChar: uniFB00 +Encoding: 64256 64256 382 +Width: 863 +VWidth: 0 +Flags: W +HStem: 0 21G<127 247 517 637> 379 103<47 127 247 517 637 830> 591 107<277.209 460.734 667.459 851.648> +VStem: 127 120<0 379 482 563.17> 517 120<0 379 482 563.17> +LayerCount: 3 +Fore +SplineSet +127 511 m 2 + 127 584 129 698 332 698 c 0 + 360 698 401 696 460 678 c 2 + 477 672 l 1 + 457 575 l 1 + 437 580 l 2 + 423 583 393 591 364 591 c 0 + 281 591 247 561 247 515 c 2 + 247 482 l 1 + 517 482 l 1 + 517 511 l 2 + 517 584 519 698 722 698 c 0 + 750 698 791 696 850 678 c 2 + 868 672 l 1 + 848 575 l 1 + 827 580 l 2 + 813 583 784 591 755 591 c 0 + 672 591 637 561 637 515 c 2 + 637 482 l 1 + 830 482 l 1 + 830 379 l 1 + 637 379 l 1 + 637 0 l 1 + 517 0 l 1 + 517 379 l 1 + 247 379 l 1 + 247 0 l 1 + 127 0 l 1 + 127 379 l 1 + 47 379 l 1 + 47 482 l 1 + 127 482 l 1 + 127 511 l 2 +EndSplineSet +LCarets2: 1 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f f +EndChar + +StartChar: uniFB01 +Encoding: 64257 64257 383 +Width: 700 +VWidth: 0 +Flags: HW +HStem: 0 21G<110 230 532 652> 379 103<30 110 230 422> 562 132<525 660> 591 107<260.209 443.734> +VStem: 110 120<0 379 482 563.17> 525 135<562 694> 532 120<0 482> +LayerCount: 3 +Back +SplineSet +145.508 511.23 m 6 + 145.508 583.984 147.461 697.754 350.586 697.754 c 4 + 378.418 697.754 419.922 695.312 478.516 677.734 c 6 + 496.094 672.363 l 5 + 476.074 574.707 l 5 + 455.566 579.59 l 6 + 441.406 583.008 412.109 590.82 383.301 590.82 c 4 + 300.293 590.82 265.625 560.547 265.625 514.648 c 6 + 265.625 482.422 l 5 + 458.496 482.422 l 5 + 458.496 379.395 l 5 + 265.625 379.395 l 5 + 265.625 0 l 5 + 145.508 0 l 5 + 145.508 379.395 l 5 + 65.918 379.395 l 5 + 65.918 482.422 l 5 + 145.508 482.422 l 5 + 145.508 511.23 l 6 +480.957 693.848 m 5x96 + 615.723 693.848 l 5 + 615.723 561.523 l 5 + 480.957 561.523 l 5 + 480.957 693.848 l 5x96 +488.281 482.422 m 5xa5 + 608.398 482.422 l 5 + 608.398 0 l 5 + 488.281 0 l 5 + 488.281 482.422 l 5xa5 +EndSplineSet +Fore +SplineSet +505 694 m 1 + 640 694 l 1 + 640 562 l 1 + 505 562 l 1 + 505 694 l 1 +110 511 m 2 + 110 584 112 698 315 698 c 0 + 343 698 384 696 443 678 c 1 + 460 672 l 1 + 440 575 l 1 + 420 580 l 2 + 406 583 376 591 347 591 c 0 + 264 591 230 561 230 515 c 2 + 230 482 l 1 + 512 482 l 1 + 632 482 l 1 + 632 0 l 1 + 512 0 l 1 + 512 379 l 1 + 230 379 l 1 + 230 0 l 1 + 110 0 l 1 + 110 379 l 1 + 30 379 l 1 + 30 482 l 1 + 110 482 l 1 + 110 511 l 2 +EndSplineSet +LCarets2: 1 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f i +EndChar + +StartChar: uniFB02 +Encoding: 64258 64258 384 +Width: 735 +VWidth: 0 +Flags: HW +HStem: -9.90039 104.22<536.5 699.592> 0 21G<110 230> 379 103<30 110 230 422> 597 101<271.055 463.237> +VStem: 110 120<0 379 482 559.26> 464 120.145<102.826 591.505> +LayerCount: 3 +Fore +SplineSet +110 511 m 2x7c + 110 584 129 698 332 698 c 0 + 445.5 698 508.56 685.444 564.5 677.05 c 2 + 585.5 673.898 l 1 + 584.145 163.32 l 2 + 584.046 126.1 586.046 94.3193 647.645 94.3193 c 0 + 666.645 94.3193 682.895 98.4863 705 105.1 c 1 + 705 14.0996 l 1 + 687.645 8.09961 672.4 -9.90039 568 -9.90039 c 0xbc + 505 -9.90039 463.819 37.0928 464 105.1 c 2 + 465.28 587.988 l 1 + 430.5 594.05 399.101 596.858 364 597 c 0 + 281 597 230 561 230 515 c 2 + 230 482 l 1 + 422 482 l 1 + 422 379 l 1 + 230 379 l 1 + 230 0 l 1 + 110 0 l 1 + 110 379 l 1 + 30 379 l 1 + 30 482 l 1 + 110 482 l 1 + 110 511 l 2x7c +EndSplineSet +LCarets2: 1 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f l +EndChar + +StartChar: uniFB03 +Encoding: 64259 64259 385 +Width: 1027 +VWidth: 0 +Flags: HW +HStem: 0 21G<-200 -80 222 342> 379 103<-280 -200 -80 112> 562 132<215 350> 591 107<-49.791 133.734> +VStem: -200 120<0 379 482 563.17> 215 135<562 694> 222 120<0 482> +LayerCount: 3 +Fore +SplineSet +464 511 m 2 + 464 584 459 698 662 698 c 0 + 690 698 724 696 783 678 c 1 + 800 672 l 1 + 780 575 l 1 + 760 580 l 2 + 746 583 723 591 694 591 c 0 + 611 591 584 561 584 515 c 2 + 584 482 l 1 + 839 482 l 5 + 959 482 l 5 + 959 0 l 5 + 839 0 l 5 + 839 379 l 5 + 584 379 l 1 + 584 0 l 1 + 464 0 l 1 + 464 379 l 1 + 406.044 379 l 1 + 391 379 l 1 + 225.044 379 l 1 + 225.044 0 l 1 + 105.044 0 l 1 + 105.044 379 l 1 + 25.0439 379 l 1 + 25.0439 482 l 1 + 105.044 482 l 1 + 105.044 511 l 2 + 105.044 584 107.044 698 301.544 698 c 0 + 327.044 698 368.044 696 427.044 678 c 1 + 444.044 672 l 1 + 424.044 575 l 1 + 404.044 580 l 2 + 390.044 583 360.044 591 331.044 591 c 0 + 255.645 591 225.044 561 225.044 515 c 2 + 225.044 482 l 1 + 391 482 l 1 + 406.044 482 l 1 + 464 482 l 1 + 464 511 l 2 +832 694 m 5 + 967 694 l 5 + 967 562 l 5 + 832 562 l 5 + 832 694 l 5 +EndSplineSet +LCarets2: 2 0 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f uniFB01 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" uniFB00 i +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f f i +EndChar + +StartChar: uniFB04 +Encoding: 64260 64260 386 +Width: 1122 +VWidth: 0 +Flags: HWO +HStem: -9.90039 104.22<981.5 1144.59> 0 21G<146 266 516 636> 379 103<66 146 266 516 636 829> 591 107<296.209 479.734 666.459 850.648> +VStem: 146 120<0 379 482 563.17> 516 120<0 379 482 563.17> 909 120.14<102.826 693.75> +LayerCount: 3 +Fore +SplineSet +497 511 m 2 + 497 584 516 698 719 698 c 0 + 832.5 698 895.56 685.444 951.5 677.05 c 2 + 972.5 673.898 l 1 + 971.145 163.32 l 2 + 971.046 126.1 973.046 94.3193 1034.64 94.3193 c 0 + 1053.64 94.3193 1069.89 98.4863 1092 105.1 c 1 + 1092 14.0996 l 1 + 1074.64 8.09961 1059.4 -9.90039 955 -9.90039 c 0 + 892 -9.90039 850.819 37.0928 851 105.1 c 2 + 852.28 587.988 l 1 + 817.5 594.05 786.101 596.858 751 597 c 0 + 668 597 617 561 617 515 c 2 + 617 482 l 1 + 809 482 l 1 + 809 379 l 1 + 617 379 l 1 + 617 0 l 1 + 497 0 l 1 + 497 379 l 1 + 428.044 379 l 1 + 417 379 l 1 + 247.044 379 l 1 + 247.044 0 l 1 + 127.044 0 l 1 + 127.044 379 l 1 + 47.0439 379 l 1 + 47.0439 482 l 1 + 127.044 482 l 1 + 127.044 511 l 2 + 127.044 584 129.044 698 323.544 698 c 0 + 349.044 698 390.044 696 449.044 678 c 1 + 466.044 672 l 1 + 446.044 575 l 1 + 426.044 580 l 2 + 412.044 583 382.044 591 353.044 591 c 0 + 277.645 591 247.044 561 247.044 515 c 2 + 247.044 482 l 1 + 417 482 l 1 + 428.044 482 l 1 + 497 482 l 1 + 497 511 l 2 +EndSplineSet +LCarets2: 2 0 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f uniFB02 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" uniFB00 l +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f f l +EndChar + +StartChar: uni022D +Encoding: 557 557 387 +Width: 671 +VWidth: 0 +Flags: W +HStem: -10 109<256.861 424.541> 383 109<248.337 414.946> 519 98<392.611 445.677> 607 99<231.845 285.389> 736 103<123 564> +VStem: 63 119<172.971 320.588> 117 96<528.052 594.36> 460 96<624.19 695.489> 490 118<163.739 312.789> +LayerCount: 3 +Fore +SplineSet +464 710 m 1xeb + 560 695 l 1 + 556 675 l 1 + 545 620 535 519 430 519 c 1xeb + 327 523 280 607 251 607 c 0 + 231 607 225 571 217 535 c 2 + 213 516 l 1 + 117 529 l 1 + 121 550 l 2 + 132 605 142 706 248 706 c 1xdb + 351 702 398 617 427 617 c 0 + 448 617 454 662 460 691 c 2 + 464 710 l 1xeb +123 839 m 5 + 564 839 l 5 + 564 736 l 5 + 123 736 l 5 + 123 839 l 5 +339 492 m 0 + 496 492 608 406 608 250 c 0 + 608 89 499 -10 330 -10 c 0 + 170 -10 63 82 63 236 c 0xcc80 + 63 393 169 492 339 492 c 0 +331 383 m 0 + 259 383 182 340 182 249 c 0 + 182 166 245 99 340 99 c 0 + 423 99 490 152 490 236 c 0 + 490 335 406 383 331 383 c 0 +EndSplineSet +EndChar + +StartChar: H18533 +Encoding: 9679 9679 388 +Width: 680 +VWidth: 0 +Flags: W +HStem: 95.4004 464<243.552 434.448> +VStem: 107 464<231.952 422.848> +LayerCount: 3 +Fore +SplineSet +107 327.4 m 0 + 107 455.464 210.936 559.4 339 559.4 c 0 + 467.064 559.4 571 455.464 571 327.4 c 0 + 571 199.336 467.064 95.4004 339 95.4004 c 0 + 210.936 95.4004 107 199.336 107 327.4 c 0 +EndSplineSet +EndChar + +StartChar: uni2759 +Encoding: 10073 10073 389 +Width: 585 +VWidth: 1023 +Flags: W +HStem: -1 21G<230.8 353.8> +VStem: 230.8 123<-1 621> +LayerCount: 3 +Fore +SplineSet +353.8 621 m 1 + 353.8 -1 l 1 + 230.8 -1 l 1 + 230.8 621 l 1 + 353.8 621 l 1 +EndSplineSet +EndChar + +StartChar: circle +Encoding: 9675 9675 390 +Width: 859 +VWidth: 1023 +Flags: W +HStem: -27 105<325.298 534.289> 589 105<325.457 534.762> +VStem: 63 105<232.112 434.388> 691 105<232.112 434.541> +LayerCount: 3 +Fore +SplineSet +430 589 m 0 + 396.601 589 363.169 582.527 330.428 569.43 c 0 + 297.747 556.358 268.975 537.768 244.862 514.583 c 0 + 220.948 491.589 202.405 463.902 188.298 431.927 c 0 + 174.534 400.728 168 366.428 168 333 c 0 + 168 299.589 174.481 266.393 188.298 235.073 c 0 + 202.405 203.098 220.949 175.411 244.862 152.417 c 0 + 268.975 129.232 297.747 110.642 330.428 97.5695 c 0 + 363.169 84.473 396.601 78 430 78 c 0 + 463.399 78 496.831 84.473 529.572 97.5695 c 0 + 562.114 110.586 589.842 129.055 614.138 152.417 c 0 + 638.052 175.411 656.596 203.098 670.702 235.073 c 0 + 684.519 266.394 691 299.589 691 333 c 0 + 691 366.427 684.466 400.728 670.702 431.927 c 0 + 656.596 463.902 638.051 491.589 614.138 514.583 c 0 + 589.842 537.945 562.114 556.413 529.572 569.43 c 0 + 496.832 582.527 463.399 589 430 589 c 0 +289.496 665.539 m 0 + 333.457 683.332 380.018 694 428 694 c 0 + 475.684 694 522.261 684.428 567.353 666.599 c 0 + 612.592 648.713 652.926 623.292 686.916 590.365 c 0 + 720.741 557.597 748.374 518.295 767.449 472.723 c 0 + 786.41 427.422 796 380.685 796 333 c 0 + 796 285.323 786.428 238.56 767.383 194.122 c 0 + 748.416 149.867 721.901 110.557 687.916 77.6352 c 0 + 654.091 44.8687 613.849 18.3879 568.353 0.400785 c 0 + 523.358 -17.3885 477.697 -27 430 -27 c 0 + 382.315 -27 335.74 -17.4266 290.647 0.400785 c 0 + 245.039 18.4317 205.758 45.0135 172.084 77.6352 c 0 + 138.261 110.401 110.692 149.614 91.6171 194.122 c 0 + 72.572 238.56 63 285.324 63 333 c 0 + 63 380.677 72.5723 427.44 91.6171 471.878 c 0 + 110.533 516.015 136.949 556.296 171.084 589.365 c 0 + 205.07 622.289 245.321 647.659 289.496 665.539 c 0 +EndSplineSet +EndChar + +StartChar: uni232B +Encoding: 9003 9003 391 +Width: 748 +VWidth: 0 +Flags: W +HStem: 0.171875 120.44<295.042 374.495 456.476 535.924> 361.494 120.441<295.042 372.887 459.12 535.924> +VStem: 535.924 120.442<120.612 199.81 279.98 361.494> +LayerCount: 3 +Fore +SplineSet +254.9 481.935 m 1 + 615.868 481.935 l 2 + 642.489 481.935 656.366 463.115 656.366 441.785 c 2 + 656.366 40.3154 l 2 + 656.366 19.9326 638.918 1.07617 617.632 0.171875 c 2 + 254.9 0.171875 l 1 + 14.0186 241.054 l 1 + 254.9 481.935 l 1 +295.042 361.494 m 1 + 295.042 321.345 l 2 + 294.182 310.059 297.869 299.034 306.337 291.231 c 2 + 357.771 239.796 l 1 + 306.337 189.618 l 2 + 298.771 182.049 295.042 171.426 295.042 160.757 c 2 + 295.042 120.612 l 1 + 335.191 120.612 l 2 + 345.855 120.612 356.483 124.338 364.047 131.905 c 2 + 415.482 183.343 l 1 + 466.925 131.905 l 2 + 474.489 124.338 485.117 120.612 495.782 120.612 c 2 + 535.924 120.612 l 1 + 535.924 160.757 l 2 + 535.924 171.426 532.2 182.049 524.637 189.618 c 2 + 474.452 239.796 l 1 + 525.888 291.231 l 2 + 534.55 299.23 535.924 309.856 535.924 321.345 c 2 + 535.924 361.494 l 1 + 495.782 361.494 l 2 + 486.093 361.214 478.84 358.197 468.177 348.944 c 2 + 415.482 297.508 l 1 + 364.047 348.944 l 2 + 356.911 356.317 346.68 361.019 336.449 361.494 c 0 + 336.016 361.494 335.625 361.494 335.191 361.494 c 2 + 295.042 361.494 l 1 +EndSplineSet +EndChar + +StartChar: uni2328 +Encoding: 9000 9000 392 +Width: 625 +VWidth: 0 +Flags: W +LayerCount: 3 +Fore +SplineSet +574 471.935 m 6 + 50.5752 471.935 l 6 + 29.877 471.935 13.1895 454.505 13.1895 432.887 c 6 + 13.1895 42.3662 l 6 + 13.1895 20.748 29.877 3.31836 50.5752 3.31836 c 6 + 574 3.31836 l 6 + 594.697 3.31836 611.385 20.748 611.385 42.3662 c 6 + 611.385 432.887 l 6 + 611.385 454.505 594.697 471.935 574 471.935 c 6 +536.607 393.838 m 5 + 536.607 315.731 l 5 + 461.836 315.731 l 5 + 461.836 393.838 l 5 + 536.607 393.838 l 5 +424.443 393.838 m 5 + 424.443 315.731 l 5 + 349.664 315.731 l 5 + 349.664 393.838 l 5 + 424.443 393.838 l 5 +312.278 393.838 m 5 + 312.278 315.731 l 5 + 237.501 315.731 l 5 + 237.501 393.838 l 5 + 312.278 393.838 l 5 +200.115 393.838 m 5 + 200.115 315.731 l 5 + 125.353 315.731 l 5 + 125.353 393.838 l 5 + 200.115 393.838 l 5 +499.222 275.454 m 5 + 499.222 197.364 l 5 + 424.443 197.364 l 5 + 424.443 275.454 l 5 + 499.222 275.454 l 5 +387.059 275.454 m 5 + 387.059 197.364 l 5 + 312.278 197.364 l 5 + 312.278 275.454 l 5 + 387.059 275.454 l 5 +274.887 275.454 m 5 + 274.887 197.364 l 5 + 200.115 197.364 l 5 + 200.115 275.454 l 5 + 274.887 275.454 l 5 +162.738 275.454 m 5 + 162.738 197.364 l 5 + 87.958 197.364 l 5 + 87.958 275.454 l 5 + 162.738 275.454 l 5 +536.607 158.309 m 5 + 536.607 80.2021 l 5 + 461.836 80.2021 l 5 + 461.836 158.309 l 5 + 536.607 158.309 l 5 +424.443 158.309 m 5 + 424.443 80.2021 l 5 + 200.115 80.2021 l 5 + 200.115 158.309 l 5 + 424.443 158.309 l 5 +162.738 158.309 m 5 + 162.738 80.2021 l 5 + 50.5752 80.2021 l 5 + 50.5752 158.309 l 5 + 162.738 158.309 l 5 +EndSplineSet +EndChar + +StartChar: uni25FE +Encoding: 9726 9726 393 +Width: 680 +VWidth: 0 +Flags: W +HStem: 99 476<242.083 437.917> +VStem: 102 476<239.083 434.917> +LayerCount: 3 +Fore +SplineSet +578 99 m 1 + 102 99 l 1 + 102 575 l 1 + 578 575 l 1 + 578 99 l 1 +EndSplineSet +EndChar + +StartChar: afii10017 +Encoding: 1040 1040 394 +Width: 681 +VWidth: 1023 +Flags: W +HStem: 0 21<20 147.615 526.486 661.2> 182 112<248 425.3> 674 20<272.022 408.499> +LayerCount: 3 +Fore +Refer: 32 65 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10018 +Encoding: 1041 1041 395 +Width: 641 +VWidth: 1023 +Flags: W +HStem: 0 113<203 419.662> 314 112<203 413.961> 581 113<203 538> +VStem: 80 123<113 311 424 581> 465 126<151.32 268.298> +LayerCount: 3 +Fore +SplineSet +203 113 m 1 + 294 113 l 2 + 383 113 465 124 465 209 c 0 + 465 305 369 314 264 314 c 0 + 243 314 224 312 203 311 c 1 + 203 113 l 1 +80 0 m 1 + 80 694 l 1 + 538 694 l 1 + 538 581 l 1 + 203 581 l 1 + 203 424 l 1 + 221 425 238 426 257 426 c 0 + 407 426 591 406 591 195 c 0 + 591 4 406 0 316 0 c 2 + 80 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10019 +Encoding: 1042 1042 396 +Width: 680 +VWidth: 1023 +Flags: W +HStem: 0 113<215 450.53> 320 78<215 387.031> 590 104<215 410.266> +VStem: 92 123<113 314 398 590> 445 136<443.934 558.378> 508 123<157.174 266.575> +LayerCount: 3 +Fore +SplineSet +317 590 m 6xf8 + 215 590 l 5 + 215 398 l 5 + 317 400 445 400 445 503 c 4 + 445 538 429 590 317 590 c 6xf8 +324 320 m 4 + 313 320 301 318 215 314 c 5 + 215 113 l 5 + 313 113 l 6 + 372 113 508 115 508 212 c 4xf4 + 508 279 436 320 324 320 c 4 +92 694 m 1 + 342 694 l 6 + 544 694 581 576 581 517 c 4xf8 + 581 471 553 422 518 392 c 5 + 591 362 631 294 631 218 c 4 + 631 152 587 0 325 0 c 6 + 92 0 l 1 + 92 694 l 1 +EndSplineSet +EndChar + +StartChar: afii10020 +Encoding: 1043 1043 397 +Width: 548 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203> 581 113<203 538> +VStem: 80 123<0 581> +LayerCount: 3 +Fore +SplineSet +203 0 m 1 + 80 0 l 1 + 80 694 l 5 + 538 694 l 5 + 538 581 l 5 + 203 581 l 5 + 203 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10021 +Encoding: 1044 1044 398 +Width: 770 +VWidth: 1023 +Flags: W +HStem: -178 270<10 116.777 650 740> 0 114<259 527> 580 114<382.137 527> +VStem: 10 107<-178 0> 527 123<114 580> 633 107<-178 0> +LayerCount: 3 +Fore +SplineSet +264 694 m 1xb4 + 650 694 l 1 + 650 92 l 2xb8 + 740 92 l 1 + 740 -178 l 1 + 633 -178 l 1xb4 + 633 0 l 1 + 117 0 l 1x74 + 117 -178 l 1 + 10 -178 l 1 + 10 92 l 1 + 113 92 l 1 + 194 279 248 478 264 694 c 1xb4 +527 114 m 1x78 + 527 580 l 1 + 384 580 l 1 + 365 408 318 253 259 114 c 1 + 527 114 l 1x78 +EndSplineSet +EndChar + +StartChar: afii10022 +Encoding: 1045 1045 399 +Width: 581 +VWidth: 1023 +Flags: W +HStem: 0 113<203 541.699> 301 113<203 515.699> 581 113<203 541.699> +VStem: 80 123<113 301 414 581> +LayerCount: 3 +Fore +Refer: 34 69 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10024 +Encoding: 1046 1046 400 +Width: 903 +VWidth: 1023 +Flags: W +HStem: 0 21G<12 184.036 390 513 718.964 891> 674 20G<29 197.893 390 513 705.107 874> +VStem: 390 123<0 336 376 694> +LayerCount: 3 +Fore +SplineSet +513 0 m 1 + 390 0 l 1 + 390 336 l 1 + 171 0 l 1 + 12 0 l 1 + 264 362 l 1 + 29 694 l 1 + 185 694 l 1 + 390 376 l 1 + 390 694 l 1 + 513 694 l 1 + 513 376 l 1 + 718 694 l 1 + 874 694 l 1 + 639 362 l 1 + 891 0 l 1 + 732 0 l 1 + 513 336 l 1 + 513 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10025 +Encoding: 1047 1047 401 +Width: 680 +VWidth: 1023 +Flags: W +HStem: -10 122<204.963 453.538> 320 78<215 387.031> 558 113<133.407 208.697> 590 110<193.147 409.418> +VStem: 445 136<443.934 556.844> 508 123<154.992 266.575> +LayerCount: 3 +Back +SplineSet +73.125 650 m 6xf0 + 121.425 673 208.575 702 308.325 702 c 4 + 465.825 702 571.875 629 571.875 527 c 4xf0 + 571.875 466 541.425 413 491.025 381 c 5 + 571.875 347 603.375 287 603.375 220 c 4 + 603.375 75 473.175 -22 272.625 -22 c 4 + 202.275 -22 129.825 -10 60.5254 17 c 6 + 41.625 24 l 5 + 79.4248 127 l 5 + 98.3252 123 l 6 + 187.575 101 235.875 95 273.675 95 c 4 + 380.775 95 472.125 139 472.125 205 c 4xe8 + 472.125 248 431.175 314 227.475 314 c 6 + 150.825 314 l 5 + 150.825 425 l 5 + 227.475 425 l 6 + 394.425 425 435.375 479 435.375 514 c 4 + 435.375 556 380.775 587 295.725 587 c 4 + 258.975 587 197.025 580 120.375 548 c 5 + 100.425 540 l 5 + 56.3252 642 l 5 + 73.125 650 l 6xf0 +EndSplineSet +Fore +SplineSet +317 590 m 0xd8 + 286 590 223 578 155 558 c 2 + 136 552 l 1 + 96 666 l 1 + 116 671 l 2xe8 + 155 683 224 700 297 700 c 0 + 524 700 581 597 581 517 c 0xd8 + 581 471 553 422 518 392 c 1 + 591 362 631 294 631 218 c 0 + 631 152 578 -10 316 -10 c 0 + 228 -10 161 13 94 39 c 1 + 76 45 l 1 + 118 164 l 1 + 137 156 l 1 + 227 123 287 112 325 112 c 0 + 384 112 508 115 508 212 c 0xd4 + 508 279 436 320 324 320 c 0 + 313 320 301 318 215 314 c 1 + 215 398 l 1 + 317 400 445 400 445 503 c 0 + 445 538 429 590 317 590 c 0xd8 +EndSplineSet +EndChar + +StartChar: afii10026 +Encoding: 1048 1048 402 +Width: 766 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 240.57 563 686> 674 20G<80 203 523.528 686> +VStem: 80 123<160 694> 563 123<0 533> +LayerCount: 3 +Fore +SplineSet +80 0 m 1 + 80 694 l 1 + 203 694 l 1 + 203 160 l 1 + 536 694 l 1 + 686 694 l 1 + 686 0 l 1 + 563 0 l 1 + 563 533 l 1 + 228 0 l 5 + 80 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10027 +Encoding: 1049 1049 403 +Width: 766 +VWidth: 1023 +Flags: W +HStem: 0 21<80 240.57 563 686> 674 20<80 203 523.528 686> 761.6 86.4004<322.179 430.742> 906.4 20<246.2 291 477.4 516.333> +VStem: 80 123<160 694> 563 123<0 533> +LayerCount: 3 +Fore +Refer: 402 1048 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 118 233 2 +EndChar + +StartChar: afii10028 +Encoding: 1050 1050 404 +Width: 671 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203 484.202 661> 674 20G<80 203 469.138 644> +VStem: 80 123<0 336 376 694> +LayerCount: 3 +Fore +SplineSet +203 376 m 1 + 487 694 l 1 + 644 694 l 1 + 329 362 l 1 + 661 0 l 1 + 502 0 l 1 + 203 336 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 376 l 1 +EndSplineSet +EndChar + +StartChar: afii10029 +Encoding: 1051 1051 405 +Width: 710 +VWidth: 1023 +Flags: W +HStem: 0 21G<50 228 507 630> 580 114<361.613 507> +VStem: 507 123<0 580> +LayerCount: 3 +Fore +SplineSet +244 694 m 1 + 630 694 l 1 + 630 0 l 1 + 507 0 l 1 + 507 580 l 1 + 364 580 l 1 + 340 360 269 168 187 0 c 1 + 50 0 l 1 + 155 214 225 443 244 694 c 1 +EndSplineSet +EndChar + +StartChar: afii10030 +Encoding: 1052 1052 406 +Width: 858 +VWidth: 1023 +Flags: W +HStem: 0 21G<79.2002 202.2 655.62 778.62> 674 20G<79.2002 253.101 610.444 778.62> +VStem: 79.2002 123<0 519> 655.62 123<0 519> +LayerCount: 3 +Fore +Refer: 44 77 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10031 +Encoding: 1053 1053 407 +Width: 740 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203 537 660> 301 114<203 537> 674 20G<80 203 537 660> +VStem: 80 123<0 301 415 694> 537 123<0 301 415 694> +LayerCount: 3 +Fore +SplineSet +537 694 m 1 + 660 694 l 1 + 660 0 l 1 + 537 0 l 1 + 537 301 l 1 + 203 301 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 415 l 1 + 537 415 l 1 + 537 694 l 1 +EndSplineSet +EndChar + +StartChar: afii10032 +Encoding: 1054 1054 408 +Width: 784 +VWidth: 1023 +Flags: W +HStem: -7 112<301.375 487.946> 588 113<295.621 481.674> +VStem: 50 126<241.41 466.352> 608 126<231.566 456.638> +LayerCount: 3 +Fore +Refer: 31 79 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10033 +Encoding: 1055 1055 409 +Width: 740 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203 537 660> 580 114<203 537> +VStem: 80 123<0 580> 537 123<0 580> +LayerCount: 3 +Fore +SplineSet +80 694 m 1 + 273 694 467 694 660 694 c 1 + 660 0 l 1 + 537 0 l 1 + 537 580 l 1 + 203 580 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +EndChar + +StartChar: afii10034 +Encoding: 1056 1056 410 +Width: 631 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 203> 268 112<203 413.961> 581 113<203 419.662> +VStem: 80 123<0 270 383 581> 465 126<425.702 542.68> +LayerCount: 3 +Fore +SplineSet +80 694 m 1 + 316 694 l 2 + 406 694 591 690 591 499 c 0 + 591 288 407 268 257 268 c 0 + 238 268 221 269 203 270 c 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 +203 581 m 1 + 203 383 l 1 + 224 382 243 380 264 380 c 0 + 369 380 465 389 465 485 c 0 + 465 570 383 581 294 581 c 2 + 203 581 l 1 +EndSplineSet +EndChar + +StartChar: afii10035 +Encoding: 1057 1057 411 +Width: 682 +VWidth: 1023 +Flags: W +HStem: -10 116<321.041 556.178> 585 114<312.582 547.523> +VStem: 50 124<248.993 445.898> +LayerCount: 3 +Fore +Refer: 54 67 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10036 +Encoding: 1058 1058 412 +Width: 619 +VWidth: 1023 +Flags: W +HStem: 0 21<247.9 371.9> 581 113<10 247.9 371.9 609.801> +VStem: 247.9 124<0 581> +LayerCount: 3 +Fore +Refer: 39 84 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10037 +Encoding: 1059 1059 413 +Width: 628 +VWidth: 1023 +Flags: W +HStem: 0 21G<133 274.115> 674 20G<25 170.189 471.937 615> +LayerCount: 3 +Fore +SplineSet +264 0 m 1 + 133 0 l 1 + 254 244 l 5 + 25 694 l 1 + 160 694 l 1 + 322 376 l 1 + 482 694 l 1 + 615 694 l 1 + 264 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10038 +Encoding: 1060 1060 414 +Width: 841 +VWidth: 1023 +Flags: W +HStem: 0 21G<359 482> 81 112<224.936 359 482 616.064> 571 116<249.205 358.253 482.747 591.795> +VStem: 41 126<258.469 473.33> 359 123<0 83 196 571 668 708> 674 126<258.469 473.33> +CounterMasks: 1 1c +LayerCount: 3 +Back +SplineSet +154.609 538.202 m 0 + 214.916 580.717 301.264 604.947 399.94 611.571 c 1 + 399.94 695.8 l 1 + 535.2 695.8 l 1 + 535.2 611.365 l 1 + 642.836 603.635 729.699 578.044 785.621 532.85 c 0 + 841.342 483.698 869.885 420.932 869.885 348.356 c 0 + 869.885 277.371 842.286 215.24 788.523 165.407 c 0 + 734.794 118.871 645.133 92.8105 535.2 84.9023 c 1 + 535.2 0 l 1 + 399.94 0 l 1 + 399.94 84.6973 l 1 + 299.416 91.4961 215.26 115.81 154.815 158.542 c 0 + 95.0469 206.411 64.7598 271.239 64.7598 348.356 c 0 + 64.7598 425.727 94.9248 490.594 154.609 538.202 c 0 +663.457 458.663 m 1 + 624.443 486.92 580.238 504.285 535.055 511.152 c 1 + 533.385 185.807 l 1 + 580.037 192.535 622.813 209.314 662.52 237.372 c 1 + 698.754 263.283 717.869 298.69 717.869 348.39 c 0 + 717.869 397.1 699.139 432.382 663.457 458.663 c 1 +396.984 186.368 m 1 + 399.703 510.749 l 1 + 356.556 503.96 315.162 487.467 274.122 459.544 c 0 + 236.406 433.841 216.767 398.605 216.767 348.39 c 0 + 216.767 298.852 236.171 263.668 273.75 237.542 c 0 + 314.245 209.326 356.131 192.792 396.984 186.368 c 1 +EndSplineSet +Fore +SplineSet +482 708 m 1 + 482 668 l 1 + 498 680 510 687 574 687 c 0 + 702 687 800 580 800 389 c 0 + 800 178 686 81 536 81 c 0 + 517 81 500 81 482 83 c 1 + 482 0 l 1 + 359 0 l 1 + 359 83 l 1 + 341 81 324 81 305 81 c 0 + 155 81 41 178 41 389 c 0 + 41 580 139 687 267 687 c 0 + 331 687 343 680 359 668 c 1 + 359 708 l 1 + 482 708 l 1 +482 571 m 1 + 482 196 l 1 + 503 195 522 193 543 193 c 0 + 648 193 674 279 674 375 c 0 + 674 460 622 571 533 571 c 2 + 482 571 l 1 +359 571 m 1 + 308 571 l 2 + 219 571 167 460 167 375 c 0 + 167 279 193 193 298 193 c 0 + 319 193 338 195 359 196 c 1 + 359 571 l 1 +EndSplineSet +EndChar + +StartChar: afii10039 +Encoding: 1061 1061 415 +Width: 694 +VWidth: 1023 +Flags: W +HStem: 0 21<10 174.304 514.895 684.199> 674 20<40 198.965 501.475 657.199> +LayerCount: 3 +Fore +Refer: 41 88 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10040 +Encoding: 1062 1062 416 +Width: 780 +VWidth: 1023 +Flags: W +HStem: 0 114<203 537> 674 20G<80 203 537 660> +VStem: 80 123<114 694> 537 123<114 694> 643 107<-178 0> +LayerCount: 3 +Fore +SplineSet +643 -178 m 5xe8 + 643 0 l 5xe8 + 80 0 l 5 + 80 694 l 1 + 203 694 l 1 + 203 114 l 5 + 537 114 l 5 + 537 694 l 1 + 660 694 l 1 + 660 92 l 5xf0 + 750 92 l 5 + 750 -178 l 5 + 643 -178 l 5xe8 +EndSplineSet +EndChar + +StartChar: afii10041 +Encoding: 1063 1063 417 +Width: 740 +VWidth: 1023 +Flags: W +HStem: 0 21G<537 660> 177 124<267.463 419.116> 674 20G<80 203 537 660> +VStem: 80 123<358.057 694> 537 123<0 291 383.321 694> +LayerCount: 3 +Fore +SplineSet +80 400 m 2 + 80 694 l 1 + 203 694 l 1 + 203 405 l 2 + 202 351 286 301 342 301 c 0 + 398 301 478 335 537 405 c 1 + 537 694 l 1 + 660 694 l 1 + 660 0 l 1 + 537 0 l 1 + 537 291 l 1 + 470 211 398 175 304 177 c 0 + 192 179 80 287 80 400 c 2 +EndSplineSet +EndChar + +StartChar: afii10042 +Encoding: 1064 1064 418 +Width: 996 +VWidth: 1023 +Flags: W +HStem: 0 114<203 436 560 793> 674 20G<80 203 436 560 793 916> +VStem: 80 123<114 694> 436 124<114 694> 793 123<114 694> +CounterMasks: 1 38 +LayerCount: 3 +Fore +SplineSet +436 114 m 1 + 436 694 l 1 + 560 694 l 1 + 560 114 l 1 + 793 114 l 1 + 793 694 l 1 + 916 694 l 1 + 916 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 114 l 1 + 436 114 l 1 +EndSplineSet +EndChar + +StartChar: afii10043 +Encoding: 1065 1065 419 +Width: 1040 +VWidth: 1023 +Flags: W +HStem: 0 114<203 436 560 793> 674 20G<80 203 436 560 793 916> +VStem: 80 123<114 694> 436 124<114 694> 793 123<114 694> 899 107<-178 0> +LayerCount: 3 +Fore +SplineSet +436 114 m 1xf4 + 436 694 l 1 + 560 694 l 1 + 560 114 l 1 + 793 114 l 1 + 793 694 l 1 + 916 694 l 1 + 916 92 l 1xf8 + 1006 92 l 1 + 1006 -178 l 1 + 899 -178 l 1 + 899 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 114 l 1 + 436 114 l 1xf4 +EndSplineSet +EndChar + +StartChar: afii10044 +Encoding: 1066 1066 420 +Width: 769 +VWidth: 1023 +Flags: W +HStem: 0 113<328 544.662> 314 112<328 538.961> 581 113<27 205> +VStem: 205 123<113 311 424 581> 590 126<151.32 268.298> +LayerCount: 3 +Fore +SplineSet +328 113 m 1 + 419 113 l 2 + 508 113 590 124 590 209 c 0 + 590 305 494 314 389 314 c 0 + 368 314 349 312 328 311 c 1 + 328 113 l 1 +205 0 m 1 + 205 581 l 1 + 27 581 l 1 + 27 694 l 1 + 328 694 l 1 + 328 424 l 1 + 346 425 363 426 382 426 c 0 + 532 426 716 406 716 195 c 0 + 716 4 531 0 441 0 c 2 + 205 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10045 +Encoding: 1067 1067 421 +Width: 851 +VWidth: 1023 +Flags: W +HStem: 0 113<203 399.707> 314 112<203 392.559> 674 20G<80 203 648 771> +VStem: 80 123<113 311 424 694> 435 126<145.539 274.526> 648 123<0 694> +LayerCount: 3 +Fore +SplineSet +80 0 m 1 + 80 694 l 1 + 203 694 l 1 + 203 424 l 1 + 221 425 228 426 247 426 c 0 + 397 426 561 406 561 195 c 0 + 561 4 396 0 306 0 c 2 + 80 0 l 1 +203 113 m 1 + 284 113 l 2 + 373 113 435 124 435 209 c 0 + 435 305 359 314 254 314 c 0 + 233 314 224 312 203 311 c 1 + 203 113 l 1 +648 694 m 1 + 771 694 l 1 + 771 0 l 1 + 648 0 l 1 + 648 694 l 1 +EndSplineSet +EndChar + +StartChar: afii10046 +Encoding: 1068 1068 422 +Width: 631 +VWidth: 1023 +Flags: W +HStem: 0 113<203 419.662> 314 112<203 413.961> 674 20G<80 203> +VStem: 80 123<113 311 424 694> 465 126<151.32 268.298> +LayerCount: 3 +Back +SplineSet +337.955 432.45 m 1 + 594.497 432.45 659.3 336.661 659.3 222.157 c 0 + 659.3 160.929 633.893 107.623 585.039 65.6367 c 1 + 533.743 23.0186 472.719 0 364.681 0 c 0 + 91.2998 0 l 1 + 91.2998 693.9 l 1 + 227.92 694.437 l 1 + 226.742 431.307 l 1 + 337.955 432.45 l 1 +522.782 227 m 0 + 522.782 285.154 495.032 333.934 340.604 333.45 c 2 + 226.638 333.093 l 1 + 226.638 123 l 1 + 377.66 123 l 0 + 475.653 123 522.782 166.844 522.782 227 c 0 +EndSplineSet +Fore +SplineSet +80 0 m 1 + 80 694 l 1 + 203 694 l 1 + 203 424 l 1 + 221 425 238 426 257 426 c 0 + 407 426 591 406 591 195 c 0 + 591 4 406 0 316 0 c 6 + 80 0 l 1 +203 113 m 1 + 294 113 l 2 + 383 113 465 124 465 209 c 0 + 465 305 369 314 264 314 c 0 + 243 314 224 312 203 311 c 1 + 203 113 l 1 +EndSplineSet +EndChar + +StartChar: afii10047 +Encoding: 1069 1069 423 +Width: 702 +VWidth: 1023 +Flags: W +HStem: -10 114<161.662 398.197> 268 107<187 524> 583 116<153.131 386.631> +VStem: 187 472<270.41 370.44> +LayerCount: 3 +Back +SplineSet +95.9424 671.57 m 0 + 162.044 697.815 235.631 711.075 312.981 711.075 c 0 + 397.63 711.075 475.333 694.83 540.285 663.414 c 1 + 607.655 630.982 651.796 588.087 682.485 533.409 c 1 + 713.233 478.919 728.478 417.695 728.478 350.959 c 0 + 728.478 311.486 723.135 273.609 712.371 237.627 c 1 + 701.596 201.278 685.324 167.553 663.555 136.731 c 1 + 642.427 107.138 616.731 81.0527 583.381 58.2119 c 1 + 548.429 35.4414 508.964 18.2041 464.107 5.77441 c 1 + 418.851 -7.30078 370.892 -13.6396 319.645 -13.6396 c 0 + 237.071 -13.6396 158.025 2.05762 85.9971 32.9775 c 0 + 63.3799 42.6855 l 1 + 107.769 150.728 l 1 + 130.235 142.704 l 0 + 182.77 123.941 239.93 114.76 295.211 114.76 c 0 + 341.972 114.76 383.351 120.769 419.11 132.172 c 1 + 456.164 144.143 486.634 160.327 511.532 180.91 c 0 + 536.469 201.545 555.898 225.526 570.412 254.097 c 1 + 574.134 261.575 577.998 270.777 580.695 278.39 c 1 + 260.215 278.39 l 1 + 260.215 412.18 l 1 + 584.126 412.18 l 1 + 580.567 424.805 577.377 433.097 571.691 444.742 c 1 + 558.647 471.833 540.198 496.399 516.721 517.662 c 1 + 493.634 538.783 465.316 555.291 430.456 567.562 c 1 + 396.413 579.92 359.209 586.095 316.869 586.095 c 0 + 266.463 586.095 205.317 575.598 139.854 553.683 c 0 + 116.742 545.628 l 1 + 73.1992 662.541 l 1 + 95.9424 671.57 l 0 +EndSplineSet +Fore +SplineSet +290 -10 m 0 + 236 -10 168 0 95 29 c 2 + 77 36 l 1 + 115 142 l 1 + 134 135 l 1 + 211 108 261 104 293 104 c 0 + 412 104 495 176 524 268 c 1 + 187 268 l 1 + 187 375 l 1 + 533 375 l 1 + 518 490 423 583 275 583 c 0 + 231 583 179 573 125 554 c 2 + 107 548 l 1 + 67 646 l 1 + 85 653 l 1 + 158 684 233 699 297 699 c 0 + 522 699 659 540 659 343 c 0 + 659 143 515 -10 290 -10 c 0 +EndSplineSet +EndChar + +StartChar: afii10048 +Encoding: 1070 1070 424 +Width: 1012 +VWidth: 1023 +Flags: W +HStem: -7 112<528.673 716.006> 0 21G<80 203> 301 114<203 282.278> 588 113<521.214 709.668> 674 20G<80 203> +VStem: 80 123<0 301 415 694> 280 124<245.803 301 415 462.724> 836 126<231.566 456.638> +LayerCount: 3 +Fore +SplineSet +616 588 m 0xb7 + 513 588 404 518 404 355 c 0 + 404 201 502 105 624 105 c 0 + 725 105 836 176 836 346 c 0 + 836 518 718 588 616 588 c 0xb7 +621 701 m 0 + 812 701 962 568 962 354 c 0 + 962 139 815 -7 617 -7 c 0xb7 + 459 -7 300 95 280 301 c 1 + 203 301 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1x6f + 203 415 l 1 + 284 415 l 1 + 313 591 449 701 621 701 c 0 +EndSplineSet +EndChar + +StartChar: afii10049 +Encoding: 1071 1071 425 +Width: 654 +VWidth: 1023 +Flags: W +HStem: 0 21G<10 208.5 451 574> 269 113<338.039 451> 581 113<232.556 451> +VStem: 65 128<420.441 544.004> 451 123<0 269 382 581> +LayerCount: 3 +Back +SplineSet +33.585 495 m 0 + 33.585 410 72.585 324 183.185 290 c 1 + -21.8154 0 l 1 + 138.185 0 l 5 + 313.685 269 l 1 + 418.984 269 l 1 + 418.984 0 l 1 + 541.984 0 l 1 + 541.984 694 l 1 + 264.185 694 l 2 + 188.585 694 33.585 681 33.585 495 c 0 +418.984 581 m 1 + 418.984 382 l 1 + 317.285 382 l 2 + 238.984 382 161.585 394 161.585 484 c 0 + 161.585 549 206.585 581 296.585 581 c 2 + 418.984 581 l 1 +EndSplineSet +Fore +SplineSet +65 495 m 0 + 65 681 220 694 296 694 c 2 + 574 694 l 1 + 574 0 l 1 + 451 0 l 1 + 451 269 l 1 + 346 269 l 1 + 301 166 247 71 170 0 c 1 + 10 0 l 1 + 95 92 184 183 215 290 c 1 + 104 324 65 410 65 495 c 0 +451 581 m 1 + 328 581 l 2 + 238 581 193 549 193 484 c 0 + 193 394 271 382 349 382 c 2 + 451 382 l 1 + 451 581 l 1 +EndSplineSet +EndChar + +StartChar: afii10065 +Encoding: 1072 1072 426 +Width: 563 +VWidth: 1023 +Flags: W +HStem: 0 90 200 65 400 90 +LayerCount: 3 +Fore +Refer: 0 97 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10066 +Encoding: 1073 1073 427 +Width: 596 +VWidth: 2048 +Flags: W +HStem: -9.98145 90.9717<232.947 362.526> 567.08 143.523<320.896 504.39> +VStem: 412.496 134.877<135.525 334.96> +LayerCount: 3 +Fore +SplineSet +478.795 709.993 m 0 + 504.39 710.604 l 1 + 504.39 567.08 l 1 + 477.543 569.068 l 0 + 425.916 572.883 354.657 568.203 320.232 558.703 c 0 + 283.044 551.203 239.232 532.703 220.415 511.295 c 0 + 207.871 496.264 198.977 486.249 191.266 467.622 c 1 + 190.649 465.919 190.505 465.508 190.229 464.736 c 1 + 215.678 476.885 239.026 484.007 265.43 487.764 c 0 + 325.328 495.735 389.281 483.873 441.925 449.213 c 0 + 480.146 424.695 508.979 388.884 525.627 350.06 c 0 + 543.545 309.918 549.499 268.719 547.373 228.14 c 0 + 546.3 193.039 537.509 157.059 522.456 124.818 c 0 + 507.064 90.8486 482.304 60.0342 451.004 37.6875 c 0 + 402.102 1.86914 341.181 -12.7295 284.008 -9.98145 c 0 + 246.465 -8.73242 211.912 -1.37793 178.045 16.8613 c 1 + 144.304 33.627 114.711 58.8145 93.3125 88.7246 c 0 + 63.8271 130.264 53.5508 177.976 48.377 223.452 c 1 + 42.1562 280.422 44.2822 337.909 49.3184 393.249 c 0 + 53.3682 447.94 62.2715 494.884 97.0391 546.235 c 0 + 127.407 594.599 172.852 628.933 219.777 653.417 c 0 + 262.053 674.936 307.68 687.188 352.477 695.376 c 0 + 393.24 703.828 435.032 708.951 478.795 709.993 c 0 +329.727 389.805 m 0 + 307.875 398.479 283.525 403.397 241.646 396.444 c 1 + 215.127 390.104 190.879 373.882 174.338 353.61 c 1 + 172.856 322.65 172.886 293.108 172.886 263.337 c 1 + 173.879 225.055 175.064 193.9 185.692 164.896 c 0 + 194.57 140.472 210.576 118.717 231.744 103.423 c 0 + 251.739 88.4004 277.174 80.1689 301.585 80.9902 c 0 + 334.353 81.8047 367.795 100.238 386.194 127.438 c 0 + 403.39 152.722 410.693 186.605 412.496 222.351 c 0 + 414.5 256.209 411.093 290.46 400.081 318.014 c 0 + 385.794 350.793 359.676 376.421 329.727 389.805 c 0 +EndSplineSet +EndChar + +StartChar: afii10067 +Encoding: 1074 1074 428 +Width: 524 +VWidth: 820 +Flags: W +HStem: 0 102<183 338.913> 207 82<183 332.692> 379 102<183 326.078> +VStem: 63 120<102 203 289 379> 337 117<296.516 367.998> 352 123<117.684 192.22> +LayerCount: 3 +Back +SplineSet +256.815 266 m 2xf8 + 331.857 266.371 374.293 303.598 374.293 334 c 0 + 374.293 363.529 350.216 391.512 271.614 387.995 c 0 + 188.052 384.257 185.304 339.014 184 302.193 c 2 + 184 266 l 1 + 256.815 266 l 2xf8 +390.182 157.31 m 0xf4 + 387.974 206.158 322.836 212.41 256.506 212 c 2 + 184.173 212 l 1 + 184.173 137.535 l 1 + 186.731 136.107 l 0 + 209.432 122.98 242.485 99.499 291.309 99 c 0 + 336.658 98.5361 391.806 121.412 390.182 157.31 c 0xf4 +150.524 0.124023 m 1 + 60.1729 0.124023 l 1 + 60.1729 20.4766 l 0 + 59.7832 139.197 60.1729 174.871 60.1729 318.069 c 0 + 60.1729 476.075 213.679 487.584 288.938 488 c 0 + 378.643 488.496 497.873 455.418 497.873 353.236 c 0xf8 + 497.873 303.251 466.709 270.904 440.198 254.115 c 0 + 432.931 249.513 l 1 + 440.425 245.307 l 0 + 475.014 225.896 511.276 196.774 511.872 134.861 c 0 + 512.646 54.4346 422.592 -4.98926 312.417 -5.99805 c 0 + 244.69 -6.6416 194.434 13.5605 168.17 29.1982 c 1 + 162.873 32.3369 l 1 + 150.524 0.124023 l 1 +66.291 694 m 5x7c + 186.291 694 l 5 + 186.291 471 l 5 + 219.591 484 258.291 492 301.49 492 c 4 + 406.791 492 541.891 436 541.891 247 c 4 + 541.891 86 436.891 -10 287.091 -10 c 4xbc + 238.49 -10 194.391 2 161.291 16 c 5 + 155.291 0 l 5 + 66.291 0 l 5 + 66.291 694 l 5x7c +272.69 386 m 4 + 246.591 386 217.791 382 186.291 370 c 5 + 186.291 107 l 5 + 208.791 100 240.291 93 274.49 93 c 4 + 334.791 93 423.891 118 423.891 234 c 4 + 423.891 362 332.99 386 272.69 386 c 4 +EndSplineSet +Refer: 426 1072 N 1 0 0 1 0 0 2 +Fore +SplineSet +254 379 m 6xf8 + 183 379 l 5 + 183 289 l 5 + 273 289 l 6 + 317 289 337 300 337 331 c 4 + 337 355 332 379 254 379 c 6xf8 +259 207 m 4 + 251 207 243 206 183 203 c 5 + 183 102 l 5 + 262 102 l 6 + 304 102 352 111 352 157 c 4xf4 + 352 187 321 207 259 207 c 4 +63 481 m 5 + 272 481 l 6 + 414 481 455 403 454 362 c 4xf8 + 453 314 432 276 395 265 c 5 + 446 244 475 206 475 153 c 4 + 475 81 447 0 264 0 c 6 + 63 0 l 5 + 63 481 l 5 +EndSplineSet +EndChar + +StartChar: afii10068 +Encoding: 1075 1075 429 +Width: 385 +VWidth: 1023 +Flags: W +HStem: 0 21G<63 183> 377 105<183 372> +VStem: 63 120<0 377> +LayerCount: 3 +Fore +SplineSet +372 377 m 5 + 183 377 l 5 + 183 0 l 1 + 63 0 l 1 + 63 482 l 5 + 372 482 l 5 + 372 377 l 5 +EndSplineSet +EndChar + +StartChar: afii10069 +Encoding: 1076 1076 430 +Width: 587 +VWidth: 1023 +Flags: W +HStem: -135 219<0 104.058 509 587> 0 105<235 389> 377 105<297.737 389> +VStem: 0 105<-135 0> 389 120<105 377> 482 105<-135 0> +LayerCount: 3 +Back +SplineSet +44.9072 233 m 4xbc + 44.9072 402 154.907 492 299.807 492 c 4 + 338.507 492 372.707 486 402.407 476 c 5 + 402.407 693 l 5 + 522.407 693 l 5 + 522.407 0 l 5 + 434.407 0 l 5x7c + 424.407 22 l 5 + 377.207 -1 327.707 -10 285.407 -10 c 4 + 175.606 -10 44.9072 50 44.9072 233 c 4xbc +313.307 96 m 4xbc + 347.507 96 379.007 104 402.407 113 c 5 + 402.407 375 l 5 + 379.007 382 346.606 389 312.407 389 c 4 + 253.907 389 163.907 367 163.907 245 c 4 + 163.907 122 253.007 96 313.307 96 c 4xbc +164.14 1.85449 m 1xe8 + 164.14 -129.455 l 2 + 164.14 -135.272 162.794 -142.056 159.108 -148.196 c 0 + 153.493 -157.558 145.363 -161.083 139.691 -162.975 c 0 + 134.671 -164.647 129.615 -165.659 124.062 -166.453 c 0 + 118.494 -167.25 113.087 -167.686 107.78 -167.686 c 0 + 99.8281 -167.686 92.9629 -167.363 86.6035 -166.454 c 0 + 81.0352 -165.658 76 -164.65 70.9619 -162.972 c 0 + 65.3154 -161.089 58.5254 -157.89 52.9766 -150.95 c 0 + 47.9736 -144.695 45.54 -136.586 45.54 -129.455 c 0 + 45.54 77.8145 l 0 + 45.54 87.9922 45.333 101.193 57.0244 112.885 c 0 + 68.0322 123.896 80.8613 124.375 90.6299 124.375 c 0 + 111.88 124.375 l 1 + 121.613 135.585 129.48 146.25 137.841 159.41 c 0 + 147.855 175.172 157.635 195.721 166.907 220.874 c 0 + 177.171 245.871 186.771 276.629 195.505 312.943 c 0 + 204.266 349.368 212.237 392.527 219.694 444.333 c 1 + 220.787 450.208 222.068 454.525 224.154 459.533 c 0 + 226.526 466.068 230.137 472.896 236.942 478.901 c 0 + 241.931 483.3 247.706 486.684 253.726 489.201 c 0 + 261.817 492.583 270.321 493.814 278.359 493.814 c 0 + 571.623 493.814 l 0 + 586.806 493.814 601.416 488.987 611.399 478.302 c 0 + 622.088 468.293 625.252 455.359 625.25 443.369 c 0 + 625.25 124.375 l 1xf0 + 664.93 124.375 l 0 + 674.744 124.375 686.679 123.103 697.04 113.837 c 0 + 709.789 102.424 710.019 88.209 710.02 77.8145 c 0 + 710.02 -129.455 l 0 + 710.02 -135.283 708.685 -142.025 704.988 -148.196 c 0 + 699.373 -157.558 691.24 -161.084 685.573 -162.974 c 0 + 680.304 -164.729 675.092 -165.702 669.219 -166.485 c 0 + 662.876 -167.332 656.128 -167.686 648.76 -167.686 c 0 + 643.001 -167.686 637.264 -167.272 631.622 -166.436 c 0 + 626.209 -165.633 621.268 -164.61 616.35 -162.972 c 0 + 610.695 -161.085 603.927 -157.899 598.36 -150.943 c 0 + 593.368 -144.696 590.93 -136.595 590.93 -129.455 c 0 + 590.93 1.85449 l 1 + 164.14 1.85449 l 1xe8 +487.187 124.375 m 1 + 487.187 381.095 l 1 + 347.1 381.095 l 1 + 338.103 331.115 330.77 295.656 324.414 272.192 c 1 + 315.484 239.771 305.645 211.326 295.294 188.398 c 1 + 285.276 165.638 273.928 145.911 261.25 129.906 c 1 + 260 128.281 258.103 125.883 256.896 124.375 c 1 + 487.187 124.375 l 1 +EndSplineSet +Fore +SplineSet +180 482 m 1xb4 + 509 482 l 1 + 509 84 l 1xb8 + 587 84 l 1 + 587 -135 l 1 + 482 -135 l 1xb4 + 482 0 l 1 + 105 0 l 1x74 + 105 -135 l 1 + 0 -135 l 1 + 0 84 l 1 + 97 84 l 1 + 148 210 182 341 180 482 c 1xb4 +389 105 m 1x78 + 389 377 l 1 + 300 377 l 1 + 291 287 274 196 235 105 c 1 + 389 105 l 1x78 +EndSplineSet +EndChar + +StartChar: afii10070 +Encoding: 1077 1077 431 +Width: 562 +VWidth: 1023 +Flags: W +HStem: -9 107<228.873 482.846> 8 107<342.92 483> 184 84<175 399> 388 104<222.389 357.525> +VStem: 45 130<268 340.097> 399 120<268 343.082> +LayerCount: 3 +Fore +Refer: 2 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10072 +Encoding: 1078 1078 432 +Width: 786 +VWidth: 1023 +Flags: W +HStem: 0 21G<23 184.5 333 453 601.5 763> 462 20G<31 191.373 333 453 594.627 755> +VStem: 333 120<0 240 289 482> +LayerCount: 3 +Fore +SplineSet +453 0 m 1 + 333 0 l 1 + 333 240 l 1 + 171 0 l 1 + 23 0 l 1 + 219 271 l 1 + 31 482 l 5 + 175 482 l 5 + 333 289 l 1 + 333 482 l 5 + 453 482 l 5 + 453 289 l 1 + 611 482 l 5 + 755 482 l 5 + 567 271 l 1 + 763 0 l 1 + 615 0 l 1 + 453 240 l 1 + 453 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10073 +Encoding: 1079 1079 433 +Width: 502 +VWidth: 819 +Flags: W +HStem: -8 106<138.002 318.319> 27 102<96.3878 142.537> 209 73<165 286.943> 388 102<122.286 302.013> +VStem: 316 117<307.639 372.646> 332 124<112.892 195.607> +LayerCount: 3 +Back +SplineSet +97.8682 471.61 m 0 + 142.841 485.341 186.209 491.761 239.613 492.298 c 0 + 408.98 493.875 498.637 430.713 498.278 345.207 c 1 + 498.001 309.56 480.644 274.201 454.593 250.454 c 1 + 490.185 228.817 518.938 195.717 518.938 143.346 c 0 + 518.938 83.083 470.944 44.8633 435.495 22.7471 c 1 + 399.915 0.731445 334.605 -10.4199 263.063 -10.4199 c 0 + 177.757 -10.4199 136.614 4.71191 86.1768 24.6514 c 0 + 65 33.0234 l 1 + 98.4863 148.058 l 1 + 123.703 138.655 l 0 + 180.084 117.631 235.467 107.89 272.654 107.89 c 0 + 343.766 107.89 376.505 121.622 376.505 147.205 c 0 + 376.505 173.163 354.903 180.19 262.902 180.19 c 1 + 143.968 181.186 l 1 + 143.969 289.996 l 1 + 256.84 288.98 l 1 + 285.268 288.98 307.62 292.056 322.581 296.669 c 0 + 344.612 303.461 355.912 313.271 355.912 332.416 c 1 + 356.693 354.605 326.872 373.93 246.437 373.93 c 0 + 210.162 373.93 170.572 368.43 131.374 356.828 c 0 + 107.173 349.665 l 1 + 74.3857 464.441 l 1 + 97.8682 471.61 l 0 +EndSplineSet +Fore +SplineSet +236 388 m 0xb8 + 215 388 170 380 122 366 c 2 + 109 362 l 1 + 81 466 l 1 + 95 469 l 2 + 122 477 171 490 222 490 c 0 + 381 490 433 417 433 361 c 0xb8 + 433 329 417 282 377 265 c 1 + 428 244 456 205 456 152 c 0 + 456 88 418 -8 235 -8 c 0xb4 + 173 -8 127 9 80 27 c 1 + 67 31 l 1 + 97 134 l 1 + 110 129 l 1x74 + 173 106 216 98 242 98 c 0 + 284 98 332 109 332 148 c 0xb4 + 332 184 320 209 241 209 c 0 + 233 209 225 207 165 204 c 1 + 165 282 l 1 + 236 283 316 296 316 342 c 0 + 316 358 295 388 236 388 c 0xb8 +EndSplineSet +EndChar + +StartChar: afii10074 +Encoding: 1080 1080 434 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 21G<63 216.437 392 512> 462 20G<63 183 358.563 512> +VStem: 63 120<155 482> 392 120<0 327> +LayerCount: 3 +Back +SplineSet +82.3584 29.6553 m 1xd0 + 82.3584 483 l 1 + 214.358 483 l 1xd0 + 221.752 175.925 l 1 + 454.965 465.725 l 1 + 454.965 483 l 1xe8 + 469.307 483 l 1 + 594.358 483 l 1 + 616.717 483 l 1 + 594.358 453.345 l 1 + 594.358 0 l 1 + 462.358 0 l 1xc4 + 454.965 307.075 l 1 + 221.752 17.2754 l 1 + 221.752 0 l 1xe8 + 207.409 0 l 5 + 82.3584 0 l 5 + 60 0 l 5 + 82.3584 29.6553 l 1xd0 +EndSplineSet +Fore +SplineSet +63 482 m 1 + 183 482 l 1 + 183 155 l 1 + 370 482 l 1 + 413 482 469 482 512 482 c 1 + 512 0 l 1 + 392 0 l 1 + 392 327 l 1 + 205 0 l 5 + 63 0 l 1 + 63 482 l 1 +EndSplineSet +EndChar + +StartChar: afii10075 +Encoding: 1081 1081 435 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 21<63 216.437 392 512> 462 20<63 183 358.563 512> 552.6 86.4004<226.179 334.742> 697.4 20<150.2 195 381.4 420.333> +VStem: 63 120<155 482> 392 120<0 327> +LayerCount: 3 +Fore +Refer: 434 1080 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 22 24 2 +EndChar + +StartChar: afii10076 +Encoding: 1082 1082 436 +Width: 558 +VWidth: 1023 +Flags: W +HStem: 0 21G<63 183 377.333 543> 462 20G<63 183 369.446 535> +VStem: 63 120<0 240 289 482> +LayerCount: 3 +Fore +SplineSet +183 289 m 1 + 391 482 l 5 + 535 482 l 5 + 297 271 l 1 + 543 0 l 1 + 395 0 l 1 + 183 240 l 1 + 183 0 l 1 + 63 0 l 1 + 63 482 l 5 + 183 482 l 5 + 183 289 l 1 +EndSplineSet +EndChar + +StartChar: afii10077 +Encoding: 1083 1083 437 +Width: 555 +VWidth: 1023 +Flags: W +HStem: 0 21G<43 203 372 492> 377 105<281.076 372> +VStem: 372 120<0 377> +LayerCount: 3 +Back +SplineSet +475.21 495.88 m 0 + 511.799 495.88 l 2 + 532.649 495.88 552.191 492.998 564.952 490.1 c 5 + 569.066 493.92 l 5 + 661.703 493.92 l 1 + 661.703 0 l 1 + 528.113 0 l 1 + 528.113 25 l 0 + 528.113 79.4697 531.797 290.68 531.638 371.922 c 1 + 524.589 372.308 521.454 372.38 516.302 372.38 c 0 + 466.129 372.38 429.577 356.911 420.885 339.812 c 1 + 387.517 275.308 350.997 198.132 322.25 129.934 c 0 + 321.946 129.212 l 1 + 321.577 128.509 l 0 + 310.13 106.642 292.072 74.8203 268.691 54.5996 c 1 + 251.261 39.1602 221.146 18.8213 192.718 9.30566 c 0 + 191.325 8.77539 l 1 + 189.877 8.37598 l 0 + 143.842 -4.7998 103.117 -10.7158 63.5879 -8.93457 c 0 + 35.71 -7.67871 l 1 + 53.8887 98.0195 l 1 + 73.9346 99.1553 l 0 + 114.565 101.459 137.329 105.382 145.675 115.115 c 0 + 159.29 130.457 170.831 149.21 182.496 172.142 c 1 + 263.546 350.154 l 0 + 268.407 360.83 273.864 377.006 283.64 396.309 c 1 + 304.514 436.86 337.863 466.785 383.168 481.241 c 1 + 409.784 491.118 441.286 495.88 475.21 495.88 c 0 +EndSplineSet +Fore +SplineSet +163 482 m 1 + 492 482 l 1 + 492 0 l 1 + 372 0 l 1 + 372 377 l 1 + 283 377 l 1 + 270 252 243 127 163 0 c 1 + 43 0 l 1 + 115 152 165 309 163 482 c 1 +EndSplineSet +EndChar + +StartChar: afii10078 +Encoding: 1084 1084 438 +Width: 687 +VWidth: 1023 +Flags: W +HStem: 0 21G<90.7197 210.72 507.12 627.12> 462 20G<90.7197 233.589 483.051 627.12> +VStem: 90.7197 120<0 308> 507.12 120<0 308> +LayerCount: 3 +Fore +SplineSet +90.7197 482 m 1 + 221.521 482 l 1 + 348.24 272 l 1 + 368.399 272 l 1 + 495.12 482 l 1 + 627.12 482 l 1 + 627.12 0 l 1 + 507.12 0 l 1 + 507.12 308 l 1 + 402.959 152 l 1 + 322.32 152 l 1 + 210.72 308 l 1 + 210.72 0 l 1 + 90.7197 0 l 1 + 90.7197 482 l 1 +EndSplineSet +EndChar + +StartChar: afii10079 +Encoding: 1085 1085 439 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 21G<63 183 392 512> 199 105<183 392> 462 20G<63 183 392 512> +VStem: 63 120<0 199 304 482> 392 120<0 199 304 482> +LayerCount: 3 +Fore +SplineSet +63 482 m 1 + 183 482 l 5 + 183 304 l 5 + 392 304 l 5 + 392 482 l 5 + 512 482 l 1 + 512 0 l 1 + 392 0 l 1 + 392 199 l 5 + 183 199 l 5 + 183 0 l 1 + 63 0 l 1 + 63 482 l 1 +EndSplineSet +EndChar + +StartChar: afii10080 +Encoding: 1086 1086 440 +Width: 594 +VWidth: 1023 +Flags: W +HStem: -10 90<225.784 374.967> 400 90<217.913 369.22> +VStem: 40 119<168.275 325.09> 436.199 118<159.172 317.512> +LayerCount: 3 +Fore +Refer: 6 111 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10081 +Encoding: 1087 1087 441 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 21G<63 183 392 512> 377 105<183 392> +VStem: 63 120<0 377> 392 120<0 377> +LayerCount: 3 +Fore +SplineSet +63 482 m 1 + 512 482 l 1 + 512 0 l 1 + 392 0 l 1 + 392 377 l 1 + 183 377 l 1 + 183 0 l 1 + 63 0 l 1 + 63 482 l 1 +EndSplineSet +EndChar + +StartChar: afii10082 +Encoding: 1088 1088 442 +Width: 591 +VWidth: 1023 +Flags: W +HStem: -10 103<188.934 361.733> 385 107<189.98 360.562> 462 20<62.7266 161.292> +VStem: 62.7266 125<-259 7 102.057 375.31> 422.627 118<154.882 323.631> +LayerCount: 3 +Fore +Refer: 15 112 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10083 +Encoding: 1089 1089 443 +Width: 518 +VWidth: 1023 +Flags: W +HStem: -10 90<232.52 435.388> 400 90<221.782 439.724> +VStem: 44.9072 118<159.813 323.276> +LayerCount: 3 +Fore +Refer: 18 99 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10084 +Encoding: 1090 1090 444 +Width: 447 +VWidth: 1023 +Flags: W +HStem: 0 21G<163 284> 377 105<24 163 284 423> +VStem: 163 121<0 377> +LayerCount: 3 +Back +SplineSet +57.7373 694 m 5xf0 + 191.737 694 l 5 + 191.737 562 l 5 + 57.7373 562 l 5 + 57.7373 694 l 5xf0 +64.7373 482 m 5xe8 + 184.737 482 l 5 + 184.737 0 l 5 + 64.7373 0 l 5 + 64.7373 482 l 5xe8 +EndSplineSet +Fore +SplineSet +24 377 m 1 + 24 482 l 1 + 423 482 l 1 + 423 377 l 1 + 284 377 l 1 + 284 0 l 1 + 163 0 l 1 + 163 377 l 1 + 24 377 l 1 +EndSplineSet +EndChar + +StartChar: afii10085 +Encoding: 1091 1091 445 +Width: 559 +VWidth: 1023 +Flags: W +HStem: 462 20<17.1074 162.843 420.801 554.807> +LayerCount: 3 +Fore +Refer: 26 121 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10086 +Encoding: 1092 1092 446 +Width: 851 +VWidth: 1023 +Flags: W +HStem: -10 103<216.785 361.814 489.186 633.463> 385 107<217.237 361.648 489.305 633.011> +VStem: 50 118<144.222 331.946> 363 125<-259 7 100.483 376.118> 388 75<459 522> 683 118<144.222 331.946> +LayerCount: 3 +Back +SplineSet +419.266 464.38 m 1 + 419.266 617.33 l 1 + 562.942 617.33 l 1 + 562.942 464.38 l 1 + 598.797 483.664 639.168 492.38 684.846 492.38 c 0 + 720.387 492.38 754.585 486.181 786.705 473.792 c 0 + 818.637 462.63 845.194 446.752 868.044 426.377 c 1 + 891.842 404.8 909.72 379.249 922.342 349.491 c 1 + 935.07 319.184 941.154 285.639 941.154 249.002 c 0 + 941.154 176.313 917.901 113.645 870.918 64.5576 c 1 + 822.913 14.8184 756.687 -10.8496 679.556 -10.8496 c 0 + 637.536 -10.8496 597.528 -1.47363 563.463 15.7881 c 1 + 566.39 -259.279 l 1 + 422.138 -259.279 l 1 + 419.694 16.2754 l 1 + 383.792 -2.13867 345.026 -10.8496 302.658 -10.8496 c 0 + 225.525 -10.8496 159.234 14.8008 111.179 64.5879 c 1 + 63.7275 114.068 40 176.796 40 249.001 c 0 + 40 284.648 46.5469 318.361 59.793 349.516 c 1 + 72.5947 379.817 90.4932 405.769 113.613 426.387 c 0 + 136.391 446.707 162.916 462.609 194.654 473.771 c 0 + 226.71 486.21 261.191 492.38 297.357 492.38 c 0 + 343.155 492.38 385.029 482.793 419.266 464.38 c 1 +361.492 365.657 m 1 + 349.488 370.424 333.577 373.29 312.2 373.29 c 0 + 294.676 373.29 278.29 370.579 262.873 365.251 c 1 + 246.04 359.279 229.843 350.591 215.71 339.834 c 1 + 203.242 330.137 191.8 316.121 182.692 297.801 c 1 + 173.684 279.443 169.087 259.448 169.087 237.262 c 0 + 169.087 219.106 172.683 201.78 179.892 184.962 c 0 + 186.987 168.406 195.097 156.539 203.367 148.656 c 1 + 213.063 139.232 223.605 131.913 236.59 125.571 c 1 + 249.607 119.063 262.266 114.636 274.203 112.046 c 1 + 286.591 109.523 298.974 108.24 310.079 108.24 c 0 + 372.044 108.24 404.612 129.304 419.266 178.176 c 1 + 419.266 297.726 l 1 + 417.046 304.495 415.355 309.346 413.521 314.463 c 1 + 407.45 328.904 401.368 338.127 393.814 345.959 c 1 + 387.173 353.037 377.291 359.514 361.492 365.657 c 1 +719.45 365.209 m 0 + 703.845 370.603 686.245 373.29 667.614 373.29 c 0 + 645.887 373.29 631.475 370.351 619.749 365.696 c 0 + 605.35 359.98 595.727 353.699 588.213 345.763 c 1 + 580.312 337.865 574.087 328.304 568.603 314.258 c 1 + 566.277 308.607 564.117 302.199 562.942 298.097 c 1 + 562.942 175.065 l 1 + 578.736 127.308 611.045 108.24 672.135 108.24 c 0 + 683.323 108.24 695.438 109.487 708.134 112.073 c 1 + 719.314 114.404 730.892 118.493 744.376 125.479 c 1 + 757.69 131.984 768.631 139.537 778.34 148.689 c 1 + 787.358 157.394 795.66 169.502 802.297 185.13 c 0 + 808.668 200.092 812.056 217.397 812.056 237.262 c 0 + 812.056 260.752 807.607 281.015 799.514 297.819 c 1 + 790.832 315.416 779.435 329.174 765.487 339.8 c 1 + 750.289 351.618 735.2 359.769 719.45 365.209 c 0 +EndSplineSet +Fore +SplineSet +463 522 m 1xec + 463 459 l 1xec + 513 482 542 492 583 492 c 0 + 687 492 801 434 801 246 c 0 + 801 85 715 -10 568 -10 c 0 + 529 -10 517 -3 488 7 c 1 + 488 -259 l 1 + 363 -259 l 1 + 363 7 l 1xf4 + 334 -3 321 -10 282 -10 c 0 + 135 -10 50 85 50 246 c 0 + 50 434 163 492 267 492 c 0 + 308 492 338 482 388 459 c 1 + 388 522 l 1 + 463 522 l 1xec +555 385 m 0 + 529 385 520 380 488 368 c 1 + 488 108 l 1xf4 + 510 101 522 93 556 93 c 0 + 615 93 683 119 683 234 c 0 + 683 362 614 385 555 385 c 0 +295 385 m 0 + 236 385 168 362 168 234 c 0 + 168 119 235 93 294 93 c 0 + 328 93 341 101 363 108 c 1 + 363 368 l 1 + 331 380 321 385 295 385 c 0 +EndSplineSet +EndChar + +StartChar: afii10087 +Encoding: 1093 1093 447 +Width: 558 +VWidth: 1023 +Flags: W +HStem: 0 21<28.8096 177.231 392.537 549.609> 462 20<22.8096 179.741 407.891 558.209> +LayerCount: 3 +Fore +Refer: 24 120 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10088 +Encoding: 1094 1094 448 +Width: 613 +VWidth: 1023 +Flags: W +HStem: 0 105<183 392> 462 20G<63 183 392 512> +VStem: 63 120<105 482> 392 120<105 482> 485 105<-135 0> +LayerCount: 3 +Back +SplineSet +415.737 482 m 5xe8 + 535.737 482 l 5 + 535.737 0 l 5 + 415.737 0 l 5 + 415.737 482 l 5xe8 +57.7373 694 m 1xf0 + 191.737 694 l 1 + 191.737 562 l 1 + 57.7373 562 l 1 + 57.7373 694 l 1xf0 +64.7373 482 m 1xe8 + 184.737 482 l 1 + 184.737 0 l 1 + 64.7373 0 l 1 + 64.7373 482 l 1xe8 +EndSplineSet +Fore +SplineSet +512 84 m 5xf0 + 590 84 l 5 + 590 -135 l 5 + 485 -135 l 5 + 485 0 l 5xe8 + 63 0 l 5 + 63 482 l 1 + 183 482 l 1 + 183 105 l 5 + 392 105 l 5 + 392 482 l 1 + 512 482 l 1 + 512 84 l 5xf0 +EndSplineSet +EndChar + +StartChar: afii10089 +Encoding: 1095 1095 449 +Width: 574 +VWidth: 1023 +Flags: W +HStem: 0 21G<391 511> 118 111<210.256 361.159> +VStem: 60 119<256.737 482> 391 120<0 151 247.694 482> +LayerCount: 3 +Back +SplineSet +410.737 482 m 5xe8 + 530.737 482 l 5 + 530.737 0 l 5 + 410.737 0 l 5 + 410.737 482 l 5xe8 +EndSplineSet +Fore +SplineSet +276 229 m 4 + 298 229 338 234 391 256 c 5 + 391 482 l 1 + 511 482 l 1 + 511 0 l 1 + 391 0 l 1 + 391 151 l 5 + 353 135 300 118 244 118 c 4 + 67 118 60 261 60 335 c 6 + 60 482 l 1 + 179 482 l 1 + 179 327 l 6 + 179 301 182 229 276 229 c 4 +EndSplineSet +EndChar + +StartChar: afii10090 +Encoding: 1096 1096 450 +Width: 764 +VWidth: 1023 +Flags: W +HStem: 0 105<183 322 442 581> 462 20G<63 183 322 442 581 701> +VStem: 63 120<105 482> 322 120<105 482> 581 120<105 482> +CounterMasks: 1 38 +LayerCount: 3 +Back +SplineSet +57.7373 694 m 5xf0 + 191.737 694 l 5 + 191.737 562 l 5 + 57.7373 562 l 5 + 57.7373 694 l 5xf0 +64.7373 482 m 5xe8 + 184.737 482 l 5 + 184.737 0 l 5 + 64.7373 0 l 5 + 64.7373 482 l 5xe8 +EndSplineSet +Fore +SplineSet +322 105 m 1 + 322 482 l 1 + 442 482 l 1 + 442 105 l 1 + 581 105 l 1 + 581 482 l 1 + 701 482 l 1 + 701 0 l 1 + 63 0 l 1 + 63 482 l 1 + 183 482 l 1 + 183 105 l 1 + 322 105 l 1 +EndSplineSet +EndChar + +StartChar: afii10091 +Encoding: 1097 1097 451 +Width: 789 +VWidth: 1023 +Flags: W +HStem: 0 105<183 322 442 581> 462 20G<63 183 322 442 581 701> +VStem: 63 120<105 482> 322 120<105 482> 581 120<105 482> 674 105<-135 0> +LayerCount: 3 +Fore +SplineSet +322 105 m 1xf4 + 322 482 l 1 + 442 482 l 1 + 442 105 l 1 + 581 105 l 1 + 581 482 l 1 + 701 482 l 1 + 701 84 l 1xf8 + 779 84 l 1 + 779 -135 l 1 + 674 -135 l 1 + 674 0 l 1 + 63 0 l 1 + 63 482 l 1 + 183 482 l 1 + 183 105 l 1 + 322 105 l 1xf4 +EndSplineSet +EndChar + +StartChar: afii10092 +Encoding: 1098 1098 452 +Width: 571 +VWidth: 820 +Flags: W +HStem: 0 102<230 385.578> 206 102<230 383.646> 377 105<10 110> +VStem: 110 120<102 204 307 377> 399 122<118.488 189.039> +LayerCount: 3 +Fore +SplineSet +230 102 m 1 + 302 102 l 2 + 364 102 399 119 399 153 c 0 + 399 199 348 206 292 206 c 0 + 277 206 245 205 230 204 c 1 + 230 102 l 1 +10 377 m 5 + 10 482 l 5 + 230 482 l 5 + 230 307 l 1 + 243 308 275 308 288 308 c 0 + 393 308 521 297 521 149 c 0 + 521 15 392 0 329 0 c 2 + 110 0 l 1 + 110 377 l 5 + 10 377 l 5 +EndSplineSet +EndChar + +StartChar: afii10093 +Encoding: 1099 1099 453 +Width: 678 +VWidth: 820 +Flags: W +HStem: 0 102<183 319.551> 206 102<183 319.764> 462 20G<63 183 495 615> +VStem: 63 120<102 205.191 307 482> 332 122<114.165 193.235> 495 120<0 482> +LayerCount: 3 +Fore +SplineSet +495 482 m 5 + 615 482 l 1 + 615 0 l 1 + 495 0 l 1 + 495 482 l 5 +63 0 m 1 + 63 482 l 1 + 183 482 l 1 + 183 307 l 1 + 196 308 218 308 231 308 c 0 + 336 308 454 297 454 149 c 0 + 454 15 335 0 272 0 c 2 + 63 0 l 1 +183 102 m 1 + 245 102 l 2 + 307 102 332 119 332 153 c 0 + 332 199 291 206 235 206 c 0 + 220 206 198 205 183 204 c 1 + 183 102 l 1 +EndSplineSet +EndChar + +StartChar: afii10094 +Encoding: 1100 1100 454 +Width: 524 +VWidth: 820 +Flags: W +HStem: 0 102<183 338.578> 206 102<183 336.646> 462 20G<63 183> +VStem: 63 120<102 204 307 482> 352 122<118.488 189.039> +LayerCount: 3 +Back +SplineSet +186.973 494.737 m 1x78 + 186.973 473.92 l 2 + 186.973 449.348 186.443 389.891 185.41 297.846 c 1 + 293.127 299.343 371.608 291.42 426.628 271.236 c 1 + 446.676 262.933 464.199 253.552 478.965 242.943 c 0 + 494.834 231.542 507.189 217.036 516.408 199.298 c 1 + 525.41 180.859 529.561 161.635 529.561 140.773 c 0 + 529.561 99.3154 510.154 62.7949 474.219 33.6221 c 1 + 437.365 3.96094 387.858 -10.7803 324.752 -10.7803 c 0xb8 + 274.392 -10.7803 220.467 5.50781 170.235 33.1445 c 1 + 150.739 0 l 1 + 60.0098 0 l 1 + 60.0098 493.431 l 1 + 80.0098 493.431 l 0 + 128.827 493.431 157.808 493.617 164.96 493.904 c 0 + 186.973 494.737 l 1x78 +199.231 202.46 m 1 + 185.193 202.46 l 1 + 185.193 128.712 l 1 + 219.549 105.397 254.999 95.3701 298.049 95.3701 c 0 + 329.373 95.3701 355.161 101.346 376.967 112.895 c 1 + 398.621 124.484 406.157 135.505 406.157 147.883 c 0 + 406.157 157.17 402.63 164.089 395.396 170.428 c 0 + 384.845 179.663 375.262 184.419 368.595 186.158 c 1 + 322.053 197.888 265.929 203.533 199.231 202.46 c 1 +EndSplineSet +Fore +SplineSet +63 0 m 1 + 63 482 l 5 + 183 482 l 5 + 183 307 l 1 + 196 308 228 308 241 308 c 0 + 346 308 474 297 474 149 c 0 + 474 15 345 0 282 0 c 2 + 63 0 l 1 +183 102 m 1 + 255 102 l 2 + 317 102 352 119 352 153 c 0 + 352 199 301 206 245 206 c 0 + 230 206 198 205 183 204 c 1 + 183 102 l 1 +EndSplineSet +EndChar + +StartChar: afii10095 +Encoding: 1101 1101 455 +Width: 508 +VWidth: 1023 +Flags: W +HStem: -10 109<73.4828 291.273> 199 105<163 338> 385 106<77.8213 281.433> +VStem: 163 305<206.447 299.383> +LayerCount: 3 +Back +SplineSet +77.5156 463.748 m 0 + 124.298 484.043 172.701 494.311 231.517 494.311 c 0 + 263.4 494.311 292.984 491.604 321.725 485.829 c 1 + 349.621 480.565 378.116 471.109 404.041 458.277 c 1 + 427.454 444.622 447.129 428.236 463.684 408.606 c 1 + 480.432 388.646 493.339 363.256 503.31 332.581 c 0 + 513.415 301.49 518.364 267.725 518.365 231.44 c 0 + 518.365 196.135 513.33 163.349 503.255 134.438 c 1 + 493.19 104.916 480.062 80.7949 463.205 62.7871 c 1 + 447.09 45.4619 427.748 31.3145 404.183 19.0996 c 1 + 377.9 7.71094 351.143 -0.166992 324.358 -4.5459 c 0 + 298.495 -9.12012 271.324 -11.3701 242.923 -11.3701 c 0 + 181.773 -11.3701 132.17 -1.86523 83.6416 16.9297 c 0 + 65.4385 23.9805 l 1 + 98.8096 116.765 l 1 + 117.458 110.354 l 0 + 146.829 100.258 175.916 95.2705 209.085 95.2705 c 1 + 230.289 95.5225 249.162 96.3848 263.942 97.7217 c 0 + 278.229 99.0146 292.126 101.416 305.77 104.958 c 0 + 318.677 108.309 329.264 112.662 338.088 118.017 c 0 + 347.148 123.516 356.289 131.05 365.141 140.802 c 0 + 373.629 150.151 381.939 162.6 388.821 176.207 c 1 + 390.354 179.782 391.17 181.884 392.053 184.23 c 1 + 192.004 184.23 l 1 + 192.004 287.44 l 1 + 396.661 287.44 l 1 + 394.691 297.049 392.537 303.603 389.432 310.207 c 1 + 382.493 325.54 373.335 337.29 362.143 346.427 c 0 + 350.259 356.128 337.327 363.454 321.396 369.446 c 1 + 306.902 374.924 290.563 379.041 273.401 381.412 c 1 + 257.249 383.552 238.755 384.73 219.51 384.73 c 0 + 180.158 384.73 146.577 378.967 111.45 367.153 c 0 + 92.3955 360.745 l 1 + 60.75 456.475 l 1 + 77.5156 463.748 l 0 +EndSplineSet +Fore +SplineSet +468 250 m 0 + 468 54 331 -10 200 -10 c 0 + 146 -10 98 0 53 20 c 1 + 35 27 l 1 + 67 123 l 1 + 86 116 l 2 + 118 105 152 99 189 99 c 0 + 260 99 331 120 347 199 c 1 + 163 199 l 1 + 163 304 l 1 + 338 304 l 1 + 314 361 256 385 179 385 c 0 + 148 385 119 380 92 370 c 2 + 73 363 l 1 + 40 456 l 1 + 58 462 l 1 + 112 483 165 491 210 491 c 0 + 333 491 468 438 468 250 c 0 +EndSplineSet +EndChar + +StartChar: afii10096 +Encoding: 1102 1102 456 +Width: 796 +VWidth: 1023 +Flags: W +HStem: -10 109<430.265 579.834> 0 21G<63 183> 199 105<183 249.805> 383 109<423.059 574.136> 462 20G<63 183> +VStem: 63 120<0 199 304 482> 641 118<159.172 317.512> +LayerCount: 3 +Fore +SplineSet +505 492 m 0x36 + 647 492 759 406 759 250 c 0 + 759 89 650 -10 497 -10 c 0xb6 + 364 -10 263 67 247 199 c 1 + 183 199 l 1 + 183 0 l 1 + 63 0 l 1 + 63 482 l 1 + 183 482 l 1x6e + 183 304 l 1 + 252 304 l 1 + 278 421 374 492 505 492 c 0x36 +498 383 m 0 + 433 383 364 340 364 249 c 0 + 364 166 420 99 506 99 c 0 + 581 99 641 152 641 236 c 0 + 641 335 566 383 498 383 c 0 +EndSplineSet +EndChar + +StartChar: afii10097 +Encoding: 1103 1103 457 +Width: 517 +VWidth: 820 +Flags: W +HStem: 0 22G<39 199 334 454> 174 102<286.57 334> 380 102<203.422 334> +VStem: 68 122<291.18 363.512> 334 120<1 175 276.428 380> +LayerCount: 3 +Fore +SplineSet +334 380 m 1 + 287 380 l 2 + 225 380 190 363 190 329 c 0 + 190 283 241 276 297 276 c 0 + 312 276 319 277 334 278 c 1 + 334 380 l 1 +454 482 m 1 + 454 1 l 1 + 334 1 l 1 + 334 175 l 1 + 321 174 314 174 301 174 c 0 + 299 174 297 174 295 174 c 1 + 270 110 225 48 173 0 c 1 + 39 0 l 1 + 88 55 152 119 173 187 c 1 + 114 204 68 244 68 333 c 0 + 68 467 197 482 260 482 c 2 + 454 482 l 1 +EndSplineSet +EndChar + +StartChar: afii10071 +Encoding: 1105 1105 458 +Width: 562 +VWidth: 1023 +Flags: W +HStem: -9 107<228.873 482.846> 8 107<342.92 483> 184 84<175 399> 388 104<222.389 357.525> 552 131<126 257 345 476> +VStem: 45 130<268 340.097> 126 131<552 683> 345 131<552 683> 399 120<268 343.082> +LayerCount: 3 +Fore +Refer: 431 1077 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 8 -31 2 +EndChar + +StartChar: afii10023 +Encoding: 1025 1025 459 +Width: 581 +VWidth: 1023 +Flags: W +HStem: 0 113<203 541.699> 301 113<203 515.699> 581 113<203 541.699> 761 131<147.865 278.865 366.865 497.865> +VStem: 80 123<113 301 414 581> 147.865 131<761 892> 366.865 131<761 892> +LayerCount: 3 +Fore +Refer: 399 1045 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 29.8652 178 2 +EndChar + +StartChar: uni0400 +Encoding: 1024 1024 460 +Width: 581 +VWidth: 1023 +Flags: W +HStem: 0 113<203 541.699> 301 113<203 515.699> 581 113<203 541.699> 761 259 +VStem: 80 123<113 301 414 581> +LayerCount: 3 +Fore +Refer: 399 1045 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 -38.32 218 2 +EndChar + +StartChar: afii10051 +Encoding: 1026 1026 461 +Width: 892 +VWidth: 1023 +Flags: W +HStem: 0 21G<259 387> 387 109<415.66 608.181> 581 113<38 259 387 633.279> +VStem: 259 128<0 367.463 463.403 581> 674 128<-3.12892 309.455> +LayerCount: 3 +Fore +SplineSet +528.478 496 m 0 + 706.006 496 804.2 390.2 802 161.451 c 0 + 799.813 -65.93 712.675 -178.183 624.382 -234.304 c 0 + 605.487 -246.051 l 1 + 533.349 -154.526 l 1 + 552.866 -143.292 l 0 + 629.602 -100.667 674 5.54785 674 160.942 c 0 + 674 346.067 620.817 387 522.2 387 c 0 + 488.591 387 431.55 377.596 387 359.7 c 1 + 387 0 l 1 + 259 0 l 1 + 259 581 l 1 + 38 581 l 1 + 38 694 l 1 + 633.279 694 l 1 + 633.279 581 l 1 + 387 581 l 1 + 387 463.403 l 1 + 441.141 484.854 479.064 496 528.478 496 c 0 +EndSplineSet +EndChar + +StartChar: afii10052 +Encoding: 1027 1027 462 +Width: 548 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203> 581 113<203 538> 720 264 +VStem: 80 123<0 581> 272 318 +LayerCount: 3 +Fore +Refer: 397 1043 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 152 219 2 +EndChar + +StartChar: afii10053 +Encoding: 1028 1028 463 +Width: 702 +VWidth: 1023 +Flags: W +HStem: -10 114<327.803 564.338> 268 107<202 539> 583 116<339.369 572.869> +VStem: 67 472<270.41 370.44> +LayerCount: 3 +Fore +Refer: 423 1069 N -1 0 0 1 726 0 2 +EndChar + +StartChar: afii10054 +Encoding: 1029 1029 464 +Width: 653 +VWidth: 1023 +Flags: W +HStem: -10 122<188.829 415.221> 558 113<466.099 541.492> 582 118<263.165 511.052> +VStem: 80 134<460.459 540.749> 461.7 132<150.841 238.8> +LayerCount: 3 +Fore +Refer: 55 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10055 +Encoding: 1030 1030 465 +Width: 283 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203> 674 20<80 203> +VStem: 80 123<0 694> +LayerCount: 3 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10056 +Encoding: 1031 1031 466 +Width: 283 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203> 674 20<80 203> 761 131<-33.5 97.5 185.5 316.5> +VStem: -33.5 131<761 892> 80 123<0 694> 185.5 131<761 892> +LayerCount: 3 +Fore +Refer: 465 1030 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -151.5 178 2 +EndChar + +StartChar: afii10057 +Encoding: 1032 1032 467 +Width: 492 +VWidth: 1023 +Flags: W +HStem: -8 113<52.0469 231.065> 9 108<53.6959 139.007> 674 20<289.092 412.092> +VStem: 289.092 123<163.703 694> +LayerCount: 3 +Fore +Refer: 46 74 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10058 +Encoding: 1033 1033 468 +Width: 1060 +VWidth: 1023 +Flags: W +HStem: 0 113<630 846.662> 314 112<630 840.961> 580 114<361.613 507> +VStem: 507 123<113 311 424 580> 892 126<151.32 268.298> +LayerCount: 3 +Fore +SplineSet +630 311 m 1 + 630 113 l 1 + 721 113 l 2 + 810 113 892 124 892 209 c 0 + 892 305 796 314 691 314 c 0 + 670 314 651 312 630 311 c 1 +743 0 m 0 + 664.333 -0 585.667 0 507 0 c 1 + 507 580 l 1 + 364 580 l 1 + 340 360 269 168 187 0 c 1 + 50 0 l 1 + 155 214 225 443 244 694 c 1 + 630 694 l 1 + 630 424 l 1 + 648 425 665 426 684 426 c 0 + 834 426 1018 406 1018 195 c 0 + 1018 4 833 0 743 0 c 0 +EndSplineSet +EndChar + +StartChar: afii10059 +Encoding: 1034 1034 469 +Width: 1048 +VWidth: 1023 +Flags: W +HStem: 0 113<620 836.662> 301 114<203 497> 314 112<620 830.961> 674 20G<80 203 497 620> +VStem: 80 123<0 301 415 694> 497 123<113 301 424 694> 882 126<151.32 268.298> +LayerCount: 3 +Fore +SplineSet +620 311 m 1xbe + 620 113 l 1 + 711 113 l 2 + 800 113 882 124 882 209 c 0 + 882 305 786 314 681 314 c 0 + 660 314 641 312 620 311 c 1xbe +620 0 m 1 + 497 0 l 1 + 497 301 l 1 + 203 301 l 1 + 203 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 415 l 1 + 497 415 l 1xde + 497 694 l 1 + 620 694 l 1 + 620 424 l 1 + 638 425 655 426 674 426 c 0 + 824 426 1008 406 1008 195 c 0 + 1008 4 823 0 733 0 c 2 + 620 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10060 +Encoding: 1035 1035 470 +Width: 923 +VWidth: 1023 +Flags: W +HStem: 0 21G<199 322 712 833> 385 110<380.846 645.544> 581 113<38 199 322 658.514> +VStem: 199 123<0 351.954 454.591 581> 712 121<0 331.063> +LayerCount: 3 +Fore +SplineSet +38 581 m 1 + 38 694 l 1 + 658.514 694 l 1 + 658.514 581 l 1 + 322 581 l 1 + 322 454.591 l 5 + 385.738 480.367 474.695 495 561.571 495 c 4 + 802.62 495 833 362.441 833 295.724 c 4 + 833 0 l 1 + 712 0 l 1 + 712 266.821 l 4 + 712 340.163 654.662 385 527.028 385 c 4 + 462.262 385 376.226 368.549 322 342.722 c 5 + 322 0 l 1 + 199 0 l 1 + 199 581 l 1 + 38 581 l 1 +EndSplineSet +EndChar + +StartChar: afii10061 +Encoding: 1036 1036 471 +Width: 671 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203 484.202 661> 674 20<80 203 469.138 644> 720 264 +VStem: 80 123<0 336 376 694> 325 318 +LayerCount: 3 +Fore +Refer: 404 1050 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 205 219 2 +EndChar + +StartChar: uni040D +Encoding: 1037 1037 472 +Width: 766 +VWidth: 1023 +Flags: W +HStem: 0 21<80 240.57 563 686> 674 20<80 203 523.528 686> 761 259 +VStem: 80 123<160 694> 563 123<0 533> +LayerCount: 3 +Fore +Refer: 402 1048 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 21.68 218 2 +EndChar + +StartChar: afii10062 +Encoding: 1038 1038 473 +Width: 628 +VWidth: 1023 +Flags: W +HStem: 0 21<133 274.115> 674 20<25 170.189 471.937 615> 761.6 86.4004<259.179 367.742> 906.4 20<183.2 228 414.4 453.333> +LayerCount: 3 +Fore +Refer: 413 1059 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 55 233 2 +EndChar + +StartChar: afii10145 +Encoding: 1039 1039 474 +Width: 740 +VWidth: 1023 +Flags: W +HStem: 0 114<203 317 424 537> 674 20G<80 203 537 660> +VStem: 80 123<114 694> 317 107<-178 0> 537 123<114 694> +LayerCount: 3 +Fore +SplineSet +424 -0 m 1 + 424 -178 l 1 + 317 -178 l 1 + 317 0 l 1 + 80 0 l 1 + 80 694 l 1 + 203 694 l 1 + 203 114 l 1 + 537 114 l 1 + 537 694 l 1 + 660 694 l 1 + 660 0 l 1 + 424 -0 l 1 +EndSplineSet +EndChar + +StartChar: uni0450 +Encoding: 1104 1104 475 +Width: 562 +VWidth: 1023 +Flags: W +HStem: -9 107<228.873 482.846> 8 107<342.92 483> 184 84<175 399> 388 104<222.389 357.525> 552 259 +VStem: 45 130<268 340.097> 399 120<268 343.082> +LayerCount: 3 +Fore +Refer: 431 1077 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 -60.32 9 2 +EndChar + +StartChar: afii10099 +Encoding: 1106 1106 476 +Width: 644 +VWidth: 1023 +Flags: W +HStem: 0 21G<131 248> 263 99<282.317 438.178> 416 94<20 131 248 455.871> +VStem: 131 117<0 242.457 326.928 416> 488 112<-41.7588 203.187> +LayerCount: 3 +Fore +SplineSet +448.282 -197.105 m 0 + 432.492 -204.784 l 1 + 383.912 -118.509 l 1 + 395.217 -111.038 l 0 + 449.816 -76.2217 488 -43.2275 488 70.1055 c 0 + 488 219.082 441.075 263 368.129 263 c 0 + 332.618 263 295.058 253.571 248 234.038 c 1 + 248 0 l 1 + 131 0 l 1 + 131 416 l 1 + 20 416 l 1 + 20 510 l 1 + 455.871 510 l 1 + 455.871 416 l 1 + 248 416 l 1 + 248 326.928 l 1 + 302.524 350.051 351.008 362 402.129 362 c 0 + 537.303 362 600 239.755 600 76.2656 c 0 + 600 -79.3232 539.579 -149.696 448.282 -197.105 c 0 +EndSplineSet +EndChar + +StartChar: afii10100 +Encoding: 1107 1107 477 +Width: 385 +VWidth: 1023 +Flags: W +HStem: 0 21<63 183> 377 105<183 372> 511 264 +VStem: 63 120<0 377> 180.5 318 +LayerCount: 3 +Fore +Refer: 429 1075 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 60.5 10 2 +EndChar + +StartChar: afii10101 +Encoding: 1108 1108 478 +Width: 508 +VWidth: 1023 +Flags: W +HStem: -10 109<211.727 429.517> 199 105<165 340> 385 106<221.567 425.179> +VStem: 35 305<206.447 299.383> +LayerCount: 3 +Fore +SplineSet +35 250 m 0 + 35 54 172 -10 303 -10 c 0 + 357 -10 405 0 450 20 c 1 + 468 27 l 1 + 436 123 l 1 + 417 116 l 2 + 385 105 351 99 314 99 c 0 + 243 99 172 120 156 199 c 1 + 340 199 l 1 + 340 304 l 1 + 165 304 l 1 + 189 361 247 385 324 385 c 0 + 355 385 384 380 411 370 c 2 + 430 363 l 1 + 463 456 l 1 + 445 462 l 1 + 391 483 338 491 293 491 c 0 + 170 491 35 438 35 250 c 0 +EndSplineSet +EndChar + +StartChar: afii10102 +Encoding: 1109 1109 479 +Width: 524 +VWidth: 1023 +Flags: W +HStem: -10 90<131.439 340.099> 400 90<314.613 433.891> +VStem: 62.9072 127<318.934 371.287> 354.807 129<108.717 162.947> +LayerCount: 3 +Fore +Refer: 7 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10103 +Encoding: 1110 1110 480 +Width: 253 +VWidth: 1023 +Flags: W +HStem: 0 21<64.7373 184.737> 462 20<64.7373 184.737> 562 132<57.7373 191.737> +VStem: 57.7373 134<562 694> 64.7373 120<0 482> +LayerCount: 3 +Fore +Refer: 4 105 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10104 +Encoding: 1111 1111 481 +Width: 295 +VWidth: 1023 +Flags: W +HStem: 0 21<88 208> 462 20<88 208> 552 131<-27 104 192 323> +VStem: -27 131<552 683> 88 120<0 482> 192 131<552 683> +LayerCount: 3 +Fore +Refer: 140 305 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -145 -31 2 +EndChar + +StartChar: afii10105 +Encoding: 1112 1112 482 +Width: 270 +VWidth: 1023 +Flags: W +HStem: 462 20<92.416 212.416> 562 132<84.416 219.416> +VStem: 84.416 135<562 694> 92.416 120<-124.777 482> +LayerCount: 3 +Fore +Refer: 23 106 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10106 +Encoding: 1113 1113 483 +Width: 833 +VWidth: 1023 +Flags: W +HStem: 0 102<492 647.578> 206 102<492 645.646> 377 105<281.076 372> +VStem: 372 120<102 204 307 377> 661 122<118.488 189.039> +LayerCount: 3 +Fore +SplineSet +372 377 m 1 + 283 377 l 1 + 270 252 243 127 163 0 c 1 + 43 0 l 1 + 115 152 165 309 163 482 c 1 + 492 482 l 1 + 492 307 l 1 + 505 308 537 308 550 308 c 0 + 655 308 783 297 783 149 c 0 + 783 15 654 0 591 0 c 0 + 518 -0 445 0 372 0 c 1 + 372 377 l 1 +492 204 m 1 + 492 102 l 1 + 564 102 l 2 + 626 102 661 119 661 153 c 0 + 661 199 610 206 554 206 c 0 + 539 206 507 205 492 204 c 1 +EndSplineSet +EndChar + +StartChar: afii10107 +Encoding: 1114 1114 484 +Width: 823 +VWidth: 1023 +Flags: W +HStem: 0 102<482 637.578> 199 105<183 362 482 543.285> 206 102<482.715 635.646> 462 20G<63 183 362 482> +VStem: 63 120<0 199 304 482> 362 120<102 199 307 482> 651 122<118.488 189.039> +LayerCount: 3 +Fore +SplineSet +63 482 m 1xde + 183 482 l 1 + 183 304 l 1 + 362 304 l 1xde + 362 482 l 1 + 482 482 l 1 + 482 307 l 1 + 495 308 527 308 540 308 c 0xbe + 645 308 773 297 773 149 c 0 + 773 15 644 0 581 0 c 2 + 482 0 l 1 + 362 0 l 1 + 362 199 l 1 + 183 199 l 1 + 183 0 l 1 + 63 0 l 1 + 63 482 l 1xde +482 204 m 1 + 482 102 l 1 + 554 102 l 2 + 616 102 651 119 651 153 c 0 + 651 199 600 206 544 206 c 0xbe + 529 206 497 205 482 204 c 1 +EndSplineSet +EndChar + +StartChar: afii10108 +Encoding: 1115 1115 485 +Width: 584 +VWidth: 1023 +Flags: W +HStem: 0 21G<66.291 186.291 397.791 516.791> 380 111<214.967 366.455> 538 107<5 66.291 186.291 415> 673 20G<66.291 186.291> +VStem: 66.291 120<0 361.306 458 538 645 693> 397.791 119<0 348.095> +LayerCount: 3 +Fore +SplineSet +300.591 380 m 0 + 278.99 380 239.391 375 186.291 353 c 1 + 186.291 0 l 1 + 66.291 0 l 1 + 66.291 538 l 1 + 5 538 l 1 + 5 645 l 1 + 66.291 645 l 1 + 66.291 693 l 1 + 186.291 693 l 1 + 186.291 645 l 1 + 415 645 l 1 + 415 538 l 1 + 186.291 538 l 1 + 186.291 458 l 1 + 224.091 474 277.19 491 332.99 491 c 0 + 509.791 491 516.791 348 516.791 274 c 2 + 516.791 0 l 1 + 397.791 0 l 1 + 397.791 282 l 2 + 397.791 308 394.19 380 300.591 380 c 0 +EndSplineSet +EndChar + +StartChar: afii10109 +Encoding: 1116 1116 486 +Width: 558 +VWidth: 1023 +Flags: W +HStem: 0 21<63 183 377.333 543> 462 20<63 183 369.446 535> 511 264 +VStem: 63 120<0 240 289 482> 262 318 +LayerCount: 3 +Fore +Refer: 436 1082 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 142 10 2 +EndChar + +StartChar: uni045D +Encoding: 1117 1117 487 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 21<63 216.437 392 512> 462 20<63 183 358.563 512> 552 259 +VStem: 63 120<155 482> 392 120<0 327> +LayerCount: 3 +Fore +Refer: 434 1080 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 -73.82 9 2 +EndChar + +StartChar: afii10110 +Encoding: 1118 1118 488 +Width: 559 +VWidth: 1023 +Flags: W +HStem: 462 20<17.1074 162.843 420.801 554.807> 552.6 86.4004<225.179 333.742> 697.4 20<149.2 194 380.4 419.333> +LayerCount: 3 +Fore +Refer: 445 1091 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 21 24 2 +EndChar + +StartChar: afii10193 +Encoding: 1119 1119 489 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 105<183 235 340 392> 462 20G<63 183 392 512> +VStem: 63 120<105 482> 235 105<-135 0> 392 120<105 482> +LayerCount: 3 +Fore +SplineSet +340 2.33147e-15 m 1 + 340 -135 l 1 + 235 -135 l 1 + 235 0 l 1 + 63 0 l 1 + 63 482 l 1 + 183 482 l 1 + 183 105 l 1 + 392 105 l 1 + 392 482 l 1 + 512 482 l 1 + 512 0 l 1 + 340 2.33147e-15 l 1 +EndSplineSet +EndChar + +StartChar: uni0492 +Encoding: 1170 1170 490 +Width: 631 +VWidth: 1023 +Flags: W +HStem: 0 21G<90 213> 313 114<15 90 224.304 374> 581 113<224.304 571> +VStem: 90 134.304<427 581> 90 123<0 313> +LayerCount: 3 +Fore +SplineSet +374 313 m 5xf0 + 213 313 l 1 + 213 0 l 1 + 90 0 l 1 + 90 313 l 1xe8 + 15 313 l 1 + 15 427 l 1 + 90 427 l 1xf0 + 90 694 l 1xe8 + 571 694 l 1 + 571 581 l 1 + 224.304 581 l 1 + 224.304 427 l 1 + 374 427 l 5 + 374 313 l 5xf0 +EndSplineSet +EndChar + +StartChar: uni0493 +Encoding: 1171 1171 491 +Width: 411 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 178> 203 94<6 60 178 356> 386 94<178 401> +VStem: 60 118<0 203 297 386> +LayerCount: 3 +Fore +SplineSet +401 480 m 1 + 401 386 l 1 + 178 386 l 1 + 178 297 l 5 + 356 297 l 5 + 356 203 l 5 + 178 203 l 5 + 178 0 l 1 + 60 0 l 1 + 60 203 l 5 + 6 203 l 5 + 6 297 l 5 + 60 297 l 5 + 60 480 l 1 + 401 480 l 1 +EndSplineSet +EndChar + +StartChar: uni0494 +Encoding: 1172 1172 492 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni0495 +Encoding: 1173 1173 493 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni0496 +Encoding: 1174 1174 494 +Width: 1051 +VWidth: 1023 +Flags: W +HStem: 0 21G<34 208.168 483.626 606.626> 674 20G<52.5537 224.226 483.626 606.626 866.026 1037.7> +VStem: 483.626 123<0 332.472 379.812 694> 888.626 108<-164 0> +LayerCount: 3 +Fore +SplineSet +606.626 379.812 m 1 + 883.661 694 l 1 + 1037.7 694 l 1 + 754.984 358.521 l 1 + 937.728 93.9736 l 1 + 996.626 93.9736 l 1 + 996.626 -164 l 1 + 888.626 -164 l 1 + 888.626 0 l 1 + 859.715 0 l 1 + 606.626 332.472 l 1 + 606.626 0 l 1 + 483.626 0 l 1 + 483.626 332.472 l 1 + 190.537 0 l 1 + 34 0 l 1 + 335.262 362.022 l 1 + 52.5537 694 l 1 + 206.591 694 l 1 + 483.626 379.812 l 1 + 483.626 694 l 1 + 606.626 694 l 1 + 606.626 379.812 l 1 +EndSplineSet +EndChar + +StartChar: uni0497 +Encoding: 1175 1175 495 +Width: 776 +VWidth: 1023 +Flags: W +HStem: 0 21G<21 168.815 346 456> 462 20G<30.2705 176.316 346 456 625.683 771.729> +VStem: 346 110<0 244.458 284.627 482> 640 98<-146 0> +LayerCount: 3 +Fore +SplineSet +456 284.627 m 1 + 644.816 482 l 1 + 771.729 482 l 1 + 578.027 269.226 l 1 + 691.038 79.2402 l 1 + 738 79.2402 l 1 + 738 -146 l 1 + 640 -146 l 1 + 640 0 l 1 + 618.972 0 l 1 + 456 244.458 l 1 + 456 0 l 1 + 346 0 l 1 + 346 244.458 l 1 + 153.027 0 l 1 + 21 0 l 1 + 223.97 272.126 l 1 + 30.2705 482 l 1 + 157.183 482 l 1 + 346 284.627 l 1 + 346 482 l 1 + 456 482 l 1 + 456 284.627 l 1 +EndSplineSet +EndChar + +StartChar: uni0498 +Encoding: 1176 1176 496 +Width: 712 +VWidth: 1023 +Flags: W +HStem: -247 92.003<260.819 395.612> -7.36133 117.361<417.847 493.195> 311.847 97.699<178.423 314.178> 320 92.948<198.039 417.721> 552.594 112.379<177.3 213.083> 584 116<212.831 457.04> +VStem: 490.265 135.158<464.639 553.736> 545.137 122.286<155.433 263.496> +LayerCount: 3 +Fore +SplineSet +157.562 671.122 m 0xca + 219.861 690.216 266.109 700 339.369 700 c 0 + 556.428 700 625.423 628.078 625.423 517.33 c 0xc6 + 625.423 467.341 584.053 418.896 547.804 391.241 c 1 + 616.205 361.688 667.423 296.706 667.423 217.296 c 0 + 667.423 158.688 647.555 93.6514 597.852 50.8857 c 1 + 555.744 14.8262 512.81 -3.15137 417.847 -7.36133 c 1 + 410.24 -33.0898 l 1 + 459.636 -48.9521 505.126 -74.8281 505.126 -136 c 0 + 505.126 -201.178 439.507 -247 364.518 -247 c 0 + 349.478 -247 333.077 -245.918 315.062 -242.54 c 1 + 303.772 -240.346 280.907 -235.333 244.931 -226.196 c 1 + 206.592 -215.544 l 1 + 233.527 -126.317 l 1 + 271.468 -135.8 l 1 + 323.794 -149.435 357.139 -154.848 365.278 -154.997 c 1 + 389.967 -153.896 393.89 -148.914 395.876 -144.572 c 0 + 396.147 -143.979 l 1 + 396.461 -143.401 l 0 + 399.288 -138.209 394.868 -131.034 384.54 -126.125 c 1 + 377.843 -123.666 368.627 -120.959 357.917 -118.148 c 1 + 261.124 -92.4902 l 1 + 288.456 -5.45898 l 1 + 223.437 2.09668 179.344 17.9775 126.264 38.3252 c 0 + 108 45.3262 l 1 + 150.408 163.777 l 1 + 169.369 156.755 l 0 + 252.632 127.059 325.52 110 374.687 110 c 1 + 479.663 110.873 545.137 141.321 545.137 212.261 c 0 + 545.137 281.624 453.107 320 340.512 320 c 0xd5 + 335.089 320 325.865 319.098 317.126 318.999 c 1 + 178.423 311.847 l 1 + 178.423 409.546 l 1xe1 + 294.061 412.948 l 1 + 408.393 415.71 490.265 452.927 490.265 508.704 c 0 + 490.265 560.384 435.778 584 363.375 584 c 0xd6 + 297.536 584 258.986 574.823 195.96 557.782 c 0 + 177.952 552.594 l 1 + 137.496 664.973 l 1 + 157.562 671.122 l 0xca +EndSplineSet +EndChar + +StartChar: uni0499 +Encoding: 1177 1177 497 +Width: 469 +VWidth: 1023 +Flags: W +HStem: -247 82.001<126.825 267.881> 216 79.204<101.986 286.024> 369.443 90.558<100.114 161.504> 391 94<94.4323 296.576> +VStem: 306.906 108.08<315.954 375.771> 341.986 106<109.529 193.354> +LayerCount: 3 +Fore +SplineSet +281.91 -6.2959 m 1xd4 + 270.894 -41.2363 l 1 + 325.281 -56.7109 365.986 -80.3457 365.986 -141 c 0 + 365.986 -202.883 307.462 -247 228.784 -247 c 0 + 212.827 -247 195.456 -245.938 176.457 -242.655 c 0 + 166.133 -240.51 146.128 -235.499 114.778 -226.397 c 2 + 83.3633 -217.158 l 1 + 87.3311 -203.667 l 1 + 87.5957 -202.768 l 1 + 106.796 -137.488 l 1 + 135.187 -145.6 l 2 + 183.648 -159.421 220.215 -164.916 229.723 -164.999 c 0 + 257.724 -163.848 265.094 -158.409 268.555 -151.429 c 2 + 268.776 -150.984 l 1 + 269.032 -150.551 l 2 + 274.48 -141.324 264.595 -131.415 253.146 -126.598 c 0 + 244.974 -123.831 235.279 -121.231 223.417 -118.362 c 2 + 133.765 -94.1523 l 1 + 158.215 -2.2207 l 1 + 125.458 3.81836 97.4668 13.9424 65.6777 25.9707 c 2 + 53 30.7676 l 1 + 80.7324 134.764 l 1 + 96.1719 129.075 l 2 + 152.498 108.323 202.167 97 239.805 97 c 0 + 319.784 97.8545 341.986 111.079 341.986 148.508 c 0xd4 + 341.986 196.718 297.487 216 213.904 216 c 2 + 197.039 216 l 1 + 101.986 211.179 l 1 + 101.986 292.923 l 1 + 178.615 295.204 l 2 + 265.806 297.029 306.906 314.554 306.906 353.237 c 0 + 306.906 365.908 275.624 391 231.264 391 c 0xd8 + 181.071 391 155.995 385.543 115.199 373.604 c 2 + 100.984 369.443 l 1 + 73.2324 460.001 l 1xe8 + 87.6455 464.358 l 2 + 130.803 477.406 161.212 485 213.904 485 c 0 + 371.991 485 414.986 420.42 414.986 360.597 c 0xd8 + 414.986 326.379 389.593 292.922 364.978 272.649 c 1 + 412.818 252.076 447.986 206.801 447.986 151.372 c 0 + 447.986 110.022 434.475 64.5479 398.911 34.2744 c 0 + 370.092 10.8604 344.076 -2.49512 281.91 -6.2959 c 1xd4 +EndSplineSet +EndChar + +StartChar: uni049A +Encoding: 1178 1178 498 +Width: 753 +VWidth: 1023 +Flags: W +HStem: 0 21G<128 251> 674 20G<128 251 546.97 724.414> +VStem: 128 123<0 335.209 376.821 694> 611 108<-164 0> +LayerCount: 3 +Fore +SplineSet +251 376.821 m 1 + 566.889 694 l 1 + 724.414 694 l 1 + 391.298 358.443 l 1 + 651.188 93.9736 l 1 + 719 93.9736 l 1 + 719 -164 l 1 + 611 -164 l 1 + 611 0 l 1 + 582.896 0 l 1 + 251 335.209 l 1 + 251 0 l 1 + 128 0 l 1 + 128 694 l 1 + 251 694 l 1 + 251 376.821 l 1 +EndSplineSet +EndChar + +StartChar: uni049B +Encoding: 1179 1179 499 +Width: 533 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 170> 462 20G<60 170 376.956 530.585> +VStem: 60 110<0 249.709 280.379 482> 424 98<-146 0> +LayerCount: 3 +Fore +SplineSet +170 280.379 m 1 + 399.746 482 l 1 + 530.585 482 l 1 + 289.868 269.038 l 1 + 465.157 79.2402 l 1 + 522 79.2402 l 1 + 522 -146 l 1 + 424 -146 l 1 + 424 0 l 1 + 403.883 0 l 1 + 170 249.709 l 1 + 170 0 l 1 + 60 0 l 1 + 60 482 l 1 + 170 482 l 1 + 170 280.379 l 1 +EndSplineSet +EndChar + +StartChar: uni049C +Encoding: 1180 1180 500 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni049D +Encoding: 1181 1181 501 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni049E +Encoding: 1182 1182 502 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni049F +Encoding: 1183 1183 503 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04A0 +Encoding: 1184 1184 504 +Width: 818 +VWidth: 1023 +Flags: W +HStem: 0 21G<182 305 617.094 796.562> 581 113<10 182> +VStem: 182 123<0 335.209 376.821 581> +LayerCount: 3 +Fore +SplineSet +182 0 m 1 + 182 581 l 1 + 10 581 l 1 + 10 694 l 1 + 305 694 l 1 + 305 376.821 l 1 + 618.695 694 l 1 + 778.414 694 l 1 + 444.331 361.945 l 1 + 796.562 0 l 1 + 636.896 0 l 1 + 305 335.209 l 1 + 305 0 l 1 + 182 0 l 1 +EndSplineSet +EndChar + +StartChar: uni04A1 +Encoding: 1185 1185 505 +Width: 579 +VWidth: 1023 +Flags: W +HStem: 0 21G<116 226 441.151 594.476> 385 97<13 116> +VStem: 116 110<0 249.709 280.379 385> +LayerCount: 3 +Fore +SplineSet +13 385 m 1 + 13 482 l 1 + 226 482 l 1 + 226 280.379 l 1 + 455.746 482 l 1 + 586.585 482 l 1 + 345.879 271.948 l 1 + 594.476 0 l 1 + 459.883 0 l 1 + 226 249.709 l 1 + 226 0 l 1 + 116 0 l 1 + 116 385 l 1 + 13 385 l 1 +EndSplineSet +EndChar + +StartChar: uni04A2 +Encoding: 1186 1186 506 +Width: 820 +VWidth: 1023 +Flags: W +HStem: 0 21G<90 217.654> 291 115<217.654 594.897> +VStem: 90 127.654<0 291 406 692> 594.897 135.103<93.9463 291 406 692> 690 108<-164 0> +LayerCount: 3 +Fore +SplineSet +594.897 406 m 1xf0 + 594.897 692 l 1 + 730 692 l 1 + 730 93.9463 l 1xf0 + 798 93.9463 l 1 + 798 -164 l 1 + 690 -164 l 1 + 690 0 l 1xe8 + 594.897 0 l 1 + 594.897 291 l 1 + 217.654 291 l 1 + 217.654 0 l 1 + 90 0 l 1 + 90 692 l 1 + 217.654 692 l 1 + 217.654 406 l 1 + 594.897 406 l 1xf0 +EndSplineSet +EndChar + +StartChar: uni04A3 +Encoding: 1187 1187 507 +Width: 604 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 172> 211 94<172 427.323> +VStem: 60 112<0 211 305 480> 427.323 116.677<79.207 211 305 480> 495 98<-146 0> +LayerCount: 3 +Fore +SplineSet +427.323 0 m 1xf0 + 427.323 211 l 1 + 172 211 l 1 + 172 0 l 1 + 60 0 l 1 + 60 480 l 1 + 172 480 l 1 + 172 305 l 1 + 427.323 305 l 1 + 427.323 480 l 1 + 544 480 l 1 + 544 79.207 l 1xf0 + 593 79.207 l 1 + 593 -146 l 1 + 495 -146 l 1 + 495 0 l 1xe8 + 427.323 0 l 1xf0 +EndSplineSet +EndChar + +StartChar: uni04A4 +Encoding: 1188 1188 508 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04A5 +Encoding: 1189 1189 509 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04A6 +Encoding: 1190 1190 510 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04A7 +Encoding: 1191 1191 511 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04A8 +Encoding: 1192 1192 512 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04A9 +Encoding: 1193 1193 513 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04AA +Encoding: 1194 1194 514 +Width: 772 +VWidth: 1023 +Flags: W +HStem: -247 92.003<406.113 537.175> -7.86035 105.704<558.085 670.756> 583 114<396.412 661.315> +VStem: 109 135.567<239.612 443.332> +LayerCount: 3 +Fore +SplineSet +558.085 -7.86035 m 1 + 551.216 -33.0127 l 1 + 599.701 -49.0195 642 -74.8037 642 -136 c 0 + 642 -201.178 579.918 -247 506.979 -247 c 0 + 492.35 -247 476.397 -245.918 458.873 -242.54 c 1 + 447.892 -240.346 425.653 -235.333 390.658 -226.196 c 1 + 350.387 -215.544 l 1 + 379.567 -126.317 l 1 + 416.471 -135.8 l 1 + 467.367 -149.435 499.802 -154.848 507.717 -154.997 c 1 + 531.732 -153.896 535.548 -148.914 537.479 -144.572 c 0 + 537.743 -143.979 l 1 + 538.048 -143.401 l 0 + 540.798 -138.209 536.499 -131.034 526.454 -126.125 c 1 + 519.94 -123.666 510.975 -120.959 500.558 -118.148 c 1 + 406.621 -92.5479 l 1 + 432.232 -5.21387 l 1 + 335.586 6.81348 259.934 42.2295 208.499 89.8125 c 1 + 142.629 156.153 109 241.753 109 345.048 c 0 + 109 451.139 151.924 540.014 210.594 597.538 c 0 + 270.56 652.347 374.732 697 492.524 697 c 0 + 594.352 697 652.601 685.267 720.085 659.703 c 0 + 738.128 652.869 l 1 + 702.535 547.639 l 1 + 683.584 554.057 l 0 + 620.924 575.093 594.236 583 509.203 583 c 0 + 429.415 583 358.124 550.688 318.792 514.158 c 1 + 269.28 468.978 244.567 413.407 244.567 342.295 c 0 + 244.567 237.798 300.386 166.05 380.083 128.182 c 1 + 423.012 107.519 472.141 97.8438 529.217 97.8438 c 0 + 586.219 97.8438 641.612 107.586 693.454 127.367 c 0 + 713.496 135.015 l 1 + 746.412 38.126 l 1 + 730.381 31.1963 l 0 + 679.967 9.4043 622.731 -3.12305 558.085 -7.86035 c 1 +EndSplineSet +EndChar + +StartChar: uni04AB +Encoding: 1195 1195 515 +Width: 527 +VWidth: 1023 +Flags: W +HStem: -247.275 82.276<222.961 368.448> -6.83105 86.3515<246.665 259.319 379.663 456.016> 16.2959 77.3047<388.014 441.983> 393 98<234.372 457.117> +VStem: 57 108<151.233 329.036> +LayerCount: 3 +Fore +SplineSet +379.663 -6.83105 m 1xd8 + 370.972 -41.1416 l 1 + 415.311 -56.4912 455.451 -80.3496 455.451 -141.208 c 0 + 455.451 -202.681 400.563 -247.275 330.933 -247.275 c 0 + 314.98 -247.275 298.655 -245.727 280.972 -242.67 c 1 + 269.359 -240.489 245.849 -235.512 208.703 -226.397 c 1 + 172.377 -217.158 l 1 + 199.256 -137.488 l 1 + 232.849 -145.6 l 1 + 287.753 -159.421 322.647 -164.916 331.719 -164.999 c 1 + 358.437 -163.848 365.469 -158.409 368.773 -151.429 c 0 + 368.924 -151.108 l 1 + 369.094 -150.793 l 0 + 373.813 -140.962 364.631 -131.252 354.069 -126.598 c 1 + 346.271 -123.831 337.018 -121.231 325.703 -118.362 c 1 + 231.101 -94.1348 l 1 + 259.319 -5.89648 l 1 + 122.087 13.2676 57 102.169 57 233.544 c 0 + 57 308.604 77.8467 369.754 119.478 417.068 c 1 + 164 467.248 239.958 491 342.655 491 c 0 + 388.574 491 432.537 480.379 477.946 460.771 c 0 + 490.714 455.258 l 1 + 461.262 369.847 l 1 + 447.027 374.848 l 0 + 411.454 387.347 377.962 393 347.388 393 c 0 + 220.496 393 165 342.254 165 243.237 c 0 + 165 138.728 214.498 91.6641 333.148 80.332 c 1 + 340.186 79.541 347.235 79.5205 356.853 79.5205 c 0xd8 + 384.154 79.5205 412.507 83.8711 441.983 93.6006 c 0 + 456.239 98.3057 l 1 + 484.882 21.1797 l 1 + 471.466 16.2959 l 0xb8 + 440.048 4.86035 408.329 -3.05664 379.663 -6.83105 c 1xd8 +EndSplineSet +EndChar + +StartChar: uni04AC +Encoding: 1196 1196 516 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04AD +Encoding: 1197 1197 517 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04AE +Encoding: 1198 1198 518 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04AF +Encoding: 1199 1199 519 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04B0 +Encoding: 1200 1200 520 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04B1 +Encoding: 1201 1201 521 +Width: 567 +VWidth: 1023 +Flags: W +HStem: -136 97<77.0166 174.304 339.253 424.93> 462 20G<22 143.64 438.392 554.602> +LayerCount: 3 +Fore +SplineSet +291.017 101.31 m 1 + 446.564 482 l 1 + 554.602 482 l 1 + 339.253 -39 l 1 + 424.93 -39 l 1 + 424.93 -136 l 1 + 299.211 -136 l 1 + 248.302 -259 l 1 + 119.559 -259 l 1 + 174.304 -136 l 1 + 77.0166 -136 l 1 + 77.0166 -39 l 1 + 218.006 -39 l 1 + 234.362 -3.81348 l 1 + 22 482 l 1 + 135.468 482 l 1 + 291.017 101.31 l 1 +EndSplineSet +EndChar + +StartChar: uni04B2 +Encoding: 1202 1202 522 +Width: 740 +VWidth: 1023 +Flags: W +HStem: 0 21G<49 214.56> 674 20G<78.7793 242.898 578.599 736.395> +VStem: 638.118 108<-164 0> +LayerCount: 3 +Fore +SplineSet +413.166 449.128 m 1 + 593.312 694 l 1 + 736.395 694 l 1 + 493.231 359.677 l 1 + 691.752 93.9736 l 1 + 746.118 93.9736 l 1 + 746.118 -164 l 1 + 638.118 -164 l 1 + 638.118 0 l 1 + 608.425 0 l 1 + 403.33 275.987 l 1 + 199.812 0 l 1 + 49 0 l 1 + 323.423 361.378 l 1 + 78.7793 694 l 1 + 227.754 694 l 1 + 413.166 449.128 l 1 +EndSplineSet +EndChar + +StartChar: uni04B3 +Encoding: 1203 1203 523 +Width: 571 +VWidth: 1023 +Flags: W +HStem: 0 21G<38.0283 175.278> 462 20G<32 177.822 427.893 566.517> +VStem: 444.147 98<-146 0> +LayerCount: 3 +Fore +SplineSet +305.199 302.185 m 1 + 443.247 482 l 1 + 566.517 482 l 1 + 369.769 232.822 l 1 + 491.893 79.2402 l 1 + 542.147 79.2402 l 1 + 542.147 -146 l 1 + 444.147 -146 l 1 + 444.147 0 l 1 + 424.411 0 l 1 + 288.995 169.744 l 1 + 160.09 0 l 1 + 38.0283 0 l 1 + 224.384 237.228 l 1 + 32 482 l 1 + 161.881 482 l 1 + 305.199 302.185 l 1 +EndSplineSet +EndChar + +StartChar: uni04B4 +Encoding: 1204 1204 524 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04B5 +Encoding: 1205 1205 525 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04B6 +Encoding: 1206 1206 526 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04B7 +Encoding: 1207 1207 527 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04B8 +Encoding: 1208 1208 528 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04B9 +Encoding: 1209 1209 529 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04BA +Encoding: 1210 1210 530 +Width: 740 +VWidth: 1023 +Flags: W +HStem: -2 20<80 203 537 660> 391 124<320.884 472.537> 671 21<80 203> +VStem: 80 123<-2 308.679 401 692> 537 123<-2 333.943> +LayerCount: 3 +Fore +Refer: 417 1063 N -1 -0 0 -1 740 692 2 +EndChar + +StartChar: uni04BB +Encoding: 1211 1211 531 +Width: 520 +VWidth: 1023 +Flags: W +HStem: -1.92001 20<82.41 159.83 392.58 470> 225.69 69.581<212.814 356.497> 459 21<82.41 159.83> +VStem: 82.41 77.42<-1.92001 195.441 249.7 480> 392.58 77.42<-1.92001 186.775> +LayerCount: 3 +Fore +Refer: 449 1095 N -1 -0 0 -1 520 480 2 +EndChar + +StartChar: uni04BC +Encoding: 1212 1212 532 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04BD +Encoding: 1213 1213 533 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04BE +Encoding: 1214 1214 534 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04BF +Encoding: 1215 1215 535 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04C0 +Encoding: 1216 1216 536 +Width: 1000 +VWidth: 0 +Flags: W +LayerCount: 3 +EndChar + +StartChar: uni04C1 +Encoding: 1217 1217 537 +Width: 903 +VWidth: 1023 +Flags: W +HStem: 0 21<12 184.036 390 513 718.964 891> 674 20<29 197.893 390 513 705.107 874> 739.677 86.4004<406.679 515.242> 884.477 20<330.7 375.5 561.9 600.833> +VStem: 390 123<0 336 376 694> +LayerCount: 3 +Fore +Refer: 222 728 N 1 0 0 1 202.5 211.077 2 +Refer: 400 1046 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04C2 +Encoding: 1218 1218 538 +Width: 786 +VWidth: 1023 +Flags: W +HStem: 0 21<23 184.5 333 453 601.5 763> 462 20<31 191.373 333 453 594.627 755> 529.677 86.4004<284.179 392.742> 674.477 20<208.2 253 439.4 478.333> +VStem: 333 120<0 240 289 482> +LayerCount: 3 +Fore +Refer: 222 728 N 1 0 0 1 80 1.07703 2 +Refer: 432 1078 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D0 +Encoding: 1232 1232 539 +Width: 681 +VWidth: 1023 +Flags: W +HStem: 0 21<20 147.615 526.486 661.2> 182 112<248 425.3> 674 20<272.022 408.499> 739.677 86.4004<265.179 373.742> 884.477 20<189.2 234 420.4 459.333> +LayerCount: 3 +Fore +Refer: 222 728 N 1 0 0 1 61 211.077 2 +Refer: 394 1040 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D1 +Encoding: 1233 1233 540 +Width: 563 +VWidth: 1023 +Flags: W +HStem: 0 90 200 65 400 90 529.677 86.4004<176.179 284.742> 674.477 20<100.2 145 331.4 370.333> +LayerCount: 3 +Fore +Refer: 222 728 N 1 0 0 1 -28 1.07703 2 +Refer: 426 1072 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D2 +Encoding: 1234 1234 541 +Width: 681 +VWidth: 1023 +Flags: W +HStem: 0 21<20 147.615 526.486 661.2> 182 112<248 425.3> 674 20<272.022 408.499> 740 131<149 280 368 499> +VStem: 149 131<740 871> 368 131<740 871> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 31 157 2 +Refer: 394 1040 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D3 +Encoding: 1235 1235 542 +Width: 563 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 550 90<80 171 299 390> +VStem: 80 91<550 640> 299 91<550 640> 345 82<91 224 284 384> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -58 -53 2 +Refer: 426 1072 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D6 +Encoding: 1238 1238 543 +Width: 581 +VWidth: 1023 +Flags: W +HStem: 0 113<203 541.699> 301 113<203 515.699> 581 113<203 541.699> 739.677 86.4004<234.179 342.742> 884.477 20<158.2 203 389.4 428.333> +VStem: 80 123<113 301 414 581> +LayerCount: 3 +Fore +Refer: 222 728 N 1 0 0 1 30 211.077 2 +Refer: 399 1045 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D7 +Encoding: 1239 1239 544 +Width: 562 +VWidth: 1023 +Flags: W +HStem: -9 107<228.873 482.846> 8 107<342.92 483> 184 84<175 399> 388 104<222.389 357.525> 529.677 86.4004<219.179 327.742> 674.477 20<143.2 188 374.4 413.333> +VStem: 45 130<268 340.097> 399 120<268 343.082> +LayerCount: 3 +Fore +Refer: 222 728 N 1 0 0 1 15 1.07703 2 +Refer: 431 1077 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D8 +Encoding: 1240 1240 545 +Width: 864 +VWidth: 1023 +Flags: W +HStem: -8 114<326.532 536.632> 288 107<203.175 660.965> 586 114<272.029 537.236> +LayerCount: 3 +Fore +SplineSet +552.632 556.432 m 1 + 517.035 576.187 477.04 586 432 586 c 0 + 376.259 586 292.764 574.014 237.96 553.479 c 0 + 216.168 545.312 l 1 + 180.577 648.796 l 1 + 197.849 656.177 l 0 + 267.363 685.522 345.65 700 432 700 c 0 + 593.102 700 705.642 629.427 757.889 530.52 c 0 + 786.408 476.529 801 414.776 801 346 c 0 + 801 202.54 737.14 92.1553 631.02 36.2021 c 0 + 573.186 7.00293 507.082 -8 432 -8 c 0 + 269.787 -8 158.388 63.1035 105.18 162.462 c 0 + 76.4346 216.22 63 279.305 63 348.316 c 0 + 63 358.039 63.2822 367.61 63.8418 377.022 c 0 + 64.9092 395 l 1 + 662.226 395 l 1 + 650.128 468.718 608.427 525.691 552.632 556.432 c 1 +660.965 288 m 1 + 203.175 288 l 1 + 217.139 217.448 257.464 164.989 311.377 135.427 c 1 + 346.955 115.772 386.965 106 432 106 c 0 + 534.022 106 599.682 155.913 635.264 218.252 c 1 + 647.448 239.453 656.178 263.484 660.965 288 c 1 +EndSplineSet +EndChar + +StartChar: afii10846 +Encoding: 1241 1241 546 +Width: 523 +VWidth: 1023 +Flags: W +HStem: 0 73 191 73 408 73 +VStem: 64.6 75<107 200> 400.6 75<129 200 263 342> +LayerCount: 3 +Fore +Refer: 431 1077 N -1 -0 0 -1 535 481 2 +EndChar + +StartChar: uni04DA +Encoding: 1242 1242 547 +Width: 864 +VWidth: 1023 +Flags: W +HStem: -8 114<326.532 536.632> 288 107<203.175 660.965> 586 114<272.029 537.236> 740 131<257 388 476 607> +VStem: 257 131<740 871> 476 131<740 871> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 139 157 2 +Refer: 545 1240 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04DB +Encoding: 1243 1243 548 +Width: 523 +VWidth: 1023 +Flags: W +HStem: 0 73 191 73 408 73 550 90<78 169 297 388> +VStem: 64.6 75<107 200> 78 91<550 640> 297 91<550 640> 400.6 75<129 200 263 342> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -60 -53 2 +Refer: 546 1241 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04DC +Encoding: 1244 1244 549 +Width: 903 +VWidth: 1023 +Flags: W +HStem: 678.95 20<36.3799 158.12 447 531.28 820.16 941.9> 760 90<310.5 401.5 529.5 620.5> +VStem: 310.5 91<760 850> 447 84.2803<3.15039 698.95> 529.5 91<760 850> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 172.5 157 2 +Refer: 400 1046 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04DD +Encoding: 1245 1245 550 +Width: 786 +VWidth: 1023 +Flags: W +HStem: 0 21<23 184.5 333 453 601.5 763> 462 20<31 191.373 333 453 594.627 755> 530 131<168 299 387 518> +VStem: 168 131<530 661> 333 120<0 240 289 482> 387 131<530 661> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 50 -53 2 +Refer: 432 1078 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04DE +Encoding: 1246 1246 551 +Width: 680 +VWidth: 1023 +Flags: W +HStem: -21 79<107.95 375.792> 336 71<212 351.334> 627 77<148.815 394.46> 760 90<145 236 364 455> +VStem: 145 91<760 850> 364 91<760 850> 468 85<135.719 272.241> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 7 157 2 +Refer: 401 1047 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04DF +Encoding: 1247 1247 552 +Width: 502 +VWidth: 819 +Flags: W +HStem: -8 75<106.251 289.859> 231 56<99 249.387> 421 64<88.4025 257.497> 550 90<33 124 252 343> +VStem: 33 91<550 640> 252 91<550 640> 278 74<314.439 401.768> 309 76<86.3512 199.074> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -105 -53 2 +Refer: 433 1079 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04E2 +Encoding: 1250 1250 553 +Width: 766 +VWidth: 1023 +Flags: W +HStem: 0 21<80 240.57 563 686> 674 20<80 203 523.528 686> 740 113<140.5 585.5> +VStem: 80 123<160 694> 563 123<0 533> +LayerCount: 3 +Fore +Refer: 191 175 N 1 0 0 1 21.5 32 2 +Refer: 402 1048 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04E3 +Encoding: 1251 1251 554 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 21<63 216.437 392 512> 462 20<63 183 358.563 512> 530 113<49.5 494.5> +VStem: 63 120<155 482> 392 120<0 327> +LayerCount: 3 +Fore +Refer: 191 175 N 1 0 0 1 -69.5 -178 2 +Refer: 434 1080 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04E4 +Encoding: 1252 1252 555 +Width: 766 +VWidth: 1023 +Flags: W +HStem: 0 21<80 240.57 563 686> 674 20<80 203 523.528 686> 740 131<188 319 407 538> +VStem: 80 123<160 694> 188 131<740 871> 407 131<740 871> 563 123<0 533> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 70 157 2 +Refer: 402 1048 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04E5 +Encoding: 1253 1253 556 +Width: 575 +VWidth: 1023 +Flags: W +HStem: 0 21<63 216.437 392 512> 462 20<63 183 358.563 512> 530 131<97 228 316 447> +VStem: 63 120<155 482> 97 131<530 661> 316 131<530 661> 392 120<0 327> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -21 -53 2 +Refer: 434 1080 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04E6 +Encoding: 1254 1254 557 +Width: 784 +VWidth: 1023 +Flags: W +HStem: -7 112<301.375 487.946> 588 113<295.621 481.674> 740 131<217 348 436 567> +VStem: 50 126<241.41 466.352> 217 131<740 871> 436 131<740 871> 608 126<231.566 456.638> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 99 157 2 +Refer: 408 1054 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04E7 +Encoding: 1255 1255 558 +Width: 594 +VWidth: 1023 +Flags: W +HStem: -10 90<225.784 374.967> 400 90<217.913 369.22> 530 131<104 235 323 454> +VStem: 40 119<168.275 325.09> 104 131<530 661> 323 131<530 661> 436.199 118<159.172 317.512> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -14 -53 2 +Refer: 440 1086 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04EC +Encoding: 1260 1260 559 +Width: 702 +VWidth: 1023 +Flags: W +HStem: -10 74<165.479 411.033> 308 67<301 566> 622 75<162.637 408.565> 760 90<161 252 380 471> +VStem: 161 91<760 850> 380 91<760 850> 566 95<221.445 308 375 464.252> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 23 157 2 +Refer: 423 1069 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04ED +Encoding: 1261 1261 560 +Width: 508 +VWidth: 1023 +Flags: W +HStem: -10 68<77.0597 272.66> 226 64<181 344> 425 66<83.4517 262.748> 551 90<41 132 260 351> +VStem: 41 91<551 641> 260 91<551 641> 348 79<135.615 226 290 339.08> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -97 -52 2 +Refer: 455 1101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04EE +Encoding: 1262 1262 561 +Width: 628 +VWidth: 1023 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20<21.9424 126.225 499.495 600.514> 760 73<107 512> +LayerCount: 3 +Fore +Refer: 191 175 N 1 0 0 1 -32 32 2 +Refer: 413 1059 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04EF +Encoding: 1263 1263 562 +Width: 559 +VWidth: 1023 +Flags: W +HStem: 462 20<17.1074 162.843 420.801 554.807> 530 113<29 474> +LayerCount: 3 +Fore +Refer: 191 175 N 1 0 0 1 -90 -178 2 +Refer: 445 1091 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F0 +Encoding: 1264 1264 563 +Width: 628 +VWidth: 1023 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20<21.9424 126.225 499.495 600.514> 760 90<154.5 245.5 373.5 464.5> +VStem: 154.5 91<760 850> 373.5 91<760 850> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 16.5 157 2 +Refer: 413 1059 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F1 +Encoding: 1265 1265 564 +Width: 559 +VWidth: 1023 +Flags: W +HStem: 462 20<17.1074 162.843 420.801 554.807> 530 131<76.5 207.5 295.5 426.5> +VStem: 76.5 131<530 661> 295.5 131<530 661> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -41.5 -53 2 +Refer: 445 1091 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F2 +Encoding: 1266 1266 565 +Width: 628 +VWidth: 1023 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20<21.9424 126.225 499.495 600.514> +LayerCount: 3 +Fore +Refer: 330 733 N 1 0 0 1 9.30273 198.875 2 +Refer: 413 1059 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F3 +Encoding: 1267 1267 566 +Width: 559 +VWidth: 1023 +Flags: W +HStem: 462 20<17.1074 162.843 420.801 554.807> 521.875 278 +LayerCount: 3 +Fore +Refer: 330 733 N 1 0 0 1 -48.6973 -11.125 2 +Refer: 445 1091 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F4 +Encoding: 1268 1268 567 +Width: 740 +VWidth: 1023 +Flags: W +HStem: 0 21<537 660> 177 124<267.463 419.116> 674 20<80 203 537 660> 740 131<185 316 404 535> +VStem: 80 123<358.057 694> 185 131<740 871> 404 131<740 871> 537 123<0 291 383.321 694> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 67 157 2 +Refer: 417 1063 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F5 +Encoding: 1269 1269 568 +Width: 574 +VWidth: 1023 +Flags: W +HStem: 0 21<360.17 437.59> 184.729 69.581<163.503 307.186> 461.92 20<50 127.42 360.17 437.59> 550 90<105 196 324 415> +VStem: 50 77.42<293.225 481.92> 105 91<550 640> 324 91<550 640> 360.17 77.42<0 230.3 284.559 481.92> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -33 -53 2 +Refer: 449 1095 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F8 +Encoding: 1272 1272 569 +Width: 851 +VWidth: 1023 +Flags: W +HStem: 0 113<203 399.707> 314 112<203 392.559> 674 20<80 203 648 771> 740 131<210.5 341.5 429.5 560.5> +VStem: 80 123<113 311 424 694> 210.5 131<740 871> 429.5 131<740 871> 435 126<145.539 274.526> 648 123<0 694> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 92.5 157 2 +Refer: 421 1067 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04F9 +Encoding: 1273 1273 570 +Width: 678 +VWidth: 820 +Flags: W +HStem: 0 69<141 303.757> 229 77<141 299.133> 460 20<60 141 432 514> 550 90<132 223 351 442> +VStem: 60 81<69 227.646 300 480> 132 91<550 640> 328 75<91.2493 201.245> 351 91<550 640> 432 82<0 480> +LayerCount: 3 +Fore +Refer: 128 168 N 1 0 0 1 -6 -53 2 +Refer: 453 1099 N 1 0 0 1 0 0 3 +EndChar + +StartChar: gacute +Encoding: 501 501 571 +Width: 589 +VWidth: 1023 +Flags: W +HStem: -264 107<130.489 340.633> -10 106<231.992 400.981> 387 105<227.837 400.947> 462 20<425.626 522.293> 501 264 +VStem: 44.1934 125<161.09 328.324> 126 318 402.293 120<-92.3037 12 106.606 375.187> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 6 0 2 +Refer: 30 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acaron +Encoding: 462 462 572 +Width: 563 +VWidth: 1023 +Flags: W +HStem: 0 90 200 65 400 90 +LayerCount: 3 +Fore +SplineSet +277 520 m 5 + 125 689 l 5 + 199 760 l 5 + 284 666 l 5 + 371 759 l 5 + 444 695 l 5 + 277 520 l 5 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ocaron +Encoding: 466 466 573 +Width: 594 +VWidth: 1023 +Flags: W +HStem: -10 90<225.784 374.967> 400 90<217.913 369.22> 520 240 +VStem: 40 119<168.275 325.09> 142.093 319 436.199 118<159.172 317.512> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 41.0928 0 2 +Refer: 6 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: gcaron +Encoding: 487 487 574 +Width: 589 +VWidth: 1023 +Flags: W +HStem: -264 107<130.489 340.633> -10 106<231.992 400.981> 387 105<227.837 400.947> 462 20<425.626 522.293> 520 240 +VStem: 44.1934 125<161.09 328.324> 141 319 402.293 120<-92.3037 12 106.606 375.187> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 40 0 2 +Refer: 30 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hcaron +Encoding: 543 543 575 +Width: 584 +VWidth: 1023 +Flags: W +HStem: 0 21<66.291 186.291 397.791 516.791> 380 111<214.967 366.456> 673 20<66.291 186.291> 717 240 +VStem: -29 319 66.291 120<0 361.306 458 693> 397.791 119<0 348.095> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 -130 197 2 +Refer: 3 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: icaron +Encoding: 464 464 576 +Width: 295 +VWidth: 1023 +Flags: W +HStem: 0 21<88 208> 462 20<88 208> 520 240 +VStem: -5 319 88 120<0 482> +LayerCount: 3 +Fore +Refer: 223 711 N 1 0 0 1 -106 0 2 +Refer: 140 305 N 1 0 0 1 0 0 2 +EndChar + +StartChar: jcaron +Encoding: 496 496 577 +Width: 295 +VWidth: 1023 +Flags: W +HStem: 462 20<95 215> 520 240 +VStem: 3 319 95 120<-124.777 482> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 -98 0 2 +Refer: 323 567 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni01E9 +Encoding: 489 489 578 +Width: 558 +VWidth: 1023 +Flags: W +HStem: 0 21<62.7266 182.727 377.427 543.127> 472 20<370.144 535.127> 674 20<62.7266 182.727> 717 240 +VStem: -29 319 62.7266 120<0 240 289 694> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 -130 197 2 +Refer: 22 107 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ucaron +Encoding: 468 468 579 +Width: 586 +VWidth: 1023 +Flags: W +HStem: -10 112<211.106 361.091> 0 21<419.735 517.826> 462 20<62.7266 182.727 397.826 517.826> 520 240 +VStem: 62.7266 120<127.826 482> 129 319 397.826 120<120.712 482> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 28 0 2 +Refer: 14 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: zcircumflex +Encoding: 7825 7825 580 +Width: 546 +VWidth: 1023 +Flags: W +HStem: 0 103<218.835 490.035> 379 103<52.0352 308.835> 541 241 +VStem: 110 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 -20 0 2 +Refer: 25 122 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Zcircumflex +Encoding: 7824 7824 581 +Width: 618 +VWidth: 1023 +Flags: W +HStem: 0 113<180.399 608.199> 581 113<24 416.199> 721 241 +VStem: 141 319 +LayerCount: 3 +Fore +Refer: 219 710 S 1 0 0 1 11 180 2 +Refer: 38 90 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gacute +Encoding: 500 500 582 +Width: 755 +VWidth: 1023 +Flags: W +HStem: -10 114<324.64 534.136> 278 108<369.3 564.6> 586 113<317.604 537.267> 721 264 +VStem: 50 124<247.869 448.158> 190 318 564.6 121<130.36 278> +LayerCount: 3 +Fore +Refer: 148 180 S 1 0 0 1 70 220 2 +Refer: 28 71 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Kcaron +Encoding: 488 488 583 +Width: 700 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203 484.014 660.8> 674 20<80 203 469.513 643.8> 720 240 +VStem: 80 123<0 336 376 694> 172 319 +LayerCount: 3 +Fore +Refer: 223 711 N 1 0 0 1 71 200 2 +Refer: 43 75 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gcaron +Encoding: 486 486 584 +Width: 755 +VWidth: 1023 +Flags: W +HStem: -10 114<324.64 534.136> 278 108<369.3 564.6> 586 113<317.604 537.267> 720 240 +VStem: 50 124<247.869 448.158> 222 319 564.6 121<130.36 278> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 121 200 2 +Refer: 28 71 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ucaron +Encoding: 467 467 585 +Width: 728 +VWidth: 1023 +Flags: W +HStem: -10 112<268.836 458.093> 674 20<80 203 525.199 647.199> 720 240 +VStem: 80 123<160.884 694> 218 319 525.199 123<163.255 694> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 117 200 2 +Refer: 51 85 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ocaron +Encoding: 465 465 586 +Width: 784 +VWidth: 1023 +Flags: W +HStem: -7 112<301.375 487.946> 588 113<295.621 481.674> 720 240 +VStem: 50 126<241.41 466.352> 232 319 608 126<231.566 456.638> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 131 200 2 +Refer: 31 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Icaron +Encoding: 463 463 587 +Width: 283 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203> 674 20<80 203> 720 240 +VStem: -10 319 80 123<0 694> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 -111 200 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Acaron +Encoding: 461 461 588 +Width: 681 +VWidth: 1023 +Flags: W +HStem: 0 21<20 147.615 526.486 661.2> 182 112<248 425.3> 674 20<272.022 408.499> 720 240 +VStem: 192 319 +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 91 200 2 +Refer: 32 65 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Hcaron +Encoding: 542 542 589 +Width: 739 +VWidth: 1023 +Flags: W +HStem: 0 21<80 203 536.899 659.899> 301 114<203 536.899> 674 20<80 203 536.899 659.899> 720 240 +VStem: 80 123<0 301 415 694> 220 319 536.899 123<0 301 415 694> +LayerCount: 3 +Fore +Refer: 223 711 S 1 0 0 1 119 200 2 +Refer: 29 72 N 1 0 0 1 0 0 2 +EndChar +EndChars +EndSplineFont diff --git a/src/Cantarell-Regular.sfd b/src/Cantarell-Regular.sfd new file mode 100644 index 0000000..ceb277e --- /dev/null +++ b/src/Cantarell-Regular.sfd @@ -0,0 +1,19523 @@ +SplineFontDB: 3.0 +FontName: Cantarell-Regular +FullName: Cantarell Regular +FamilyName: Cantarell +Weight: Regular +Copyright: Copyright (c) 2009-2011, Understanding Limited (dave@understandinglimited.com),\nCopyright (c) 2010-2012, Jakub Steiner (jimmac@gmail.com).\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL +UComments: "Cantarell was originally designed by Dave Crossland and is developed by the GNOME community+AA0ACgAA-dave@understandinglimited.com+AA0ACgAA-http://live.gnome.org/CantarellFonts" +Version: 0.0.11 +ItalicAngle: 0 +UnderlinePosition: -113 +UnderlineWidth: 56 +Ascent: 739 +Descent: 261 +LayerCount: 4 +Layer: 0 0 "Back" 1 +Layer: 1 0 "Fore" 0 +Layer: 2 0 "Temp" 1 +Layer: 3 0 "Spiro" 1 +XUID: [1021 472 1916768597 5236576] +FSType: 0 +OS2Version: 0 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 1 +CreationTime: 1236980653 +ModificationTime: 1353003840 +PfmFamily: 33 +TTFWeight: 400 +TTFWidth: 5 +LineGap: 0 +VLineGap: 0 +OS2TypoAscent: 1058 +OS2TypoAOffset: 0 +OS2TypoDescent: -286 +OS2TypoDOffset: 0 +OS2TypoLinegap: 0 +OS2WinAscent: 1058 +OS2WinAOffset: 0 +OS2WinDescent: 286 +OS2WinDOffset: 0 +HheadAscent: 1058 +HheadAOffset: 0 +HheadDescent: -286 +HheadDOffset: 0 +OS2FamilyClass: 2050 +OS2Vendor: 'ABAT' +Lookup: 4 0 1 "'liga' Standard Ligatures in Latin lookup 0" {"'liga' Standard Ligatures in Latin lookup 0-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +LangName: 1033 "" "" "" "" "" "" "" "" "" "Dave Crossland" "" "" "http://abattis.org" "This Font Software is licensed under the SIL Open Font License, Version 1.1.+AA0ACgAA-This license is copied below, and is also available with a FAQ at:+AA0ACgAA-http://scripts.sil.org/OFL" "http://scripts.sil.org/OFL" "" "" "" "" "" "" "Cantarell" +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: Adobe Glyph List +DisplaySize: -48 +AntiAlias: 1 +FitToEm: 1 +WinInfo: 50 25 19 +BeginPrivate: 0 +EndPrivate +Grid +-10.2539 694.336 m 25 + 798.34 694.336 l 29 +-232.91 670.898 m 1 + 625.488 670.898 l 1 + Spiro + -232.91 670.898 { + 625.488 670.898 v + 0 0 z + EndSpiro +-231.445 481.934 m 1 + 632.812 481.934 l 1 + Spiro + -231.445 481.934 { + 632.812 481.934 v + 0 0 z + EndSpiro +EndSplineSet +TeXData: 1 0 0 250299 125149 83433 441600 -782186 83433 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144 +BeginChars: 65536 565 + +StartChar: a +Encoding: 97 97 0 +Width: 491 +VWidth: 1023 +Flags: HMW +HStem: 0 73 217 73<197 355> 408 73 +VStem: 345 82<91 224 284 384> +LayerCount: 4 +Back +SplineSet +367.678 273.926 m 1 + 367.189 213.867 l 1 + 327.789 212.969 288.299 213.725 249.025 210.449 c 0 + 232.652 209.084 216.262 206.742 200.631 201.684 c 0 + 184.998 196.625 170.031 188.649 158.693 176.758 c 0 + 145.972 163.415 138.285 144.807 140.139 126.465 c 0 + 141.225 115.73 145.476 105.434 151.658 96.5908 c 0 + 157.841 87.749 165.909 80.3213 174.807 74.2188 c 0 + 196.106 59.6094 222.263 52.5742 248.083 53.2227 c 0 + 273.903 53.8711 299.372 62.0215 321.291 75.6836 c 0 + 358.992 99.1836 385.908 139.037 394.533 182.617 c 1 + 425.295 169.434 l 1 + 418.467 123.127 395.85 79.2656 361.975 46.9639 c 0 + 328.099 14.6621 283.021 -5.96289 236.33 -9.27734 c 0 + 198.299 -11.9775 159.305 -3.08789 126.955 17.0898 c 0 + 108.452 28.6309 92.123 43.8545 80.2129 62.123 c 0 + 68.3047 80.3926 60.916 101.744 60.0605 123.535 c 0 + 58.6367 159.803 75.8281 195.696 103.029 219.727 c 0 + 126.895 240.811 157.425 253.094 188.459 260.229 c 0 + 219.494 267.364 251.402 269.859 283.205 271.484 c 0 + 311.34 272.922 339.508 273.6 367.678 273.926 c 1 + Spiro + 367.678 273.926 v + 367.189 213.867 v + 249.025 210.449 o + 158.693 176.758 c + 140.139 126.465 c + 174.807 74.2188 c + 321.291 75.6836 o + 394.533 182.617 v + 425.295 169.434 v + 236.33 -9.27734 o + 126.955 17.0898 c + 60.0605 123.535 c + 103.029 219.727 c + 283.205 271.484 o + 0 0 z + EndSpiro +90.8223 461.914 m 1 + 109.002 468.749 127.604 474.463 146.486 479.004 c 0 + 179.166 486.863 212.712 491.338 246.322 491.46 c 0 + 279.934 491.582 313.959 487.451 345.217 475.098 c 0 + 374.278 463.611 400.645 443.71 416.018 416.504 c 0 + 424.145 402.121 429.148 386.092 431.639 369.76 c 0 + 434.129 353.428 434.16 336.833 434.084 320.312 c 2 + 432.619 0 l 1 + 377.443 0 l 1 + 353.518 56.1523 l 1 + 353.518 299.316 l 2 + 353.518 318.965 354.369 338.975 349.123 357.91 c 0 + 346.327 368.003 341.683 377.601 335.307 385.909 c 0 + 328.931 394.217 320.91 401.213 312.014 406.738 c 0 + 289.891 420.48 263.189 425.183 237.146 425.415 c 0 + 211.105 425.646 185.186 421.723 159.67 416.504 c 0 + 141.604 412.809 123.693 408.369 105.959 403.32 c 1 + 90.8223 461.914 l 1 + Spiro + 90.8223 461.914 v + 146.486 479.004 o + 345.217 475.098 o + 416.018 416.504 o + 434.084 320.312 [ + 432.619 0 v + 377.443 0 v + 353.518 56.1523 v + 353.518 299.316 ] + 349.123 357.91 o + 312.014 406.738 o + 159.67 416.504 o + 105.959 403.32 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +225.649 419.963 m 0 + 184.821 419.963 114.029 407.676 73 394 c 1 + 73 459 l 1 + 125 479 179 489 235 489 c 128 + 291 489 333 480 360 462 c 128 + 410.668 428.222 427 392.18 427 313 c 2 + 427 0 l 1 + 366 0 l 1 + 348 45 l 1 + 303.269 7.57198 253.538 -11.5224 199.567 -11.5224 c 0 + 115.225 -11.5224 45 41.9252 45 120 c 128 + 45 200.053 99.774 245.757 163 263 c 1 + 211 275 271 282 345 284 c 1 + 345 288 l 2 + 345 323 342 347 336 363 c 0 + 321.972 401.075 285.189 419.963 225.649 419.963 c 0 + Spiro + 225.649 419.963 o + 177.099 416.278 o + 121.684 406.798 o + 73 394 v + 73 459 v + 152.5 481.5 o + 235 489 o + 286.25 486.006 o + 328.074 476.988 o + 360 462 o + 399.86 425.993 o + 420.902 379.26 o + 427 313 [ + 427 0 v + 366 0 v + 348 45 v + 301.678 13.7365 o + 252.045 -5.19842 o + 199.567 -11.5224 o + 122.077 5.19363 o + 66.2897 51.2602 o + 45 120 o + 61.511 188.764 o + 104.359 236.089 o + 163 263 v + 215.018 273.325 o + 275.657 280.339 o + 345 284 v + 345 288 ] + 344.002 319.416 o + 340.996 344.244 o + 336 363 o + 314.416 394.665 o + 277.559 413.669 o + 0 0 z + EndSpiro +126.151 129.527 m 0 + 126.151 95.1297 151.208 72.0786 179 59 c 128 + 188.494 54.5321 199.548 52.5595 211.987 52.5595 c 0 + 221.821 52.5595 232.521 53.7924 244 56 c 0 + 283 63 316 81 345 109 c 1 + 345 224 l 1 + 279 222 237 219 217 215 c 0 + 180 207 153 191 137 165 c 128 + 129.704 153.144 126.151 141.288 126.151 129.527 c 0 + Spiro + 126.151 129.527 o + 133.662 98.8879 o + 152.97 75.4338 o + 179 59 o + 188.997 55.3474 o + 200.028 53.235 o + 211.987 52.5595 o + 222.096 52.9601 o + 232.795 54.1284 o + 244 56 o + 281.039 66.6154 o + 314.624 84.3916 o + 345 109 v + 345 224 v + 286.976 221.669 o + 244.373 218.663 o + 217 215 o + 183.401 204.273 o + 156.606 187.721 o + 137 165 o + 130.949 153.159 o + 127.34 141.304 o + 0 0 z + EndSpiro +EndSplineSet +Layer: 2 +SplineSet +355.469 111.377 m 5 + 345.166 100.033 333.445 89.9648 320.662 81.5127 c 4 + 307.539 72.8369 293.274 65.8643 278.297 61.0566 c 4 + 262.492 55.9844 245.891 53.3301 229.293 53.5137 c 4 + 214.197 53.6816 199.041 56.0977 184.958 61.5391 c 4 + 171.838 66.6074 159.645 74.6836 151.248 85.9668 c 4 + 142.515 97.7012 138.234 112.415 137.939 127.039 c 4 + 137.723 137.758 139.538 148.54 143.512 158.497 c 4 + 147.035 167.326 152.301 175.451 158.897 182.296 c 4 + 165.531 189.178 173.441 194.752 181.871 199.259 c 4 + 199.99 208.945 220.196 214.165 240.477 217.457 c 4 + 261.5 220.868 282.82 222.035 304.104 222.818 c 4 + 327.076 223.664 350.062 224.11 373.047 224.609 c 5 + 373.047 284.647 l 5 + 343.852 284.583 314.65 283.748 285.523 281.764 c 4 + 260.025 280.027 234.549 277.385 209.463 272.495 c 4 + 185.335 267.793 161.49 261.039 139.236 250.596 c 4 + 123.539 243.229 108.65 233.927 95.9609 222.109 c 4 + 83.4844 210.492 73.2793 196.393 66.5117 180.745 c 4 + 58.9844 163.34 55.6465 144.262 55.7051 125.299 c 4 + 55.7871 98.4707 62.6738 71.29 77.8184 49.1445 c 4 + 91.8428 28.6357 112.67 13.3164 135.568 3.67773 c 4 + 160.682 -6.89258 188.125 -11.4854 215.371 -11.3096 c 4 + 234.035 -11.1885 252.709 -8.67188 270.637 -3.47754 c 4 + 287.578 1.43066 303.805 8.7207 318.895 17.8506 c 4 + 333.522 26.6992 347.115 37.248 359.375 49.1641 c 5 + 355.469 111.377 l 5 +375.908 0 m 5 + 436.816 0 l 5 + 436.816 320.641 l 6 + 436.816 437.236 373.298 489.009 244.955 489.009 c 4 + 193.184 489.009 136.191 479.002 82.6777 459.424 c 5 + 82.6777 393.295 l 5 + 146.632 413.743 197.099 419.398 235.818 419.398 c 4 + 316.305 419.398 355.025 388.074 355.025 306.283 c 6 + 355.025 51.3398 l 5 + 375.908 0 l 5 +EndSplineSet +Layer: 3 +SplineSet +373.291 284.424 m 1 + 373.047 224.609 l 1 + 341.135 224.013 309.2 223.666 277.344 221.68 c 0 + 260.002 220.598 242.646 218.909 225.678 215.17 c 0 + 208.709 211.43 192.049 205.53 177.49 196.045 c 0 + 166.137 188.647 156.131 179.021 149.045 167.473 c 0 + 141.958 155.922 137.908 142.457 137.939 128.906 c 0 + 137.973 114.537 142.643 100.248 150.928 88.5078 c 0 + 159.214 76.7676 170.963 67.6299 184.082 61.7676 c 0 + 206.045 51.9531 231.25 51.1738 254.883 55.6641 c 0 + 281.143 60.6543 306.094 71.7793 328.125 86.9141 c 0 + 340.137 95.166 351.283 104.676 361.328 115.234 c 1 + 363.281 49.8047 l 1 + 344.652 32.8906 323.297 18.9844 300.293 8.78906 c 0 + 267.145 -5.90137 230.518 -13.0967 194.336 -10.7422 c 0 + 161.436 -8.60156 128.563 2.09375 103.027 22.9492 c 0 + 72.6445 47.7637 54.4844 86.748 54.6875 125.977 c 0 + 54.8604 159.416 68.2529 192.576 91.3086 216.797 c 0 + 114.757 241.43 146.853 256.277 179.688 265.137 c 0 + 242.449 282.07 308.287 283.871 373.291 284.424 c 1 + Spiro + 373.291 284.424 v + 373.047 224.609 v + 341.163 224.027 o + 309.19 223.188 o + 277.344 221.68 o + 260.029 220.344 o + 242.743 218.276 o + 225.677 215.169 o + 208.895 210.663 o + 192.667 204.381 o + 177.49 196.045 o + 166.655 187.925 o + 157.037 178.359 o + 149.044 167.472 o + 143.014 155.364 o + 139.227 142.347 o + 137.939 128.906 o + 139.478 114.669 o + 143.892 100.993 o + 150.928 88.5073 o + 160.28 77.6694 o + 171.509 68.6885 o + 184.082 61.7676 o + 206.924 54.8296 o + 230.928 53.0703 o + 254.883 55.6641 o + 280.622 62.6113 o + 305.204 73.2065 o + 328.125 86.9141 o + 339.828 95.5684 o + 350.936 105.043 o + 361.328 115.234 v + 363.281 49.8047 v + 343.804 33.9338 o + 322.686 20.1825 o + 300.293 8.78906 o + 266.165 -3.31766 o + 230.485 -9.99346 o + 194.336 -10.7422 o + 161.748 -5.69839 o + 130.708 5.43525 o + 103.027 22.9492 o + 76.9678 51.9385 o + 60.3667 87.3828 o + 54.6875 125.977 o + 59.1265 158.97 o + 71.6221 189.946 o + 91.3086 216.797 o + 117.318 238.291 o + 147.423 254.154 o + 179.688 265.137 o + 243.266 277.532 o + 308.219 282.944 o + 0 0 z + EndSpiro +83.0078 458.984 m 1 + 97.0781 464.289 111.43 468.848 125.977 472.656 c 0 + 166.09 483.157 207.561 488.369 249.023 488.77 c 0 + 270.926 488.979 292.926 487.684 314.379 483.267 c 0 + 335.832 478.85 356.768 471.121 375 458.984 c 0 + 398.006 443.67 416.074 421.065 425.788 395.191 c 0 + 435.502 369.316 436.523 341.114 436.523 313.477 c 2 + 436.523 0 l 1 + 375.977 0 l 1 + 355.469 50.7812 l 1 + 354.98 287.598 l 2 + 354.955 299.782 355.062 311.98 354.235 324.137 c 0 + 353.408 336.293 351.488 348.471 347.168 359.863 c 0 + 340.842 376.544 329.034 391.057 314.019 400.689 c 0 + 299.003 410.322 281.373 415.26 263.672 417.48 c 0 + 219.076 423.074 173.742 416.07 129.883 406.25 c 0 + 114.08 402.712 98.4336 398.479 83.0078 393.555 c 1 + 83.0078 458.984 l 1 + Spiro + 83.0078 458.984 v + 97.1548 464.036 o + 111.513 468.603 o + 125.977 472.656 o + 166.451 481.405 o + 207.649 486.751 o + 249.023 488.77 o + 270.913 488.418 o + 292.789 486.701 o + 314.379 483.267 o + 335.558 477.712 o + 355.967 469.683 o + 375 458.984 o + 396.214 441.408 o + 413.431 419.803 o + 425.788 395.191 o + 432.884 368.675 o + 435.9 341.167 o + 436.523 313.477 [ + 436.523 0 v + 375.977 0 v + 355.469 50.7812 v + 354.98 287.598 ] + 354.96 299.772 o + 354.791 311.981 o + 354.235 324.137 o + 352.998 336.258 o + 350.734 348.251 o + 347.168 359.863 o + 339.109 375.706 o + 327.868 389.543 o + 314.019 400.689 o + 298.242 408.823 o + 281.238 414.285 o + 263.672 417.48 o + 218.957 419.239 o + 174.107 414.762 o + 129.883 406.25 o + 114.15 402.484 o + 98.4897 398.244 o + 83.0078 393.555 v + 0 0 z + EndSpiro +EndSplineSet +EndChar + +StartChar: d +Encoding: 100 100 1 +Width: 576 +VWidth: 1023 +Flags: HMW +HStem: 0 73 408 73 651 20 +VStem: 56 85<138 347> 420 83<79 415 471 671> +LayerCount: 4 +Back +SplineSet +407.227 737.793 m 5 + 487.305 737.793 l 5 + 487.305 0 l 5 + 431.641 0 l 5 + 407.227 56.1523 l 5 + 407.227 737.793 l 5 + Spiro + 407.227 737.793 v + 487.305 737.793 v + 487.305 0 v + 431.641 0 v + 407.227 56.1523 v + 0 0 z + EndSpiro +317.871 490.723 m 4 + 345.368 487.835 372.386 480.747 397.949 470.215 c 4 + 412.635 464.164 426.85 456.971 440.43 448.73 c 5 + 414.062 402.832 l 5 + 398.656 410.052 382.633 415.962 366.211 420.41 c 4 + 335.111 428.834 302.273 432.145 270.508 426.758 c 4 + 249.643 423.219 229.355 415.787 211.623 404.235 c 4 + 193.891 392.684 178.89 377.015 167.969 358.887 c 4 + 147.717 325.27 141.606 284.852 141.602 245.605 c 4 + 141.597 207.99 147.029 169.516 164.551 136.23 c 4 + 178.215 110.273 199.643 88.3984 225.586 74.707 c 4 + 254.09 59.6641 287.219 54.4414 319.336 57.1289 c 4 + 368.223 61.2188 415.162 82.5176 452.148 114.746 c 5 + 470.703 69.3359 l 5 + 421.938 23.8525 357.593 -5.4873 291.016 -9.27734 c 4 + 255.725 -11.2861 219.805 -5.85742 187.435 8.34277 c 4 + 155.064 22.5439 126.682 45.7246 106.445 74.707 c 4 + 74.2988 120.746 63.1855 178.712 63.4766 234.863 c 4 + 63.6445 267.123 67.4551 299.472 76.3281 330.487 c 4 + 85.2002 361.503 99.5508 391.162 120.117 416.016 c 4 + 141.887 442.324 170.469 462.843 202.148 475.586 c 4 + 238.6 490.249 278.796 494.824 317.871 490.723 c 4 + Spiro + 317.871 490.723 o + 397.949 470.215 o + 440.43 448.73 v + 414.062 402.832 v + 366.211 420.41 o + 270.508 426.758 o + 167.969 358.887 o + 141.602 245.605 o + 164.551 136.23 o + 225.586 74.707 o + 319.336 57.1289 o + 452.148 114.746 v + 470.703 69.3359 v + 291.016 -9.27734 o + 106.445 74.707 o + 63.4766 234.863 o + 120.117 416.016 o + 202.148 475.586 o + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +297 59 m 0 + 346.031 59 372.189 70.2163 406 89 c 1 + 406 407 l 1 + 371 422 336 428 298 428 c 0 + 190.779 428 141 349.688 141 243 c 0 + 141 134.525 191.432 59 297 59 c 0 +279 -9 m 0 + 131.092 -9 56 92.0478 56 236 c 0 + 56 319 79 384 125 430 c 0 + 169 473 224 494 290 494 c 0 + 329 494 368 487 406 471 c 1 + 406 671 l 1 + 489 671 l 1 + 489 0 l 1 + 430 0 l 1 + 416 34 l 1 + 373 6 327 -9 279 -9 c 0 +EndSplineSet +Layer: 3 +SplineSet +406.055 54.6387 m 1 + 429.785 0.585938 l 1 + 488.672 0.585938 l 1 + 488.672 670.752 l 1 + 406.055 670.752 l 1 + 406.055 54.6387 l 1 +412.207 468.164 m 1 + 372.217 485.742 334.863 494.531 290.039 494.531 c 0 + 161.719 494.531 55.8105 406.201 55.8105 236.572 c 0 + 55.8105 92.8711 136.23 -9.08203 275.098 -9.08203 c 0 + 335.303 -9.08203 382.764 10.2539 422.314 38.3789 c 1 + 422.314 38.3789 412.646 92.4316 412.207 92.8711 c 1 + 378.369 73.5352 348.047 58.5938 297.07 58.5938 c 0 + 193.799 58.5938 140.625 131.982 140.625 243.164 c 0 + 140.625 355.664 197.754 429.932 297.949 429.932 c 0 + 348.047 429.932 376.611 420.703 412.207 404.443 c 1 + 412.207 468.164 l 1 +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 2 +Width: 523 +VWidth: 1023 +Flags: HMW +HStem: 0 73 217 73 408 73 +VStem: 59.4 75<139 218 281 352> 395.4 75<281 374> +LayerCount: 4 +Back +SplineSet +288.574 421.875 m 4 + 261.783 423.777 234.129 418.16 211.426 403.809 c 4 + 192.4 391.783 177.476 373.921 166.992 354.004 c 4 + 152.503 326.477 145.485 295.265 145.02 264.16 c 5 + 396.973 264.16 l 5 + 397.535 284.588 396.349 305.111 392.578 325.195 c 4 + 388.662 346.055 381.426 366.729 368.164 383.301 c 4 + 358.681 395.15 346.299 404.597 332.524 410.971 c 4 + 318.751 417.344 303.713 420.8 288.574 421.875 c 4 + Spiro + 288.574 421.875 o + 211.426 403.809 o + 166.992 354.004 o + 145.02 264.16 v + 396.973 264.16 v + 392.578 325.195 o + 368.164 383.301 o + 0 0 z + EndSpiro +291.992 491.699 m 4 + 315.915 492.065 340.012 488.857 362.574 480.9 c 4 + 385.139 472.943 406.02 459.999 422.59 442.74 c 4 + 448.426 415.83 462.568 379.48 468.949 342.727 c 4 + 474.198 312.496 474.609 281.659 474.609 250.977 c 6 + 474.609 203.613 l 5 + 143.066 203.613 l 5 + 145.374 171.953 157.877 141.154 178.111 116.696 c 4 + 196.351 94.6514 220.659 77.8633 247.364 67.5928 c 4 + 271.318 58.3809 297.09 54.3496 322.754 54.1992 c 4 + 335.284 54.125 347.812 54.9346 360.26 56.3652 c 4 + 372.777 57.8037 385.221 59.8652 397.553 62.4531 c 4 + 409.855 65.0352 422.046 68.1504 434.082 71.7773 c 5 + 448.242 17.0898 l 5 + 431.678 11.3887 414.824 6.52441 397.766 2.54395 c 4 + 380.708 -1.43652 363.44 -4.52734 346.049 -6.60742 c 4 + 328.762 -8.6748 311.355 -9.75781 293.945 -9.76562 c 4 + 252.619 -9.78418 210.517 -3.76758 173.533 14.6719 c 4 + 139.367 31.7051 110.91 59.6895 92.7891 93.291 c 4 + 71.8252 132.164 63.9551 177.027 63.4766 221.191 c 4 + 62.8623 277.83 73.5664 335.74 102.359 384.519 c 4 + 123.482 420.303 154.949 449.998 192.268 468.275 c 4 + 223.178 483.416 257.577 491.172 291.992 491.699 c 4 + Spiro + 291.992 491.699 o + 422.589 442.74 o + 468.95 342.726 o + 474.609 250.977 [ + 474.609 203.613 v + 143.066 203.613 v + 178.112 116.696 o + 247.364 67.5928 o + 322.754 54.1992 o + 360.26 56.3652 o + 397.552 62.4536 o + 434.082 71.7773 v + 448.242 17.0898 v + 397.765 2.54377 o + 346.049 -6.60708 o + 293.945 -9.76562 o + 173.533 14.6714 o + 92.7891 93.2905 o + 63.4766 221.191 o + 102.359 384.519 o + 192.268 468.276 o + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +278.4 490 m 0 + 405.873 490 476.4 408.843 476.4 270 c 2 + 476.4 226 l 1 + 471.4 218 l 1 + 143.4 218 l 1 + 146.4 172 162.4 134 190.4 104 c 128 + 218.4 74 263.4 60 324.4 60 c 0 + 366.4 60 410.4 67 457.4 82 c 1 + 457.4 17 l 1 + 408.4 0 356.4 -9 302.4 -9 c 0 + 144.966 -9 59.4004 77.2035 59.4004 233 c 0 + 59.4004 305 78.4004 365 115.4 415 c 1 + 154.4 465 208.4 490 278.4 490 c 0 +394.4 281 m 1 + 394.4 359.863 360.145 425 285.4 425 c 128 + 195.655 425 154.007 358.465 145.4 281 c 1 + 394.4 281 l 1 +EndSplineSet +Layer: 3 +SplineSet +473.373 217.604 m 1 + 477.68 226.218 l 1 + 477.68 270.146 l 2 + 477.68 396.33 419.109 490.215 280.005 490.215 c 0 + 137.025 490.215 60.7969 375.229 60.7969 233.108 c 0 + 60.7969 81.9453 141.331 -9.35547 304.123 -9.35547 c 0 + 359.247 -9.35547 409.635 -0.742188 459.162 16.4844 c 1 + 459.162 81.9453 l 1 + 419.971 69.4561 375.612 59.5508 325.655 59.5508 c 0 + 199.471 59.5508 144.346 130.61 144.346 237.416 c 0 + 144.346 339.482 189.135 424.754 278.713 424.754 c 0 + 360.971 424.754 395.854 364.892 395.854 280.912 c 1 + 137.025 280.912 l 1 + 137.025 217.604 l 1 + 473.373 217.604 l 1 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 3 +Width: 520 +VWidth: 1023 +Flags: HMW +HStem: 0 73 408 73 +VStem: 60 83<0 400 452 670> 390 82<0 395> +LayerCount: 4 +Back +SplineSet +111.328 407.715 m 5 + 163.195 444.5 221.329 473.907 283.691 486.328 c 4 + 321.136 493.784 360.896 494.004 396.565 480.388 c 4 + 432.234 466.77 461.886 438.359 477.051 403.32 c 4 + 486.854 380.672 491.05 355.958 492.7 331.335 c 4 + 494.346 306.712 493.838 282.002 493.652 257.324 c 6 + 491.699 0 l 5 + 411.621 0 l 5 + 411.133 290.527 l 6 + 411.109 304.671 410.988 318.881 408.688 332.836 c 4 + 406.387 346.791 401.864 360.465 394.531 372.559 c 4 + 382.554 392.312 363 407.104 341.021 414.221 c 4 + 319.045 421.338 295.245 421.293 272.461 417.48 c 4 + 221.074 408.882 173.324 384.945 129.395 356.934 c 5 + 111.328 407.715 l 5 + Spiro + 111.328 407.715 v + 283.691 486.328 o + 477.051 403.32 o + 493.652 257.324 [ + 491.699 0 v + 411.621 0 v + 411.133 290.527 ] + 394.531 372.559 o + 272.461 417.48 o + 129.395 356.934 v + 0 0 z + EndSpiro +92.7734 737.793 m 5 + 172.852 737.793 l 5 + 172.852 0 l 5 + 92.7734 0 l 5 + 92.7734 737.793 l 5 + Spiro + 92.7734 737.793 v + 172.852 737.793 v + 172.852 0 v + 92.7734 0 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +379 310 m 6 + 379 390.255 351.708 427 273 427 c 132 + 235 427 192 415 143 391 c 5 + 143 0 l 5 + 60 0 l 5 + 60 670 l 5 + 143 670 l 5 + 143 452 l 5 + 201 481 254 496 304 496 c 132 + 405.391 496 460 431.195 460 329 c 6 + 460 0 l 5 + 379 0 l 5 + 379 310 l 6 +EndSplineSet +Layer: 3 +SplineSet +90.4492 670.522 m 1 + 90.4492 0.423828 l 1 + 173.059 0.423828 l 1 + 173.059 670.522 l 1 + 90.4492 670.522 l 1 +167.347 388.422 m 1 + 215.682 412.59 267.971 426.651 305.32 426.651 c 0 + 379.141 426.651 408.582 391.938 408.582 309.328 c 2 + 408.582 0.423828 l 1 + 490.312 0.423828 l 1 + 490.312 329.103 l 2 + 490.312 431.484 438.021 496.079 328.609 496.079 c 0 + 278.078 496.079 223.151 478.94 161.195 445.984 c 1 + 167.347 388.422 l 1 +EndSplineSet +EndChar + +StartChar: i +Encoding: 105 105 4 +Width: 202 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 142> 463 20G<60 142> 586 83<60 142> +VStem: 60 82<0 483 586 669> +LayerCount: 4 +Back +SplineSet +80.5664 693.848 m 5xf0 + 175.293 693.848 l 5 + 175.293 601.562 l 5 + 80.5664 601.562 l 5 + 80.5664 693.848 l 5xf0 + Spiro + 80.5664 693.848 v + 175.293 693.848 v + 175.293 601.562 v + 80.5664 601.562 v + 0 0 z + EndSpiro +87.8906 482.422 m 5xe8 + 167.969 482.422 l 5 + 167.969 0 l 5 + 87.8906 0 l 5 + 87.8906 482.422 l 5xe8 + Spiro + 87.8906 482.422 v + 167.969 482.422 v + 167.969 0 v + 87.8906 0 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +60 483 m 1 + 142 483 l 1 + 142 0 l 1 + 60 0 l 1 + 60 483 l 1 +60 669 m 1 + 142 669 l 1 + 142 586 l 1 + 60 586 l 1 + 60 669 l 1 +EndSplineSet +Layer: 3 +SplineSet +84.8057 669.595 m 1 + 167.4 669.595 l 1 + 167.4 586.562 l 1 + 84.8057 586.562 l 1 + 84.8057 669.595 l 1 +84.8057 482.88 m 1 + 167.4 482.88 l 1 + 167.4 -0.387695 l 1 + 84.8057 -0.387695 l 1 + 84.8057 482.88 l 1 +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 5 +Width: 520 +VWidth: 1023 +Flags: HMW +HStem: 0 73 408 73 +VStem: 66 82<0 397> 404 81<0 392> +LayerCount: 4 +Back +SplineSet +106.445 407.715 m 5 + 158.312 444.5 216.446 473.907 278.809 486.328 c 4 + 316.253 493.784 356.014 494.004 391.683 480.388 c 4 + 427.352 466.77 457.003 438.359 472.168 403.32 c 4 + 481.973 380.672 486.167 355.958 487.817 331.335 c 4 + 489.463 306.712 488.955 282.002 488.77 257.324 c 6 + 486.816 0 l 5 + 406.738 0 l 5 + 406.25 290.527 l 6 + 406.227 304.671 406.105 318.881 403.805 332.836 c 4 + 401.504 346.791 396.981 360.465 389.648 372.559 c 4 + 377.671 392.312 358.117 407.104 336.139 414.221 c 4 + 314.162 421.338 290.362 421.293 267.578 417.48 c 4 + 216.191 408.882 168.441 384.945 124.512 356.934 c 5 + 106.445 407.715 l 5 + Spiro + 106.445 407.715 v + 278.809 486.328 o + 472.168 403.32 o + 488.77 257.324 [ + 486.816 0 v + 406.738 0 v + 406.25 290.527 ] + 389.648 372.559 o + 267.578 417.48 o + 124.512 356.934 v + 0 0 z + EndSpiro +87.8906 482.422 m 5 + 144.043 482.422 l 5 + 167.969 426.27 l 5 + 167.969 0 l 5 + 87.8906 0 l 5 + 87.8906 482.422 l 5 + Spiro + 87.8906 482.422 v + 144.043 482.422 v + 167.969 426.27 v + 167.969 0 v + 87.8906 0 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +275 423 m 128 + 237 423 191 411 142 388 c 1 + 142 0 l 1 + 60 0 l 1 + 60 480 l 1 + 117 480 l 1 + 133 444 l 1 + 194 476 253 492 304 492 c 128 + 355 492 393 477 420 448 c 128 + 447 419 460 379 460 327 c 2 + 460 0 l 1 + 379 0 l 1 + 379 307 l 2 + 379 348 371 378 355 396 c 128 + 339 414 313 423 275 423 c 128 +EndSplineSet +Layer: 3 +SplineSet +165.725 385.342 m 1 + 213.729 409.344 265.661 423.309 302.756 423.309 c 0 + 376.07 423.309 405.31 388.832 405.31 306.79 c 2 + 405.31 0 l 1 + 486.48 0 l 1 + 486.48 326.428 l 2 + 486.48 428.109 434.548 492.261 325.885 492.261 c 0 + 275.698 492.261 221.148 475.24 159.615 442.51 c 1 + 165.725 385.342 l 1 +146.088 480.041 m 1 + 89.3555 480.041 l 1 + 89.3555 0 l 1 + 171.398 0 l 1 + 171.398 423.744 l 1 + 146.088 480.041 l 1 +EndSplineSet +EndChar + +StartChar: o +Encoding: 111 111 6 +Width: 569 +VWidth: 1023 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> +VStem: 46 83<137.066 343.078> 427 83<137.24 343.792> +LayerCount: 4 +Back +SplineSet +291.504 423.34 m 4 + 217.773 423.34 141.602 364.258 141.602 249.512 c 4 + 141.602 144.531 204.59 58.5938 299.316 58.5938 c 4 + 383.301 58.5938 449.707 128.418 449.707 234.863 c 4 + 449.707 358.887 368.164 423.34 291.504 423.34 c 4 +298.34 491.699 m 4 + 426.758 491.699 527.832 406.25 527.832 250.977 c 4 + 527.832 89.3555 428.223 -9.76562 290.527 -9.76562 c 4 + 159.668 -9.76562 63.4766 81.543 63.4766 235.84 c 4 + 63.4766 393.066 159.18 491.699 298.34 491.699 c 4 +EndSplineSet +Fore +SplineSet +278 426 m 4 + 180.733 426 129 341.669 129 240 c 4 + 129 138.009 180.204 55 278 55 c 4 + 376.609 55 427 136.851 427 240 c 4 + 427 342.87 376.152 426 278 426 c 4 +276 -10 m 4 + 128.482 -10 46 89.5998 46 240 c 4 + 46 390.669 131.058 490 279 490 c 4 + 427.562 490 510 391.803 510 241 c 4 + 510 90.6329 423.967 -10 276 -10 c 4 +EndSplineSet +Layer: 3 +SplineSet +61.5176 240.408 m 0 + 61.5176 84.2227 146.943 -9.83301 293.207 -9.83301 c 0 + 436.879 -9.83301 526.191 86.3809 526.191 240.408 c 0 + 526.191 396.162 440.763 490.22 294.932 490.22 c 0 + 150.828 490.22 61.5176 394.006 61.5176 240.408 c 0 +144.787 240.408 m 0 + 144.787 352.154 203.465 425.934 294.068 425.934 c 0 + 385.105 425.934 442.92 352.154 442.92 240.408 c 0 + 442.92 128.231 385.105 54.4531 294.068 54.4531 c 0 + 203.465 54.4531 144.787 128.231 144.787 240.408 c 0 +EndSplineSet +EndChar + +StartChar: s +Encoding: 115 115 7 +Width: 497 +VWidth: 1023 +Flags: HMW +HStem: 0 73<112.539 330.762> 408 73<295.706 414.2> +VStem: 80 85 360 85 +LayerCount: 4 +Back +SplineSet +288.086 491.699 m 4 + 350.586 491.699 375.977 482.422 410.645 472.168 c 5 + 390.137 411.133 l 5 + 358.398 419.922 323.73 429.199 274.902 429.199 c 4 + 173.34 429.199 158.203 375.977 158.203 354.492 c 4 + 158.203 268.066 437.5 288.574 437.5 138.184 c 4 + 437.5 77.6367 398.926 -9.76562 227.539 -9.76562 c 4 + 191.406 -9.76562 133.789 -1.95312 63.4766 26.8555 c 5 + 85.9375 87.4023 l 5 + 150.391 63.4766 188.965 53.2227 230.957 53.2227 c 4 + 289.062 53.2227 350.098 65.918 350.098 128.906 c 4 + 350.098 221.191 75.1953 184.57 75.1953 346.191 c 4 + 75.1953 400.391 119.629 491.699 288.086 491.699 c 4 +EndSplineSet +Fore +SplineSet +249.2 58 m 0 + 302.2 58 355.2 77 355.2 125 c 0 + 355.2 144 346.2 160 327.2 173 c 0 + 311.2 184 289.2 197 262.2 205 c 2 + 190.2 227 l 1 + 130.759 251.059 83.0537 274.583 83.0537 350.362 c 0 + 83.0537 416.628 126.466 449.907 174.2 469 c 0 + 206.412 481.019 241.397 487.029 279.489 487.029 c 0 + 320.629 487.029 365.392 480.019 414.2 466 c 1 + 414.2 399 l 1 + 366.2 412 326.2 419 294.2 419 c 0 + 238.2 419 208.2 416 182.2 392 c 0 + 171.2 382 166.2 371 166.2 361 c 0 + 166.2 332 178.2 323 195.2 312 c 0 + 202.2 307 217.2 299 239.2 291 c 2 + 282.2 275 l 2 + 348.2 251 390.2 234 408.2 214 c 0 + 429.485 190.532 440.941 159.021 440.941 127.596 c 0 + 440.941 101.442 433.006 75.3485 416.2 54 c 0 + 383.2 12 330.2 -10 256.2 -10 c 0 + 182.2 -10 123.2 -1 79.2002 18 c 1 + 79.2002 91 l 1 + 133.2 70 190.2 58 249.2 58 c 0 +EndSplineSet +Layer: 3 +SplineSet +270.707 491.177 m 0 + 320.393 491.177 367.463 482.459 407.123 471.128 c 1 + 407.123 404.445 l 1 + 370.514 414.471 312.548 424.059 268.094 424.059 c 0 + 212.742 424.059 158.699 404.881 158.699 359.555 c 0 + 158.699 318.586 212.742 302.896 274.631 280.233 c 0 + 353.516 251.469 433.709 222.268 433.709 130.308 c 0 + 433.709 39.2188 353.516 -9.59473 241.943 -9.59473 c 0 + 187.464 -9.59473 119.91 -1.75 72.4043 18.2979 c 1 + 72.4043 90.6465 l 1 + 126.447 69.291 185.721 58.3955 242.379 58.3955 c 0 + 305.139 58.3955 347.414 82.3652 347.414 124.643 c 0 + 347.414 174.326 284.219 194.375 215.793 219.653 c 0 + 137.779 248.418 75.8906 272.824 75.8906 353.453 c 0 + 75.8906 460.668 187.464 491.177 270.707 491.177 c 0 +EndSplineSet +EndChar + +StartChar: bar +Encoding: 124 124 8 +Width: 431 +VWidth: 1023 +Flags: W +VStem: 176 80<-150 782> +LayerCount: 4 +Fore +SplineSet +256 782 m 5 + 256 -150 l 1 +176 782 m 1 + 256 782 l 1 + 256 -150 l 1 + 176 -150 l 1 + 176 782 l 1 +EndSplineSet +Layer: 3 +SplineSet +175.781 781.738 m 5 + 255.859 781.738 l 5 + 255.859 -150.391 l 5 + 175.781 -150.391 l 5 + 175.781 781.738 l 5 +255.859 781.738 m 5 + 255.859 -150.391 l 5 +EndSplineSet +EndChar + +StartChar: b +Encoding: 98 98 9 +Width: 553 +VWidth: 1023 +Flags: HMW +HStem: 0 73<176.849 341.916> 408 73<151.423 339.129> 651 20 +VStem: 65 85<77.1611 89 407 415.828> 413 85<137.983 349.728> +LayerCount: 4 +Back +SplineSet +92.7734 737.793 m 1 + 172.852 737.793 l 1 + 172.852 56.1523 l 1 + 148.438 0 l 1 + 92.7734 0 l 1 + 92.7734 737.793 l 1 + Spiro + 172.852 737.793 v + 172.852 56.1523 v + 148.438 0 v + 92.7734 0 v + 92.7734 737.793 v + 0 0 z + EndSpiro +287.109 491.699 m 0 + 322.421 493.809 358.394 488.486 390.795 474.289 c 0 + 423.195 460.093 451.554 436.807 471.68 407.715 c 0 + 499.995 366.788 511.777 316.311 514.16 266.602 c 0 + 515.854 231.195 513.115 195.452 504.463 161.078 c 0 + 495.806 126.703 480.646 93.6836 458.008 66.4062 c 0 + 436.202 40.1318 407.646 19.5957 375.977 6.83594 c 0 + 339.532 -7.84766 299.33 -12.4111 260.254 -8.30078 c 0 + 232.758 -5.4082 205.74 1.67676 180.176 12.207 c 0 + 165.489 18.2568 151.273 25.4502 137.695 33.6914 c 1 + 164.062 79.5898 l 1 + 179.473 72.3799 195.494 66.4688 211.914 62.0117 c 0 + 243.012 53.5703 275.857 50.2266 307.617 55.6641 c 0 + 328.467 59.2334 348.721 66.7168 366.436 78.2764 c 0 + 384.15 89.8359 399.168 105.461 410.156 123.535 c 0 + 423.744 145.887 431.102 171.624 434.242 197.594 c 0 + 437.383 223.562 436.848 249.924 433.594 275.879 c 0 + 430.547 300.183 424.756 324.398 413.574 346.191 c 0 + 400.171 372.314 378.576 394.146 352.539 407.715 c 0 + 323.973 422.604 290.901 427.854 258.789 425.293 c 0 + 209.857 421.393 162.78 400.156 125.977 367.676 c 1 + 107.422 413.086 l 1 + 156.338 458.37 220.569 487.724 287.109 491.699 c 0 + Spiro + 287.109 491.699 o + 471.68 407.715 o + 514.16 266.602 o + 458.008 66.4062 o + 375.977 6.83594 o + 260.254 -8.30078 o + 180.176 12.207 o + 137.695 33.6914 v + 164.062 79.5898 v + 211.914 62.0117 o + 307.617 55.6641 o + 410.156 123.535 o + 433.594 275.879 o + 413.574 346.191 o + 352.539 407.715 o + 258.789 425.293 o + 125.977 367.676 v + 107.422 413.086 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +257 59 m 4 + 207.969 59 181.811 70.2163 148 89 c 5 + 148 406 l 5 + 183 421 218 428 256 428 c 4 + 360.857 428 413 351.033 413 243 c 4 + 413 134.525 362.568 59 257 59 c 4 +275 -9 m 4 + 422.908 -9 498 92.0478 498 236 c 4 + 498 319 475 384 429 430 c 4 + 385 473 330 494 264 494 c 4 + 225 494 186 487 148 471 c 5 + 148 671 l 5 + 65 671 l 5 + 65 0 l 5 + 124 0 l 5 + 138 34 l 5 + 181 6 227 -9 275 -9 c 4 +EndSplineSet +Layer: 3 +Refer: 1 100 S -1 0 0 1 579.15 0 2 +EndChar + +StartChar: l +Encoding: 108 108 10 +Width: 308 +VWidth: 1023 +Flags: HMW +HStem: 0 21G<103.4 183.4> 651 20G<103.4 183.4> +VStem: 65.4004 80<0 671> +LayerCount: 4 +Fore +SplineSet +203.646 65.2197 m 0 + 222.646 65.2197 238.896 69.3867 261 76 c 1 + 261 14 l 1 + 243.646 8 210.646 -10 164 -10 c 0 + 101 -10 61 37 60 105 c 1 + 60.4004 671 l 1 + 140.4 671 l 1 + 140.146 134.22 l 2 + 140.146 97 142.047 65.2197 203.646 65.2197 c 0 +EndSplineSet +Layer: 3 +SplineSet +97.6562 670.898 m 5 + 177.734 670.898 l 5 + 177.734 0 l 1 + 97.6562 0 l 1 + 97.6562 670.898 l 5 +EndSplineSet +EndChar + +StartChar: w +Encoding: 119 119 11 +Width: 817 +VWidth: 1023 +Flags: W +HStem: 0 21G<195.697 285.598 527.555 622.303> 462 20G<27 118.485 365.614 457.139 699.515 791> +LayerCount: 4 +Fore +SplineSet +27 482 m 1 + 112 482 l 1 + 243 78 l 1 + 372 482 l 1 + 451 482 l 1 + 575 78 l 1 + 706 482 l 1 + 791 482 l 1 + 615 0 l 1 + 534 0 l 1 + 408 391 l 1 + 279 0 l 1 + 203 0 l 1 + 27 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +26.8555 482.422 m 21 + 112.305 482.422 l 13 + 260.254 24.9023 l 21 + 226.562 24.9023 l 5 + 372.07 482.422 l 13 + 450.684 482.422 l 21 + 591.309 24.9023 l 5 + 557.617 24.9023 l 13 + 705.566 482.422 l 29 + 791.016 482.422 l 29 + 614.746 0 l 29 + 534.18 0 l 29 + 392.09 441.895 l 21 + 425.293 441.895 l 5 + 278.809 0 l 13 + 203.125 0 l 29 + 26.8555 482.422 l 21 +EndSplineSet +EndChar + +StartChar: exclam +Encoding: 33 33 12 +Width: 317 +VWidth: 1023 +Flags: W +HStem: 0 98<110 208> 674 20G<117 200> +VStem: 110 98<0 98> 117 83<224 694> +LayerCount: 4 +Fore +SplineSet +117 694 m 1xd0 + 200 694 l 1 + 200 224 l 1 + 117 224 l 1 + 117 694 l 1xd0 +110 98 m 1xe0 + 208 98 l 1 + 208 0 l 1 + 110 0 l 1 + 110 98 l 1xe0 +EndSplineSet +Layer: 3 +SplineSet +109.863 97.6562 m 1 + 207.52 97.6562 l 1 + 207.52 0 l 1 + 109.863 0 l 1 + 109.863 97.6562 l 1 +117.188 693.848 m 1 + 200.195 693.848 l 1 + 200.195 223.633 l 1 + 117.188 223.633 l 1 + 117.188 693.848 l 1 +EndSplineSet +EndChar + +StartChar: space +Encoding: 32 32 13 +Width: 273 +VWidth: 1023 +Flags: W +LayerCount: 4 +EndChar + +StartChar: u +Encoding: 117 117 14 +Width: 520 +VWidth: 1023 +Flags: HMW +HStem: 0 73 408 73 +VStem: 66 81<88 480> 391 82<83 480> +LayerCount: 4 +Back +SplineSet +89.8438 482.422 m 5 + 169.922 482.422 l 5 + 170.41 191.406 l 6 + 170.434 177.263 170.555 163.053 172.855 149.098 c 4 + 175.156 135.143 179.679 121.469 187.012 109.375 c 4 + 198.989 89.6211 218.543 74.8301 240.521 67.7129 c 4 + 262.498 60.5957 286.298 60.6406 309.082 64.4531 c 4 + 360.469 73.0518 408.219 96.9883 452.148 125 c 5 + 470.215 74.2188 l 5 + 418.348 37.4346 360.214 8.02637 297.852 -4.39453 c 4 + 260.406 -11.8525 220.646 -12.0723 184.977 1.54492 c 4 + 149.309 15.1631 119.656 43.5742 104.492 78.6133 c 4 + 94.6904 101.262 90.4922 125.976 88.8438 150.599 c 4 + 87.1963 175.222 87.7031 199.932 87.8906 224.609 c 6 + 89.8438 482.422 l 5 + Spiro + 89.8438 482.422 v + 169.922 482.422 v + 170.41 191.406 ] + 187.012 109.375 o + 309.082 64.4531 o + 452.148 125 v + 470.215 74.2188 v + 297.852 -4.39453 o + 104.492 78.6133 o + 87.8906 224.609 [ + 0 0 z + EndSpiro +408.691 482.422 m 5 + 488.77 482.422 l 5 + 488.77 0 l 5 + 432.617 0 l 5 + 408.691 56.1523 l 5 + 408.691 482.422 l 5 + Spiro + 408.691 482.422 v + 488.77 482.422 v + 488.77 0 v + 432.617 0 v + 408.691 56.1523 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +141 173 m 2 + 141 93.468 167.94 57 246 57 c 132 + 284 57 329 69 378 92 c 1 + 378 480 l 1 + 460 480 l 1 + 460 0 l 1 + 403 0 l 1 + 387 36 l 1 + 326 4 268 -12 217 -12 c 132 + 115.208 -12 60 50.7264 60 153 c 2 + 60 480 l 1 + 141 480 l 1 + 141 173 l 2 +EndSplineSet +Layer: 3 +Refer: 5 110 S -1 0 -0 -1 577.3 480.541 2 +EndChar + +StartChar: p +Encoding: 112 112 15 +Width: 568 +VWidth: 1023 +Flags: HMW +HStem: -261 73 -13 64<176 361> 423 68<200 363> +VStem: 87 83<-261 11 66 404> 436 85<134 344> +LayerCount: 4 +Back +SplineSet +87.8906 482.422 m 5x60 + 143.555 482.422 l 5 + 167.969 426.27 l 5 + 167.969 -259.277 l 5 + 87.8906 -259.277 l 5 + 87.8906 482.422 l 5x60 + Spiro + 87.8906 482.422 v + 143.555 482.422 v + 167.969 426.27 v + 167.969 -259.277 v + 87.8906 -259.277 v + 0 0 z + EndSpiro +284.18 491.211 m 4xa0 + 319.49 493.315 355.461 487.986 387.859 473.791 c 4 + 420.26 459.594 448.619 436.312 468.75 407.227 c 4 + 497.075 366.305 508.877 315.825 511.23 266.113 c 4 + 512.905 230.787 510.142 195.127 501.479 160.839 c 4 + 492.812 126.55 477.666 93.6201 455.078 66.4062 c 4 + 433.271 40.1328 404.717 19.5967 373.047 6.83594 c 4 + 336.603 -7.84863 296.4 -12.4121 257.324 -8.30078 c 4 + 229.828 -5.4082 202.811 1.67676 177.246 12.207 c 4 + 162.56 18.2568 148.344 25.4502 134.766 33.6914 c 5 + 161.133 79.5898 l 5 + 176.543 72.3799 192.564 66.4688 208.984 62.0117 c 4 + 240.082 53.5703 272.928 50.2275 304.688 55.6641 c 4 + 325.537 59.2324 345.791 66.7158 363.506 78.2754 c 4 + 381.221 89.835 396.239 105.46 407.227 123.535 c 4 + 420.771 145.817 428.123 171.467 431.272 197.352 c 4 + 434.422 223.236 433.901 249.516 430.664 275.391 c 4 + 427.623 299.695 421.828 323.911 410.645 345.703 c 4 + 397.239 371.824 375.645 393.656 349.609 407.227 c 4 + 321.043 422.116 287.972 427.365 255.859 424.805 c 4 + 206.929 420.902 159.852 399.666 123.047 367.188 c 5 + 104.492 412.598 l 5 + 153.4 457.892 217.638 487.244 284.18 491.211 c 4xa0 + Spiro + 284.18 491.211 o + 468.75 407.227 o + 511.23 266.113 o + 455.078 66.4062 o + 373.047 6.83594 o + 257.324 -8.30078 o + 177.246 12.207 o + 134.766 33.6914 v + 161.133 79.5898 v + 208.984 62.0117 o + 304.688 55.6641 o + 407.227 123.535 o + 430.664 275.391 o + 410.645 345.703 o + 349.609 407.227 o + 255.859 424.805 o + 123.047 367.188 v + 104.492 412.598 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +279 423 m 4 + 229.969 423 203.811 411.784 170 393 c 5 + 170 75 l 5 + 205 60 241 52 278 52 c 4 + 381.492 52 436 132.174 436 239 c 4 + 436 346.935 384.187 423 279 423 c 4 +170 -261 m 5 + 87 -261 l 5 + 87 481 l 5 + 146 481 l 5 + 161 448 l 5 + 204 476 249 491 297 491 c 4 + 345 491 385 480 419 459 c 4 + 486 416 521 346 521 246 c 4 + 521 163 497 98 451 53 c 4 + 407 10 352 -13 286 -13 c 4 + 247 -13 208 -5 170 11 c 5 + 170 -261 l 5 +EndSplineSet +Layer: 3 +SplineSet +170.166 427.344 m 1 + 146.436 481.396 l 1 + 87.5488 481.396 l 1 + 87.5488 -261.035 l 1 + 170.166 -261.035 l 1 + 170.166 427.344 l 1 +164.014 13.8184 m 1 + 204.004 -3.75977 241.357 -12.5488 286.182 -12.5488 c 0 + 414.502 -12.5488 520.41 75.7812 520.41 245.41 c 0 + 520.41 389.111 439.99 491.064 301.123 491.064 c 0 + 240.918 491.064 193.457 471.729 153.906 443.604 c 1 + 153.906 443.604 163.574 389.551 164.014 389.111 c 1 + 197.852 408.447 228.174 423.389 279.15 423.389 c 0 + 382.422 423.389 435.596 350 435.596 238.818 c 0 + 435.596 126.318 378.467 52.0508 278.271 52.0508 c 0 + 228.174 52.0508 199.609 61.2793 164.014 77.5391 c 1 + 164.014 13.8184 l 1 +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 16 +Width: 564 +VWidth: 1023 +Flags: HMW +HStem: -13 65<208.871 394.861> 423 68<206.084 370.361> +VStem: 49 85<134.785 342.818> 400 83<-261 11 66.7342 403.769> +LayerCount: 4 +Back +SplineSet +317.383 489.746 m 4xa0 + 345.157 485.537 371.869 475.941 397.461 464.355 c 4 + 411.921 457.81 426.082 450.609 439.941 442.871 c 5 + 413.574 396.973 l 5 + 397.955 403.688 381.989 409.607 365.723 414.551 c 4 + 334.756 423.963 302.109 429.994 270.02 425.781 c 4 + 248.963 423.018 228.457 415.676 210.762 403.93 c 4 + 193.068 392.185 178.323 376.172 167.48 357.91 c 4 + 153.788 334.848 146.248 308.497 142.943 281.881 c 4 + 139.638 255.266 140.15 228.197 144.043 201.66 c 4 + 147.368 178.986 153.448 156.54 164.062 136.23 c 4 + 177.653 110.225 199.123 88.3574 225.098 74.707 c 4 + 253.623 59.7168 286.732 54.4854 318.848 57.1289 c 4 + 367.75 61.1543 414.736 82.4316 451.66 114.746 c 5 + 470.215 69.3359 l 5 + 421.229 24.1465 357.05 -5.21484 290.527 -9.27734 c 4 + 255.207 -11.4346 219.211 -6.15723 186.797 8.03906 c 4 + 154.385 22.2363 126.045 45.5762 105.957 74.707 c 4 + 78.627 114.342 66.6816 162.9 63.4766 210.938 c 4 + 61.0684 247.029 63.2471 283.58 71.8457 318.716 c 4 + 80.4434 353.852 96.1719 387.504 119.629 415.039 c 4 + 141.74 440.996 170.266 461.303 201.66 474.609 c 4 + 237.945 489.99 278.418 495.649 317.383 489.746 c 4xa0 + Spiro + 317.383 489.746 o + 397.461 464.355 o + 439.941 442.871 v + 413.574 396.973 v + 365.723 414.551 o + 270.02 425.781 o + 167.48 357.91 o + 144.043 201.66 o + 164.062 136.23 o + 225.098 74.707 o + 318.848 57.1289 o + 451.66 114.746 v + 470.215 69.3359 v + 290.527 -9.27734 o + 105.957 74.707 o + 63.4766 210.938 o + 119.629 415.039 o + 201.66 474.609 o + 0 0 z + EndSpiro +430.176 482.422 m 5x60 + 486.328 482.422 l 5 + 486.328 -259.277 l 5 + 406.25 -259.277 l 5 + 406.25 416.504 l 5 + 430.176 482.422 l 5x60 + Spiro + 430.176 482.422 v + 486.328 482.422 v + 486.328 -259.277 v + 406.25 -259.277 v + 406.25 416.504 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +400 393 m 1 + 366.176 411.791 340.047 423 291 423 c 0 + 185.83 423 134 346.911 134 239 c 0 + 134 132.139 188.486 52 292 52 c 0 + 329 52 365 60 400 75 c 1 + 400 393 l 1 +284 -13 m 0 + 218 -13 163 10 119 53 c 0 + 73 98 49 163 49 246 c 0 + 49 346 84 416 151 459 c 0 + 185 480 225 491 273 491 c 0 + 321 491 366 476 409 448 c 1 + 424 481 l 1 + 483 481 l 1 + 483 -261 l 1 + 400 -261 l 1 + 400 11 l 1 + 362 -5 323 -13 284 -13 c 0 +EndSplineSet +Layer: 3 +Refer: 15 112 S -1 0 0 1 576.221 0 2 +EndChar + +StartChar: m +Encoding: 109 109 17 +Width: 783 +VWidth: 1023 +Flags: HMW +HStem: 0 73 408 73 +VStem: 60 82<0 400> 349 81<0 382> 642 81<0 390> +LayerCount: 4 +Back +SplineSet +590.82 491.211 m 4xdc + 621.904 492.241 653.613 486.396 680.82 471.333 c 4 + 708.032 456.27 729.8 431.849 742.188 403.32 c 4 + 752.017 380.684 756.216 355.963 757.852 331.339 c 4 + 759.492 306.715 758.975 282.003 758.789 257.324 c 6 + 756.836 0 l 5 + 676.758 0 l 5 + 676.27 290.527 l 6 + 676.245 304.672 676.128 318.883 673.828 332.839 c 4 + 671.533 346.795 667.017 360.475 659.668 372.559 c 4 + 651.147 386.563 638.838 398.232 624.385 405.969 c 4 + 609.932 413.705 593.535 417.517 577.148 417.969 c 4 + 545.303 418.848 514.326 407.777 485.352 394.531 c 4 + 460.908 383.357 437.258 370.51 414.062 356.934 c 5 + 381.348 407.715 l 5 + 401.153 421.898 421.865 434.826 443.359 446.289 c 4 + 489.087 470.676 539.023 489.497 590.82 491.211 c 4xdc + Spiro + 590.82 491.211 o + 742.188 403.32 o + 758.789 257.324 [ + 756.836 0 v + 676.758 0 v + 676.27 290.527 ] + 659.668 372.559 o + 577.148 417.969 o + 485.352 394.531 o + 414.062 356.934 v + 381.348 407.715 v + 443.359 446.289 o + 0 0 z + EndSpiro +301.27 491.211 m 4 + 331.676 492.837 362.805 486.654 389.068 471.247 c 4 + 415.332 455.84 435.888 431.362 447.754 403.32 c 4 + 457.367 380.6 461.576 355.92 463.287 331.309 c 4 + 464.997 306.698 464.543 281.994 464.355 257.324 c 6 + 462.402 0 l 5 + 382.324 0 l 5 + 381.836 290.527 l 6 + 381.812 304.668 381.677 318.877 379.361 332.828 c 4 + 377.047 346.777 372.532 360.446 365.234 372.559 c 4 + 357.174 385.937 345.733 397.279 332.201 405.078 c 4 + 318.668 412.877 303.192 417.097 287.598 417.969 c 4 + 255.733 419.751 224.669 408.139 195.801 394.531 c 4 + 171.495 383.074 147.9 370.162 124.512 356.934 c 5 + 106.445 407.715 l 5 + 126.508 421.518 147.168 434.465 168.457 446.289 c 4 + 209.666 469.176 254.199 488.691 301.27 491.211 c 4 + Spiro + 301.27 491.211 o + 447.754 403.32 o + 464.355 257.324 [ + 462.402 0 v + 382.324 0 v + 381.836 290.527 ] + 365.234 372.559 o + 287.598 417.969 o + 195.801 394.531 o + 124.512 356.934 v + 106.445 407.715 v + 168.457 446.289 o + 0 0 z + EndSpiro +87.8906 482.422 m 5xbc + 144.043 482.422 l 5 + 167.969 426.27 l 5 + 167.969 0 l 5 + 87.8906 0 l 5 + 87.8906 482.422 l 5xbc + Spiro + 87.8906 482.422 v + 144.043 482.422 v + 167.969 426.27 v + 167.969 0 v + 87.8906 0 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +642 307 m 2 + 642 380.793 614.794 425.667 547.37 425.667 c 0 + 512.901 425.667 472.111 411.444 425 383 c 1 + 429 369 430 350 430 327 c 2 + 430 0 l 1 + 349 0 l 1 + 349 307 l 2 + 349 381.077 321.601 425.75 253.877 425.75 c 0 + 222.391 425.75 184.875 413.5 142 389 c 1 + 142 0 l 1 + 60 0 l 1 + 60 480 l 1 + 117 480 l 1 + 133 444 l 1 + 166 465 193 477 213 483 c 0 + 236.903 489.594 259.277 492.961 280.122 492.961 c 0 + 337.502 492.961 378.57 466.026 404 430 c 1 + 447 459 480 476 502 482 c 0 + 527.235 489.15 550.877 492.762 572.779 492.762 c 0 + 671.498 492.762 723 423.922 723 327 c 2 + 723 0 l 1 + 642 0 l 1 + 642 307 l 2 +EndSplineSet +Layer: 3 +SplineSet +420.898 360.352 m 1 + 440.133 374.965 460.754 387.759 482.422 398.438 c 0 + 497.012 405.629 512.065 411.93 527.568 416.855 c 0 + 547.358 423.142 568.257 427.123 588.887 424.773 c 0 + 602.695 423.201 616.216 418.727 627.993 411.355 c 0 + 642.441 402.319 654.062 388.906 661.147 373.41 c 0 + 670.571 352.801 671.421 329.451 671.421 306.789 c 2 + 671.421 0 l 1 + 752.593 0 l 1 + 752.593 326.428 l 2 + 752.593 341.562 752.275 356.771 749.59 371.668 c 0 + 746.904 386.563 742.041 401.066 735.142 414.539 c 0 + 723.081 438.086 704.702 458.561 681.855 471.902 c 0 + 654.995 487.59 623.096 493.047 591.997 492.261 c 0 + 574.546 491.816 557.129 489.37 540.312 484.693 c 0 + 521.729 479.523 504.009 471.611 486.988 462.535 c 0 + 461.949 449.182 438.066 433.749 414.789 417.52 c 1 + 420.898 360.352 l 1 +127.93 360.352 m 1 + 147.164 374.965 167.785 387.759 189.453 398.438 c 0 + 204.045 405.629 219.096 411.93 234.6 416.855 c 0 + 254.39 423.142 275.289 427.123 295.92 424.773 c 0 + 309.727 423.201 323.245 418.727 335.027 411.355 c 0 + 349.473 402.319 361.094 388.906 368.18 373.41 c 0 + 377.602 352.801 378.454 329.451 378.454 306.789 c 2 + 378.454 0 l 1 + 459.625 0 l 1 + 459.625 326.428 l 2 + 459.625 341.562 459.307 356.771 456.621 371.668 c 0 + 453.936 386.563 449.07 401.066 442.171 414.539 c 0 + 430.113 438.086 411.732 458.561 388.889 471.902 c 0 + 362.025 487.59 330.129 493.047 299.029 492.261 c 0 + 281.579 491.816 264.162 489.37 247.345 484.693 c 0 + 228.762 479.523 211.037 471.611 194.02 462.535 c 0 + 168.98 449.182 145.098 433.749 121.82 417.52 c 1 + 127.93 360.352 l 1 +146.088 480.041 m 1 + 89.3555 480.041 l 1 + 89.3555 0 l 1 + 171.398 0 l 1 + 171.398 423.744 l 1 + 146.088 480.041 l 1 +EndSplineSet +EndChar + +StartChar: c +Encoding: 99 99 18 +Width: 467 +VWidth: 1023 +Flags: HMW +HStem: 0 73<209.074 393.763> 408 73<206.038 398.764> +LayerCount: 4 +Fore +SplineSet +285.156 -10.0259 m 4 + 136.608 -10.0259 56.6 80.0416 56.6 232.689 c 4 + 56.6 309.993 76.5886 371.143 115.636 418 c 4 + 156.543 467.089 218.199 491.068 302.251 491.068 c 4 + 341.559 491.068 382.731 481.089 426.636 462 c 5 + 406.636 404 l 5 + 369.479 417.005 335.773 423.107 306.321 423.107 c 4 + 191.518 423.107 135.034 360.635 135.034 247.229 c 4 + 135.034 129.647 185.128 69.91 291.636 57 c 4 + 298.969 56.1111 306.5 55.6667 314.218 55.6667 c 4 + 341.229 55.6667 370.525 61.1111 401.636 72 c 5 + 420.636 17 l 5 + 374.636 -1 331.636 -10 289.636 -10 c 4 + 288.136 -10.0172 286.642 -10.0259 285.156 -10.0259 c 4 +EndSplineSet +Layer: 3 +SplineSet +292.969 491.211 m 0 + 340.848 491.885 388.72 481.529 432.617 462.402 c 1 + 413.086 403.809 l 1 + 375.501 416.815 335.638 423.965 295.898 422.363 c 0 + 273.515 421.461 251.098 417.523 230.396 408.96 c 0 + 209.697 400.396 190.924 386.983 176.758 369.629 c 0 + 160.768 350.039 150.963 325.914 145.975 301.123 c 0 + 140.986 276.333 140.162 250.832 141.602 225.586 c 0 + 143.393 194.197 149.071 162.4 164.062 134.766 c 0 + 176.225 112.346 194.652 93.418 216.635 80.4814 c 0 + 238.617 67.5449 263.707 60.3945 289.062 57.6172 c 0 + 329 53.2422 369.806 58.9609 407.715 72.2656 c 1 + 427.246 17.0898 l 1 + 383.697 0.244141 337.219 -9.44043 290.527 -9.76562 c 0 + 255.424 -10.0098 219.982 -4.67188 187.608 8.89941 c 0 + 155.233 22.4697 126.4 44.7051 105.957 73.2422 c 0 + 90.2686 95.1426 79.5254 120.365 72.9473 146.49 c 0 + 66.3672 172.614 63.6914 199.623 63.4766 226.562 c 0 + 63.209 260.012 66.584 293.61 75.2148 325.928 c 0 + 83.8467 358.244 98.29 389.279 119.629 415.039 c 0 + 140.42 440.137 167.572 459.795 197.631 472.389 c 0 + 227.691 484.98 260.381 490.752 292.969 491.211 c 0 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 19 +Width: 387 +VWidth: 1023 +Flags: W +HStem: -9 68<205.76 345.524> 415 68<25 106 187 347> +VStem: 106 81<78.6659 415 483 603> +LayerCount: 4 +Back +SplineSet +39.0625 482.422 m 5 + 331.055 482.422 l 5 + 331.055 419.434 l 5 + 39.0625 419.434 l 5 + 39.0625 482.422 l 5 + Spiro + 39.0625 482.422 v + 331.055 482.422 v + 331.055 419.434 v + 39.0625 419.434 v + 0 0 z + EndSpiro +104.004 620.605 m 5 + 184.082 620.605 l 5 + 184.082 154.785 l 6 + 184.082 133.482 184.768 111.391 194.285 92.332 c 4 + 199.045 82.8027 205.865 74.2754 214.311 67.7852 c 4 + 222.756 61.2949 232.747 56.9092 243.164 54.6875 c 4 + 261.914 50.6885 281.381 53.5 300.293 56.6406 c 4 + 312.831 58.7227 325.346 60.9502 337.891 62.9883 c 5 + 349.121 8.30078 l 5 + 337.292 5.31445 325.411 2.53125 313.477 0 c 4 + 275.211 -8.11719 235.188 -14.4756 197.266 -4.88281 c 4 + 181.061 -0.783203 165.561 6.31543 152.236 16.4072 c 4 + 138.91 26.499 127.859 39.54 119.936 54.2588 c 4 + 112.014 68.9775 107.245 85.2676 104.863 101.812 c 4 + 102.482 118.357 102.457 135.141 102.539 151.855 c 6 + 104.004 452.148 l 5 + 104.004 620.605 l 5 + Spiro + 104.004 620.605 v + 184.082 620.605 v + 184.082 154.785 ] + 243.164 54.6875 o + 300.293 56.6406 o + 337.891 62.9883 v + 349.121 8.30078 v + 313.477 0 o + 197.266 -4.88281 o + 102.539 151.855 [ + 104.004 452.148 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +241 -9 m 4 + 140.543 -9 106 48.4587 106 150 c 6 + 106 415 l 5 + 25 415 l 5 + 25 483 l 5 + 106 483 l 5 + 106 603 l 5 + 187 607 l 5 + 187 483 l 5 + 347 483 l 5 + 347 415 l 5 + 187 415 l 5 + 187 156 l 6 + 187 91.6572 203.298 59 265 59 c 4 + 294 59 321 63 347 70 c 5 + 347 9 l 5 + 310 -3 275 -9 241 -9 c 4 +EndSplineSet +Layer: 3 +SplineSet +104.359 602.656 m 1 + 184.917 607.012 l 1 + 184.917 156.322 l 2 + 184.917 91.0059 203.205 59.2178 263.297 59.2178 c 0 + 295.086 59.2178 322.083 63.5723 345.162 69.668 c 1 + 345.162 8.70605 l 1 + 315.552 -0.875 280.715 -9.14746 238.912 -9.14746 c 0 + 137.453 -9.14746 104.359 50.5078 104.359 149.791 c 2 + 104.359 602.656 l 1 +22.9297 414.545 m 1 + 22.9297 482.91 l 1 + 344.727 482.91 l 1 + 344.727 414.545 l 1 + 22.9297 414.545 l 1 +EndSplineSet +EndChar + +StartChar: r +Encoding: 114 114 20 +Width: 391 +VWidth: 1023 +Flags: W +HStem: 0 21G<88 171> 402 79<299.077 364> 418 72<207.126 357.922> +VStem: 88 83<0 395.646> +LayerCount: 4 +Back +SplineSet +285.645 491.699 m 0xd0 + 320.077 493.013 354.791 486.271 386.23 472.168 c 1 + 361.816 408.691 l 1 + 336.673 418.455 309.688 423.453 282.715 423.34 c 0 + 223.879 423.094 165.572 397.562 125.488 354.492 c 1 + 105.957 389.975 l 1 + 145.062 449.844 214.188 488.975 285.645 491.699 c 0xd0 + Spiro + 285.645 491.699 o + 386.23 472.168 v + 361.816 408.691 v + 282.715 423.34 o + 125.488 354.492 v + 105.957 389.974 v + 0 0 z + EndSpiro +87.8906 482.422 m 1xb0 + 144.043 482.422 l 1 + 167.969 425.781 l 1 + 167.969 0 l 1 + 87.8906 0 l 1 + 87.8906 482.422 l 1xb0 + Spiro + 87.8906 482.422 v + 144.043 482.422 v + 167.969 425.781 v + 167.969 0 v + 87.8906 0 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +298 490 m 0xb0 + 321 490 343 487 364 481 c 1 + 364 402 l 1 + 354 402 l 1xd0 + 329 412 305 418 281 418 c 0xb0 + 242 418 206 406 171 383 c 1 + 171 0 l 1 + 88 0 l 1 + 88 481 l 1 + 148 481 l 1xd0 + 164 441 l 1 + 207 474 251 490 298 490 c 0xb0 +EndSplineSet +Layer: 3 +SplineSet +166.553 380.42 m 1 + 202.91 405.824 244.521 418.09 281.317 418.09 c 0 + 306.724 418.09 329.501 412.834 354.469 402.32 c 1 + 364.105 402.32 l 1 + 364.105 480.729 l 1 + 343.08 487.299 322.054 490.366 298.4 490.366 c 0 + 251.093 490.366 203.348 472.844 157.791 436.487 c 1 + 166.553 380.42 l 1 +147.717 481.604 m 1 + 88.583 481.604 l 1 + 88.583 -0.232422 l 1 + 170.933 -0.232422 l 1 + 170.933 424.223 l 1 + 147.717 481.604 l 1 +EndSplineSet +EndChar + +StartChar: v +Encoding: 118 118 21 +Width: 492 +VWidth: 1023 +Flags: W +HStem: 0 21G<194.562 297.438> 464 20G<22 117.018 378.929 470> +LayerCount: 4 +Back +SplineSet +448.242 482.422 m 5 + 365.234 482.422 l 5 + 219.238 5.85938 l 5 + 265.137 5.85938 l 5 + 114.746 482.422 l 5 + 31.7383 482.422 l 5 + 201.66 0 l 5 + 279.785 0 l 5 + 448.242 482.422 l 5 +EndSplineSet +Fore +SplineSet +470 484 m 1 + 290 0 l 1 + 202 0 l 1 + 22 484 l 1 + 110 484 l 1 + 243 105 l 1 + 248 79 l 1 + 252 105 l 1 + 386 484 l 1 + 470 484 l 1 +EndSplineSet +Layer: 3 +SplineSet +470.039 484.109 m 1 + 290.039 0 l 1 + 202.019 0 l 1 + 22.0186 484.109 l 1 + 110.037 484.109 l 1 + 242.948 105.623 l 1 + 247.789 78.7773 l 1 + 252.189 105.623 l 1 + 385.541 484.109 l 1 + 470.039 484.109 l 1 +EndSplineSet +EndChar + +StartChar: k +Encoding: 107 107 22 +Width: 503 +VWidth: 1023 +Flags: HMW +HStem: 0 73 217 73 408 73 651 20 +VStem: 68 80<0 738> +LayerCount: 4 +Fore +SplineSet +68 672 m 1 + 148 672 l 1 + 148 0 l 1 + 68 0 l 1 + 68 672 l 1 +369 482 m 5 + 457 482 l 5 + 247 275 l 1 + 470 0 l 1 + 374 0 l 1 + 156 267 l 1 + 369 482 l 5 +EndSplineSet +Layer: 3 +SplineSet +388.672 492.188 m 1 + 477.051 492.188 l 1 + 245.117 252.441 l 1 + 245.117 301.758 l 1 + 489.746 0 l 1 + 393.555 0 l 1 + 175.781 266.602 l 1 + 388.672 492.188 l 1 +87.8906 737.793 m 1 + 167.969 737.793 l 1 + 167.969 0 l 1 + 87.8906 0 l 1 + 87.8906 737.793 l 1 +EndSplineSet +EndChar + +StartChar: j +Encoding: 106 106 23 +Width: 237 +VWidth: 1023 +Flags: W +HStem: 462 20G<83 163.073> 586 83<82 164> +VStem: 82 82<-158.014 482 586 669> +LayerCount: 4 +Fore +SplineSet +84.1071 -77.5661 m 0 + 84.1071 -75.4016 84.0714 -73.2129 84 -71 c 2 + 84 -68 l 1 + 83 482 l 1 + 163 482 l 1 + 165 -64 l 2 + 165 -131.744 159.384 -143.232 141 -180 c 0 + 120.609 -220.783 80.3185 -246.521 35 -263 c 1 + 5 -202 l 1 + 58.037 -176.928 84.1071 -136.048 84.1071 -77.5661 c 0 +82 669 m 1 + 164 669 l 1 + 164 586 l 1 + 82 586 l 1 + 82 669 l 1 +EndSplineSet +Layer: 3 +SplineSet +84.8057 669.595 m 5 + 167.4 669.595 l 5 + 167.4 586.562 l 5 + 84.8057 586.562 l 5 + 84.8057 669.595 l 5 +167.969 -63.9648 m 2 + 167.969 -116.699 169.434 -214.844 38.0859 -262.695 c 1 + 7.8125 -202.148 l 1 + 95.2148 -161.133 86.9141 -80.0781 86.9141 -68.3594 c 2 + 85.9375 482.422 l 1 + 166.016 482.422 l 1 + 167.969 -63.9648 l 2 +EndSplineSet +EndChar + +StartChar: x +Encoding: 120 120 24 +Width: 511 +VWidth: 1023 +Flags: W +HStem: 0 21G<38 136.591 360.746 468> 462 20G<32 139.241 378.283 478> +LayerCount: 4 +Fore +SplineSet +392 482 m 1 + 478 482 l 1 + 300 236 l 1 + 468 0 l 1 + 375 0 l 1 + 246 181 l 1 + 123 0 l 1 + 38 0 l 1 + 207 237 l 1 + 32 482 l 1 + 125 482 l 1 + 261 291 l 1 + 392 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +31.7383 482.422 m 25 + 124.512 482.422 l 25 + 468.262 0 l 25 + 375.488 0 l 25 + 31.7383 482.422 l 25 +392.09 482.422 m 9 + 477.539 482.422 l 17 + 294.434 228.516 l 1 + 273.438 221.191 l 1 + 123.047 0 l 1 + 37.5977 0 l 1 + 230.851 270.508 l 1 + 251.162 276.855 l 1 + 392.09 482.422 l 9 +EndSplineSet +EndChar + +StartChar: z +Encoding: 122 122 25 +Width: 526 +VWidth: 1023 +Flags: HMW +HStem: 0 73<177 453> 408 73<73 336> +LayerCount: 4 +Fore +SplineSet +73 482 m 1 + 441 482 l 1 + 441 440 l 1 + 177 63 l 1 + 453 63 l 1 + 453 0 l 1 + 73 0 l 1 + 73 42 l 1 + 336 419 l 1 + 73 419 l 1 + 73 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +73.2422 482.422 m 29 + 440.918 482.422 l 21 + 440.918 439.941 l 5 + 177.246 62.9883 l 13 + 453.125 62.9883 l 29 + 453.125 0 l 29 + 73.2422 0 l 21 + 73.2422 42.4805 l 5 + 335.938 419.434 l 13 + 73.2422 419.434 l 29 + 73.2422 482.422 l 29 +EndSplineSet +EndChar + +StartChar: y +Encoding: 121 121 26 +Width: 507 +VWidth: 1023 +Flags: W +HStem: 462 20G<22 110.384 397.616 481> +LayerCount: 4 +Fore +SplineSet +405 482 m 5 + 481 482 l 5 + 205 -259 l 5 + 120 -259 l 5 + 219 -19 l 5 + 22 482 l 5 + 103 482 l 5 + 254 73 l 5 + 405 482 l 5 +EndSplineSet +Layer: 3 +SplineSet +102.539 482.422 m 1 + 271.484 27.3438 l 1 + 262.695 -48.8281 l 1 + 241.211 -75.1953 l 1 + 21.9727 482.422 l 1 + 102.539 482.422 l 1 +405.273 482.422 m 1 + 480.957 482.422 l 1 + 205.078 -259.277 l 1 + 119.629 -259.277 l 1 + 236.816 24.9023 l 1 + 405.273 482.422 l 1 +EndSplineSet +EndChar + +StartChar: f +Encoding: 102 102 27 +Width: 372 +VWidth: 1023 +Flags: W +HStem: 0 21G<95.9523 177> 419 63<25 95 176 337> 631.456 66.352<210.753 361.572> +VStem: 95 81<0 419 482 598.066> +LayerCount: 4 +Fore +SplineSet +280.998 631.456 m 0 + 224.213 631.456 184.257 599.045 178 559 c 4 + 177 552 176 541 176 528 c 6 + 176 482 l 5 + 337 482 l 5 + 337 419 l 5 + 176 419 l 5 + 177 0 l 5 + 96 0 l 5 + 95 419 l 5 + 25 419 l 5 + 25 482 l 5 + 95 482 l 5 + 95 531 l 6 + 95 573 100 604 110 622 c 4 + 138.782 672.368 187.379 697.808 255.791 697.808 c 0 + 296.645 697.808 338.183 689.145 372 679 c 5 + 359 619 l 5 + 328.489 627.375 302.632 631.456 280.998 631.456 c 0 +EndSplineSet +Layer: 3 +SplineSet +230.957 687.988 m 0 + 269.694 700.742 311.797 699.424 352.051 692.871 c 0 + 372.523 689.541 392.756 684.756 412.598 678.711 c 1 + 400.391 619.141 l 1 + 390.569 621.855 380.629 624.146 370.605 625.977 c 0 + 339.207 631.714 306.098 633.809 275.879 623.535 c 0 + 256.685 617.007 239.143 604.536 228.805 587.1 c 0 + 223.635 578.379 220.302 568.628 218.586 558.638 c 0 + 216.871 548.647 216.778 538.457 216.797 528.32 c 2 + 217.773 0 l 1 + 136.719 0 l 1 + 135.742 531.25 l 2 + 135.712 547.847 135.84 564.517 138.504 580.898 c 0 + 141.167 597.28 146.365 613.315 154.57 627.739 c 0 + 170.982 656.587 199.432 677.607 230.957 687.988 c 0 +65.918 482.422 m 1 + 378.418 482.422 l 1 + 378.418 419.434 l 1 + 65.918 419.434 l 1 + 65.918 482.422 l 1 +EndSplineSet +EndChar + +StartChar: G +Encoding: 71 71 28 +Width: 719 +VWidth: 1023 +Flags: W +HStem: -9.0752 73.0752<301.774 518.145> 298 68<371.047 568.047> 627.014 72.4102<291.524 515.887> +VStem: 50 82.9893<235.173 462.435> 568.047 78<103.09 298> +LayerCount: 4 +Fore +SplineSet +584.047 578 m 1 + 535.355 603.778 455.591 627.014 396.845 627.014 c 0 + 345.351 627.014 299.085 613.619 258.047 587 c 0 + 175.909 533.255 132.989 453.861 132.989 347.889 c 0 + 132.989 232.633 193.613 145.438 270.047 101 c 0 + 313.047 76 364.047 64 422.047 64 c 0 + 480.047 64 529.047 83 568.047 121 c 1 + 568.047 298 l 1 + 371.047 298 l 1 + 371.047 366 l 1 + 649.047 366 l 1 + 646.047 94 l 1 + 591.651 31.5459 510.373 -9.0752 391.422 -9.0752 c 0 + 243.761 -9.0752 148.862 61.6777 94.0469 164 c 0 + 64.9854 218.248 50 277.189 50 340.821 c 0 + 50 486.399 118.825 597.987 214.047 654 c 0 + 265.862 684.521 324.227 699.424 388.785 699.424 c 0 + 481.11 699.424 550.097 677.036 617.047 640 c 1 + 584.047 578 l 1 +EndSplineSet +Layer: 3 +SplineSet +448.73 699.219 m 0 + 474.6 699.18 500.459 696.816 525.928 692.271 c 0 + 551.519 687.7 576.714 680.918 601.182 672.139 c 0 + 625.557 663.394 649.219 652.671 671.875 640.137 c 1 + 639.16 578.125 l 1 + 622.07 586.963 604.395 594.648 586.284 601.143 c 0 + 565.317 608.657 543.789 614.604 521.938 618.901 c 0 + 497.998 623.608 473.615 626.318 449.219 625.977 c 0 + 399.34 625.283 349.637 610.664 307.824 583.457 c 0 + 273.197 560.928 243.969 530.093 223.645 494.126 c 0 + 200.316 452.842 188.889 405.32 187.988 357.91 c 0 + 186.984 305.081 198.642 251.745 223.707 205.23 c 0 + 247.04 161.933 282.533 125.195 325.345 100.984 c 0 + 368.779 76.4199 418.851 64.126 468.75 63.9648 c 0 + 503.403 63.8535 538.359 69.957 569.824 84.4727 c 0 + 589.385 93.4961 607.471 105.725 623.047 120.605 c 1 + 623.047 297.852 l 1 + 425.781 297.852 l 1 + 425.781 366.211 l 1 + 703.613 366.211 l 1 + 701.172 93.75 l 1 + 673.872 62.7617 639.727 37.917 602.051 20.9961 c 0 + 552.983 -1.04199 498.608 -9.91309 444.824 -9.27734 c 0 + 382.889 -8.54492 320.252 5.03125 266.867 36.4424 c 0 + 217.086 65.7344 177.038 110.319 150.039 161.381 c 0 + 119.426 219.281 104.273 285.094 104.98 350.586 c 0 + 105.635 411.207 120.051 471.839 148.227 525.518 c 0 + 175.754 577.959 217.129 623.428 268.184 653.447 c 0 + 322.346 685.293 385.898 699.312 448.73 699.219 c 0 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 29 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 167 552 640> 311 75<167 552> +VStem: 80 87<0 311 386 692> 552 88<0 311 386 692> +LayerCount: 4 +Back +SplineSet +174.316 394.531 m 5xea + 644.043 394.531 l 5 + 644.043 321.289 l 5 + 174.316 321.289 l 5 + 174.316 394.531 l 5xea +595.703 693.848 m 5xe4 + 678.711 693.848 l 5 + 678.711 0 l 5 + 595.703 0 l 5 + 595.703 693.848 l 5xe4 +141.602 693.848 m 5xf0 + 224.609 693.848 l 5 + 224.609 0 l 5 + 141.602 0 l 5 + 141.602 693.848 l 5xf0 +EndSplineSet +Fore +SplineSet +552 692 m 1 + 640 692 l 1 + 640 0 l 1 + 552 0 l 1 + 552 311 l 1 + 167 311 l 1 + 167 0 l 1 + 80 0 l 1 + 80 692 l 1 + 167 692 l 1 + 167 386 l 1 + 552 386 l 1 + 552 692 l 1 +EndSplineSet +Layer: 3 +SplineSet +596.191 692.505 m 5 + 684.287 692.505 l 5 + 684.287 0 l 5 + 596.191 0 l 5 + 596.191 311.06 l 5 + 211.566 311.06 l 5 + 211.566 0 l 5 + 123.471 0 l 5 + 123.471 692.505 l 5 + 211.566 692.505 l 5 + 211.566 385.986 l 5 + 596.191 385.986 l 5 + 596.191 692.505 l 5 +EndSplineSet +EndChar + +StartChar: g +Encoding: 103 103 30 +Width: 542 +VWidth: 1023 +Flags: HMW +HStem: -261 73 0 73 408 73 +VStem: 406 80<-123 23 74 407> +LayerCount: 4 +Fore +SplineSet +406 23 m 1 + 364.67 0.659589 325.777 -9.37307 277.711 -9.37307 c 0 + 194.436 -9.37307 140.365 28.3898 103 82 c 128 + 74.5313 122.846 62.9183 170.037 62.9183 233.328 c 0 + 62.9183 355.847 114.128 437.721 202 475 c 0 + 228.057 485.857 254.869 491.245 282.681 491.245 c 0 + 318.909 491.245 356.834 482.103 397 464 c 2 + 420 454 l 1 + 430 482 l 1 + 486 482 l 1 + 486 -23 l 2 + 486 -112.744 470.012 -156.909 422 -203 c 128 + 383.475 -239.984 320.88 -264.58 247.2 -264.58 c 0 + 200.165 -264.58 139.667 -251.308 100 -233 c 1 + 122 -175 l 1 + 163.808 -190.403 201.984 -197.938 236.862 -197.938 c 0 + 335.189 -197.938 394.126 -145.452 404 -58 c 0 + 406 -44 406 -22 406 9 c 2 + 406 23 l 1 +298.156 56.169 m 0 + 340.304 56.169 374.9 65.7225 406 83 c 1 + 406 400 l 1 + 364.181 417.131 326.931 425.376 294.251 425.376 c 0 + 190.742 425.376 140.375 348.273 140.375 243.625 c 0 + 140.375 165.495 173.475 103.181 226 74 c 128 + 248.051 61.7495 272.103 56.169 298.156 56.169 c 0 +EndSplineSet +Layer: 3 +SplineSet +430.176 482.422 m 1 + 486.328 482.422 l 1 + 486.328 -23.4375 l 2 + 486.328 -55.9824 485.205 -88.998 475.389 -120.027 c 0 + 465.574 -151.057 447.588 -179.42 423.828 -201.66 c 0 + 396.546 -227.197 362.27 -244.727 326.172 -254.395 c 0 + 264.973 -270.787 199.247 -265.634 138.672 -247.07 c 0 + 125.424 -243.011 112.382 -238.281 99.6094 -232.91 c 1 + 122.07 -174.805 l 1 + 134.232 -179.332 146.622 -183.25 159.18 -186.523 c 0 + 184.986 -193.251 211.559 -197.364 238.229 -197.434 c 0 + 264.896 -197.502 291.797 -193.383 316.406 -183.105 c 0 + 345.494 -170.958 370.827 -149.354 385.742 -121.582 c 0 + 396.265 -101.989 401.643 -79.9688 404.046 -57.8594 c 0 + 406.45 -35.75 406.25 -13.4502 406.25 8.78906 c 2 + 406.25 416.504 l 1 + 430.176 482.422 l 1 +317.383 489.746 m 0 + 345.156 485.535 371.869 475.939 397.461 464.355 c 0 + 411.922 457.81 426.083 450.609 439.941 442.871 c 1 + 413.574 396.973 l 1 + 397.951 403.679 381.986 409.599 365.723 414.551 c 0 + 334.758 423.979 302.105 430.043 270.02 425.781 c 0 + 248.978 422.986 228.504 415.594 210.829 403.84 c 0 + 193.154 392.086 178.4 376.113 167.48 357.91 c 0 + 153.924 335.312 146.203 309.52 142.809 283.385 c 0 + 139.413 257.252 140.027 230.635 144.043 204.59 c 0 + 147.533 181.956 153.763 159.615 164.062 139.16 c 0 + 177.578 112.318 198.725 89.1172 225.098 74.707 c 0 + 253.416 59.2344 286.717 54.1406 318.848 57.1289 c 0 + 367.631 61.666 414.256 83.1035 451.66 114.746 c 1 + 470.215 69.3359 l 1 + 421.827 23.3477 357.205 -6.0459 290.527 -9.27734 c 0 + 254.996 -10.999 218.898 -5.05566 186.535 9.70996 c 0 + 154.171 24.4756 125.996 48.2441 105.957 77.6367 c 0 + 78.8438 117.406 66.668 165.842 63.4766 213.867 c 0 + 61.1104 249.48 63.4004 285.551 72.0791 320.172 c 0 + 80.7578 354.792 96.4629 387.887 119.629 415.039 c 0 + 141.76 440.979 170.271 461.295 201.66 474.609 c 0 + 237.941 490 278.418 495.654 317.383 489.746 c 0 +EndSplineSet +EndChar + +StartChar: O +Encoding: 79 79 31 +Width: 758 +VWidth: 1023 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> +VStem: 50 94<222.236 467.906> 614 94<221.325 469.476> +LayerCount: 4 +Back +SplineSet +425.781 628.418 m 4 + 361.807 628.066 298.066 600.322 255.859 552.246 c 4 + 231.48 524.478 214.299 490.771 203.924 455.305 c 4 + 193.55 419.838 189.581 382.646 190.43 345.703 c 4 + 191.991 277.713 210.051 208.352 251.953 154.785 c 4 + 273.873 126.764 302.15 103.687 334.205 88.251 c 4 + 366.258 72.8145 401.926 64.9824 437.5 65.4297 c 4 + 472.126 65.8652 506.67 74.1562 537.563 89.8008 c 4 + 568.457 105.445 595.518 128.484 616.211 156.25 c 4 + 656.216 209.926 671.797 278.76 671.875 345.703 c 4 + 671.943 404.287 660.132 463.989 629.883 514.16 c 4 + 608.818 549.102 578.726 578.623 543.081 598.481 c 4 + 507.441 618.345 466.58 628.643 425.781 628.418 c 4 + Spiro + 255.859 552.246 o + 190.43 345.703 o + 251.953 154.785 o + 437.5 65.4297 o + 616.211 156.25 o + 671.875 345.703 o + 629.883 514.16 o + 425.781 628.418 o + 0 0 z + EndSpiro +435.059 701.172 m 4 + 479.1 700.747 523.159 692.344 563.857 675.513 c 4 + 604.556 658.682 641.724 633.14 671.387 600.586 c 4 + 702.319 566.641 724.829 525.391 738.691 481.605 c 4 + 752.554 437.822 758.208 391.62 757.324 345.703 c 4 + 756.362 295.709 747.705 245.682 729.81 198.988 c 4 + 711.919 152.295 684.214 109.1 647.461 75.1953 c 4 + 588.594 20.8945 507.822 -7.39258 427.734 -7.32422 c 4 + 345.117 -7.25391 261.688 23.2676 203.125 81.543 c 4 + 168.952 115.549 143.703 158.05 127.832 203.572 c 4 + 111.96 249.094 104.936 297.493 104.98 345.703 c 4 + 105.028 396.167 112.801 446.833 130.207 494.199 c 4 + 147.611 541.567 175.283 585.439 212.402 619.629 c 4 + 271.945 674.473 354.111 701.958 435.059 701.172 c 4 + Spiro + 671.387 600.586 o + 757.324 345.703 o + 647.461 75.1953 o + 427.734 -7.32422 o + 203.125 81.543 o + 104.98 345.703 o + 212.402 619.629 o + 435.059 701.172 o + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +144 346 m 0 + 144 235.13 189.021 147.319 257 102 c 0 + 293 78 334 66 379 66 c 0 + 481.562 66 548.679 127.826 584 202 c 0 + 604 244 614 292 614 346 c 0 + 614 456.419 568.667 544.889 501 590 c 0 + 465 614 424 626 379 626 c 0 + 276.438 626 209.321 564.174 174 490 c 0 + 154 448 144 400 144 346 c 0 +50 346 m 0 + 50 492.312 110.153 600.989 205 656 c 0 + 255 685 313 700 379 700 c 0 + 520.135 700 617.819 630.362 667 532 c 0 + 694 478 708 416 708 346 c 0 + 708 200.126 646.693 90.9219 552 36 c 0 + 502 7 445 -8 379 -8 c 0 + 236.87 -8 139.959 61.9316 90 160 c 0 + 63 213 50 276 50 346 c 0 +EndSplineSet +Layer: 3 +SplineSet +100.176 345.959 m 0 + 100.176 132.955 229.186 -7.65625 429.197 -7.65625 c 0 + 627.817 -7.65625 757.754 132.955 757.754 345.959 c 0 + 757.754 558.965 627.817 700.039 429.197 700.039 c 0 + 229.186 700.039 100.176 558.965 100.176 345.959 c 0 +193.917 345.959 m 0 + 193.917 508.848 290.442 625.791 429.197 625.791 c 0 + 567.021 625.791 664.014 508.848 664.014 345.959 c 0 + 664.014 183.537 567.021 66.5938 429.197 66.5938 c 0 + 290.442 66.5938 193.917 183.537 193.917 345.959 c 0 +EndSplineSet +EndChar + +StartChar: A +Encoding: 65 65 32 +Width: 628 +VWidth: 1023 +Flags: W +HStem: 0 21G<20 103.931 517.069 608> 202 72<192 428> 674 20G<259.882 368.118> +LayerCount: 4 +Fore +SplineSet +267 694 m 1 + 361 694 l 1 + 608 0 l 1 + 524 0 l 1 + 454 202 l 1 + 167 202 l 1 + 97 0 l 1 + 20 0 l 1 + 267 694 l 1 +311 613 m 1 + 192 274 l 1 + 428 274 l 1 + 311 613 l 1 +EndSplineSet +Layer: 3 +SplineSet +353.298 612.891 m 1 + 235.576 274.414 l 1 + 471.26 274.414 l 1 + 353.298 612.891 l 1 +310.059 693.848 m 1 + 404.297 693.848 l 1 + 650.879 0 l 1 + 566.895 0 l 1 + 496.616 201.66 l 1 + 210.273 201.66 l 1 + 140.137 0 l 1 + 63.4766 0 l 1 + 310.059 693.848 l 1 +EndSplineSet +EndChar + +StartChar: L +Encoding: 76 76 33 +Width: 514 +VWidth: 1023 +Flags: W +HStem: 0 73<163 474> 674 20G<80 163> +VStem: 80 83<73 694> +LayerCount: 4 +Fore +SplineSet +80 694 m 1 + 163 694 l 1 + 163 73 l 1 + 474 73 l 1 + 474 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +174.316 72.7539 m 5 + 536.133 72.7539 l 5 + 536.133 0 l 5 + 174.316 0 l 5 + 174.316 72.7539 l 5 +141.602 693.848 m 5 + 224.609 693.848 l 5 + 224.609 0 l 5 + 141.602 0 l 5 + 141.602 693.848 l 5 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 34 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> +VStem: 80 83<73 321 394 621> +LayerCount: 4 +Fore +SplineSet +80 0 m 1 + 80 694 l 1 + 486 694 l 1 + 486 621 l 1 + 163 621 l 1 + 163 394 l 1 + 459 394 l 1 + 459 321 l 1 + 163 321 l 1 + 163 73 l 1 + 486 73 l 1 + 486 0 l 1 + 80 0 l 1 +EndSplineSet +Layer: 3 +SplineSet +141.602 394.043 m 5 + 521.484 394.043 l 5 + 521.484 320.801 l 5 + 141.602 320.801 l 5 + 141.602 394.043 l 5 +141.602 693.848 m 5 + 548.34 693.848 l 5 + 548.34 620.605 l 5 + 141.602 620.605 l 5 + 141.602 693.848 l 5 +141.602 73.2422 m 5 + 548.34 73.2422 l 5 + 548.34 0 l 5 + 141.602 0 l 5 + 141.602 73.2422 l 5 +141.602 693.848 m 5 + 224.609 693.848 l 5 + 224.609 0 l 5 + 141.602 0 l 5 + 141.602 693.848 l 5 +EndSplineSet +EndChar + +StartChar: F +Encoding: 70 70 35 +Width: 521 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 163> 321 73<163 452> 621 73<163 481> +VStem: 80 83<0 321 394 621> +LayerCount: 4 +Fore +SplineSet +163 621 m 1 + 163 394 l 1 + 452 394 l 1 + 452 321 l 1 + 163 321 l 1 + 163 0 l 1 + 80 0 l 1 + 80 694 l 1 + 481 694 l 1 + 481 621 l 1 + 163 621 l 1 +EndSplineSet +Layer: 3 +SplineSet +174.316 394.043 m 1 + 514.16 394.043 l 1 + 514.16 320.801 l 1 + 174.316 320.801 l 1 + 174.316 394.043 l 1 +174.316 693.848 m 1 + 543.457 693.848 l 1 + 543.457 620.605 l 1 + 174.316 620.605 l 1 + 174.316 693.848 l 1 +141.602 693.848 m 1 + 224.609 693.848 l 1 + 224.609 0 l 1 + 141.602 0 l 1 + 141.602 693.848 l 1 +EndSplineSet +EndChar + +StartChar: N +Encoding: 78 78 36 +Width: 726 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 163 528.01 646> 674 20G<80 198.012 563 646> +VStem: 80 83<0 582> 563 83<113 694> +LayerCount: 4 +Fore +SplineSet +80 694 m 1 + 185 694 l 1 + 563 113 l 1 + 563 694 l 1 + 646 694 l 1 + 646 0 l 1 + 541 0 l 1 + 163 582 l 1 + 163 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 1 + 246.582 693.848 l 1 + 658.691 60.5469 l 1 + 624.512 60.5469 l 1 + 624.512 693.848 l 1 + 707.52 693.848 l 1 + 707.52 0 l 1 + 602.539 0 l 1 + 185.171 642.09 l 1 + 224.609 642.09 l 1 + 224.609 0 l 1 + 141.602 0 l 1 + 141.602 693.848 l 1 +EndSplineSet +EndChar + +StartChar: V +Encoding: 86 86 37 +Width: 607 +VWidth: 1023 +Flags: W +HStem: 0 21G<245.026 361.974> 674 20G<10 115.535 498.465 597> +LayerCount: 4 +Fore +SplineSet +10 694 m 1 + 109 694 l 1 + 307 88 l 1 + 505 694 l 1 + 597 694 l 1 + 355 0 l 1 + 252 0 l 1 + 10 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +68.3594 693.848 m 5 + 166.992 693.848 l 5 + 391.113 9.27734 l 5 + 339.844 9.27734 l 5 + 563.477 693.848 l 5 + 654.785 693.848 l 5 + 413.086 0 l 5 + 310.059 0 l 5 + 68.3594 693.848 l 5 +EndSplineSet +EndChar + +StartChar: Z +Encoding: 90 90 38 +Width: 578 +VWidth: 1023 +Flags: W +HStem: 0 73<120 568> 621 73<24 436> +LayerCount: 4 +Fore +SplineSet +24 694 m 5 + 555 694 l 5 + 555 641 l 5 + 120 73 l 5 + 568 73 l 5 + 568 0 l 5 + 10 0 l 5 + 10 54 l 5 + 436 621 l 5 + 24 621 l 5 + 24 694 l 5 +EndSplineSet +Layer: 3 +SplineSet +90.332 693.848 m 29 + 620.605 693.848 l 17 + 620.605 640.625 l 1 + 186.035 73.2422 l 9 + 633.789 73.2422 l 25 + 633.789 0 l 25 + 75.6836 0 l 17 + 75.6836 54.1992 l 1 + 501.953 620.605 l 9 + 90.332 620.605 l 29 + 90.332 693.848 l 29 +EndSplineSet +EndChar + +StartChar: T +Encoding: 84 84 39 +Width: 566 +VWidth: 1023 +Flags: W +HStem: 0 21G<241 324> 621 73<10 241 324 556> +VStem: 241 83<0 621> +LayerCount: 4 +Fore +SplineSet +10 694 m 1 + 556 694 l 1 + 556 621 l 1 + 324 621 l 1 + 324 0 l 1 + 241 0 l 1 + 241 621 l 1 + 10 621 l 1 + 10 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +356.445 0 m 5 + 273.438 0 l 5 + 273.438 680.176 l 5 + 356.445 680.176 l 5 + 356.445 0 l 5 +41.5039 693.848 m 5 + 588.379 693.848 l 5 + 588.379 620.605 l 5 + 41.5039 620.605 l 5 + 41.5039 693.848 l 5 +EndSplineSet +EndChar + +StartChar: I +Encoding: 73 73 40 +Width: 243 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 163> 674 20G<80 163> +VStem: 80 83<0 694> +LayerCount: 4 +Fore +SplineSet +80 694 m 1 + 163 694 l 1 + 163 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +156.25 693.848 m 5 + 239.258 693.848 l 5 + 239.258 0 l 5 + 156.25 0 l 5 + 156.25 693.848 l 5 +EndSplineSet +EndChar + +StartChar: X +Encoding: 88 88 41 +Width: 619 +VWidth: 1023 +Flags: W +HStem: 0 21G<10 125.356 488.644 609> 674 20G<39 153.487 473.897 582> +LayerCount: 4 +Fore +SplineSet +487 694 m 1 + 582 694 l 1 + 363 364 l 1 + 609 0 l 1 + 502 0 l 1 + 307 292 l 1 + 112 0 l 1 + 10 0 l 1 + 260 362 l 1 + 39 694 l 1 + 140 694 l 1 + 316 433 l 1 + 487 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +83.0078 693.848 m 9 + 183.594 693.848 l 25 + 653.32 0 l 25 + 545.898 0 l 17 + 83.0078 693.848 l 9 +530.762 693.848 m 9 + 626.465 693.848 l 17 + 386.23 333.984 l 1 + 372.07 324.219 l 1 + 156.25 0 l 1 + 53.7109 0 l 1 + 315.918 379.395 l 1 + 332.031 389.16 l 1 + 530.762 693.848 l 9 +EndSplineSet +EndChar + +StartChar: Y +Encoding: 89 89 42 +Width: 568 +VWidth: 1023 +Flags: W +HStem: 0 21G<239 322> 674 20G<10 120.334 452.456 558> +VStem: 239 83<0 329> +LayerCount: 4 +Fore +SplineSet +322 0 m 1 + 239 0 l 1 + 239 329 l 1 + 10 694 l 1 + 108 694 l 1 + 285 407 l 1 + 465 694 l 1 + 558 694 l 1 + 322 329 l 1 + 322 0 l 1 +EndSplineSet +Layer: 3 +SplineSet +48.8281 693.848 m 9 + 146.973 693.848 l 25 + 334.473 389.648 l 25 + 314.453 393.066 l 25 + 504.395 693.848 l 25 + 597.168 693.848 l 25 + 360.84 328.613 l 25 + 360.84 0 l 25 + 277.832 0 l 25 + 277.832 328.613 l 17 + 48.8281 693.848 l 9 +EndSplineSet +EndChar + +StartChar: K +Encoding: 75 75 43 +Width: 631 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 163 466.584 591> 674 20G<80 163 450.604 572> +VStem: 80 83<0 694> +LayerCount: 4 +Fore +SplineSet +80 694 m 1 + 163 694 l 1 + 163 0 l 1 + 80 0 l 1 + 80 694 l 1 +468 694 m 1 + 572 694 l 1 + 279 363 l 1 + 591 0 l 1 + 484 0 l 1 + 174 356 l 1 + 468 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +530.273 693.848 m 1 + 634.277 693.848 l 1 + 315.43 334.473 l 1 + 332.031 373.047 l 1 + 652.832 0 l 1 + 545.898 0.488281 l 1 + 236.328 355.957 l 1 + 530.273 693.848 l 1 +141.602 693.848 m 1 + 224.609 693.848 l 1 + 224.609 0 l 1 + 141.602 0 l 1 + 141.602 693.848 l 1 +EndSplineSet +EndChar + +StartChar: M +Encoding: 77 77 44 +Width: 835 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 163 672 755> 674 20G<80 207.546 635.216 755> +VStem: 80 83<0 575> 672 83<0 575> +LayerCount: 4 +Fore +SplineSet +80 694 m 1 + 197 694 l 1 + 419 273 l 1 + 646 694 l 1 + 755 694 l 1 + 755 0 l 1 + 672 0 l 1 + 672 575 l 1 + 459 199 l 1 + 376 199 l 1 + 163 575 l 1 + 163 0 l 1 + 80 0 l 1 + 80 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 5 + 258.789 693.848 l 5 + 512.695 213.379 l 5 + 449.219 213.379 l 5 + 707.52 693.848 l 5 + 817.383 693.848 l 5 + 817.383 0 l 5 + 734.375 0 l 5 + 734.375 666.504 l 5 + 786.621 666.504 l 5 + 520.996 198.73 l 5 + 437.988 198.73 l 5 + 172.476 666.504 l 5 + 224.609 666.504 l 5 + 224.609 0 l 5 + 141.602 0 l 5 + 141.602 693.848 l 5 +EndSplineSet +EndChar + +StartChar: hyphen +Encoding: 45 45 45 +Width: 400 +VWidth: 1023 +Flags: W +HStem: 288 67<55 345> +VStem: 55 290<288 355> +LayerCount: 4 +Fore +SplineSet +55 355 m 5 + 345 355 l 5 + 345 288 l 5 + 55 288 l 5 + 55 355 l 5 +EndSplineSet +Layer: 3 +SplineSet +85.4492 355.469 m 1 + 505.371 355.469 l 1 + 505.371 287.598 l 1 + 85.4492 287.598 l 1 + 85.4492 355.469 l 1 +EndSplineSet +EndChar + +StartChar: J +Encoding: 74 74 46 +Width: 409 +VWidth: 1023 +Flags: W +HStem: -8.18359 72.2275<30.8911 190.563> 673 20G<246 329> +VStem: 246 83<116.872 693> +LayerCount: 4 +Fore +SplineSet +246 693 m 1 + 329 693 l 1 + 329 208 l 2 + 329 133.352 318.382 91.3486 281 52 c 0 + 242.616 11.4844 188.341 -8.18359 115.218 -8.18359 c 0 + 84.25 -8.18359 52.5107 -4.9082 20 3 c 1 + 33 73 l 1 + 58.126 67.0615 81.582 64.0439 103.369 64.0439 c 0 + 174.978 64.0439 226.715 96.4424 241 152 c 0 + 244 164 246 182 246 204 c 2 + 246 693 l 1 +EndSplineSet +Layer: 3 +SplineSet +279.785 692.871 m 1 + 362.793 692.871 l 1 + 362.793 208.008 l 2 + 362.793 179.96 362.197 151.6 355.017 124.486 c 0 + 347.836 97.373 334.154 71.9062 314.821 51.5859 c 0 + 295.488 31.2666 270.925 16.2461 244.562 6.66797 c 0 + 218.201 -2.90918 190.14 -7.30664 162.109 -8.30078 c 0 + 125.674 -9.5918 89.1025 -5.33594 53.7109 3.41797 c 1 + 66.8945 72.7539 l 1 + 96.5898 65.8213 127.333 62.8154 157.715 65.4297 c 0 + 175.033 66.9199 192.275 70.3857 208.376 76.9395 c 0 + 224.476 83.4932 239.365 93.2832 251.021 106.178 c 0 + 262.678 119.074 270.858 134.977 275.147 151.822 c 0 + 279.436 168.667 279.785 186.23 279.785 203.613 c 2 + 279.785 692.871 l 1 +EndSplineSet +EndChar + +StartChar: R +Encoding: 82 82 47 +Width: 588 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 163 472.034 578> 289 73<163 297> 621 73<163 399.684> +VStem: 80 83<0 289 362 621> 455.404 82.5957<419.529 567.436> +LayerCount: 4 +Fore +SplineSet +538 505 m 0 + 538 393.732 478.983 318.417 382 298 c 1 + 578 0 l 1 + 485 0 l 1 + 297 290 l 1 + 287 290 267 289 236 289 c 2 + 163 289 l 1 + 163 0 l 1 + 80 0 l 1 + 80 694 l 1 + 334 694 l 2 + 408.424 694 450.608 683.413 487 645 c 0 + 520 610 538 563 538 505 c 0 +163 362 m 1 + 246 362 l 2 + 291 362 318 363 329 364 c 0 + 386 369 424 393 443 436 c 0 + 451.415 454.408 455.404 473.092 455.404 491.907 c 0 + 455.404 560.336 415.514 604.236 358 616 c 0 + 343 619 321 621 290 621 c 2 + 163 621 l 1 + 163 362 l 1 +EndSplineSet +Layer: 3 +SplineSet +340.332 318.848 m 1 + 430.664 318.848 l 1 + 640.137 0 l 1 + 547.363 0 l 1 + 340.332 318.848 l 1 +141.602 693.848 m 1 + 396.484 693.848 l 2 + 424.564 693.848 453.008 693.223 480.011 685.518 c 0 + 507.017 677.817 532.09 663.086 551.27 642.578 c 0 + 568.276 624.395 580.601 602.085 588.345 578.418 c 0 + 596.084 554.756 599.492 529.78 599.609 504.883 c 0 + 599.751 475.537 595.386 446.051 585.439 418.441 c 0 + 575.498 390.831 559.546 365.231 538.086 345.215 c 0 + 507.222 316.426 465.961 300.779 424.234 294.436 c 0 + 382.507 288.09 340.058 289.062 297.852 289.062 c 2 + 174.316 289.062 l 1 + 174.316 362.305 l 1 + 307.617 362.305 l 2 + 335.389 362.305 363.229 361.325 390.893 363.756 c 0 + 418.559 366.186 446.533 373.473 468.75 390.137 c 0 + 484.385 401.865 496.709 417.826 504.658 435.684 c 0 + 512.603 453.539 516.416 473.131 516.602 492.676 c 0 + 516.763 509.819 514.121 527.051 508.184 543.135 c 0 + 502.246 559.219 492.856 574.087 480.469 585.938 c 0 + 463.93 601.758 442.328 611.665 419.932 616.382 c 0 + 397.535 621.094 374.45 621.094 351.562 621.094 c 2 + 225.098 621.094 l 1 + 225.098 0 l 1 + 141.602 0 l 1 + 141.602 693.848 l 1 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 48 +Width: 708 +VWidth: 1023 +Flags: W +HStem: 0 74<172 416.469> 620 73<172 414.961> +VStem: 80 92<74 620> 562 96<219.024 478.27> +LayerCount: 4 +Back +SplineSet +224.609 620.605 m 1 + 224.609 73.2422 l 1 + 325.684 73.2422 l 2 + 356.339 73.2422 387.133 73.4502 417.41 78.252 c 0 + 447.688 83.0547 477.387 92.5332 503.906 107.91 c 0 + 540.991 129.412 570.991 162.426 590.332 200.684 c 0 + 611.763 243.084 621.069 290.893 622.559 338.379 c 0 + 624.404 397.117 613.97 457.562 583.496 507.812 c 0 + 560.356 545.967 525.962 577.153 485.84 596.68 c 0 + 466.355 606.162 445.521 612.856 424.166 616.523 c 0 + 402.809 620.19 381.044 620.605 359.375 620.605 c 2 + 224.609 620.605 l 1 + Spiro + 224.609 620.605 v + 224.609 73.2422 v + 325.684 73.2422 ] + 503.906 107.91 o + 590.332 200.684 o + 622.559 338.379 o + 583.496 507.812 o + 485.84 596.68 o + 359.375 620.605 [ + 0 0 z + EndSpiro +141.602 693.848 m 1 + 335.449 693.848 l 2 + 399.917 693.848 465.699 689.883 525.391 665.527 c 0 + 578.403 643.896 625.679 607.183 656.738 559.082 c 0 + 697.134 496.523 708.804 419.121 705.566 344.727 c 0 + 703.608 299.721 696.514 254.77 682.212 212.053 c 0 + 667.91 169.336 645.684 128.937 614.746 96.1914 c 0 + 576.328 55.5254 524.971 28.2363 470.703 14.6484 c 0 + 412.566 0.0927734 351.924 0 291.992 0 c 2 + 141.602 0 l 1 + 141.602 693.848 l 1 + Spiro + 141.602 693.848 v + 335.449 693.848 ] + 525.391 665.527 o + 656.738 559.082 o + 705.566 344.727 o + 614.746 96.1914 o + 470.703 14.6484 o + 291.992 0 [ + 141.602 0 v + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +658 347 m 0 + 658 113.57 516.525 0 277 0 c 2 + 80 0 l 1 + 80 693 l 1 + 309 693 l 2 + 531.21 693 658 570.189 658 347 c 0 +562 354 m 0 + 562 534.062 467.514 620 288 620 c 2 + 172 620 l 1 + 172 74 l 1 + 289 74 l 2 + 474.956 74 562 167.017 562 354 c 0 +EndSplineSet +Layer: 3 +SplineSet +232.998 619.512 m 1 + 232.998 74.3604 l 1 + 349.986 74.3604 l 2 + 510.073 74.3604 623.271 142.09 623.271 353.33 c 0 + 623.271 553.677 508.652 619.512 348.564 619.512 c 2 + 232.998 619.512 l 1 +141.113 693.398 m 1 + 369.404 693.398 l 2 + 589.644 693.398 718.945 569.307 718.945 356.172 c 0 + 718.945 117.935 585.854 0 337.671 0 c 2 + 141.113 0 l 1 + 141.113 693.398 l 1 +EndSplineSet +EndChar + +StartChar: P +Encoding: 80 80 49 +Width: 589 +VWidth: 1023 +Flags: W +HStem: 0 21G<80 163> 287.862 72.1377<163 393.035> 621 73<163 399.783> +VStem: 80 83<0 291 362.441 621> 455.637 83.8975<421.027 569.074> +LayerCount: 4 +Fore +SplineSet +80 694 m 1 + 298 694 l 2 + 393.845 694 443.081 687.878 488 645 c 1 + 522.149 610.851 539.534 566.499 539.534 511.942 c 0 + 539.534 405.453 491.796 333.932 411 307 c 0 + 375.222 295.074 303.969 287.862 245.508 287.862 c 0 + 219.441 287.862 191.938 288.856 163 291 c 1 + 163 0 l 1 + 80 0 l 1 + 80 694 l 1 +251.667 360 m 0 + 289.312 360 345.697 364.853 365 370 c 0 + 415.548 382.998 455.637 430.682 455.637 494.477 c 0 + 455.637 569.496 408.87 610.621 340 618 c 0 + 327 620 298 621 253 621 c 2 + 163 621 l 1 + 163 364 l 1 + 195.667 361.333 225.222 360 251.667 360 c 0 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 1 + 360.352 693.848 l 2 + 394.324 693.848 428.575 694.082 461.899 687.471 c 0 + 495.225 680.864 527.544 666.406 551.758 642.578 c 0 + 572.251 622.407 586.406 596.245 593.916 568.491 c 0 + 601.426 540.737 602.837 511.533 600.098 482.91 c 0 + 597.651 457.332 591.851 431.986 581.846 408.318 c 0 + 571.846 384.65 557.344 362.762 538.574 345.215 c 0 + 518.647 326.59 494.131 313.204 468.144 304.92 c 0 + 442.158 296.635 414.881 293.226 387.695 291.016 c 0 + 310.924 284.774 233.447 287.236 157.227 298.34 c 1 + 170.898 370.605 l 1 + 237.779 361.104 305.612 358.317 373.047 362.305 c 0 + 389.971 363.305 406.955 364.779 423.398 368.908 c 0 + 439.842 373.037 455.695 379.938 469.238 390.137 c 0 + 483.877 401.16 495.601 415.902 503.555 432.412 c 0 + 511.514 448.92 515.889 467.066 517.09 485.352 c 0 + 518.296 503.73 516.299 522.407 510.4 539.854 c 0 + 504.502 557.305 494.478 573.428 480.957 585.938 c 0 + 470.346 595.757 457.709 603.296 444.227 608.516 c 0 + 430.744 613.74 416.467 616.704 402.104 618.359 c 0 + 373.377 621.67 344.346 620.605 315.43 620.605 c 2 + 224.609 620.605 l 1 + 224.609 0 l 1 + 141.602 0 l 1 + 141.602 693.848 l 1 +EndSplineSet +EndChar + +StartChar: B +Encoding: 66 66 50 +Width: 622 +VWidth: 1023 +Flags: W +HStem: 0 73<163 422.444> 339.516 60.4844<163 366.819> 630 64<163 386.71> +VStem: 80 83<73 333 397 630> 435 80<456.049 587.086> 490 82<131.524 273.431> +LayerCount: 4 +Fore +SplineSet +435 523 m 0xf8 + 435 595.153 380.012 630 296 630 c 2 + 163 630 l 1 + 163 397 l 1 + 251 400 l 1 + 374 403 435 444 435 523 c 0xf8 +490 202 m 0xf4 + 490 296.148 405.453 339.516 304.838 339.516 c 0 + 298.039 339.516 291.091 339.343 284 339 c 2 + 163 333 l 1 + 163 73 l 1 + 316 73 l 2 + 409.778 73 490 109.278 490 202 c 0xf4 +425 388 m 1 + 504.426 373.223 572 301.279 572 210 c 0xf4 + 572 152 550 103 506 63 c 0 + 459 21 392 0 305 0 c 2 + 80 0 l 1 + 80 694 l 1 + 324 694 l 2 + 433.235 694 515 632.273 515 527 c 0xf8 + 515 470.422 465.964 403.605 425 388 c 1 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 5 + 386.23 693.848 l 6 + 560.547 693.848 577.148 562.988 577.148 526.855 c 4 + 577.148 467.285 527.832 403.32 487.305 387.695 c 5 + 573.73 372.07 634.277 295.898 634.277 210.449 c 4 + 634.277 147.461 594.727 0 367.188 0 c 6 + 141.602 0 l 5 + 141.602 693.848 l 5 +224.609 333.008 m 5 + 224.609 73.2422 l 5 + 351.074 73.2422 l 6 + 380.859 73.2422 551.758 64.9414 551.758 201.66 c 4 + 551.758 294.922 468.75 345.703 346.191 339.355 c 6 + 224.609 333.008 l 5 +224.609 630.371 m 5 + 224.609 397.461 l 5 + 312.988 399.902 l 6 + 345.786 400.809 497.07 401.855 497.07 522.949 c 4 + 497.07 565.918 476.074 630.371 358.398 630.371 c 6 + 224.609 630.371 l 5 +EndSplineSet +EndChar + +StartChar: U +Encoding: 85 85 51 +Width: 689 +VWidth: 1023 +Flags: W +HStem: -10 72<243.804 444.161> 674 20G<81 164 525 608> +VStem: 81 83<137.119 694> 525 83<140.498 694> +LayerCount: 4 +Fore +SplineSet +609 223 m 0 + 606.433 58.7305 512.181 -10 344 -10 c 0 + 240 -10 167 17 123 73 c 0 + 90.709 112.889 80 160.24 80 223 c 0 + 80 232 80 246 80 265 c 0 + 80 284 81 296 81 303 c 2 + 81 694 l 1 + 164 694 l 1 + 164 244 l 2 + 164 181.579 171.05 149.819 202 115 c 0 + 231.873 81.3926 282.401 62 344 62 c 0 + 430.716 62 499.322 101.025 518 172 c 0 + 523 191 525 215 525 244 c 2 + 525 694 l 1 + 608 694 l 1 + 608 265 l 2 + 608 246 609 232 609 223 c 0 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 1 + 224.609 693.848 l 1 + 224.609 244.141 l 2 + 224.609 221.554 225.033 198.742 230.465 176.818 c 0 + 235.895 154.895 246.291 134.128 261.23 117.188 c 0 + 278.756 97.3145 302.079 82.9951 327.104 74.2871 c 0 + 352.13 65.5801 378.776 62.0117 405.273 62.0117 c 0 + 431.771 62.0117 458.417 65.5801 483.442 74.2871 c 0 + 508.467 82.9951 531.792 97.3145 549.316 117.188 c 0 + 564.253 134.128 574.653 154.895 580.083 176.818 c 0 + 585.513 198.742 585.938 221.554 585.938 244.141 c 2 + 585.938 693.848 l 1 + 668.945 693.848 l 1 + 668.945 302.734 l 2 + 668.945 250.459 673.384 197.305 661.133 146.484 c 0 + 654.761 120.046 643.154 94.7676 626.333 73.4014 c 0 + 609.507 52.0352 587.734 34.751 563.623 22.166 c 0 + 515.41 -3.00391 459.665 -10.2539 405.273 -10.2539 c 0 + 350.882 -10.2539 295.139 -3.00391 246.922 22.166 c 0 + 222.812 34.751 201.041 52.0352 184.216 73.4014 c 0 + 167.391 94.7676 155.787 120.046 149.414 146.484 c 0 + 137.162 197.305 141.602 250.459 141.602 302.734 c 2 + 141.602 693.848 l 1 +EndSplineSet +EndChar + +StartChar: Q +Encoding: 81 81 52 +Width: 756 +VWidth: 1023 +Flags: W +HStem: -7.03418 71.9873<286.485 487.991> 628 73.0273<277.467 470.788> +VStem: 50 84.9668<226.38 477.329> 617.177 84.8232<205.171 470.101> +LayerCount: 4 +Fore +SplineSet +378.14 701.027 m 0 + 379.755 701.027 381.375 701.018 383 701 c 0 + 482.46 701 564.738 657.388 616 601 c 0 + 673 537 702 452 702 346 c 0 + 702 249 678 169 629 107 c 1 + 717 20 l 1 + 673 -27 l 1 + 581 59 l 1 + 524.316 14.0439 457.126 -7.03418 378.496 -7.03418 c 0 + 276.766 -7.03418 199.122 29.8779 144 85 c 0 + 86.7764 142.224 50 236.519 50 347 c 0 + 50 463.683 93.0303 559.584 157 620 c 1 + 215.929 674.018 289.326 701.027 378.14 701.027 c 0 +378 628 m 0 + 226.777 625.956 134.967 512.319 134.967 357.327 c 0 + 134.967 226.717 188.135 132.593 279 90 c 0 + 312.588 74.2559 347.029 64.9531 385.318 64.9531 c 0 + 440.112 64.9531 488.249 79.999 527 111 c 1 + 373 256 l 1 + 424 309 l 1 + 573 162 l 1 + 602.173 206.23 617.177 261.974 617.177 327.564 c 0 + 617.177 465.825 571.919 552.378 488 599 c 0 + 452 619 415 628 378 628 c 0 +EndSplineSet +Layer: 3 +SplineSet +479.004 309.082 m 1 + 772.461 20.0195 l 1 + 727.539 -27.3438 l 1 + 427.734 256.348 l 1 + 479.004 309.082 l 1 +425.781 628.418 m 0 + 361.821 627.866 298.036 600.332 255.859 552.246 c 0 + 231.501 524.473 214.418 490.732 204.096 455.262 c 0 + 193.771 419.794 189.764 382.637 190.43 345.703 c 0 + 191.658 277.631 209.323 207.869 251.953 154.785 c 0 + 274.144 127.152 302.727 104.729 334.75 89.5449 c 0 + 366.771 74.3613 402.069 66.2197 437.5 65.4297 c 0 + 469.515 64.7158 501.758 70.0469 531.465 82.0078 c 0 + 561.167 93.9688 588.149 112.742 609.375 136.719 c 0 + 634.043 164.586 650.61 199.045 660.112 235.029 c 0 + 669.614 271.014 672.7 308.494 671.875 345.703 c 0 + 670.576 404.186 659.575 463.76 629.883 514.16 c 0 + 609.146 549.36 579.097 579.097 543.364 598.911 c 0 + 507.632 618.726 466.637 628.77 425.781 628.418 c 0 +435.059 701.172 m 0 + 479.128 700.835 523.247 692.583 563.994 675.786 c 0 + 604.736 658.989 641.899 633.34 671.387 600.586 c 0 + 702.065 566.504 724.155 525.117 737.871 481.359 c 0 + 751.582 437.6 757.437 391.561 757.324 345.703 c 0 + 757.207 297.859 750.615 249.831 735.4 204.47 c 0 + 720.19 159.109 695.728 116.561 662.109 82.5195 c 0 + 631.895 51.9258 594.614 28.5244 554.282 13.626 c 0 + 513.945 -1.27246 470.728 -7.98242 427.734 -7.32422 c 0 + 345.24 -6.06152 261.942 23.6855 203.125 81.543 c 0 + 168.734 115.371 143.352 157.869 127.519 203.436 c 0 + 111.686 249.004 104.832 297.464 104.98 345.703 c 0 + 105.137 396.16 112.918 446.807 130.287 494.18 c 0 + 147.656 541.553 175.28 585.454 212.402 619.629 c 0 + 271.949 674.448 354.123 701.787 435.059 701.172 c 0 +EndSplineSet +EndChar + +StartChar: W +Encoding: 87 87 53 +Width: 975 +VWidth: 1023 +Flags: W +HStem: 0 21G<221.718 321.862 662.69 762.994> 674 20G<10 105.003 442.997 539.175 877.168 965> +LayerCount: 4 +Fore +SplineSet +10 694 m 1 + 99 694 l 1 + 274 111 l 1 + 449 694 l 1 + 533 694 l 1 + 713 111 l 1 + 883 694 l 1 + 965 694 l 1 + 757 0 l 1 + 669 0 l 1 + 486 580 l 1 + 316 0 l 1 + 228 0 l 1 + 10 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +68.3594 693.848 m 1 + 157.227 693.848 l 1 + 361.816 9.27734 l 1 + 300.781 9.27734 l 1 + 507.324 693.848 l 1 + 590.82 693.848 l 1 + 802.734 9.27734 l 1 + 741.699 9.27734 l 1 + 940.918 693.848 l 1 + 1022.95 693.848 l 1 + 814.941 0 l 1 + 726.562 0 l 1 + 519.531 658.203 l 1 + 567.383 658.203 l 1 + 374.023 0 l 1 + 285.645 0 l 1 + 68.3594 693.848 l 1 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 54 +Width: 648 +VWidth: 1023 +Flags: W +HStem: -10 75.5625<306.92 554.233> 627.748 74.5547<303.55 551.397> +VStem: 50 94.916<231.433 466.293> +LayerCount: 4 +Back +SplineSet +184 346 m 4 + 184 235.13 229.021 147.319 297 102 c 4 + 333 78 374 66 419 66 c 4 + 521.563 66 588.679 127.826 624 202 c 4 + 644 244 654 292 654 346 c 4 + 654 456.419 608.667 544.889 541 590 c 4 + 505 614 464 626 419 626 c 4 + 316.437 626 249.321 564.174 214 490 c 4 + 194 448 184 400 184 346 c 4 +90 346 m 4 + 90 492.312 150.153 600.989 245 656 c 4 + 295 685 353 700 419 700 c 4 + 560.135 700 657.819 630.362 707 532 c 4 + 734 478 748 416 748 346 c 4 + 748 200.126 686.693 90.922 592 36 c 4 + 542 7 485 -8 419 -8 c 4 + 276.87 -8 179.959 61.9319 130 160 c 4 + 103 213 90 276 90 346 c 4 +EndSplineSet +Fore +SplineSet +576.08 597.521 m 1 + 513.229 619.079 484.14 627.748 405.433 627.748 c 0 + 327.007 627.748 257.228 590.261 217.619 547.146 c 0 + 169.151 494.758 144.916 429.27 144.916 348.67 c 0 + 144.916 230.26 199.738 145.562 278.203 100.825 c 0 + 320.613 76.6445 369.081 65.5625 423.609 65.5625 c 0 + 478.135 65.5625 532.662 76.6445 587.188 98.8096 c 1 + 608.392 32.3154 l 1 + 546.798 4.10547 477.125 -10 399.374 -10 c 0 + 288.169 -10 201.339 31.5693 144.916 89.7422 c 1 + 82.3115 156.237 50 241.875 50 347.662 c 0 + 50 455.448 91.4746 545.378 146.936 602.561 c 0 + 199.746 657.011 289.314 702.303 390.286 702.303 c 0 + 481.123 702.303 533.028 690.831 599.305 666.032 c 1 + 576.08 597.521 l 1 +EndSplineSet +Layer: 3 +SplineSet +467.334 697.241 m 0 + 548.511 697.241 606.958 682.861 664.941 660.596 c 1 + 641.748 593.335 l 1 + 584.229 612.817 546.191 622.559 477.539 622.559 c 0 + 319.36 622.559 215.454 503.345 215.454 345.631 c 0 + 215.454 179.102 326.318 64.9902 492.847 64.9902 c 0 + 554.077 64.9902 599.536 76.123 652.881 97.9248 c 1 + 674.219 31.5918 l 1 + 616.699 5.15137 553.613 -10.1562 467.334 -10.1562 c 0 + 256.738 -10.1562 121.289 136.426 121.289 345.166 c 0 + 121.289 549.268 262.305 697.241 467.334 697.241 c 0 +EndSplineSet +EndChar + +StartChar: S +Encoding: 83 83 55 +Width: 599 +VWidth: 1023 +Flags: W +HStem: -9 81<162.544 387.194> 622 78<232.03 485.598> +VStem: 74 91<458.576 567.539> 449 90<124.411 240.321> +LayerCount: 4 +Fore +SplineSet +283 72 m 0 + 364.776 72 449 106.344 449 182 c 0 + 449 224 424 256 375 278 c 0 + 304.455 310.066 213.443 329.92 149 368 c 0 + 109.054 391.604 74 436.134 74 497 c 0 + 74 560.333 108.186 609.624 147 640 c 0 + 196.063 678.397 263.681 700 354 700 c 0 + 401 700 454 691 516 672 c 1 + 489 597 l 1 + 430 614 379 622 333 622 c 0 + 254.9 622 165 585.798 165 513 c 0 + 165 478 184 451 223 431 c 0 + 258 413 295 398 332 387 c 0 + 398.722 367.164 435.714 349.706 481 317 c 0 + 520 288 539 247 539 194 c 0 + 539 155 526 118 501 84 c 0 + 456.118 25.1886 377.92 -9 271 -9 c 0 + 181.514 -9 130.773 9.77962 60 37 c 1 + 89 118 l 1 + 170 88 235 72 283 72 c 0 +EndSplineSet +Layer: 3 +SplineSet +400.879 700.195 m 0 + 463.379 700.195 526.367 686.523 573.242 672.363 c 1 + 546.387 596.68 l 1 + 524.414 603.027 455.078 622.07 394.043 622.07 c 0 + 299.805 622.07 221.68 578.125 221.68 512.695 c 0 + 221.68 361.816 596.191 417.969 596.191 193.848 c 0 + 596.191 104.492 523.926 -9.27734 328.125 -9.27734 c 0 + 245.605 -9.27734 184.082 10.7422 117.188 37.1094 c 1 + 145.508 117.676 l 1 + 234.863 84.4727 297.363 72.2656 338.379 72.2656 c 0 + 436.035 72.2656 505.859 114.746 505.859 181.641 c 0 + 505.859 346.191 131.348 278.32 131.348 499.023 c 0 + 131.348 606.445 236.328 700.195 400.879 700.195 c 0 +EndSplineSet +EndChar + +StartChar: at +Encoding: 64 64 56 +Width: 1025 +VWidth: 1023 +Flags: W +HStem: -198.698 70.417<381.986 642.799> -11 67<449.115 596.665 728.213 826.216> 417 63<460.973 633.792> 616 68<403.643 681.58> +VStem: 77 86<100.119 370.697> 297 88<126.673 332.566> 635 77<88.4764 407.31> 881 83<144.385 416.849> +LayerCount: 4 +Back +SplineSet +645.996 472.656 m 5 + 701.172 472.656 l 5 + 699.707 123.047 l 6 + 699.653 110.273 699.531 97.4766 700.669 84.7549 c 4 + 701.807 72.0332 704.302 59.3037 709.595 47.6797 c 4 + 714.888 36.0557 723.135 25.6211 733.906 18.75 c 4 + 744.673 11.8789 757.812 8.83301 770.508 10.2539 c 4 + 787.7 12.1777 803.247 21.8975 815.43 34.1797 c 4 + 828.623 47.4795 838.696 63.6211 846.68 80.5664 c 4 + 872.974 136.375 877.222 200.03 876.465 261.719 c 4 + 875.947 304.16 872.271 346.78 861.777 387.906 c 4 + 851.279 429.033 833.081 468.575 805.664 500.977 c 4 + 781.143 529.956 749.717 552.769 715.332 568.848 c 4 + 661.201 594.16 600.771 604.062 541.016 604.492 c 4 + 470.471 604.995 398.461 591.343 337.891 555.176 c 4 + 278.573 519.756 233.471 463.037 206.543 399.414 c 4 + 181.696 340.708 170.298 276.639 170.41 212.891 c 4 + 170.547 135.005 189.568 55.5488 234.863 -7.8125 c 4 + 264.729 -49.5918 305.405 -83.4404 351.562 -105.957 c 4 + 415.218 -137.01 489.058 -146.763 558.594 -133.301 c 4 + 586.465 -127.904 613.628 -118.854 639.16 -106.445 c 5 + 669.922 -164.551 l 5 + 643.877 -178.023 616.294 -188.514 587.891 -195.801 c 4 + 503.315 -217.5 412.363 -210.842 330.078 -181.641 c 4 + 264.727 -158.448 204.056 -119.184 162.109 -63.9648 c 4 + 134.932 -28.1875 116.017 13.5137 104.591 56.9668 c 4 + 93.166 100.42 88.7402 145.502 88.3789 190.43 c 4 + 87.7461 269.055 98.2734 348.475 126.465 421.875 c 4 + 159.625 508.213 222.166 583.799 303.711 627.441 c 4 + 380.87 668.735 470.103 683.218 557.617 683.105 c 4 + 618.545 683.027 680.039 675.708 737.305 654.897 c 4 + 794.57 634.087 846.821 598.12 883.301 549.316 c 4 + 913.525 508.887 932.612 460.918 943.56 411.642 c 4 + 954.502 362.364 958.364 311.708 958.496 261.23 c 4 + 958.604 220.584 956.143 179.778 948.042 139.947 c 4 + 939.946 100.115 925.713 61.0879 902.344 27.832 c 4 + 886.26 4.94434 865.903 -15.0605 842.124 -29.7979 c 4 + 818.35 -44.5352 791.108 -53.9883 763.184 -55.6641 c 4 + 742.866 -56.8828 722.217 -53.9102 703.364 -46.2334 c 4 + 684.512 -38.5557 667.593 -26.1045 654.858 -10.2246 c 4 + 642.124 5.65625 633.735 24.7959 629.443 44.6934 c 4 + 625.151 64.5918 624.937 85.1133 625 105.469 c 6 + 625.977 414.551 l 5 + 645.996 472.656 l 5 + Spiro + 645.996 472.656 v + 701.172 472.656 v + 699.707 123.047 ] + 770.508 10.2539 o + 815.43 34.1797 o + 846.68 80.5664 o + 876.465 261.719 o + 805.664 500.977 o + 715.332 568.848 o + 541.016 604.492 o + 337.891 555.176 o + 206.543 399.414 o + 170.41 212.891 o + 234.863 -7.8125 o + 351.562 -105.957 o + 558.594 -133.301 o + 639.16 -106.445 v + 669.922 -164.551 v + 587.891 -195.801 o + 330.078 -181.641 o + 162.109 -63.9648 o + 88.3789 190.43 o + 126.465 421.875 o + 303.711 627.441 o + 557.617 683.105 o + 883.301 549.316 o + 958.496 261.23 o + 902.344 27.832 o + 763.184 -55.6641 o + 625 105.469 [ + 625.977 414.551 v + 0 0 z + EndSpiro +540.039 468.75 m 4 + 566.196 466.015 591.895 459.246 616.211 449.219 c 4 + 630.22 443.44 643.784 436.574 656.738 428.711 c 5 + 631.348 385.254 l 5 + 616.714 392.059 601.514 397.643 585.938 401.855 c 4 + 556.421 409.84 525.239 412.979 495.117 407.715 c 4 + 474.732 404.152 454.985 396.633 437.744 385.189 c 4 + 420.502 373.747 405.895 358.426 395.02 340.82 c 4 + 375.273 308.854 367.802 270.483 367.676 232.91 c 4 + 367.555 196.895 374.216 160.174 392.09 128.906 c 4 + 406.17 104.277 427.406 83.7725 452.637 70.8008 c 4 + 479.802 56.834 511.04 51.5117 541.504 53.7109 c 4 + 588.081 57.0723 633.008 77.3867 667.48 108.887 c 5 + 685.059 65.4297 l 5 + 639.16 21.8086 577.881 -5.97363 514.648 -9.27734 c 4 + 480.793 -11.0459 446.401 -5.63379 415.332 7.93262 c 4 + 384.262 21.5 356.859 43.3857 336.914 70.8008 c 4 + 305.317 114.232 293.04 169.438 293.457 223.145 c 4 + 293.695 253.865 297.92 284.629 306.937 313.998 c 4 + 315.953 343.367 330.045 371.332 349.609 395.02 c 4 + 371.037 420.963 399 441.441 430.176 454.102 c 4 + 464.752 468.143 502.925 472.631 540.039 468.75 c 4 + Spiro + 540.039 468.75 o + 616.211 449.219 o + 656.738 428.711 v + 631.348 385.254 v + 585.938 401.855 o + 495.117 407.715 o + 395.02 340.82 o + 367.676 232.91 o + 392.09 128.906 o + 452.637 70.8008 o + 541.504 53.7109 o + 667.48 108.887 v + 685.059 65.4297 v + 514.648 -9.27734 o + 336.914 70.8008 o + 293.457 223.145 o + 349.609 395.02 o + 430.176 454.102 o + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +712 146 m 2 + 712 87.7407 728.205 56 778 56 c 0 + 812.983 56 834.037 82.067 849 109 c 0 + 870 147 881 205 881 283 c 0 + 881 356 865 419 832 473 c 0 + 774 569 677 616 540 616 c 0 + 421.407 616 329.437 572.437 268 511 c 0 + 209.038 452.038 163 355.123 163 243 c 0 + 163 90.3046 221.066 -13.0425 314 -73 c 0 + 366.543 -106.899 431.257 -128.281 512.791 -128.281 c 0 + 563.075 -128.281 615.625 -119.521 670 -102 c 1 + 670 -169 l 1 + 606.737 -188.734 546.168 -198.698 488.49 -198.698 c 0 + 446.791 -198.698 406.603 -193.49 368 -183 c 0 + 194.536 -136.223 77 19.1737 77 236 c 0 + 77 377.024 132.798 489.466 208 561 c 0 + 277.288 626.908 397.703 684 523 684 c 0 + 667.431 684 760.357 654.776 836 589 c 0 + 879.864 550.858 912.539 507.944 934 450 c 1 + 954 399 964 350 964 301 c 0 + 964 179.007 936.926 95.3421 876 38 c 0 + 842 6 805 -11 765 -11 c 0 + 710 -11 672 11 650 54 c 1 + 612 11 564 -11 506 -11 c 0 + 463 -11 426 0 394 20 c 0 + 330 61 297 128 297 224 c 0 + 297 305 320 369 366 414 c 0 + 410 458 466 480 532 480 c 0 + 569 480 609 472 652 455 c 1 + 660 475 l 1 + 712 475 l 1 + 712 146 l 2 +385 232 m 0 + 385 129.795 427.153 58 524 58 c 0 + 553 58 576 63 595 75 c 0 + 614 87 627 99 636 111 c 1 + 636 115 635 119 635 123 c 2 + 635 400 l 1 + 604 412 573 417 541 417 c 0 + 439.569 417 385 336.251 385 232 c 0 +EndSplineSet +Layer: 3 +SplineSet +652.266 392.795 m 1 + 613.252 410.236 581.123 417.121 541.191 417.121 c 0 + 442.971 417.121 384.68 341.848 384.68 231.232 c 0 + 384.68 121.994 435.168 57.7363 523.75 57.7363 c 0 + 587.09 57.7363 628.398 94.9141 642.173 121.535 c 1 + 665.122 74.2598 l 1 + 640.332 37.082 590.303 -10.6523 505.85 -10.6523 c 0 + 374.123 -10.6523 297.014 87.1113 297.014 223.889 c 0 + 297.014 389.123 403.498 480.002 532.471 480.002 c 0 + 575.156 480.002 615.547 469.904 658.691 452.004 c 1 + 652.266 392.795 l 1 +635.283 416.662 m 1 + 660.073 474.494 l 1 + 712.393 474.494 l 1 + 712.393 145.861 l 2 + 712.393 94.9141 725.244 56.3594 776.65 56.3594 c 0 + 830.352 56.3594 880.84 122.453 880.84 283.098 c 0 + 880.84 451.086 787.666 616.318 539.814 616.318 c 0 + 318.127 616.318 162.99 462.561 162.99 236.74 c 0 + 162.99 -50.125 397.072 -190.115 669.707 -101.99 c 1 + 669.707 -169.461 l 1 + 337.863 -271.814 76.7012 -90.9746 76.7012 236.281 c 0 + 76.7012 503.408 274.064 684.248 539.814 684.248 c 0 + 849.17 684.248 963.916 481.838 963.916 285.393 c 0 + 963.916 90.3242 860.19 -10.6523 765.176 -10.6523 c 0 + 681.182 -10.6523 635.283 45.3438 635.283 122.912 c 2 + 635.283 416.662 l 1 +EndSplineSet +EndChar + +StartChar: question +Encoding: 63 63 57 +Width: 510 +VWidth: 1023 +Flags: W +HStem: 0 98<152 250> 632 70<77.4705 293.496> +VStem: 152 98<0 98> 159 83<191 281.203> 347 81<451.418 586.115> +LayerCount: 4 +Fore +SplineSet +152 98 m 1xe8 + 250 98 l 1 + 250 0 l 1 + 152 0 l 1 + 152 98 l 1xe8 +214 702 m 0 + 333.838 702 428 651.76 428 536 c 0 + 428 485 416 443 391 412 c 0 + 380 398 367 385 354 373 c 2 + 315 339 l 2 + 283 312 264 287 255 263 c 0 + 246 239 242 215 242 191 c 1 + 159 191 l 1xd8 + 159 246 171 290 196 324 c 0 + 214 348 235 370 258 389 c 0 + 304.062 425.048 347 454.282 347 522 c 0 + 347 595 291 632 179 632 c 0 + 144 632 109 624 74 609 c 1 + 49 668 l 1 + 94 690 149 702 214 702 c 0 +EndSplineSet +Layer: 3 +SplineSet +206.543 701.66 m 0 + 342.285 701.66 427.734 647.949 427.734 535.645 c 0 + 427.734 338.379 242.188 368.164 242.188 191.406 c 1 + 159.18 191.406 l 1 + 159.18 398.926 347.168 385.742 347.168 521.973 c 0 + 347.168 563.965 322.266 631.836 193.359 631.836 c 0 + 156.25 631.836 104.492 622.07 74.2188 608.887 c 1 + 48.8281 668.457 l 1 + 97.6562 692.383 152.832 701.66 206.543 701.66 c 0 +151.855 97.6562 m 1 + 249.512 97.6562 l 1 + 249.512 0 l 1 + 151.855 0 l 1 + 151.855 97.6562 l 1 +EndSplineSet +EndChar + +StartChar: eight +Encoding: 56 56 58 +Width: 634 +VWidth: 1023 +Flags: HMW +HStem: 0 73<230.774 410.633> 340 65 620 73<238.786 398.022> +VStem: 73 85<129.825 268.901> 112 82<480.306 590.868> 442 80<475.656 591.023> 476 86<123.881 267.459> +LayerCount: 4 +Fore +SplineSet +306 633 m 0xec + 252.358 633 194 589.102 194 536 c 0 + 194 491 227 456 293 432 c 0 + 303 428 315 425 329 420 c 2 + 341 416 l 1 + 384 443 412 464 424 480 c 0 + 436 496 442 514 442 534 c 0 + 442 577.855 410.759 608.207 378 622 c 0 + 359 630 334 633 306 633 c 0xec +320 63 m 0 + 406.154 63 476 112.483 476 194 c 0 + 476 259 436 307 354 338 c 0 + 339 344 322 349 303 354 c 1 + 232.034 333.499 158 279.162 158 198 c 0xf2 + 158 117.59 235.941 63 320 63 c 0 +318 703 m 0 + 437.791 703 522 648.338 522 534 c 0xec + 522 506 515 480 499 457 c 0 + 483 434 458 411 424 387 c 1 + 471 366 506 339 528 307 c 0 + 550 275 562 239 562 200 c 0 + 562 156 548 116 521 81 c 0 + 475 20 408 -10 320 -10 c 0 + 224.415 -10 146.933 29.3219 106 87 c 0 + 84 118 73 152 73 191 c 0xf2 + 73 283.498 143.128 353.204 212 386 c 1 + 160 412 128 451 116 502 c 0 + 113 514 112 528 112 545 c 0xe8 + 112 588.656 139.545 629.657 166 653 c 0 + 203 686 253 703 318 703 c 0 +EndSplineSet +Layer: 3 +SplineSet +313.954 703.145 m 0 + 452.325 703.145 522.471 638.672 522.471 533.809 c 0 + 522.471 475.045 488.442 432.729 424.523 386.896 c 1 + 521.255 343.351 561.562 274.612 561.562 199.756 c 0 + 561.562 96.1123 475.803 -9.77148 319.789 -9.77148 c 0 + 184.165 -9.77148 73.1016 73.0176 73.1016 190.262 c 0 + 73.1016 268.639 128.6 346.449 212.078 386.203 c 1 + 128.139 428.533 112.209 497.822 112.209 536.128 c 0 + 112.209 626.411 187.949 703.145 313.954 703.145 c 0 +323.504 63.377 m 0 + 417.405 63.377 476.107 122.723 476.107 193.623 c 0 + 476.107 290.404 387.856 330.594 302.547 354.418 c 1 + 209.512 327.129 158.207 260.414 158.207 197.745 c 0 + 158.207 127.546 221.709 63.377 323.504 63.377 c 0 +313.973 633.33 m 0 + 245.833 633.33 193.844 587.217 193.844 535.801 c 0 + 193.844 466.273 273.802 437.199 328.617 419.922 c 2 + 340.605 416.174 l 1 + 399.033 452.665 442.205 482.509 442.205 531.431 c 0 + 442.205 597.656 382.564 633.33 313.973 633.33 c 0 +EndSplineSet +EndChar + +StartChar: nine +Encoding: 57 57 59 +Width: 634 +VWidth: 1023 +Flags: HMW +HStem: 0 73<137 174.297> 256 65<239.089 398.008> 620 73 +VStem: 470 82<394.829 547.695> +LayerCount: 4 +Fore +SplineSet +458 320 m 1 + 424.87 283.189 366.856 256 299 256 c 0 + 231 257 176 280 135 327 c 0 + 100.775 365.85 83.6625 411.545 83.6625 465.668 c 0 + 83.6625 542.019 119.02 603.837 161 642 c 1 + 208 683 260 704 319 704 c 0 + 431.4 704 503.765 638.706 531 557 c 0 + 544.723 515.832 552.094 462.869 552.094 402.259 c 0 + 552.094 279.722 520.648 161.128 458 95 c 0 + 394.676 26.8784 305.576 -7.18243 189.817 -7.18243 c 0 + 184.925 -7.18243 179.986 -7.12162 175 -7 c 0 + 160 -7 145 -6 131 -4 c 1 + 137 68 l 1 + 157.24 66.0092 176.489 65.0092 194.761 65.0092 c 0 + 343.908 65.0092 426.68 132.447 450 262 c 0 + 452 276 455 295 458 320 c 1 +163.77 475.327 m 0 + 163.77 440.802 174.917 409.622 198 381 c 0 + 229.931 342.889 268.189 323.95 316.472 323.95 c 0 + 359.523 323.95 396.032 337.999 426 367 c 0 + 455.062 396.062 470.047 428.877 470.047 467.264 c 0 + 470.047 533.383 426.83 592.774 377 619 c 0 + 355.783 630.139 339.037 635.932 313.35 635.932 c 27 + 290.712 635.932 257 622 257 622 c 1 + 206.002 599.334 163.77 538.767 163.77 475.327 c 0 +EndSplineSet +Layer: 3 +SplineSet +314.941 635.254 m 0 + 294.895 635.317 274.92 630.469 256.863 621.758 c 0 + 238.809 613.047 222.628 600.625 208.984 585.938 c 0 + 183.396 558.394 166.398 522.388 164.062 484.863 c 0 + 161.75 447.718 174.524 410.029 198.242 381.348 c 0 + 226.585 347.074 270.002 325.686 314.453 324.219 c 0 + 355.459 322.865 396.891 338.549 426.27 367.188 c 0 + 454.634 394.838 470.941 434.528 469.727 474.121 c 0 + 468.551 512.417 452.113 549.463 427.246 578.613 c 0 + 413.207 595.068 396.329 609.219 377.191 619.302 c 0 + 358.054 629.385 336.572 635.186 314.941 635.254 c 0 +323.73 703.613 m 0 + 374.715 703.882 426.32 687.612 465.332 654.785 c 0 + 497.715 627.534 520.352 589.839 533.306 549.551 c 0 + 546.255 509.258 550.493 466.631 551.27 424.316 c 0 + 552.349 365.447 547.808 306.23 534.292 248.925 c 0 + 520.771 191.619 496.006 136.024 456.055 92.7734 c 0 + 421.218 55.0596 375.734 27.8408 326.861 12.1123 c 0 + 277.988 -3.61621 226.125 -8.78027 174.805 -7.32422 c 0 + 160.126 -6.9082 145.464 -5.92773 130.859 -4.39453 c 1 + 136.719 67.8711 l 1 + 167.854 64.6953 199.289 64.1875 230.469 66.8945 c 0 + 261.801 69.6152 293.048 75.6836 322.146 87.6152 c 0 + 351.243 99.5488 377.938 117.752 398.438 141.602 c 0 + 427.2 175.066 442.221 218.333 449.855 261.794 c 0 + 457.49 305.256 459.912 349.48 466.797 393.066 c 0 + 467.569 397.956 468.383 402.839 469.238 407.715 c 1 + 503.418 416.016 l 1 + 499.189 384.33 485.95 353.934 465.82 329.102 c 0 + 445.92 304.553 419.494 285.546 390.357 273.312 c 0 + 361.221 261.077 329.449 255.401 297.852 255.859 c 0 + 267.396 256.301 236.971 262.442 208.964 274.414 c 0 + 180.957 286.387 155.447 304.346 135.254 327.148 c 0 + 98.9307 368.166 81.3086 424.279 83.9844 479.004 c 0 + 87.0215 541.128 115.551 601.821 162.109 643.066 c 0 + 206.107 682.041 264.952 703.306 323.73 703.613 c 0 +EndSplineSet +EndChar + +StartChar: six +Encoding: 54 54 60 +Width: 634 +VWidth: 1023 +Flags: W +HStem: -12 68<247.68 391.124> 387.094 67.906<236.757 394.902> 631.2 72.252<321.154 497.331> +VStem: 82.8481 81.1049<147.627 384.191> 470.452 79.886<143.045 310.67> +LayerCount: 4 +Fore +SplineSet +550.338 236.439 m 0 + 550.338 94.43 448.21 -12 316 -12 c 0 + 257 -12 209 3 174 32 c 0 + 106.115 88.2472 82.8481 166.186 82.8481 283.996 c 0 + 82.8481 499.881 157.874 635.241 307 683 c 4 + 349.679 696.515 394.887 703.452 442.985 703.452 c 4 + 462.506 703.452 482.503 702.31 503 700 c 5 + 497 628 l 5 + 478.067 630.133 459.773 631.2 442.139 631.2 c 4 + 297.635 631.2 209.134 560.596 182 440 c 0 + 179 427 176 409 173 388 c 1 + 208.198 426.903 263.686 455 335 455 c 1 + 403 454 458 431 499 384 c 0 + 533.225 344.225 550.338 295.038 550.338 236.439 c 0 +319 56 m 0 + 407.324 56 470.452 140.654 470.452 229.834 c 0 + 470.452 315.924 405.393 387.094 316.642 387.094 c 0 + 226.604 387.094 163.953 318.886 163.953 234.202 c 0 + 163.953 142.621 232.446 56 319 56 c 0 +EndSplineSet +Layer: 3 +SplineSet +319.336 386.719 m 0 + 278.279 388.084 236.474 372.891 207.52 343.75 c 0 + 177.434 313.472 162.754 269.715 164.062 227.051 c 0 + 165.33 185.715 180.335 144.783 206.543 112.793 c 0 + 220.271 96.0352 237.174 81.7832 256.401 71.8027 c 0 + 275.629 61.8223 297.185 56.2393 318.848 56.1523 c 0 + 338.927 56.0723 358.977 60.7051 377.109 69.3301 c 0 + 395.243 77.9531 411.441 90.4814 424.805 105.469 c 0 + 451.83 135.779 467.362 175.77 469.727 216.309 c 0 + 472.075 256.582 460.744 298.086 435.547 329.59 c 0 + 407.729 364.369 363.847 385.239 319.336 386.719 c 0 +177.734 598.633 m 0 + 212.539 636.382 258.027 663.618 306.908 679.336 c 0 + 355.789 695.054 407.658 700.19 458.984 698.73 c 0 + 473.663 698.311 488.325 697.334 502.93 695.801 c 1 + 497.07 623.535 l 1 + 465.953 626.958 434.488 627.441 403.32 624.512 c 0 + 372.076 621.577 340.988 615.132 312.004 603.101 c 0 + 283.02 591.074 256.346 573.13 235.352 549.805 c 0 + 207.85 519.253 191.068 480.248 181.94 440.167 c 0 + 172.812 400.085 170.01 358.867 166.992 317.871 c 0 + 166.154 306.479 165.344 295.086 164.551 283.691 c 1 + 130.371 294.922 l 1 + 134.536 326.621 147.789 357.037 167.969 381.836 c 0 + 187.902 406.334 214.369 425.248 243.5 437.451 c 0 + 272.63 449.654 304.355 455.385 335.938 455.078 c 0 + 366.433 454.781 396.944 448.832 425.006 436.893 c 0 + 453.068 424.952 478.557 406.83 498.535 383.789 c 0 + 536.484 340.025 552.69 280.021 549.805 222.168 c 0 + 546.562 157.084 519.844 92.2344 471.68 48.3398 c 0 + 428.178 8.69531 368.915 -12.2207 310.059 -12.207 c 0 + 259.102 -12.1953 207.558 3.94531 168.457 36.6211 c 0 + 135.966 63.7734 113.217 101.451 100.274 141.769 c 0 + 87.333 182.086 83.2012 224.752 82.5195 267.09 c 0 + 81.5723 325.948 86.1777 385.137 99.6699 442.436 c 0 + 113.161 499.736 137.832 555.352 177.734 598.633 c 0 +EndSplineSet +EndChar + +StartChar: seven +Encoding: 55 55 61 +Width: 634 +VWidth: 0 +Flags: HMW +HStem: 0 20<150 257.093> 620 73<64 469> +LayerCount: 4 +Fore +SplineSet +571 694 m 1 + 571 642 l 1 + 247 0 l 1 + 150 0 l 1 + 469 616 l 1 + 64 616 l 1 + 64 694 l 1 + 571 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +570.801 693.848 m 1 + 570.801 641.602 l 1 + 247.07 0 l 1 + 150.391 0 l 1 + 500.488 676.758 l 1 + 522.949 615.723 l 1 + 63.9639 615.723 l 1 + 63.9639 693.848 l 1 + 570.801 693.848 l 1 +EndSplineSet +EndChar + +StartChar: five +Encoding: 53 53 62 +Width: 634 +VWidth: 1023 +Flags: HMW +HStem: 0 73<98.4865 320.784> 620 73<194 533> +VStem: 115 80<431 621> 467 88<140.771 289.085> +LayerCount: 4 +Fore +SplineSet +261 363.608 m 0 + 211.003 363.608 168.126 358.037 115 352 c 1 + 115 694 l 1 + 533 694 l 1 + 533 621 l 1 + 194 621 l 1 + 195 431 l 1 + 233.241 435.249 267.251 437.523 297.029 437.523 c 0 + 417.639 437.523 497.483 392.785 535 314 c 0 + 548.122 284.945 555.094 255.012 555.094 224.2 c 0 + 555.094 151.318 528.01 94.8481 477 52 c 0 + 446 27 412 9 372 1 c 0 + 335.763 -6.60526 296.524 -10.4079 254.283 -10.4079 c 0 + 202.103 -10.4079 145.342 -4.60526 84 7 c 1 + 100 81 l 1 + 149.193 71.1614 194.725 65.6515 248.875 65.6515 c 0 + 317.455 65.6515 367.029 72.9304 407 102 c 0 + 440.439 126.319 468.692 158.878 468.692 212.528 c 0 + 468.692 257.369 454.454 285.001 425 312 c 0 + 384.133 349.461 334.517 363.608 261 363.608 c 0 +EndSplineSet +Layer: 3 +SplineSet +114.74 693.848 m 1 + 532.705 693.848 l 1 + 532.705 620.605 l 1 + 194.33 620.605 l 1 + 194.818 431.152 l 1 + 218.508 433.812 242.291 435.656 266.113 436.523 c 0 + 301.563 437.814 337.266 437.063 372.176 430.763 c 0 + 407.086 424.462 441.244 412.084 470.207 391.602 c 0 + 498.091 371.883 520.698 344.807 535.195 313.885 c 0 + 549.692 282.964 556.27 248.489 555.166 214.355 c 0 + 553.169 152.42 524.688 91.3799 477.043 51.7578 c 0 + 444.74 24.8955 404.828 8.18848 363.715 -0.456055 c 0 + 322.601 -9.10156 280.271 -10.4873 238.275 -9.27734 c 0 + 201.156 -8.20801 164.097 -5.03027 127.333 0.207031 c 0 + 112.992 2.25 98.6982 4.62207 84.4668 7.32422 c 1 + 100.092 81.0547 l 1 + 112.697 78.3926 125.38 76.0996 138.118 74.1719 c 0 + 168.049 69.6406 198.26 67.0449 228.51 65.918 c 0 + 259.682 64.7559 291.049 65.0254 321.863 69.8672 c 0 + 352.68 74.709 383.142 84.6328 408.684 102.539 c 0 + 429.041 116.809 445.981 136.146 456.447 158.695 c 0 + 466.913 181.244 470.758 206.83 467.277 231.445 c 0 + 462.822 262.96 446.346 292.344 422.863 313.828 c 0 + 399.381 335.314 369.426 348.951 338.379 355.957 c 0 + 301.852 364.2 263.947 363.937 226.562 361.816 c 0 + 189.188 359.697 151.929 355.855 114.74 351.562 c 1 + 114.74 693.848 l 1 +EndSplineSet +EndChar + +StartChar: two +Encoding: 50 50 63 +Width: 634 +VWidth: 0 +Flags: W +HStem: -0.0351562 73.1777<211.172 552.993> 628.661 72.0332<191.513 386.363> +VStem: 453.63 86.5479<446.332 567.792> +LayerCount: 4 +Fore +SplineSet +97.2314 645.527 m 5 + 170.896 682.468 241.798 700.694 315.34 700.694 c 4 + 389.753 700.694 447.049 679.632 490.026 637.508 c 4 + 523.023 604.412 540.178 566.021 540.178 522.989 c 4 + 540.178 478.43 527.136 446.111 504.019 415.972 c 4 + 484.029 389.908 455.044 361.841 417.063 329.763 c 4 + 379.084 297.685 357.096 278.639 350.1 272.624 c 4 + 279.692 210.034 238.711 156.004 211.172 73.1426 c 5 + 552.993 73.1426 l 5 + 552.993 -0.0351562 l 5 + 110.225 -0.0351562 l 5 + 110.225 45.0742 l 5 + 132.213 114.241 167.194 179.398 215.169 239.544 c 4 + 260.105 294.628 307.632 337.711 357.096 376.876 c 5 + 398.074 410.959 l 6 + 427.059 436.02 445.049 459.075 450.047 480.126 c 4 + 452.44 489.488 453.63 498.562 453.63 507.363 c 4 + 453.63 535.313 441.628 560.504 418.063 583.376 c 4 + 387.021 613.567 348.011 628.661 300.198 628.661 c 4 + 267.3 628.661 238.949 621.943 195.18 608.438 c 6 + 116.221 583.376 l 5 + 97.2314 645.527 l 5 +EndSplineSet +Layer: 2 +SplineSet +294 702 m 4xf0 + 403.974 702 506 642.348 506 538 c 4xf0 + 506 459.754 458.221 402.208 399 380 c 5 + 480.104 357.567 536 307.273 536 213 c 4 + 536 143 511 86 460 43 c 4 + 409 0 345 -22 267 -22 c 6 + 265 -22 l 6 + 206 -22 147 -9 86 16 c 5 + 109 83 l 5 + 177 64 234 55 278 55 c 4 + 322 55 362 68 398 94 c 4 + 434 120 452 154 452 195 c 4xe8 + 452 238 431 274 388 301 c 4 + 353 323 304 334 240 334 c 6 + 230 334 l 5 + 230 405 l 5 + 312 408 368 427 398 463 c 4 + 414 482 422 504 422 529 c 4 + 422 592.15 352.231 627 281 627 c 4 + 237 627 186 613 127 586 c 5 + 100 652 l 5 + 167 685 232 702 294 702 c 4xf0 +EndSplineSet +Layer: 3 +SplineSet +309.57 698.73 m 0 + 342.297 699.082 375.227 695.142 406.373 685.088 c 0 + 437.52 675.039 466.883 658.672 490.234 635.742 c 0 + 507.783 618.511 521.807 597.593 530.371 574.536 c 0 + 538.936 551.479 541.914 526.382 539.062 501.953 c 0 + 535.02 467.295 519.277 434.713 497.959 407.09 c 0 + 476.639 379.467 450.176 356.287 423.34 333.984 c 0 + 398.816 313.604 373.84 293.748 350.098 272.461 c 0 + 310.75 237.183 274.787 197.636 247.559 152.344 c 0 + 223.437 112.219 206.189 67.9326 197.266 21.9727 c 1 + 185.059 73.2422 l 1 + 552.734 73.2422 l 1 + 552.734 0 l 1 + 109.863 0 l 1 + 109.863 45.4102 l 1 + 132.357 115.748 168.878 181.364 215.332 238.77 c 0 + 244.908 275.318 278.232 308.726 313.477 339.844 c 0 + 341.036 364.177 370.576 386.17 398.438 410.156 c 0 + 409.938 420.057 421.023 430.555 430.302 442.562 c 0 + 439.58 454.57 446.947 468.202 450.684 482.91 c 0 + 455.152 500.503 454.178 519.385 448.199 536.523 c 0 + 442.221 553.662 431.544 568.965 418.457 581.543 c 0 + 401.766 597.588 381.244 609.443 359.361 617.007 c 0 + 337.479 624.565 314.154 627.705 291.016 626.953 c 0 + 258.193 625.889 226.123 617.197 194.74 607.529 c 0 + 168.289 599.38 142.03 590.63 115.723 582.031 c 1 + 96.6797 644.043 l 1 + 118.016 654.639 140.027 663.877 162.546 671.65 c 0 + 209.85 687.983 259.529 698.188 309.57 698.73 c 0 +EndSplineSet +EndChar + +StartChar: three +Encoding: 51 51 64 +Width: 634 +VWidth: 1023 +Flags: HMW +HStem: 0 73<133.98 367.562> 334 71<230 346.149> 620 73<174.692 372.029> +VStem: 422 84<465.729 582.069> 452 84<126.258 262.359> +LayerCount: 4 +Fore +SplineSet +294 702 m 4xf0 + 403.974 702 506 642.348 506 538 c 4xf0 + 506 459.754 458.221 402.208 399 380 c 5 + 480.104 357.567 536 307.273 536 213 c 4 + 536 143 511 86 460 43 c 4 + 409 0 345 -22 267 -22 c 6 + 265 -22 l 6 + 206 -22 147 -9 86 16 c 5 + 109 83 l 5 + 177 64 234 55 278 55 c 4 + 322 55 362 68 398 94 c 4 + 434 120 452 154 452 195 c 4xe8 + 452 238 431 274 388 301 c 4 + 353 323 304 334 240 334 c 6 + 230 334 l 5 + 230 405 l 5 + 312 408 368 427 398 463 c 4 + 414 482 422 504 422 529 c 4 + 422 592.15 352.231 627 281 627 c 4 + 237 627 186 613 127 586 c 5 + 100 652 l 5 + 167 685 232 702 294 702 c 4xf0 +EndSplineSet +Layer: 3 +SplineSet +505.859 537.598 m 4 + 505.859 464.355 462.891 404.297 399.414 379.883 c 5 + 498.047 353.516 536.133 288.574 536.133 212.891 c 4 + 536.133 71.7773 421.875 -21.4844 267.09 -21.9727 c 5 + 265.137 -21.9727 l 6 + 211.426 -21.9727 148.438 -10.2539 85.9375 15.625 c 5 + 109.375 83.0078 l 5 + 194.824 59.5703 236.328 55.1758 268.066 55.1758 c 4 + 367.188 55.1758 451.66 110.84 451.66 194.824 c 4 + 451.66 250.488 408.203 333.984 240.234 333.984 c 4 + 236.816 333.984 233.887 333.984 230.469 333.984 c 5 + 230.469 405.273 l 5 + 383.301 409.668 421.875 477.051 421.875 524.414 c 4 + 421.875 578.613 371.582 626.953 286.133 626.953 c 4 + 226.074 626.953 165.039 604.004 126.953 586.426 c 5 + 100.098 652.344 l 5 + 144.531 674.316 217.773 702.148 296.387 702.148 c 4 + 417.48 702.148 505.859 631.836 505.859 537.598 c 4 +EndSplineSet +EndChar + +StartChar: one +Encoding: 49 49 65 +Width: 634 +VWidth: 0 +Flags: W +HStem: 0 73<143 306 386 547> 674 20G<241.304 386> +VStem: 306 80<73 614> +LayerCount: 4 +Fore +SplineSet +386 694 m 1 + 386 73 l 1 + 547 73 l 1 + 547 0 l 1 + 143 0 l 1 + 143 73 l 1 + 306 73 l 1 + 306 614 l 1 + 153 554 l 1 + 122 625 l 1 + 290 694 l 1 + 386 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +142.578 72.7539 m 1 + 546.875 72.7539 l 1 + 546.875 0 l 1 + 142.578 0 l 1 + 142.578 72.7539 l 1 +290.039 693.848 m 1 + 385.742 693.848 l 1 + 385.742 0 l 1 + 305.664 0 l 1 + 305.664 646.484 l 1 + 338.867 626.953 l 1 + 153.32 553.711 l 1 + 122.07 625.488 l 1 + 290.039 693.848 l 1 +EndSplineSet +EndChar + +StartChar: zero +Encoding: 48 48 66 +Width: 634 +VWidth: 1023 +Flags: HMW +HStem: 0 73<244.479 391.192> 620 73<241.293 393.906> +VStem: 54 82<203.708 498.348> 498 83<201.979 492.75> +LayerCount: 4 +Fore +SplineSet +323.093 628.068 m 0 + 194.923 628.068 135.824 500.895 135.824 361.456 c 0 + 135.824 226.473 170.866 133.423 239 88 c 0 + 263 72 291 63 320 63 c 0 + 349 63 375 72 399 90 c 0 + 464.791 138.315 498.088 226.786 498.088 353.678 c 0 + 498.088 469.973 466.116 551.442 404 599 c 0 + 379.184 618.089 351.636 628.068 323.093 628.068 c 0 +53.8846 356.256 m 0 + 53.8846 465.655 77.9231 548.385 126 608 c 0 + 177.441 671.087 242.069 703.088 318.058 703.088 c 0 + 360.565 703.088 396.871 693.19 433 673 c 0 + 532.059 617.644 581.13 513.243 581.13 357.051 c 0 + 581.13 189.732 529.169 69.0843 419 14 c 0 + 387 -2 352 -10 316 -10 c 0 + 280 -10 246 -1 213 16 c 0 + 108.926 69.5236 53.8846 192.478 53.8846 356.256 c 0 +EndSplineSet +Layer: 3 +SplineSet +323.736 703.125 m 0 + 361.925 701.997 399.774 691.426 433.117 672.773 c 0 + 466.459 654.116 495.142 627.461 517.095 596.191 c 0 + 542.524 559.966 558.906 517.91 568.477 474.698 c 0 + 578.042 431.486 581.284 387.025 580.571 342.773 c 0 + 579.824 296.534 574.795 250.2 562.964 205.494 c 0 + 551.128 160.789 531.89 117.6 502.935 81.543 c 0 + 480.498 53.6035 452.275 30.1934 420.182 14.2568 c 0 + 388.088 -1.67969 352.244 -10.0557 316.412 -9.76562 c 0 + 280.283 -9.47363 244.297 -0.375 212.224 16.2559 c 0 + 180.15 32.8867 152.104 56.957 129.889 85.4492 c 0 + 101.926 121.312 83.2461 163.816 71.6475 207.789 c 0 + 60.0488 251.761 55.0059 297.305 54.2051 342.773 c 0 + 53.3652 390.363 57.1484 438.23 68.4805 484.459 c 0 + 79.8125 530.688 99.3711 575.376 129.4 612.305 c 0 + 152.778 641.055 182.399 664.814 215.916 680.62 c 0 + 249.434 696.421 286.697 704.219 323.736 703.125 c 0 +314.947 628.418 m 0 + 287.949 628.042 261.237 619.624 238.41 605.2 c 0 + 215.584 590.781 196.652 570.615 182.135 547.852 c 0 + 163.035 517.9 151.344 483.67 144.501 448.813 c 0 + 137.658 413.957 135.434 378.286 136.236 342.773 c 0 + 137.752 275.604 148.621 206.586 183.111 148.926 c 0 + 197.401 125.035 216.172 103.546 239.324 88.085 c 0 + 262.475 72.624 290.037 63.5566 317.877 63.4766 c 0 + 347.846 63.3906 377.504 73.7803 401.788 91.3418 c 0 + 426.072 108.902 445.058 133.135 458.99 159.668 c 0 + 488.273 215.439 497.617 279.789 498.54 342.773 c 0 + 499.429 403.277 492.28 465.133 466.803 520.02 c 0 + 452.936 549.893 433.048 577.388 406.805 597.29 c 0 + 380.562 617.188 347.879 628.877 314.947 628.418 c 0 +EndSplineSet +EndChar + +StartChar: four +Encoding: 52 52 67 +Width: 634 +VWidth: 0 +Flags: W +HStem: 0 21G<375 455> 168 73<154 375 455 576> 674 20G<327.11 455> +VStem: 375 80<0 168 241 615> +LayerCount: 4 +Fore +SplineSet +455 694 m 1 + 455 241 l 1 + 576 241 l 1 + 576 168 l 1 + 455 168 l 1 + 455 0 l 1 + 375 0 l 1 + 375 168 l 1 + 59 168 l 1 + 59 223 l 1 + 339 694 l 1 + 455 694 l 1 +375 241 m 1 + 375 615 l 1 + 154 241 l 1 + 375 241 l 1 +EndSplineSet +Layer: 3 +SplineSet +338.867 693.848 m 1 + 455.078 693.848 l 1 + 455.078 0 l 1 + 375 0 l 1 + 375 614.746 l 1 + 154.297 241.211 l 1 + 576.172 241.211 l 1 + 576.172 167.969 l 1 + 58.5938 167.969 l 1 + 58.5938 222.656 l 1 + 338.867 693.848 l 1 +EndSplineSet +EndChar + +StartChar: period +Encoding: 46 46 68 +Width: 278 +VWidth: 1023 +Flags: W +HStem: 0 103<88 190> +VStem: 88 102<0 103> +LayerCount: 4 +Fore +SplineSet +88 103 m 1 + 190 103 l 1 + 190 0 l 1 + 88 0 l 1 + 88 103 l 1 +EndSplineSet +Layer: 3 +SplineSet +87.8906 102.539 m 1 + 190.43 102.539 l 1 + 190.43 0 l 1 + 87.8906 0 l 1 + 87.8906 102.539 l 1 +EndSplineSet +EndChar + +StartChar: comma +Encoding: 44 44 69 +Width: 278 +VWidth: 1023 +Flags: W +HStem: -107 190<98 108> +VStem: 21 165 +LayerCount: 4 +Fore +SplineSet +98 83 m 1 + 186 83 l 1 + 108 -107 l 1 + 21 -107 l 1 + 98 83 l 1 +EndSplineSet +Layer: 3 +SplineSet +97.6562 83.0078 m 1 + 185.547 83.0078 l 1 + 108.398 -107.422 l 1 + 20.5078 -107.422 l 1 + 97.6562 83.0078 l 1 +EndSplineSet +EndChar + +StartChar: bracketleft +Encoding: 91 91 70 +Width: 324 +VWidth: 1023 +Flags: W +HStem: -200 73<160 304> 665 73<160 304> +VStem: 80 224<-200 -127 665 738> 80 80<-127 665> +LayerCount: 4 +Back +SplineSet +159.668 737.793 m 5xd0 + 345.703 737.793 l 5 + 345.703 665.039 l 5xe0 + 159.668 665.039 l 5 + 159.668 737.793 l 5xd0 +159.668 -127.441 m 5xd0 + 345.703 -127.441 l 5 + 345.703 -200.195 l 5xe0 + 159.668 -200.195 l 5 + 159.668 -127.441 l 5xd0 +122.07 737.793 m 5 + 202.148 737.793 l 5 + 202.148 -200.195 l 5xd0 + 122.07 -200.195 l 5 + 122.07 737.793 l 5 +EndSplineSet +Fore +SplineSet +304 -200 m 1xe0 + 80 -200 l 1 + 80 738 l 1 + 304 738 l 1 + 304 665 l 1xe0 + 160 665 l 1 + 160 -127 l 1xd0 + 304 -127 l 1 + 304 -200 l 1xe0 +EndSplineSet +Layer: 3 +SplineSet +159.668 737.793 m 5 + 345.703 737.793 l 5 + 345.703 665.039 l 5 + 159.668 665.039 l 5 + 159.668 737.793 l 5 +159.668 -127.441 m 5 + 345.703 -127.441 l 5 + 345.703 -200.195 l 5 + 159.668 -200.195 l 5 + 159.668 -127.441 l 5 +122.07 737.793 m 5 + 202.148 737.793 l 5 + 202.148 -200.195 l 5 + 122.07 -200.195 l 5 + 122.07 737.793 l 5 +EndSplineSet +EndChar + +StartChar: bracketright +Encoding: 93 93 71 +Width: 324 +VWidth: 1023 +Flags: HMW +HStem: -200 73<20 164> 665 73<20 164> +VStem: 20 224<-200 -127 665 738> 164 83<-127 665> +LayerCount: 4 +Fore +SplineSet +244 -200 m 1xe0 + 20 -200 l 1 + 20 -127 l 1xe0 + 164 -127 l 1 + 164 665 l 1xd0 + 20 665 l 1 + 20 738 l 1 + 244 738 l 1 + 244 -200 l 1xe0 +EndSplineSet +Layer: 3 +SplineSet +24.4141 737.793 m 5 + 210.449 737.793 l 5 + 210.449 665.039 l 5 + 24.4141 665.039 l 5 + 24.4141 737.793 l 5 +24.4141 -127.441 m 5 + 210.449 -127.441 l 5 + 210.449 -200.195 l 5 + 24.4141 -200.195 l 5 + 24.4141 -127.441 l 5 +167.969 737.793 m 5 + 248.047 737.793 l 5 + 248.047 -200.195 l 5 + 167.969 -200.195 l 5 + 167.969 737.793 l 5 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 72 +Width: 362 +VWidth: 1023 +Flags: W +VStem: 107 86<111.21 455.243> +LayerCount: 4 +Fore +SplineSet +193 280 m 0 + 193 110.333 251.336 -41.3379 323 -158 c 1 + 260 -199 l 1 + 213 -122 175 -42 148 41 c 0 + 121 124 107 204 107 281 c 0 + 107 465.59 181.718 629.997 259 756 c 1 + 323 722 l 1 + 280 651 248 577 226 501 c 0 + 204 425 193 351 193 280 c 0 +EndSplineSet +Layer: 3 +SplineSet +258.789 755.859 m 1 + 323.242 722.168 l 1 + 281.284 651.978 247.925 576.572 225.098 498.047 c 0 + 204.59 427.5 192.907 354.229 192.871 280.762 c 0 + 192.835 207.29 204.458 133.989 225.098 63.4766 c 0 + 247.863 -14.2988 281.212 -88.916 323.242 -158.203 c 1 + 260.254 -199.219 l 1 + 215.076 -124.729 177.422 -45.5488 149.902 37.1094 c 0 + 123.746 115.673 107.46 197.959 107.422 280.762 c 0 + 107.384 363.571 123.604 445.894 149.902 524.414 c 0 + 177.035 605.43 214.155 683.008 258.789 755.859 c 1 +EndSplineSet +EndChar + +StartChar: parenright +Encoding: 41 41 73 +Width: 362 +VWidth: 1023 +Flags: W +VStem: 169 86<106.748 451.831> +LayerCount: 4 +Fore +SplineSet +255 281 m 0 + 255 204 242 124 214 41 c 0 + 186 -42 149 -122 102 -199 c 1 + 39 -158 l 1 + 126 -15 169 131 169 281 c 0 + 169 352 158 425 136 501 c 0 + 114 577 82 651 39 722 c 1 + 104 756 l 1 + 150 681 187 603 214 521 c 0 + 241 439 255 358 255 281 c 0 +EndSplineSet +Layer: 3 +SplineSet +103.516 755.859 m 1 + 148.149 683.008 185.27 605.43 212.402 524.414 c 0 + 238.7 445.894 254.921 363.571 254.883 280.762 c 0 + 254.845 197.959 238.559 115.673 212.402 37.1094 c 0 + 184.883 -45.5488 147.229 -124.729 102.051 -199.219 c 1 + 39.0625 -158.203 l 1 + 81.0928 -88.916 114.441 -14.2988 137.207 63.4766 c 0 + 157.847 133.989 169.47 207.29 169.434 280.762 c 0 + 169.397 354.229 157.715 427.5 137.207 498.047 c 0 + 114.38 576.572 81.0205 651.978 39.0625 722.168 c 1 + 103.516 755.859 l 1 +EndSplineSet +EndChar + +StartChar: slash +Encoding: 47 47 74 +Width: 354 +VWidth: 1023 +Flags: W +HStem: 674 20G<255.442 345> +VStem: 20 325 +LayerCount: 4 +Fore +SplineSet +262 694 m 1 + 345 694 l 1 + 103 -44 l 1 + 20 -44 l 1 + 262 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +261.719 693.848 m 5 + 344.727 693.848 l 5 + 102.539 -43.9453 l 5 + 19.5312 -43.9453 l 5 + 261.719 693.848 l 5 +EndSplineSet +EndChar + +StartChar: backslash +Encoding: 92 92 75 +Width: 354 +VWidth: 1023 +Flags: W +HStem: 674 20G<10 99.5583> +VStem: 10 325 +LayerCount: 4 +Fore +SplineSet +10 694 m 1 + 93 694 l 1 + 335 -44 l 1 + 252 -44 l 1 + 10 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +9.76562 693.848 m 1 + 92.7734 693.848 l 1 + 334.961 -43.9453 l 1 + 251.953 -43.9453 l 1 + 9.76562 693.848 l 1 +EndSplineSet +EndChar + +StartChar: plus +Encoding: 43 43 76 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 288 67<61 306 378 623> +VStem: 306 72<41 288 355 602> +LayerCount: 4 +Fore +SplineSet +306 602 m 1 + 378 602 l 1 + 378 355 l 1 + 623 355 l 1 + 623 288 l 1 + 378 288 l 1 + 378 41 l 1 + 306 41 l 1 + 306 288 l 1 + 61 288 l 1 + 61 355 l 1 + 306 355 l 1 + 306 602 l 1 +EndSplineSet +Layer: 3 +SplineSet +305.664 602.051 m 1 + 377.93 602.051 l 1 + 377.93 40.5273 l 1 + 305.664 40.5273 l 1 + 305.664 602.051 l 1 +61.0352 354.98 m 1 + 622.559 354.98 l 1 + 622.559 287.598 l 1 + 61.0352 287.598 l 1 + 61.0352 354.98 l 1 +EndSplineSet +EndChar + +StartChar: asterisk +Encoding: 42 42 77 +Width: 583 +VWidth: 1023 +Flags: W +HStem: 673 20G<250 333> +LayerCount: 4 +Fore +SplineSet +250 693 m 1 + 333 693 l 1 + 325 538 l 1 + 455 624 l 1 + 496 551 l 1 + 357 481 l 1 + 496 412 l 1 + 455 339 l 1 + 325 425 l 1 + 333 270 l 1 + 250 270 l 1 + 259 425 l 1 + 129 339 l 1 + 88 412 l 1 + 227 481 l 1 + 88 551 l 1 + 129 624 l 1 + 259 538 l 1 + 250 693 l 1 +EndSplineSet +Layer: 3 +SplineSet +454.59 623.535 m 1 + 496.094 551.27 l 1 + 306.641 456.055 l 1 + 129.395 339.355 l 1 + 87.8906 411.621 l 1 + 277.344 506.836 l 1 + 454.59 623.535 l 1 +87.8906 551.27 m 1 + 129.395 623.535 l 1 + 306.641 506.836 l 1 + 496.094 411.621 l 1 + 454.59 339.355 l 1 + 277.344 456.055 l 1 + 87.8906 551.27 l 1 +250.488 693.359 m 1 + 333.496 693.359 l 1 + 321.289 481.445 l 1 + 333.496 269.531 l 1 + 250.488 269.531 l 1 + 262.695 481.445 l 1 + 250.488 693.359 l 1 +EndSplineSet +EndChar + +StartChar: numbersign +Encoding: 35 35 78 +Width: 684 +VWidth: 1023 +Flags: W +HStem: 185 73<23 177 255 430 508 663> 430 73<22 177 255 430 508 663> 674 20G<177 255 430 508> +VStem: 177 78<-15 185 258 430 503 694> 430 78<-15 185 258 430 503 694> +LayerCount: 4 +Fore +SplineSet +177 694 m 1 + 255 694 l 1 + 255 503 l 1 + 430 503 l 1 + 430 694 l 1 + 508 694 l 1 + 508 503 l 1 + 663 503 l 1 + 663 430 l 1 + 508 430 l 1 + 508 258 l 1 + 663 258 l 1 + 663 185 l 1 + 508 185 l 1 + 508 -15 l 1 + 430 -15 l 1 + 430 185 l 1 + 255 185 l 1 + 255 -15 l 1 + 177 -15 l 1 + 177 185 l 1 + 23 185 l 1 + 23 258 l 1 + 177 258 l 1 + 177 430 l 1 + 22 430 l 1 + 22 503 l 1 + 177 503 l 1 + 177 694 l 1 +255 258 m 1 + 430 258 l 1 + 430 430 l 1 + 255 430 l 1 + 255 258 l 1 +EndSplineSet +Layer: 3 +SplineSet +21.9727 502.93 m 25 + 662.598 502.93 l 25 + 662.598 429.688 l 25 + 21.9727 429.688 l 25 + 21.9727 502.93 l 25 +22.9492 257.812 m 25 + 662.598 257.812 l 25 + 662.598 184.57 l 25 + 22.9492 184.57 l 25 + 22.9492 257.812 l 25 +430.176 693.848 m 1 + 508.301 693.848 l 1 + 508.301 -14.6484 l 1 + 430.176 -14.6484 l 1 + 430.176 693.848 l 1 +177.246 693.848 m 1 + 255.371 693.848 l 1 + 255.371 -14.6484 l 1 + 177.246 -14.6484 l 1 + 177.246 693.848 l 1 +EndSplineSet +EndChar + +StartChar: dollar +Encoding: 36 36 79 +Width: 585 +VWidth: 1023 +Flags: W +HStem: 113 60<163.266 270 329 369.503> 548 63<329 435.944> +VStem: 123 83<440.136 521.77> 270 59<-32 110 611 738> 397 88<199.621 290.387> +LayerCount: 4 +Fore +SplineSet +133 207 m 1 + 186.222 184.681 209.373 173 272 173 c 0 + 319.059 173 355.213 179.213 379 203 c 0 + 391 215 397 229 397 245 c 0 + 397 297.728 349.467 303.2 310 318 c 0 + 276.678 330.496 241.068 337.466 210 353 c 0 + 194 361 179 370 166 380 c 0 + 137 401 123 431 123 469 c 0 + 123 520.973 157.407 555.605 188 576 c 0 + 209 589 236 599 270 605 c 1 + 270 738 l 1 + 329 738 l 1 + 329 611 l 1 + 355 611 l 2 + 364.506 611 377.42 608 387 608 c 0 + 398.594 608 415.652 603.671 425 601 c 2 + 436 598 l 2 + 441 597 448 594 458 591 c 1 + 438 530 l 1 + 394 542 359 548 333 548 c 0 + 276.189 548 239.889 541.644 218 511 c 0 + 210 500 206 489 206 476 c 0 + 206 442.238 248.072 425.976 278 416 c 0 + 320.727 401.758 372.888 383.625 412 365 c 0 + 445.112 349.233 485 312.026 485 268 c 0 + 485 227.122 478.493 207.891 460 182 c 0 + 435 145 391 121 329 113 c 1 + 329 -32 l 1 + 270 -32 l 1 + 270 110 l 1 + 221 111 168 123 111 146 c 1 + 133 207 l 1 +EndSplineSet +Layer: 3 +SplineSet +269.531 142.09 m 21 + 328.613 142.09 l 13 + 328.613 -31.7383 l 29 + 269.531 -31.7383 l 29 + 269.531 142.09 l 21 +269.531 737.793 m 29 + 328.613 737.793 l 29 + 328.613 577.148 l 29 + 269.531 577.148 l 29 + 269.531 737.793 l 29 +335.449 610.84 m 4 + 397.949 610.84 423.34 601.562 458.008 591.309 c 5 + 437.5 530.273 l 5 + 405.762 539.062 371.094 548.34 322.266 548.34 c 4 + 220.703 548.34 205.566 498.535 205.566 477.051 c 4 + 205.566 390.625 484.863 411.133 484.863 260.742 c 4 + 484.863 200.195 446.289 109.863 274.902 109.863 c 4 + 238.77 109.863 181.152 117.676 110.84 146.484 c 5 + 133.301 207.031 l 5 + 194.824 181.152 226.562 172.852 268.555 172.852 c 4 + 339.355 172.852 397.461 188.477 397.461 251.465 c 4 + 397.461 343.75 122.559 307.129 122.559 468.75 c 4 + 122.559 522.949 166.992 610.84 335.449 610.84 c 4 +EndSplineSet +EndChar + +StartChar: semicolon +Encoding: 59 59 80 +Width: 278 +VWidth: 1023 +Flags: W +HStem: 382 103<88 190> +VStem: 88 102<382 485> +LayerCount: 4 +Fore +SplineSet +88 485 m 1 + 190 485 l 1 + 190 382 l 1 + 88 382 l 1 + 88 485 l 1 +98 83 m 1 + 186 83 l 1 + 108 -107 l 1 + 21 -107 l 1 + 98 83 l 1 +EndSplineSet +Layer: 3 +SplineSet +97.6562 83.0078 m 1 + 185.547 83.0078 l 1 + 108.398 -107.422 l 1 + 20.5078 -107.422 l 1 + 97.6562 83.0078 l 1 +87.8906 484.863 m 1 + 190.43 484.863 l 1 + 190.43 382.324 l 1 + 87.8906 382.324 l 1 + 87.8906 484.863 l 1 +-408.691 410.156 m 0 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 81 +Width: 278 +VWidth: 1023 +Flags: W +HStem: 0 103<88 190> 382 103<88 190> +VStem: 88 102<0 103 382 485> +LayerCount: 4 +Fore +SplineSet +88 103 m 1 + 190 103 l 1 + 190 0 l 1 + 88 0 l 1 + 88 103 l 1 +88 485 m 1 + 190 485 l 1 + 190 382 l 1 + 88 382 l 1 + 88 485 l 1 +EndSplineSet +Layer: 3 +SplineSet +87.8906 484.863 m 1 + 190.43 484.863 l 1 + 190.43 382.324 l 1 + 87.8906 382.324 l 1 + 87.8906 484.863 l 1 +87.8906 102.539 m 1 + 190.43 102.539 l 1 + 190.43 0 l 1 + 87.8906 0 l 1 + 87.8906 102.539 l 1 +EndSplineSet +EndChar + +StartChar: equal +Encoding: 61 61 82 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 171 74<107 576> 393 73<107 576> +LayerCount: 4 +Fore +SplineSet +107 466 m 1 + 576 466 l 1 + 576 393 l 1 + 107 393 l 1 + 107 466 l 1 +107 245 m 1 + 576 245 l 1 + 576 171 l 1 + 107 171 l 1 + 107 245 l 1 +EndSplineSet +Layer: 3 +SplineSet +107.422 244.629 m 1 + 576.172 244.629 l 1 + 576.172 171.387 l 1 + 107.422 171.387 l 1 + 107.422 244.629 l 1 +107.422 465.82 m 1 + 576.172 465.82 l 1 + 576.172 392.578 l 1 + 107.422 392.578 l 1 + 107.422 465.82 l 1 +EndSplineSet +EndChar + +StartChar: quotedbl +Encoding: 34 34 83 +Width: 388 +VWidth: 1023 +Flags: W +HStem: 529 209<54 144 244 334> +VStem: 54 90<529 738> 244 90<529 738> +LayerCount: 4 +Fore +SplineSet +54 738 m 1 + 144 738 l 1 + 144 529 l 1 + 54 529 l 1 + 54 738 l 1 +244 738 m 1 + 334 738 l 1 + 334 529 l 1 + 244 529 l 1 + 244 738 l 1 +EndSplineSet +Layer: 3 +SplineSet +244.141 737.793 m 1 + 334.473 737.793 l 1 + 334.473 528.809 l 1 + 244.141 528.809 l 1 + 244.141 737.793 l 1 +53.7109 737.793 m 1 + 144.043 737.793 l 1 + 144.043 528.809 l 1 + 53.7109 528.809 l 1 + 53.7109 737.793 l 1 +EndSplineSet +EndChar + +StartChar: quotesingle +Encoding: 39 39 84 +Width: 197 +VWidth: 1023 +Flags: W +HStem: 529 209<54 144> +VStem: 54 90<529 738> +LayerCount: 4 +Fore +SplineSet +54 738 m 1 + 144 738 l 1 + 144 529 l 1 + 54 529 l 1 + 54 738 l 1 +EndSplineSet +Layer: 3 +SplineSet +53.7109 737.793 m 5 + 144.043 737.793 l 5 + 144.043 528.809 l 5 + 53.7109 528.809 l 5 + 53.7109 737.793 l 5 +EndSplineSet +EndChar + +StartChar: underscore +Encoding: 95 95 85 +Width: 566 +VWidth: 1023 +Flags: W +HStem: 0 73<73 493> +LayerCount: 4 +Fore +SplineSet +73 73 m 1 + 493 73 l 1 + 493 0 l 1 + 73 0 l 1 + 73 73 l 1 +EndSplineSet +Layer: 3 +SplineSet +73.2422 73.2422 m 1 + 493.164 73.2422 l 1 + 493.164 0 l 1 + 73.2422 0 l 1 + 73.2422 73.2422 l 1 +EndSplineSet +EndChar + +StartChar: percent +Encoding: 37 37 86 +Width: 648 +VWidth: 1023 +Flags: W +HStem: 0 21G<42 138.631> 27 46<435.381 526.027> 262 47<433.338 528.356> 394 45<115.026 204.27> 619 47<112.326 206.024> 674 20G<501.369 598> +VStem: 48 48<456.261 603.332> 223 48<457.342 602.894> 365 47<97.2108 240.209> 549 48<95.9671 241.745> +LayerCount: 4 +Fore +SplineSet +223 519 m 0 + 223 582.926 211.759 619 152 619 c 0 + 118.232 619 96 582.241 96 543 c 0 + 96 484.457 108.558 439 161 439 c 0 + 199.367 439 223 476.114 223 519 c 0 +48 528 m 0 + 48 606.892 88.6172 666 160 666 c 0 + 232.295 666 271 614.579 271 533 c 0 + 271 456.55 230.917 394 159 394 c 0 + 86.0752 394 48 448.445 48 528 c 0 +480 262 m 0 + 439.849 262 412 224.424 412 181 c 0 + 412 137.915 419.028 110.972 438 92 c 0 + 452 79 467 73 483 73 c 0 + 499 73 514 81 528 96 c 0 + 542 111 549 136 549 170 c 0 + 549 217 534 246 503 258 c 0 + 496 261 488 262 480 262 c 0 +597 180 m 0 + 597 97.247 556.263 27 481 27 c 0 + 449 27 422 39 399 62 c 0 + 376 85 365 121 365 167 c 0 + 365 213 376 247 400 272 c 0 + 424 297 449 309 477 309 c 0 + 505 309 532 300 558 281 c 0 + 584 262 597 229 597 180 c 0 +515 694 m 1 + 598 694 l 1 + 125 0 l 1 + 42 0 l 1 + 515 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +514.648 693.848 m 1 + 597.656 693.848 l 1 + 124.512 0 l 1 + 41.5039 0 l 1 + 514.648 693.848 l 1 +480.957 309.082 m 0 + 521.973 309.082 597.168 285.645 597.168 171.387 c 0 + 597.168 82.5195 542.48 27.3438 480.469 27.3438 c 0 + 424.316 27.3438 364.746 64.4531 364.746 171.875 c 0 + 364.746 261.719 425.293 309.082 480.957 309.082 c 0 +480.469 262.207 m 0 + 451.66 261.719 412.109 240.234 412.109 172.363 c 0 + 412.109 91.7969 455.566 72.7539 480.957 72.7539 c 0 + 508.301 72.7539 549.316 93.75 549.316 169.922 c 0 + 549.316 244.141 506.836 262.207 480.469 262.207 c 0 +159.668 665.527 m 0 + 200.684 665.527 270.508 647.461 270.508 533.203 c 0 + 270.508 444.336 221.191 393.555 159.18 393.555 c 0 + 103.027 393.555 47.8516 426.27 47.8516 533.691 c 0 + 47.8516 623.535 104.004 665.527 159.668 665.527 c 0 +159.18 619.141 m 0 + 130.371 618.652 95.7031 602.051 95.7031 534.18 c 0 + 95.7031 453.613 134.277 439.453 159.668 439.453 c 0 + 187.012 439.453 223.145 455.566 223.145 531.738 c 0 + 223.145 605.957 185.547 619.141 159.18 619.141 c 0 +EndSplineSet +EndChar + +StartChar: braceright +Encoding: 125 125 87 +Width: 389 +VWidth: 1023 +Flags: W +HStem: -201 63<40.3333 80.536> 235 67<293.076 346> 675 63<40.3333 80.0949> +VStem: 27 319 +CounterMasks: 1 e0 +LayerCount: 4 +Fore +SplineSet +27 -138 m 1 + 106.083 -127.594 141.312 -60.2614 149 32 c 1 + 149 63.3895 154.022 105.376 159 134 c 0 + 168.842 190.589 200.987 241.658 242 269 c 1 + 196 299 167 348 157 414 c 0 + 155 425 153 454 150 503 c 0 + 144.203 597.682 106.24 662.488 27 675 c 1 + 42 738 l 1 + 149.558 731.278 209.408 640.982 220 528 c 0 + 220 523 222 511 223 492 c 0 + 225.425 445.934 229.944 407.647 249 373 c 0 + 271 333 304 309 346 302 c 1 + 346 235 l 1 + 304 228 272 205 250 166 c 0 + 221.585 116.274 226.117 54.6069 219 -13 c 0 + 208.585 -111.943 136.846 -193.096 42 -201 c 1 + 27 -138 l 1 +EndSplineSet +Layer: 3 +SplineSet +163.086 678.223 m 4 + 132.201 712.549 88.0332 734.79 41.9922 738.281 c 5 + 27.3438 675.293 l 5 + 64.1543 670.21 97.7852 647.773 118.164 616.699 c 4 + 140.789 582.197 147.023 539.692 149.902 498.535 c 4 + 151.891 470.109 152.854 441.551 157.313 413.406 c 4 + 161.773 385.264 169.836 357.473 183.594 332.52 c 4 + 196.002 310.013 213.001 289.965 233.631 274.638 c 4 + 254.262 259.311 278.428 248.758 303.711 244.141 c 5 + 303.711 292.969 l 5 + 278.481 288.379 254.355 277.893 233.729 262.656 c 4 + 213.104 247.419 196.07 227.482 183.594 205.078 c 4 + 169.125 179.097 160.871 150.014 156.424 120.609 c 4 + 151.978 91.2051 151.218 61.3887 148.926 31.7383 c 4 + 145.938 -6.91113 139.292 -46.6006 118.164 -79.1016 c 4 + 97.8975 -110.277 64.2021 -132.784 27.3438 -137.695 c 5 + 41.9922 -200.684 l 5 + 87.9688 -196.875 132.027 -174.738 163.086 -140.625 c 4 + 180.789 -121.181 194.339 -98.0938 203.543 -73.46 c 4 + 212.747 -48.8281 217.572 -22.7451 220.215 3.41797 c 4 + 223.008 31.0654 223.467 58.9238 226.75 86.5176 c 4 + 230.033 114.11 236.526 141.713 250 166.016 c 4 + 259.867 183.813 273.404 199.644 289.861 211.615 c 4 + 306.318 223.586 325.608 231.648 345.703 234.863 c 5 + 345.703 302.246 l 5 + 325.6 305.627 306.332 313.809 289.887 325.854 c 4 + 273.441 337.9 259.902 353.764 250 371.582 c 4 + 237.011 394.957 230.381 421.387 226.878 447.896 c 4 + 223.375 474.408 222.674 501.206 220.215 527.832 c 4 + 217.703 555.024 213.233 582.192 204.141 607.944 c 4 + 195.049 633.691 181.352 657.925 163.086 678.223 c 4 +EndSplineSet +EndChar + +StartChar: asciitilde +Encoding: 126 126 88 +Width: 515 +VWidth: 1023 +Flags: W +HStem: 281.663 60.761<292.178 359.514> 369.675 60.662<149.482 221.825> +LayerCount: 4 +Fore +SplineSet +338.608 281.663 m 0 + 300.149 281.663 272.456 302.476 249 323 c 6 + 232 338 l 5 + 218.355 351.645 201.13 369.675 180.918 369.675 c 0 + 150.264 369.675 143.728 339.638 137 306 c 5 + 133 281 l 5 + 80 289 l 5 + 88 331 l 6 + 99.0877 388.287 123.982 430.337 177.141 430.337 c 0 + 216.044 430.337 242.432 409.622 266 389 c 5 + 283 373 l 6 + 296.948 359.052 315.205 342.424 334.298 342.424 c 0 + 340.814 342.424 347.427 344.36 354 349 c 4 + 369.911 361.729 371.793 373.966 378 405 c 6 + 383 430 l 5 + 435 422 l 5 + 427 381 l 6 + 415.986 324.094 391.158 281.663 338.608 281.663 c 0 +EndSplineSet +Layer: 3 +SplineSet +476.562 753.418 m 1 + 529.297 745.117 l 1 + 520.996 703.613 l 2 + 518.633 691.787 516.206 679.937 512.285 668.53 c 0 + 508.369 657.129 502.93 646.172 495.498 636.68 c 0 + 488.064 627.183 478.643 619.209 467.899 613.735 c 0 + 457.156 608.257 445.16 605.317 433.105 604.98 c 0 + 419.31 604.595 405.536 607.578 392.727 612.72 c 0 + 379.918 617.856 368.002 625.059 356.934 633.301 c 0 + 340.75 645.352 327.189 660.483 312.5 674.316 c 0 + 307.297 679.219 301.752 683.843 295.455 687.227 c 0 + 289.158 690.61 282.045 692.646 274.902 692.383 c 0 + 267.952 692.124 261.126 689.653 255.533 685.518 c 0 + 249.941 681.382 245.607 675.703 242.457 669.502 c 0 + 236.158 657.1 234.072 643.052 231.445 629.395 c 2 + 226.562 604.004 l 1 + 173.828 612.305 l 1 + 182.129 653.809 l 2 + 184.494 665.635 186.92 677.485 190.838 688.892 c 0 + 194.756 700.293 200.193 711.25 207.627 720.742 c 0 + 215.061 730.239 224.482 738.213 235.226 743.687 c 0 + 245.969 749.165 257.965 752.104 270.02 752.441 c 0 + 283.815 752.827 297.589 749.844 310.398 744.702 c 0 + 323.207 739.565 335.123 732.363 346.191 724.121 c 0 + 362.375 712.07 375.936 696.938 390.625 683.105 c 0 + 395.828 678.203 401.373 673.579 407.67 670.195 c 0 + 413.967 666.812 421.08 664.775 428.223 665.039 c 0 + 435.173 665.298 441.999 667.769 447.592 671.904 c 0 + 453.184 676.04 457.518 681.719 460.668 687.92 c 0 + 466.967 700.322 469.053 714.37 471.68 728.027 c 2 + 476.562 753.418 l 1 +EndSplineSet +EndChar + +StartChar: grave +Encoding: 96 96 89 +Width: 547 +VWidth: 1023 +Flags: W +HStem: 570 204 +VStem: 134 281 +LayerCount: 4 +Fore +SplineSet +168 774 m 1 + 415 623 l 1 + 384 570 l 1 + 134 714 l 1 + 168 774 l 1 +EndSplineSet +Layer: 3 +SplineSet +168.457 774.414 m 29 + 414.551 623.047 l 25 + 383.789 570.312 l 25 + 133.789 714.355 l 25 + 168.457 774.414 l 29 +EndSplineSet +EndChar + +StartChar: asciicircum +Encoding: 94 94 90 +Width: 722 +VWidth: 1023 +Flags: W +HStem: 537 215 +VStem: 186 326 +LayerCount: 4 +Fore +SplineSet +354 752 m 1 + 512 580 l 5 + 467 537 l 5 + 348 666 l 1 + 229 540 l 1 + 186 578 l 1 + 354 752 l 1 +EndSplineSet +Layer: 3 +SplineSet +354.004 752.441 m 29 + 479.004 612.793 l 21 + 433.594 569.824 l 5 + 325.684 689.941 l 5 + 379.883 699.707 l 5 + 259.277 570.312 l 13 + 216.309 608.398 l 29 + 354.004 752.441 l 29 +EndSplineSet +EndChar + +StartChar: ampersand +Encoding: 38 38 91 +Width: 775 +VWidth: 1023 +Flags: W +HStem: -22.9891 71.9891<216.797 371.654> 0 21G<590.612 709> 633.231 69.797<266.645 399.526> +VStem: 87.9559 81.3981<95.5661 229.402> 147.366 81.923<488.673 596.722> 427.075 79.826<505.169 607.842> +LayerCount: 4 +Fore +SplineSet +260.169 -22.9891 m 0xac + 162.218 -22.9891 87.9559 39.3866 87.9559 132.795 c 0xb4 + 87.9559 203.514 116.568 263.599 172 315 c 0 + 188 330 207 345 228 362 c 2 + 246 376 l 1 + 208 417 l 2 + 167.428 461.4 147.366 504.628 147.366 547.132 c 0 + 147.366 560.152 149.248 573.103 153 586 c 0 + 164 624 188 653 224 673 c 0 + 260 693 297 703 335 703 c 0 + 336.501 703.019 337.992 703.028 339.474 703.028 c 0 + 417.991 703.028 470.482 677.037 496 626 c 0 + 503.597 610.807 506.901 594.183 506.901 575.799 c 0 + 506.901 567.562 506.238 558.973 505 550 c 0 + 501 521 483 490 452 458 c 2 + 437 443 l 2 + 431 438 425 433 418 427 c 2 + 355 377 l 1 + 525 196 l 1 + 683 368 l 1 + 729 322 l 1 + 571 147 l 1 + 709 0 l 1 + 610 0 l 1x6c + 515 98 l 1 + 443 28.1179 382.749 -22.9891 260.169 -22.9891 c 0xac +427.075 552.43 m 0 + 427.075 602.195 389.334 633.231 338.568 633.231 c 0 + 298.259 633.231 265.368 616.404 249 595 c 0 + 235.859 577.781 229.289 560.357 229.289 542.821 c 0x2c + 229.289 506.343 259.678 476.322 285 451 c 2 + 310 425 l 1 + 353 458 l 2 + 378 477 394 492 402 501 c 0 + 418.146 519.045 427.075 536.188 427.075 552.43 c 0 +169.354 160.352 m 0xb4 + 169.354 93.6693 222.916 49 289 49 c 0 + 341 49 396 75 453 130 c 1 + 469 146 l 1 + 293 328 l 1 + 243 287 l 2 + 193.648 245.874 169.354 203.912 169.354 160.352 c 0xb4 +EndSplineSet +Layer: 3 +SplineSet +342.773 703.125 m 0 + 372.883 703.408 403.383 698.74 430.814 686.328 c 0 + 458.248 673.916 482.266 652.969 495.605 625.977 c 0 + 506.201 604.536 509.785 579.819 506.348 556.152 c 0 + 500.913 518.721 478.688 485.623 452.171 458.65 c 0 + 425.654 431.678 395.287 408.846 365.723 385.254 c 2 + 269.043 308.105 l 2 + 243.324 287.582 217.24 266.78 197.775 240.252 c 0 + 178.311 213.724 166.327 180.655 169.922 147.949 c 0 + 173.011 119.844 187.723 93.2617 209.746 75.5312 c 0 + 231.77 57.7998 260.301 49 288.574 48.8281 c 0 + 322.25 48.624 355.26 60.0605 384.277 77.1484 c 0 + 422.401 99.5996 454.066 131.312 485.352 162.598 c 2 + 495.605 172.852 l 1 + 517.578 187.5 l 1 + 683.105 368.164 l 1 + 728.516 322.266 l 1 + 568.359 143.555 l 1 + 540.527 123.047 l 1 + 533.203 115.723 l 2 + 502.324 84.8438 471.461 53.4199 435.059 29.2969 c 0 + 390.166 -0.452148 337.395 -17.9424 283.691 -21.9727 c 0 + 257.78 -23.917 231.477 -22.6914 206.273 -16.3711 c 0 + 181.069 -10.0498 157.043 1.69824 137.695 19.043 c 0 + 120.689 34.2881 107.499 53.6846 99.1953 74.9609 c 0 + 90.8926 96.2383 87.3691 119.256 87.8906 142.09 c 0 + 88.9199 187.229 105.454 231.329 131.232 268.396 c 0 + 157.01 305.465 192.297 334.701 228.027 362.305 c 2 + 352.539 458.496 l 2 + 369.882 471.895 387.758 484.912 402.346 501.265 c 0 + 409.641 509.443 415.998 518.54 420.392 528.579 c 0 + 424.785 538.618 427.146 549.595 426.758 560.547 c 0 + 426.299 573.521 421.918 586.294 414.502 596.943 c 0 + 407.086 607.598 396.787 616.113 385.254 622.07 c 0 + 362.295 633.931 334.923 635.991 309.717 630.298 c 0 + 284.512 624.604 260.65 610.981 245.117 590.332 c 0 + 235.492 577.534 229.439 561.904 229.004 545.898 c 0 + 228.668 533.56 231.635 521.235 236.882 510.063 c 0 + 242.13 498.892 249.535 488.853 257.667 479.564 c 0 + 273.931 460.991 292.18 444.264 309.082 426.27 c 2 + 709.473 0 l 1 + 610.352 0 l 1 + 234.375 388.184 l 2 + 208.22 415.188 181.83 442.891 165.009 476.513 c 0 + 148.188 510.137 142.238 549.868 152.832 585.938 c 0 + 158.444 605.044 168.381 622.822 181.391 637.9 c 0 + 194.4 652.979 210.393 665.376 227.846 674.966 c 0 + 262.752 694.155 302.943 702.749 342.773 703.125 c 0 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 92 +Width: 523 +VWidth: 1023 +Flags: W +LayerCount: 4 +Fore +SplineSet +475 551 m 1 + 475 475 l 1 + 134 303 l 1 + 475 139 l 1 + 475 59 l 1 + 49 260 l 1 + 49 341 l 1 + 475 551 l 1 +EndSplineSet +Layer: 3 +SplineSet +475.098 550.781 m 5 + 48.8281 340.82 l 5 + 48.8281 260.254 l 5 + 475.098 58.5938 l 5 + 475.098 139.16 l 5 + 83.9844 327.148 l 5 + 83.9844 278.32 l 5 + 475.098 475.098 l 5 + 475.098 550.781 l 5 +EndSplineSet +EndChar + +StartChar: greater +Encoding: 62 62 93 +Width: 523 +VWidth: 1023 +Flags: W +LayerCount: 4 +Fore +SplineSet +49 551 m 1 + 475 341 l 1 + 475 260 l 1 + 49 59 l 1 + 49 139 l 1 + 390 303 l 1 + 49 475 l 1 + 49 551 l 1 +EndSplineSet +Layer: 3 +SplineSet +48.8281 550.781 m 5 + 475.098 340.82 l 5 + 475.098 260.254 l 5 + 48.8281 58.5938 l 5 + 48.8281 139.16 l 5 + 439.941 327.148 l 5 + 439.941 278.32 l 5 + 48.8281 475.098 l 5 + 48.8281 550.781 l 5 +EndSplineSet +EndChar + +StartChar: braceleft +Encoding: 123 123 94 +Width: 389 +VWidth: 1023 +Flags: W +HStem: -201 63<306.338 349.556> 235 67<44 95.9427> 675 63<307.416 349.556> +VStem: 44 318 +CounterMasks: 1 e0 +LayerCount: 4 +Fore +SplineSet +241 32 m 1 + 248.746 -60.9577 282.344 -127.519 362 -138 c 1 + 348 -201 l 1 + 243.402 -192.284 179.813 -106.937 169 3 c 0 + 165.708 29.3375 163.895 72.6054 161 103 c 0 + 154.488 171.376 102.942 225.176 44 235 c 1 + 44 302 l 1 + 104.903 312.151 151.037 366.582 161 433 c 0 + 165.024 459.827 169 503.332 169 528 c 1 + 178 623 216 687 282 720 c 0 + 303 730 325 736 348 738 c 1 + 362 675 l 1 + 288 664 247 606 240 499 c 0 + 237 453 233 419 230 398 c 0 + 222.312 344.186 186.007 295.004 147 269 c 1 + 199 235 229 176 236 93 c 0 + 237.474 79.7303 241 45.2379 241 32 c 1 +EndSplineSet +Layer: 3 +SplineSet +226.562 678.223 m 0 + 257.447 712.549 301.615 734.79 347.656 738.281 c 1 + 362.305 675.293 l 1 + 325.494 670.21 291.863 647.773 271.484 616.699 c 0 + 248.859 582.197 242.625 539.692 239.746 498.535 c 0 + 237.758 470.109 236.795 441.551 232.335 413.406 c 0 + 227.875 385.264 219.812 357.473 206.055 332.52 c 0 + 193.646 310.013 176.647 289.965 156.018 274.638 c 0 + 135.387 259.311 111.221 248.758 85.9375 244.141 c 1 + 85.9375 292.969 l 5 + 111.167 288.379 135.293 277.893 155.919 262.656 c 0 + 176.545 247.419 193.578 227.482 206.055 205.078 c 0 + 220.523 179.097 228.777 150.014 233.225 120.609 c 0 + 237.671 91.2051 238.431 61.3887 240.723 31.7383 c 0 + 243.711 -6.91113 250.356 -46.6006 271.484 -79.1016 c 0 + 291.751 -110.277 325.446 -132.784 362.305 -137.695 c 1 + 347.656 -200.684 l 1 + 301.68 -196.875 257.621 -174.738 226.562 -140.625 c 0 + 208.859 -121.181 195.31 -98.0938 186.105 -73.46 c 0 + 176.901 -48.8281 172.076 -22.7451 169.434 3.41797 c 0 + 166.641 31.0654 166.182 58.9238 162.898 86.5176 c 0 + 159.615 114.11 153.122 141.713 139.648 166.016 c 0 + 129.781 183.813 116.244 199.644 99.7871 211.615 c 0 + 83.3301 223.586 64.04 231.648 43.9453 234.863 c 1 + 43.9453 302.246 l 1 + 64.0488 305.627 83.3164 313.809 99.7617 325.854 c 0 + 116.207 337.9 129.746 353.764 139.648 371.582 c 0 + 152.638 394.957 159.268 421.387 162.771 447.896 c 0 + 166.273 474.408 166.975 501.206 169.434 527.832 c 0 + 171.945 555.024 176.415 582.192 185.508 607.944 c 0 + 194.6 633.691 208.297 657.925 226.562 678.223 c 0 +EndSplineSet +EndChar + +StartChar: sterling +Encoding: 163 163 95 +Width: 634 +VWidth: 1023 +Flags: W +HStem: 0 66<74 193 273 561> 323 66<107 193 273 532> 632 67<350.381 527.361> +VStem: 193 80<66 323 389 554.993> +LayerCount: 4 +Fore +SplineSet +74 66 m 1 + 193 66 l 1 + 193 323 l 1 + 107 323 l 1 + 107 389 l 1 + 193 389 l 1 + 193 458 l 2 + 193 500 197 532 204 555 c 0 + 230.643 639.028 318.37 699 431 699 c 0 + 469 699 506 692 545 680 c 1 + 522 621 l 1 + 493 629 465 632 438 632 c 0 + 390.418 632 354.231 617.385 330 598 c 0 + 299.521 573.617 279.482 541.303 275 492 c 0 + 274 477 273 462 273 445 c 2 + 273 389 l 1 + 532 389 l 1 + 532 323 l 1 + 273 323 l 1 + 273 66 l 1 + 561 66 l 1 + 561 0 l 1 + 74 0 l 1 + 74 66 l 1 +EndSplineSet +Layer: 3 +SplineSet +107.422 389.16 m 17 + 532.227 389.16 l 9 + 532.227 323.242 l 25 + 107.422 323.242 l 25 + 107.422 389.16 l 17 +74.2188 65.918 m 1 + 193.359 65.918 l 1 + 193.359 458.008 l 2 + 193.359 490.723 194.336 523.438 204.102 554.688 c 0 + 228.516 632.812 309.57 698.73 430.664 698.73 c 0 + 470.703 698.73 510.254 691.406 545.41 680.176 c 1 + 521.973 620.605 l 1 + 496.582 627.441 468.75 632.324 441.406 632.324 c 0 + 414.551 632.324 387.695 627.93 363.281 617.676 c 0 + 272.949 580.078 273.438 490.723 273.438 444.824 c 0 + 273.438 438.477 273.438 432.129 273.438 425.781 c 2 + 273.438 65.918 l 1 + 560.547 65.918 l 1 + 560.547 0 l 1 + 74.2188 0 l 1 + 74.2188 65.918 l 1 +EndSplineSet +EndChar + +StartChar: exclamdown +Encoding: 161 161 96 +Width: 317 +VWidth: 1023 +Flags: W +HStem: 384 98<110 208> +VStem: 110 98<384 482> 117 83<-261 258> +LayerCount: 4 +Fore +SplineSet +117 258 m 1xa0 + 200 258 l 1 + 200 -261 l 1 + 117 -261 l 1 + 117 258 l 1xa0 +110 482 m 1xc0 + 208 482 l 1 + 208 384 l 1 + 110 384 l 1 + 110 482 l 1xc0 +EndSplineSet +Layer: 3 +SplineSet +109.863 645.02 m 1 + 207.52 645.02 l 1 + 207.52 547.363 l 1 + 109.863 547.363 l 1 + 109.863 645.02 l 1 +117.188 421.387 m 1 + 200.195 421.387 l 1 + 200.195 -200.195 l 1 + 117.188 -200.195 l 1 + 117.188 421.387 l 1 +EndSplineSet +EndChar + +StartChar: cent +Encoding: 162 162 97 +Width: 498 +VWidth: 1023 +Flags: W +HStem: 111 63.783<237.7 265 324 415.51> +VStem: 73 77.416<261.079 461.335> 265 59<-32 112.652 606 738> +LayerCount: 4 +Fore +SplineSet +73 347 m 0 + 73 488.688 141.867 586.718 265 604 c 1 + 265 738 l 1 + 324 738 l 1 + 324 606 l 1 + 364 604 403 595 442 578 c 1 + 423 519 l 1 + 385.843 532.005 352.137 538.107 322.685 538.107 c 0 + 208.723 538.107 150.416 476.263 150.416 365.979 c 0 + 150.416 250.551 203.019 188.725 308 176 c 0 + 314.738 175.183 321.6 174.783 328.596 174.783 c 0 + 355.867 174.783 385.167 180.858 417 192 c 1 + 437 137 l 1 + 400 122 362 114 324 111 c 1 + 324 -32 l 1 + 265 -32 l 1 + 265 112 l 1 + 144.674 124.762 73 211.446 73 347 c 0 +EndSplineSet +Layer: 3 +SplineSet +265.137 142.09 m 17 + 324.219 142.09 l 9 + 324.219 -31.7383 l 25 + 265.137 -31.7383 l 25 + 265.137 142.09 l 17 +265.137 737.793 m 25 + 324.219 737.793 l 25 + 324.219 577.148 l 25 + 265.137 577.148 l 25 + 265.137 737.793 l 25 +302.734 606.445 m 0 + 350.616 607.163 398.503 596.812 442.383 577.637 c 1 + 422.852 519.043 l 1 + 385.271 532.065 345.404 539.214 305.664 537.598 c 0 + 283.282 536.689 260.868 532.744 240.17 524.18 c 0 + 219.473 515.615 200.697 502.207 186.523 484.863 c 0 + 171.089 465.975 161.371 442.852 156.26 419 c 0 + 151.148 395.149 150.09 370.551 151.367 346.191 c 0 + 153.014 314.791 158.846 283.016 173.828 255.371 c 0 + 186.018 232.881 204.406 213.838 226.362 200.711 c 0 + 248.318 187.584 273.416 180.187 298.828 177.246 c 0 + 338.758 172.626 379.648 178.311 417.48 191.895 c 1 + 437.012 136.719 l 1 + 393.533 119.656 346.999 109.988 300.293 109.863 c 0 + 265.134 109.77 229.674 115.363 197.323 129.135 c 0 + 164.973 142.905 136.191 165.261 115.723 193.848 c 0 + 84.3486 237.666 73.3936 293.276 73.2422 347.168 c 0 + 73.1504 379.738 76.752 412.43 85.4844 443.807 c 0 + 94.2188 475.184 108.568 505.234 129.395 530.273 c 0 + 150.229 555.322 177.384 574.951 207.433 587.549 c 0 + 237.481 600.151 270.154 605.957 302.734 606.445 c 0 +EndSplineSet +EndChar + +StartChar: currency +Encoding: 164 164 98 +Width: 634 +Flags: W +HStem: 193 69<256.281 377.769> 462 69<257.204 376.456> +VStem: 148 72<298.635 423.387> 415.252 70.748<300.476 423.674> +LayerCount: 4 +Fore +SplineSet +316 531 m 0 + 346 531 375 524 402 508 c 1 + 483 588 l 1 + 544 527 l 1 + 463 447 l 1 + 478 422 486 393 486 363 c 0 + 486 333 479 305 463 278 c 1 + 543 197 l 1 + 482 136 l 1 + 402 217 l 1 + 375 201 346 193 316 193 c 0 + 286 193 258 201 233 216 c 1 + 152 135 l 1 + 91 196 l 1 + 172 277 l 1 + 157 302 148 330 148 361 c 0 + 148 392 156 420 172 447 c 1 + 90 528 l 1 + 151 589 l 1 + 233 508 l 1 + 258 523 286 531 316 531 c 0 +318 462 m 0 + 262.99 462 220 415.553 220 361 c 0 + 220 307.378 262.502 262 316 262 c 0 + 372.733 262 415.252 307.747 415.252 364.758 c 0 + 415.252 415.624 368.728 462 318 462 c 0 +EndSplineSet +Layer: 3 +SplineSet +317.871 461.914 m 0 + 291.645 462.079 265.616 450.824 247.504 431.857 c 0 + 229.392 412.889 219.299 386.574 219.727 360.352 c 0 + 220.141 334.934 230.416 309.739 248.15 291.525 c 0 + 265.885 273.312 290.986 262.405 316.406 262.207 c 0 + 341.433 262.012 366.32 272.186 384.273 289.621 c 0 + 402.228 307.058 413.154 331.457 414.551 356.445 c 0 + 416.039 383.072 406.645 410.219 388.744 429.986 c 0 + 370.844 449.755 344.539 461.746 317.871 461.914 c 0 +151.367 589.355 m 1 + 232.91 507.812 l 1 + 257.669 522.349 286.232 530.342 314.941 530.762 c 0 + 345.277 531.206 375.693 523.174 401.855 507.812 c 1 + 482.91 588.379 l 1 + 543.945 527.344 l 1 + 462.891 446.777 l 1 + 477.507 421.877 485.502 393.129 485.84 364.258 c 0 + 486.193 334.084 478.166 303.855 462.891 277.832 c 1 + 543.457 197.266 l 1 + 482.422 136.23 l 1 + 401.855 216.797 l 1 + 375.914 201.283 345.654 193.078 315.43 193.359 c 0 + 286.551 193.629 257.781 201.63 232.91 216.309 c 1 + 151.855 135.254 l 1 + 90.8203 196.289 l 1 + 171.875 277.344 l 1 + 157.078 302.012 148.906 330.613 148.438 359.375 c 0 + 147.939 389.928 156.157 420.574 171.875 446.777 c 1 + 90.332 528.32 l 1 + 151.367 589.355 l 1 +EndSplineSet +EndChar + +StartChar: yen +Encoding: 165 165 99 +Width: 634 +VWidth: 1023 +Flags: W +HStem: 0 21G<275 353> 122 61<141 275 353 494> 280 61<141 271 356 494> 674 20G<70 170.644 468.017 565> +VStem: 275 78<0 122 183 280> +LayerCount: 4 +Fore +SplineSet +494 341 m 1 + 494 280 l 1 + 353 280 l 1 + 353 183 l 1 + 494 183 l 1 + 494 122 l 1 + 353 122 l 1 + 353 0 l 1 + 275 0 l 1 + 275 122 l 1 + 141 122 l 1 + 141 183 l 1 + 275 183 l 1 + 275 280 l 1 + 141 280 l 1 + 141 341 l 1 + 271 341 l 1 + 70 694 l 1 + 160 694 l 1 + 317 399 l 1 + 479 694 l 1 + 565 694 l 1 + 356 341 l 1 + 494 341 l 1 +EndSplineSet +Layer: 3 +SplineSet +140.625 182.617 m 25 + 494.141 182.617 l 25 + 494.141 121.582 l 25 + 140.625 121.582 l 25 + 140.625 182.617 l 25 +140.625 341.309 m 17 + 494.141 341.309 l 9 + 494.141 280.273 l 25 + 140.625 280.273 l 25 + 140.625 341.309 l 17 +69.8242 693.848 m 9 + 160.156 693.848 l 17 + 328.125 379.883 l 9 + 308.594 383.301 l 17 + 479.492 693.848 l 9 + 564.941 693.848 l 25 + 353.027 335.449 l 25 + 353.027 0 l 25 + 274.902 0 l 25 + 274.902 335.449 l 17 + 69.8242 693.848 l 9 +EndSplineSet +EndChar + +StartChar: brokenbar +Encoding: 166 166 100 +Width: 431 +VWidth: 1023 +Flags: W +VStem: 176 80<-150 225 409 782> +LayerCount: 4 +Fore +SplineSet +176 782 m 1 + 256 782 l 1 + 256 409 l 1 + 176 409 l 1 + 176 782 l 1 +176 225 m 1 + 256 225 l 1 + 256 -150 l 1 + 176 -150 l 1 + 176 225 l 1 +EndSplineSet +Layer: 3 +SplineSet +175.781 224.609 m 1 + 255.859 224.609 l 1 + 255.859 -150.391 l 1 + 175.781 -150.391 l 1 + 175.781 224.609 l 1 +175.781 781.738 m 1 + 255.859 781.738 l 1 + 255.859 408.691 l 1 + 175.781 408.691 l 1 + 175.781 781.738 l 1 +EndSplineSet +EndChar + +StartChar: section +Encoding: 167 167 101 +Width: 554 +VWidth: 1023 +Flags: W +HStem: -10 63<126.871 350.091> 634 66<213.6 434.078> +VStem: 95 88<334.09 423.009 518.678 606.218> 384 92<85.0756 182.157 271.427 364.873> +LayerCount: 4 +Fore +SplineSet +310 634 m 0 + 247.284 634 183 616.392 183 560 c 0 + 183 522.882 226.999 500.182 259 490 c 0 + 304.356 475.569 358.481 455.872 400 437 c 0 + 437.726 419.852 476 384.133 476 333 c 0 + 476 293 462 259 435 231 c 1 + 462 209 476 182 476 149 c 0 + 476 90.3004 444.507 51.0361 411 28 c 0 + 375 3 323 -10 256 -10 c 0 + 191 -10 131 1 78 22 c 1 + 101 83 l 1 + 157 63 206 53 249 53 c 0 + 339 53 384 82 384 140 c 0 + 384 167 365 187 327 202 c 0 + 310 209 292 214 271 220 c 0 + 230.287 231.632 185.375 247.368 152 267 c 0 + 114 290 95 323 95 367 c 0 + 95 402 109 434 138 461 c 1 + 110 484 96 513 96 550 c 0 + 96 578 105 605 125 629 c 0 + 156.748 669.03 227.073 700 300 700 c 0 + 332 700 354 700 367 698 c 2 + 386 695 l 2 + 391 694 397 694 404 692 c 2 + 419 688 l 2 + 422 687 427 686 435 684 c 2 + 450 679 l 1 + 428 615 l 1 + 388 628 348 634 310 634 c 0 +183 382 m 0 + 183 348.504 198.814 335.093 223 323 c 0 + 255.385 306.807 273.658 301.114 313 288 c 0 + 334 281 351 276 363 271 c 1 + 377 285 384 302 384 323 c 0 + 384 356 353 381 290 399 c 2 + 248 411 l 2 + 232 416 218 421 207 425 c 1 + 191 412 183 397 183 382 c 0 +EndSplineSet +Layer: 3 +SplineSet +207.031 424.805 m 1 + 187.012 408.691 182.617 388.672 182.617 376.465 c 0 + 182.617 317.383 280.273 302.246 362.793 270.508 c 1 + 378.906 286.133 384.277 305.664 384.277 323.242 c 0 + 384.277 384.766 288.574 395.02 207.031 424.805 c 1 +317.871 700.195 m 0 + 384.277 700.195 413.574 689.492 450.195 679.238 c 1 + 428.223 615.234 l 1 + 392.09 626.611 347.168 634.277 305.664 634.277 c 0 + 238.281 634.277 182.129 608.887 182.617 560.059 c 0 + 183.618 459.966 476.074 483.887 476.074 333.008 c 0 + 476.074 301.758 466.309 263.184 435.059 231.445 c 1 + 459.473 211.426 475.586 185.547 475.586 149.414 c 0 + 475.586 85.9375 434.57 -9.76562 255.859 -9.76562 c 0 + 220.215 -9.76562 161.133 -10.7422 78.125 21.9727 c 1 + 100.586 82.5195 l 1 + 157.715 62.5 208.984 53.2227 249.023 53.2227 c 0 + 323.008 53.2227 383.789 73.2422 383.789 139.648 c 0 + 383.789 244.629 95.2148 200.195 95.2148 367.188 c 0 + 95.2148 393.555 105.957 430.176 138.184 460.938 c 1 + 112.793 481.445 95.7031 509.766 95.7031 550.293 c 0 + 95.7031 610.254 146.344 700.195 317.871 700.195 c 0 +EndSplineSet +EndChar + +StartChar: copyright +Encoding: 169 169 102 +Width: 859 +VWidth: 1023 +Flags: W +HStem: -7 65<322.611 537.072> 156 47.026<377.515 527.423> 466.446 48.648<373.831 531.409> 609 65<322.134 536.159> +VStem: 83 65<228.479 437.754> 273 56.73<253.463 422.11> 711 65<228.645 438.102> +LayerCount: 4 +Fore +SplineSet +441 156 m 0 + 334.72 156 273 217.665 273 327 c 0 + 273 382 287 427 315 462 c 0 + 343.852 498.065 389.71 515.094 451.648 515.094 c 0 + 480.004 515.094 510.062 508.062 541 494 c 1 + 526 452 l 1 + 498.566 461.683 473.157 466.446 449.774 466.446 c 0 + 370.404 466.446 329.73 419.335 329.73 338.829 c 0 + 329.73 252.644 372.068 203.026 458.088 203.026 c 0 + 477.849 203.026 499.312 207.177 522 215 c 1 + 537 175 l 1 + 504 162 472 156 441 156 c 0 +430 609 m 0 + 347.349 609 276.19 572.452 231 529 c 0 + 185.674 485.417 148 415.959 148 333 c 0 + 148 250.693 185.988 181.281 231 138 c 0 + 276.251 94.4893 347.259 58 430 58 c 0 + 512.849 58 582.789 94.5277 628 138 c 0 + 673.073 181.339 711 250.606 711 333 c 0 + 711 415.861 673.263 485.478 628 529 c 0 + 582.725 572.534 512.947 609 430 609 c 0 +428 674 m 0 + 529.516 674 617.596 629.673 673 576 c 0 + 728.939 521.809 776 436.04 776 333 c 0 + 776 230.871 729.636 145.897 674 92 c 0 + 618.362 38.1004 532.018 -7 430 -7 c 0 + 327.323 -7 241.838 37.9067 186 92 c 0 + 129.885 146.362 83 229.828 83 333 c 0 + 83 434.91 129.401 521.138 185 575 c 0 + 240.322 628.594 327.26 674 428 674 c 0 +EndSplineSet +Layer: 3 +SplineSet +428.223 673.828 m 0 + 518.403 674.209 608.413 638.535 673.184 575.791 c 0 + 737.959 513.047 776.372 423.676 776.367 333.496 c 0 + 776.362 243.562 738.164 154.426 673.701 91.7168 c 0 + 609.238 29.0068 519.619 -6.83301 429.688 -6.83594 c 0 + 339.752 -6.83887 250.131 29.0059 185.666 91.7168 c 0 + 121.201 154.427 83.0049 243.561 83.0078 333.496 c 0 + 83.0107 423.186 120.996 512.08 185.15 574.756 c 0 + 249.305 637.432 338.534 673.452 428.223 673.828 c 0 +429.688 609.375 m 0 + 356.691 609.375 283.924 580.41 231.504 529.609 c 0 + 179.084 478.811 147.949 406.492 147.949 333.496 c 0 + 147.949 260.5 179.084 188.182 231.504 137.381 c 0 + 283.924 86.5801 356.691 57.6172 429.688 57.6172 c 0 + 502.686 57.6172 575.449 86.5801 627.871 137.381 c 0 + 680.288 188.182 711.426 260.5 711.426 333.496 c 0 + 711.426 406.492 680.288 478.811 627.871 529.609 c 0 + 575.449 580.41 502.686 609.375 429.688 609.375 c 0 +438.965 515.137 m 0 + 473.794 515.703 508.638 508.154 540.527 494.141 c 1 + 525.879 451.66 l 1 + 498.662 461.227 469.746 466.502 440.918 465.332 c 0 + 424.723 464.675 408.501 461.791 393.555 455.518 c 0 + 378.609 449.245 365.1 439.421 354.98 426.758 c 0 + 344.015 413.034 337.214 396.309 333.641 379.109 c 0 + 330.066 361.909 329.307 344.21 330.078 326.66 c 0 + 331.085 303.753 334.936 280.498 345.703 260.254 c 0 + 354.383 243.936 367.67 230.138 383.572 220.717 c 0 + 399.475 211.297 417.66 206.104 436.035 204.102 c 0 + 464.97 200.947 494.531 205.144 521.973 214.844 c 1 + 536.621 174.805 l 1 + 505.044 162.671 471.328 155.801 437.5 155.762 c 0 + 412.119 155.732 386.525 159.752 363.16 169.666 c 0 + 339.796 179.58 318.994 195.686 304.199 216.309 c 0 + 281.486 247.969 273.592 288.184 273.438 327.148 c 0 + 273.344 350.652 275.882 374.246 282.096 396.914 c 0 + 288.31 419.582 298.551 441.316 313.477 459.473 c 0 + 328.484 477.729 348.115 492.061 369.879 501.274 c 0 + 391.642 510.488 415.336 514.751 438.965 515.137 c 0 +EndSplineSet +EndChar + +StartChar: guillemotleft +Encoding: 171 171 103 +Width: 457 +VWidth: 1023 +Flags: W +HStem: 462 20G<147.067 251 328.067 433> +LayerCount: 4 +Fore +SplineSet +342 482 m 1 + 433 482 l 1 + 299 304 l 1 + 433 126 l 1 + 342 126 l 1 + 218 304 l 1 + 342 482 l 1 +161 482 m 1 + 251 482 l 1 + 118 304 l 1 + 251 126 l 1 + 161 126 l 1 + 37 304 l 1 + 161 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +160.645 482.422 m 5 + 251.465 482.422 l 5 + 110.352 294.922 l 5 + 110.352 313.965 l 5 + 251.465 125.977 l 5 + 161.133 125.977 l 5 + 36.6211 304.199 l 5 + 160.645 482.422 l 5 +341.797 482.422 m 5 + 432.617 482.422 l 5 + 291.504 294.922 l 5 + 291.504 313.965 l 5 + 432.617 125.977 l 5 + 342.285 125.977 l 5 + 217.773 304.199 l 5 + 341.797 482.422 l 5 +EndSplineSet +EndChar + +StartChar: guillemotright +Encoding: 187 187 104 +Width: 457 +VWidth: 1023 +Flags: W +HStem: 462 20G<24 128.933 206 309.933> +LayerCount: 4 +Fore +SplineSet +115 482 m 1 + 239 304 l 1 + 115 126 l 1 + 24 126 l 1 + 158 304 l 1 + 24 482 l 1 + 115 482 l 1 +296 482 m 1 + 420 304 l 1 + 296 126 l 1 + 206 126 l 1 + 339 304 l 1 + 206 482 l 1 + 296 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +296.387 482.422 m 1 + 420.41 304.199 l 1 + 295.898 125.977 l 1 + 205.566 125.977 l 1 + 346.68 313.965 l 1 + 346.68 294.922 l 1 + 205.566 482.422 l 1 + 296.387 482.422 l 1 +115.234 482.422 m 1 + 239.258 304.199 l 1 + 114.746 125.977 l 1 + 24.4141 125.977 l 1 + 165.527 313.965 l 1 + 165.527 294.922 l 1 + 24.4141 482.422 l 1 + 115.234 482.422 l 1 +EndSplineSet +EndChar + +StartChar: registered +Encoding: 174 174 105 +Width: 601 +VWidth: 1023 +Flags: W +HStem: 256 55<207.05 393.031> 480 38<254 309> 605 40.05<254 352.658> 708 54<208.335 391.922> +VStem: 44 54<420.085 598.059> 208 46<379 480 518 605> 361.531 42.802<523.65 595.895> 503 55<420.093 599.472> +LayerCount: 4 +Fore +SplineSet +404.333 567.889 m 0 + 404.333 526.367 384.611 497.87 352 487 c 1 + 407 379 l 1 + 358 379 l 1 + 309 481 l 1 + 298 481 283 480 266 480 c 2 + 254 480 l 1 + 254 379 l 1 + 208 379 l 1 + 208 643 l 1 + 317 645 l 2 + 318.301 645.033 319.59 645.05 320.864 645.05 c 0 + 369.844 645.05 404.333 617.541 404.333 567.889 c 0 +301 762 m 0 + 377.069 762 440.468 728.801 482 689 c 0 + 523.344 649.379 558 584.119 558 509 c 0 + 558 433.735 523.329 369.607 482 330 c 0 + 440.771 290.489 376.091 256 301 256 c 0 + 225.201 256 161.45 290.277 120 330 c 0 + 78.6144 369.661 44 433.658 44 509 c 0 + 44 584.05 78.7089 649.429 120 689 c 0 + 161.849 729.106 224.109 762 301 762 c 0 +300 708 m 0 + 245 708 197 688 158 650 c 0 + 118 611 98 564 98 509 c 0 + 98 454 118 407 158 368 c 0 + 197 330 245 311 301 311 c 0 + 357 311 404 330 443 368 c 0 + 483 407 503 454 503 509 c 0 + 503 625.919 409.007 708 300 708 c 0 +361.531 563.883 m 0 + 361.531 588.801 334.384 603.86 315 605 c 1 + 254 605 l 1 + 254 518 l 1 + 270 518 l 2 + 322.231 518 347.083 513.249 358 546 c 0 + 360.29 552.413 361.531 558.406 361.531 563.883 c 0 +EndSplineSet +Layer: 3 +SplineSet +299.805 708.008 m 0 + 352.51 708.262 405.136 687.471 443.03 650.84 c 0 + 480.926 614.209 503.423 561.982 503.418 509.277 c 0 + 503.413 456.736 481.062 404.668 443.373 368.059 c 0 + 405.686 331.449 353.322 310.549 300.781 310.547 c 0 + 248.238 310.545 195.873 331.449 158.184 368.059 c 0 + 120.494 404.668 98.1426 456.734 98.1445 509.277 c 0 + 98.1465 561.655 120.357 613.564 157.84 650.151 c 0 + 195.322 686.738 247.427 707.759 299.805 708.008 c 0 +300.781 762.207 m 0 + 234.051 762.207 167.584 735.459 119.861 688.818 c 0 + 72.1396 642.173 43.9453 576.006 43.9453 509.277 c 0 + 43.9453 442.547 72.1396 376.379 119.861 329.736 c 0 + 167.584 283.094 234.051 256.348 300.781 256.348 c 0 + 367.512 256.348 433.979 283.094 481.701 329.736 c 0 + 529.424 376.379 557.617 442.547 557.617 509.277 c 0 + 557.617 576.006 529.424 642.173 481.701 688.818 c 0 + 433.979 735.459 367.512 762.207 300.781 762.207 c 0 +299.805 499.023 m 1 + 346.191 499.023 l 1 + 406.738 378.906 l 1 + 357.91 378.906 l 1 + 299.805 499.023 l 1 +208.496 642.578 m 1 + 316.895 644.531 l 2 + 326.443 644.702 336.074 644.6 345.404 642.559 c 0 + 354.734 640.518 363.674 636.704 371.582 631.348 c 0 + 381.728 624.478 390.166 615.029 395.508 604.004 c 0 + 400.641 593.408 402.906 581.587 403.32 569.824 c 0 + 403.73 558.193 402.48 546.455 399.109 535.317 c 0 + 395.738 524.18 389.997 513.667 381.836 505.371 c 0 + 375.277 498.701 367.258 493.545 358.628 489.937 c 0 + 349.998 486.33 340.805 484.216 331.543 482.91 c 0 + 309.754 479.838 287.63 480.469 265.625 480.469 c 2 + 228.027 480.469 l 1 + 228.027 518.066 l 1 + 270.02 518.066 l 2 + 287.289 518.066 304.684 516.592 321.777 519.043 c 0 + 331.381 520.42 340.98 523.73 348.145 530.273 c 0 + 352.777 534.502 356.264 539.951 358.288 545.889 c 0 + 360.313 551.826 360.935 558.208 360.352 564.453 c 0 + 359.655 571.914 357.242 579.238 353.146 585.513 c 0 + 349.049 591.782 343.195 596.89 336.426 600.098 c 0 + 329.848 603.218 322.553 604.551 315.291 605.073 c 0 + 308.029 605.596 300.738 605.469 293.457 605.469 c 2 + 253.906 605.469 l 1 + 253.906 378.906 l 1 + 208.496 378.906 l 1 + 208.496 642.578 l 1 +EndSplineSet +EndChar + +StartChar: paragraph +Encoding: 182 182 106 +Width: 653 +VWidth: 1023 +Flags: W +HStem: 0 21G<276.94 360 478 561> 665 73<360 478> +VStem: 63 297<448.802 646.908> 277 83<0 336.969> 478 83<0 665> +LayerCount: 4 +Fore +SplineSet +298 738 m 2xe8 + 561 738 l 1 + 561 0 l 1 + 478 0 l 1 + 478 665 l 1 + 360 665 l 1 + 360 0 l 1 + 277 0 l 1xd8 + 276 335 l 1 + 212.621 340.592 178.867 349.35 142 377 c 0 + 94.7263 412.455 63 474.351 63 553 c 0 + 63 644.488 112.497 709.534 189 728 c 0 + 218 735 254 738 298 738 c 2xe8 +EndSplineSet +Layer: 3 +SplineSet +113.281 686.523 m 0 + 161.133 733.398 225.586 737.793 297.852 737.793 c 2 + 560.547 737.793 l 1 + 560.547 0 l 1 + 477.539 0 l 1 + 477.539 664.551 l 1 + 360.352 664.551 l 1 + 360.352 0 l 1 + 276.855 0 l 1 + 276.367 417.48 l 1 + 315.918 417.48 l 1 + 315.918 332.52 l 1 + 250 335.449 219.238 341.309 196.777 348.633 c 0 + 88.8672 383.301 63.4766 484.375 63.4766 553.223 c 0 + 63.4766 608.398 81.0547 654.785 113.281 686.523 c 0 +EndSplineSet +EndChar + +StartChar: periodcentered +Encoding: 183 183 107 +Width: 288 +VWidth: 1023 +Flags: W +HStem: 307 102<93 195> +VStem: 93 102<307 409> +LayerCount: 4 +Fore +SplineSet +93 409 m 1 + 195 409 l 1 + 195 307 l 1 + 93 307 l 1 + 93 409 l 1 +EndSplineSet +Layer: 3 +SplineSet +92.7734 409.18 m 1 + 195.312 409.18 l 1 + 195.312 306.641 l 1 + 92.7734 306.641 l 1 + 92.7734 409.18 l 1 +EndSplineSet +EndChar + +StartChar: questiondown +Encoding: 191 191 108 +Width: 511 +VWidth: 1023 +Flags: W +HStem: -268 70<193.449 385.872> +VStem: 62 81<-150.541 -24.1283> 248 83<163.348 283> +LayerCount: 4 +Fore +SplineSet +275 -198 m 0 + 203.267 -198 143 -156.052 143 -89 c 0 + 143 -45.4502 165.346 -17.7314 192 3 c 2 + 222 27 l 2 + 249 49 268 68 279 85 c 0 + 315.568 136.804 331 189.896 331 283 c 1 + 248 283 l 1 + 248 161.797 205.612 115.956 136 59 c 0 + 123 49 111 38 100 26 c 0 + 75 0 62 -33 62 -73 c 0 + 62 -157.295 116.835 -214.495 174 -244 c 0 + 205 -260 236 -268 268 -268 c 0 + 323 -268 380 -254 441 -225 c 1 + 416 -165 l 1 + 363 -187 316 -198 275 -198 c 0 +338 385 m 1 + 338 482 l 1 + 241 482 l 1 + 241 385 l 1 + 338 385 l 1 +EndSplineSet +Layer: 3 +SplineSet +165.527 595.703 m 1 + 263.184 595.703 l 1 + 263.184 693.359 l 1 + 165.527 693.359 l 1 + 165.527 595.703 l 1 +239.746 -68.8477 m 0 + 325.195 -68.8477 441.406 9.27734 441.406 117.676 c 0 + 441.406 292.969 255.859 240.234 255.859 482.422 c 1 + 172.852 482.422 l 1 + 172.852 197.754 360.84 241.699 360.84 109.863 c 0 + 360.84 53.7109 314.941 0.976562 227.051 0.976562 c 0 + 199.219 0.976562 159.668 4.39453 87.8906 33.6914 c 1 + 62.5 -25.8789 l 1 + 116.211 -51.2695 166.992 -68.8477 239.746 -68.8477 c 0 +EndSplineSet +EndChar + +StartChar: uni00B5 +Encoding: 181 181 109 +Width: 579 +VWidth: 1023 +Flags: W +HStem: -13 67.7861<222.462 376.108> 0 21G<426.909 492> 462 20G<93 173 412 492> +VStem: 93 80<-200 26 109.331 482> 412 80<82.1863 482> +LayerCount: 4 +Fore +SplineSet +93 482 m 1xb8 + 173 482 l 1 + 173 221 l 2 + 173 170.908 175.637 143.644 194 111 c 0 + 213.464 75.1453 245.506 54.7861 289.809 54.7861 c 0 + 320.188 54.7861 360.919 66.9237 412 92 c 1 + 412 482 l 1 + 492 482 l 1 + 492 0 l 1 + 436 0 l 1x78 + 421 33 l 1 + 373 2 327 -13 283 -13 c 0 + 239 -13 202 0 173 26 c 1 + 173 -200 l 1 + 93 -200 l 1 + 93 482 l 1xb8 +EndSplineSet +Layer: 3 +SplineSet +92.7734 482.422 m 1 + 172.852 482.422 l 1 + 173.34 220.703 l 2 + 173.375 202.155 173.463 183.539 176.059 165.174 c 0 + 178.652 146.809 183.833 128.669 192.826 112.447 c 0 + 201.819 96.2256 214.66 82.0723 230.287 72.0811 c 0 + 245.912 62.0889 264.155 56.3887 282.655 55.0596 c 0 + 312.627 52.9062 342.322 61.8242 370.117 73.2422 c 0 + 397.735 84.5879 424.396 98.1484 450.684 112.305 c 1 + 426.27 253.906 l 1 + 491.699 253.906 l 1 + 491.699 0 l 1 + 435.547 0 l 1 + 411.621 56.1523 l 1 + 411.621 482.422 l 1 + 491.699 482.422 l 1 + 491.699 169.922 l 2 + 491.699 154.321 491.44 138.621 488.389 123.321 c 0 + 485.337 108.022 479.548 93.2529 471.155 80.1025 c 0 + 454.369 53.8008 428.093 34.8643 400.391 20.5078 c 0 + 362.139 0.68457 319.938 -13.5322 276.855 -13.1836 c 0 + 238.992 -12.877 201.097 0.697266 172.852 25.915 c 1 + 172.852 -200.195 l 1 + 92.7734 -200.195 l 1 + 92.7734 482.422 l 1 +EndSplineSet +EndChar + +StartChar: uni00AD +Encoding: 173 173 110 +Width: 524 +VWidth: 1023 +Flags: W +HStem: 288 67<107 417> +VStem: 107 310<288 355> +LayerCount: 4 +Fore +SplineSet +107 355 m 1 + 417 355 l 1 + 417 288 l 1 + 107 288 l 1 + 107 355 l 1 +EndSplineSet +Layer: 3 +SplineSet +107.422 355.469 m 1 + 416.992 355.469 l 1 + 416.992 287.598 l 1 + 107.422 287.598 l 1 + 107.422 355.469 l 1 +EndSplineSet +EndChar + +StartChar: plusminus +Encoding: 177 177 111 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 73 67<107 576> 426 67<107 306 377 576> 674 20G<306 377> +VStem: 306 71<225 426 493 694> +LayerCount: 4 +Fore +SplineSet +306 694 m 1 + 377 694 l 1 + 377 493 l 1 + 576 493 l 1 + 576 426 l 1 + 377 426 l 1 + 377 225 l 1 + 306 225 l 1 + 306 426 l 1 + 107 426 l 1 + 107 493 l 1 + 306 493 l 1 + 306 694 l 1 +107 140 m 1 + 576 140 l 1 + 576 73 l 1 + 107 73 l 1 + 107 140 l 1 +EndSplineSet +Layer: 3 +SplineSet +107.422 140.137 m 1 + 576.172 140.137 l 1 + 576.172 73.2422 l 1 + 107.422 73.2422 l 1 + 107.422 140.137 l 1 +306.152 693.848 m 5 + 377.441 693.848 l 5 + 377.441 225.098 l 5 + 306.152 225.098 l 5 + 306.152 693.848 l 5 +107.422 492.676 m 5 + 576.172 492.676 l 5 + 576.172 425.781 l 5 + 107.422 425.781 l 5 + 107.422 492.676 l 5 +EndSplineSet +EndChar + +StartChar: ae +Encoding: 230 230 112 +Width: 817 +VWidth: 0 +Flags: W +HStem: -10 64<176.808 322.541 521.204 707.97> 213 60<175.146 354 438 677> 422 69<116.073 313.82 500.081 632.365> +VStem: 60 80<87.305 183.143> 354 80<132.791 213 274 347.99> 677 77<273 369.381> +LayerCount: 4 +Fore +SplineSet +140 134 m 0 + 140 86.2382 197.604 54 247 54 c 0 + 288 54 324 70 354 101 c 1 + 354 213 l 1 + 346 213 333 214 317 214 c 0 + 258 214 214 208 184 196 c 0 + 154 184 140 164 140 134 c 0 +677 290 m 0 + 677 359.396 639.509 422 573 422 c 0 + 544 422 520 415 500 401 c 0 + 462 374 441 331 438 273 c 1 + 677 273 l 1 + 677 277 677 278 677 290 c 0 +408 406 m 1 + 444.527 451.224 505.88 491 582 491 c 0 + 697 491 754 409 754 245 c 0 + 754 230 753 219 753 213 c 1 + 434 213 l 1 + 434 210 434 210 434 207 c 0 + 434 165 451 130 484 100 c 0 + 518 70 561 55 612 55 c 0 + 639 55 672 60 712 72 c 1 + 726 18 l 1 + 677 0 629 -9 581 -9 c 0 + 502 -9 442 15 401 64 c 1 + 364 15 307 -10 231 -10 c 0 + 166.405 -10 112.563 18.7259 84 58 c 0 + 68 80 60 104 60 130 c 0 + 60 166 75 197 105 223 c 0 + 146.569 259.026 225.9 274 308 274 c 0 + 345 274 346 274 354 274 c 1 + 354 299 l 2 + 354 382.736 311.339 425 225 425 c 0 + 201 425 163 417 111 403 c 1 + 91 461 l 1 + 145 481 199 491 253 491 c 0 + 329 491 381 463 408 406 c 1 +EndSplineSet +Layer: 3 +SplineSet +90.8203 460.938 m 5 + 151.879 483.717 212.756 491.24 253.418 491.211 c 4 + 333.545 491.807 383.973 457.542 408.203 406.25 c 5 + 448.877 455.516 512.168 491.372 581.479 491.372 c 4 + 719.419 491.372 753.735 374.691 753.906 244.629 c 4 + 753.916 226.758 753.735 218.836 753.418 212.891 c 5 + 434.082 212.891 l 5 + 433.977 210.75 433.926 208.607 433.926 206.466 c 4 + 433.926 124.479 507.637 54.498 611.929 54.498 c 4 + 650.713 54.498 691.094 65.9941 712.402 72.2656 c 5 + 725.586 17.5781 l 5 + 671.255 -2.54297 617.261 -9.42871 581.128 -9.42871 c 4 + 514.937 -9.42871 444.914 11.1895 400.879 63.9648 c 5 + 361.826 12.4678 302.811 -9.84082 230.805 -9.84082 c 4 + 141.502 -9.84082 60.1621 49.4004 60.0586 129.678 c 4 + 60.0586 199.298 116.904 258.295 235.916 270.159 c 4 + 270.887 273.646 306.252 273.926 323.836 273.926 c 4 + 330.775 273.926 343.621 273.818 353.516 273.926 c 5 + 352.835 280.566 353.825 285.836 353.825 299.307 c 4 + 353.825 356.363 329.822 424.835 233.807 424.835 c 4 + 209.213 424.835 176.791 421.495 110.84 403.32 c 5 + 90.8203 460.938 l 5 +676.938 284.405 m 4 + 676.938 338.034 655.137 421.885 567.925 421.885 c 4 + 486.519 421.885 441.84 351.28 437.988 273.438 c 5 + 676.758 273.438 l 5 + 676.88 276.438 676.938 281.397 676.938 284.405 c 4 +139.648 133.789 m 4 + 139.648 89.3555 192.383 54.1992 247.07 54.1992 c 4 + 290.039 54.1992 327.637 73.7305 353.516 101.074 c 5 + 353.516 213.379 l 5 + 340.82 213.867 329.102 213.867 317.383 213.867 c 4 + 206.543 213.867 139.648 196.777 139.648 133.789 c 4 +EndSplineSet +EndChar + +StartChar: germandbls +Encoding: 223 223 113 +Width: 615 +VWidth: 1023 +Flags: W +HStem: -13 65<258.341 452.648> 0 21G<98.96 180> 626 72<220.017 342.599> +VStem: 99 81<0 584.693> 253 80<315.192 389.989> 382 78<485.075 588.539> 472 85<71.7861 178.974> +LayerCount: 4 +Fore +SplineSet +98 500 m 2x7e + 98 616.819 171.574 698 294 698 c 0 + 360.763 698 406.693 664.922 433 624 c 0 + 451 597 460 568 460 538 c 0 + 460 508 452 481 435 460 c 0 + 422 444 408 430 393 419 c 0 + 368.165 400.788 333 381.167 333 352 c 0 + 333 339 336 329 341 322 c 0 + 349 310 366 299 391 289 c 2 + 426 276 l 2 + 477.586 257.242 502.965 247.294 528 216 c 1 + 547 194 557 164 557 127 c 0 + 557 80.8219 533.336 43.2143 510 22 c 1 + 483 -1 446 -13 397 -13 c 0 + 348 -13 298 -5 246 10 c 1 + 261 67 l 1 + 312 57 352 52 380 52 c 0xbe + 435.598 52 472 70.4512 472 126 c 0 + 472 180.651 428.352 198.089 381 215 c 2 + 345 228 l 1 + 301 245 273 269 261 300 c 0 + 256 313 253 327 253 343 c 0 + 253 407.858 295.401 433.534 332 462 c 0 + 341 469 349 474 356 481 c 0 + 373 496 382 515 382 538 c 0 + 382 584.994 329.461 626 282 626 c 0 + 253 626 229 616 208 594 c 0 + 188 573 179 541 179 499 c 2 + 180 0 l 1 + 99 0 l 1 + 98 500 l 2x7e +EndSplineSet +Layer: 3 +SplineSet +291.24 698.335 m 0 + 404.465 698.335 460.171 606.987 460.171 537.607 c 0 + 460.171 423.117 332.939 410.156 332.939 347.777 c 0 + 332.939 255.645 556.665 304.134 556.665 127.277 c 0 + 556.665 79.0557 528.623 -12.7109 394.865 -12.7109 c 0 + 358.391 -12.7109 302.156 -6.25977 246.094 10.2539 c 1 + 261.23 66.8945 l 1 + 303.193 58.6133 344.047 51.8105 378.439 51.8105 c 0 + 433.477 51.8105 471.968 69.2295 471.968 125.877 c 0 + 471.968 245.492 253.318 187.978 253.318 344.416 c 0 + 253.318 451.989 381.981 458.496 381.981 532.783 c 0 + 381.981 587.759 329.431 626.328 282.188 626.465 c 0 + 258.79 626.465 178.486 613.95 178.711 499.023 c 2 + 179.688 0 l 1 + 98.6328 0 l 1 + 97.6562 499.512 l 2 + 97.373 644.424 203.02 698.335 291.24 698.335 c 0 +EndSplineSet +EndChar + +StartChar: multiply +Encoding: 215 215 114 +Width: 634 +VWidth: 1023 +Flags: W +LayerCount: 4 +Fore +SplineSet +141 95 m 1 + 89 146 l 1 + 262 319 l 1 + 93 488 l 1 + 144 540 l 1 + 320 363 l 1 + 493 537 l 1 + 544 485 l 1 + 372 312 l 1 + 541 143 l 1 + 490 91 l 1 + 313 268 l 1 + 141 95 l 1 +EndSplineSet +Layer: 3 +SplineSet +489.888 91.3086 m 1 + 92.916 488.281 l 1 + 144.186 539.551 l 1 + 541.157 142.578 l 1 + 489.888 91.3086 l 1 +140.733 94.7617 m 1 + 88.9756 146.031 l 1 + 283.391 340.445 l 1 + 305.487 348.732 l 1 + 493.34 536.587 l 1 + 544.609 484.828 l 1 + 354.93 295.146 l 1 + 334.904 288.932 l 1 + 140.733 94.7617 l 1 +EndSplineSet +EndChar + +StartChar: divide +Encoding: 247 247 115 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 41 95<294 389> 287 68<61 623> 507 95<294 389> +VStem: 294 95<41 136 507 602> +LayerCount: 4 +Fore +SplineSet +61 355 m 1 + 623 355 l 1 + 623 287 l 1 + 61 287 l 1 + 61 355 l 1 +294 136 m 1 + 389 136 l 1 + 389 41 l 1 + 294 41 l 1 + 294 136 l 1 +294 602 m 1 + 389 602 l 1 + 389 507 l 1 + 294 507 l 1 + 294 602 l 1 +EndSplineSet +Layer: 3 +SplineSet +293.945 602.051 m 1 + 389.16 602.051 l 1 + 389.16 506.836 l 1 + 293.945 506.836 l 1 + 293.945 602.051 l 1 +293.945 135.742 m 1 + 389.16 135.742 l 1 + 389.16 40.5273 l 1 + 293.945 40.5273 l 1 + 293.945 135.742 l 1 +61.0352 354.98 m 5 + 622.559 354.98 l 5 + 622.559 287.109 l 1 + 61.0352 287.109 l 1 + 61.0352 354.98 l 5 +EndSplineSet +EndChar + +StartChar: oslash +Encoding: 248 248 116 +Width: 569 +VWidth: 1023 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 466 20G<472.515 512.714> +VStem: 46 83<137.066 343.078> 427 83<137.24 343.792> +LayerCount: 4 +Fore +SplineSet +492 486 m 1xb8 + 521 458 l 1 + 66 -7 l 1 + 38 20 l 1 + 492 486 l 1xb8 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +508.301 485.84 m 25 + 536.621 458.496 l 25 + 82.0312 -7.32422 l 25 + 53.7109 20.0195 l 25 + 508.301 485.84 l 25 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni00A0 +Encoding: 160 160 117 +Width: 273 +VWidth: 0 +Flags: W +LayerCount: 4 +EndChar + +StartChar: OE +Encoding: 338 338 118 +Width: 975 +VWidth: 1023 +Flags: W +HStem: 0 73<331.407 513 596 897> 321 73<596 871> 621 73<335.033 513 596 897> +VStem: 104.961 82.825<220.33 466.592> 513 83<73 321 394 621> +LayerCount: 4 +Fore +SplineSet +187.786 332.465 m 0 + 187.786 193.923 275.598 95.9261 386 77 c 0 + 402 74 424 73 451 73 c 2 + 513 73 l 1 + 513 621 l 1 + 485 621 l 2 + 445 621 414 619 393 616 c 0 + 259.643 594.597 187.786 493.339 187.786 332.465 c 0 +519 694 m 2 + 897 694 l 1 + 897 621 l 1 + 596 621 l 1 + 596 394 l 1 + 871 394 l 1 + 871 321 l 1 + 596 321 l 1 + 596 73 l 1 + 897 73 l 1 + 897 0 l 1 + 475 0 l 2 + 313.089 0 221.022 34.8318 159 132 c 0 + 122.974 187.5 104.961 258.169 104.961 342.161 c 0 + 104.961 528.109 187.979 641.618 340 679 c 0 + 381 689 441 694 519 694 c 2 +EndSplineSet +Layer: 3 +SplineSet +339.844 679.199 m 0 + 398.102 693.218 458.635 693.848 518.555 693.848 c 2 + 595.703 693.848 l 1 + 595.703 262.207 l 1 + 595.703 0 l 1 + 475.098 0 l 2 + 409.793 0 342.848 2.84863 282.715 28.3203 c 0 + 232.266 49.6895 188.267 86.2041 158.691 132.324 c 0 + 117.938 195.875 104.24 273.629 104.98 349.121 c 0 + 105.421 394.016 110.966 439.083 124.391 481.926 c 0 + 137.815 524.771 159.866 565.229 190.918 597.656 c 0 + 230.611 639.106 284.044 665.776 339.844 679.199 c 0 +306.641 585.938 m 0 + 269.555 564.434 239.554 531.421 220.215 493.164 c 0 + 198.782 450.764 189.479 402.955 187.988 355.469 c 0 + 186.145 296.73 196.578 236.285 227.051 186.035 c 0 + 250.188 147.881 284.586 116.694 324.707 97.168 c 0 + 344.191 87.6855 365.025 80.9941 386.381 77.3262 c 0 + 407.738 73.6582 429.503 73.2422 451.172 73.2422 c 2 + 512.695 73.2422 l 1 + 512.695 258.301 l 1 + 512.695 620.605 l 1 + 484.863 620.605 l 2 + 454.208 620.605 423.414 620.396 393.137 615.596 c 0 + 362.859 610.791 333.16 601.313 306.641 585.938 c 0 +545.41 320.801 m 1 + 545.41 394.043 l 1 + 870.605 394.043 l 1 + 870.605 320.801 l 1 + 545.41 320.801 l 1 +545.41 0 m 1 + 545.41 73.2422 l 1 + 897.461 73.2422 l 1 + 897.461 0 l 1 + 545.41 0 l 1 +545.41 620.605 m 1 + 545.41 693.848 l 1 + 897.461 693.848 l 1 + 897.461 620.605 l 1 + 545.41 620.605 l 1 +EndSplineSet +EndChar + +StartChar: oe +Encoding: 339 339 119 +Width: 880 +VWidth: 0 +Flags: W +HStem: -11 69<218.517 360.108 569.415 773.734> 199 60<501 740> 421 68<210.803 350.894 563.176 690.889> +VStem: 63 79<144.189 344.36> 425 74<128.969 199 259 339.304> 740 77<259 369.272> +LayerCount: 4 +Fore +SplineSet +278 421 m 0 + 191.483 421 142 336.478 142 245 c 0 + 142 172.349 169.001 114.782 212 83 c 0 + 235 66 258 58 282 58 c 0 + 333.501 58 359.502 74.5403 385 102 c 0 + 412.445 131.557 425 176.448 425 235 c 0 + 425 338.429 373.263 421 278 421 c 0 +740 269 m 0 + 740 361.264 710.055 417 624 417 c 0 + 586 417 555 402 534 370 c 0 + 513 338 502 301 501 259 c 1 + 740 259 l 1 + 740 264 740 264 740 269 c 0 +63 238 m 0 + 63 383.678 147.441 489 290 489 c 0 + 372 489 432 457 469 393 c 1 + 510 456 568 487 645 487 c 0 + 739.049 487 797.013 426.919 813 331 c 0 + 816 313 817 285 817 246 c 2 + 817 199 l 1 + 499 199 l 1 + 500 153 521 115 561 85 c 0 + 590 63 628 53 674 53 c 0 + 704 53 738 58 776 70 c 1 + 789 16 l 1 + 741 -2 693 -11 643 -11 c 0 + 557 -11 495 18 458 78 c 1 + 417 19 358 -11 281 -11 c 0 + 143.228 -11 63 95.8493 63 238 c 0 +EndSplineSet +Layer: 3 +SplineSet +644.912 486.862 m 4 + 778.203 486.862 806.763 367.51 811.523 337.891 c 4 + 816.387 307.614 816.895 276.855 816.895 246.094 c 6 + 816.895 198.73 l 5 + 499.023 198.73 l 5 + 501.016 134.033 554.243 52.7246 673.765 52.7246 c 4 + 687.529 52.7246 720.82 53.5557 775.879 70.3125 c 5 + 789.062 15.625 l 5 + 749.897 0.9375 699.214 -11.2305 642.578 -11.2305 c 4 + 536.567 -11.2305 483.745 35.9512 457.5 78.2715 c 5 + 418.637 21.4336 357.219 -10.7432 281.424 -10.7432 c 4 + 150.846 -10.7432 63.4707 85.6309 63.4707 237.428 c 4 + 63.4707 392.067 154.147 489.258 290.162 489.258 c 4 + 373.317 489.258 433.723 452.959 468.587 392.845 c 5 + 523.213 476.73 607.075 486.862 644.912 486.862 c 4 +628.179 417.357 m 4 + 543.604 417.357 502.217 338.602 500.977 259.277 c 5 + 740.234 259.277 l 5 + 740.312 262.523 740.352 265.771 740.352 269.016 c 4 + 740.352 375.244 695.483 417.357 628.179 417.357 c 4 +425.305 231.59 m 4 + 425.305 365.344 349.91 420.898 281.738 420.898 c 4 + 197.326 420.646 141.575 345.229 141.575 245.187 c 4 + 141.575 141.462 200.98 57.6162 290.088 57.6162 c 4 + 362.928 57.6162 425.305 117.328 425.305 231.59 c 4 +EndSplineSet +EndChar + +StartChar: AE +Encoding: 198 198 120 +Width: 935 +VWidth: 1023 +Flags: W +HStem: 0 73<555 857> 202 72<249 472> 321 73<555 830> 621 73<383 472 555 857> +VStem: 472 83<73 202 274 321 394 621> +LayerCount: 4 +Fore +SplineSet +857 694 m 1 + 857 621 l 1 + 555 621 l 1 + 555 394 l 1 + 830 394 l 1 + 830 321 l 1 + 555 321 l 1 + 555 73 l 1 + 857 73 l 1 + 857 0 l 1 + 472 0 l 1 + 472 202 l 1 + 221 202 l 1 + 143 0 l 1 + 63 0 l 1 + 334 694 l 1 + 857 694 l 1 +472 274 m 1 + 472 621 l 1 + 383 621 l 1 + 249 274 l 1 + 472 274 l 1 +EndSplineSet +Layer: 3 +SplineSet +334.473 693.848 m 1 + 856.934 693.848 l 1 + 856.934 620.605 l 1 + 555.176 620.605 l 1 + 555.176 394.043 l 1 + 830.078 394.043 l 1 + 830.078 320.801 l 1 + 555.176 320.801 l 1 + 555.176 73.2422 l 1 + 856.934 73.2422 l 1 + 856.934 0 l 1 + 472.168 0 l 1 + 472.168 201.66 l 1 + 183.594 202.148 l 1 + 226.074 274.414 l 1 + 472.168 274.414 l 1 + 472.168 620.605 l 1 + 382.836 620.605 l 1 + 142.578 0 l 1 + 63.4766 0 l 1 + 334.473 693.848 l 1 +EndSplineSet +EndChar + +StartChar: onequarter +Encoding: 188 188 121 +Width: 864 +VWidth: 0 +Flags: W +HStem: 0 21G<175 272.556 691 756> 95 54<573 691 756 808> 674 20G<94.6923 221 564.444 662> +VStem: 156 65<302 630> 691 65<0 95 149 336> +LayerCount: 4 +Fore +SplineSet +576 694 m 1 + 662 694 l 1 + 261 0 l 1 + 175 0 l 1 + 576 694 l 1 +221 694 m 1 + 221 302 l 1 + 156 302 l 1 + 156 630 l 1 + 88 611 l 1 + 73 668 l 1 + 167 694 l 1 + 221 694 l 1 +756 408 m 1 + 756 149 l 1 + 808 149 l 1 + 808 95 l 1 + 756 95 l 1 + 756 0 l 1 + 691 0 l 1 + 691 95 l 1 + 500 95 l 1 + 500 139 l 1 + 679 408 l 1 + 756 408 l 1 +691 149 m 1 + 691 336 l 1 + 573 149 l 1 + 691 149 l 1 +EndSplineSet +Layer: 3 +SplineSet +690.918 335.938 m 1 + 573.242 148.926 l 1 + 690.918 148.926 l 1 + 690.918 335.938 l 1 +679.199 408.203 m 1 + 755.859 408.203 l 1 + 755.859 148.926 l 1 + 808.105 148.926 l 1 + 808.105 95.2148 l 1 + 755.859 95.2148 l 1 + 755.859 0 l 1 + 690.918 0 l 1 + 690.918 95.2148 l 1 + 500.488 95.2148 l 1 + 500.488 138.672 l 1 + 679.199 408.203 l 1 +166.504 693.848 m 1 + 221.191 693.848 l 1 + 221.191 301.758 l 1 + 156.25 301.758 l 1 + 156.25 630.371 l 1 + 87.8906 611.328 l 1 + 73.2422 668.457 l 1 + 166.504 693.848 l 1 +576.172 693.848 m 1 + 661.621 693.848 l 1 + 261.23 0 l 1 + 175.293 0 l 1 + 576.172 693.848 l 1 +EndSplineSet +EndChar + +StartChar: onehalf +Encoding: 189 189 122 +Width: 877 +VWidth: 0 +Flags: W +HStem: 0 57<639 824> 355 56<587.013 736.45> 674 20G<94.6923 221 564.444 662> +VStem: 156 65<302 630> 753 64<255.305 337.13> +LayerCount: 4 +Fore +SplineSet +576 694 m 1 + 662 694 l 1 + 261 0 l 1 + 175 0 l 1 + 576 694 l 1 +753 297 m 0 + 753 332.403 714.163 355 676 355 c 0 + 654 355 621 347 576 329 c 1 + 556 377 l 1 + 602 399 644 411 683 411 c 0 + 753.129 411 817 371.76 817 305 c 0 + 817 261.75 789.212 227.738 762 203 c 2 + 729 172 l 1 + 682.319 130.148 660.734 106.677 639 57 c 1 + 824 57 l 1 + 824 0 l 1 + 564 0 l 1 + 564 35 l 1 + 584 100 628 162 695 221 c 0 + 722 244 738 261 744 271 c 0 + 750 281 753 290 753 297 c 0 +221 694 m 1 + 221 302 l 1 + 156 302 l 1 + 156 630 l 1 + 88 611 l 1 + 73 668 l 1 + 167 694 l 1 + 221 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +166.504 693.848 m 1 + 221.191 693.848 l 1 + 221.191 301.758 l 1 + 156.25 301.758 l 1 + 156.25 630.371 l 1 + 87.8906 611.328 l 1 + 73.2422 668.457 l 1 + 166.504 693.848 l 1 +684.268 411.289 m 0 + 758.071 411.424 816.743 368.578 816.743 304.523 c 0 + 816.743 205.851 686.807 174.381 639.38 56.25 c 1 + 823.706 56.25 l 1 + 823.706 -0.146484 l 1 + 564.282 -0.146484 l 1 + 564.648 35.0137 l 1 + 614.199 194.035 753.462 240.828 753.462 297.068 c 0 + 753.462 326.604 720.532 355.494 675.752 355.494 c 0 + 654.639 355.494 629.81 350.049 575.552 328.58 c 1 + 555.698 377.366 l 1 + 586.826 392.7 630.308 411.188 684.268 411.289 c 0 +576.172 693.848 m 1 + 661.621 693.848 l 1 + 261.23 0 l 1 + 175.293 0 l 1 + 576.172 693.848 l 1 +EndSplineSet +EndChar + +StartChar: threequarters +Encoding: 190 190 123 +Width: 903 +VWidth: 0 +Flags: W +HStem: 0 21G<220 317.527 730 795> 95 54<613 730 795 848> 293 59<81.0076 238.786> 489 55<143 225.29> 650 58<96.834 237.77> 674 20G<609.444 706> +VStem: 248 62<563.593 638.005> 264 63<376.215 464.459> 730 65<0 95 149 336> +LayerCount: 4 +Fore +SplineSet +621 694 m 1xf480 + 706 694 l 1 + 306 0 l 1 + 220 0 l 1 + 621 694 l 1xf480 +795 408 m 1 + 795 149 l 1 + 848 149 l 1 + 848 95 l 1 + 795 95 l 1 + 795 0 l 1 + 730 0 l 1 + 730 95 l 1 + 540 95 l 1 + 540 139 l 1 + 719 408 l 1 + 795 408 l 1 +730 149 m 1 + 730 336 l 1 + 613 149 l 1 + 730 149 l 1 +186 708 m 0xfa80 + 254.848 708 310 670.604 310 603 c 0xfa80 + 310 570 295 544 264 524 c 1 + 306 507 327 477 327 434 c 0 + 327 348.095 257.509 293 171 293 c 2 + 169 293 l 2 + 136 293 101 301 61 317 c 1 + 79 369 l 1 + 122 358 154 352 176 352 c 0 + 218.667 352 264 378.88 264 421 c 0xf980 + 264 437 259 450 248 460 c 0 + 228 479 197 489 156 489 c 2 + 143 489 l 1 + 143 544 l 1 + 151 544 l 1 + 186 545 211 551 226 563 c 0 + 241 575 248 587 248 601 c 0 + 248 634.911 215.106 650 177 650 c 0 + 154 650 125 642 90 625 c 1 + 68 676 l 1 + 110 697 150 708 186 708 c 0xfa80 +EndSplineSet +Layer: 3 +SplineSet +264.16 523.926 m 1 + 310.059 504.883 326.66 468.262 326.66 430.664 c 0 + 326.66 348.633 259.766 293.945 170.898 293.457 c 1 + 169.434 293.457 l 2 + 138.672 293.457 103.516 300.293 68.3594 314.453 c 2 + 61.0352 317.383 l 1 + 79.1016 369.141 l 1 + 86.4258 367.188 l 2 + 132.812 354.492 154.297 352.051 171.387 352.051 c 0 + 221.191 352.051 264.16 379.883 264.16 420.898 c 0 + 264.16 448.242 242.676 489.258 156.25 489.258 c 2 + 142.578 489.258 l 1 + 142.578 544.434 l 1 + 150.879 544.434 l 2 + 228.516 546.387 248.047 579.102 248.047 602.051 c 0 + 248.047 626.465 224.609 650.391 181.152 650.391 c 0 + 147.461 650.391 114.258 636.719 97.168 628.906 c 2 + 89.8438 625.488 l 1 + 68.3594 676.27 l 1 + 75.1953 679.688 l 2 + 100.586 691.895 142.578 708.008 187.012 708.008 c 0 + 256.836 708.008 310.059 666.504 310.059 609.375 c 0 + 310.059 573.242 291.992 541.992 264.16 523.926 c 1 +730.469 335.938 m 1 + 612.793 148.926 l 1 + 730.469 148.926 l 1 + 730.469 335.938 l 1 +718.75 408.203 m 1 + 795.41 408.203 l 1 + 795.41 148.926 l 1 + 847.656 148.926 l 1 + 847.656 95.2148 l 1 + 795.41 95.2148 l 1 + 795.41 0 l 1 + 730.469 0 l 1 + 730.469 95.2148 l 1 + 540.039 95.2148 l 1 + 540.039 138.672 l 1 + 718.75 408.203 l 1 +620.605 693.848 m 1 + 706.055 693.848 l 1 + 305.664 0 l 1 + 219.727 0 l 1 + 620.605 693.848 l 1 +EndSplineSet +EndChar + +StartChar: degree +Encoding: 176 176 124 +Width: 287 +Flags: W +HStem: 493 45<96.9451 190.082> 668 44<97.3467 188.241> +VStem: 37 44<552.984 652.207> 206 45<553.898 651.659> +LayerCount: 4 +Fore +SplineSet +206 603 m 0 + 206 636.762 178.212 668 144 668 c 0 + 108.234 668 81 638.608 81 603 c 0 + 81 566.845 106.874 538 143 538 c 0 + 178.766 538 206 567.878 206 603 c 0 +37 603 m 0 + 37 662.609 85.035 712 144 712 c 0 + 202.114 712 251 661.532 251 603 c 0 + 251 543.977 202.636 493 144 493 c 0 + 84.5211 493 37 542.897 37 603 c 0 +EndSplineSet +Layer: 3 +SplineSet +143.555 712.402 m 0 + 201.66 712.402 250.977 664.062 250.977 603.027 c 0 + 250.977 541.992 202.637 493.164 144.043 493.164 c 0 + 85.9375 493.164 36.6211 541.504 36.6211 603.027 c 0 + 36.6211 663.574 84.9609 712.402 143.555 712.402 c 0 +144.043 667.969 m 0 + 107.422 667.969 80.5664 637.695 80.5664 603.027 c 0 + 80.5664 569.336 105.957 537.598 144.043 537.598 c 0 + 180.176 537.598 206.055 569.336 206.055 603.027 c 0 + 206.055 636.719 180.176 667.969 144.043 667.969 c 0 +EndSplineSet +EndChar + +StartChar: ccedilla +Encoding: 231 231 125 +Width: 467 +VWidth: 0 +Flags: W +HStem: -247.556 46.556<182.761 326.542> 0 73<209.074 393.763> 408 73<206.038 398.764> +VStem: 330.413 47.674<-194.658 -131.299> +LayerCount: 4 +Fore +Refer: 126 184 N 1 0 0 1 -21.3643 -5 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 126 184 N 1 0 0 1 -9.27734 -4.94907 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +EndChar + +StartChar: cedilla +Encoding: 184 184 126 +Width: 537 +VWidth: 0 +Flags: W +HStem: -242.556 46.556<204.125 347.907> +VStem: 351.777 47.674<-189.658 -126.299> +LayerCount: 4 +Fore +SplineSet +300 -196 m 0 + 329.645 -194.86 351.777 -183.957 351.777 -157.265 c 0 + 351.777 -141.875 334.3 -126.986 325 -123 c 0 + 318 -120 310 -117 300 -114 c 2 + 239 -95 l 1 + 267 11 l 1 + 329 11 l 1 + 310 -66 l 1 + 322 -70 l 2 + 366.436 -83.8864 399.451 -102.299 399.451 -155.179 c 0 + 399.451 -204.123 355.414 -242.556 301.037 -242.556 c 0 + 288.667 -242.556 275.333 -241 261 -238 c 0 + 252 -236 233 -231 205 -223 c 2 + 188 -218 l 1 + 201 -173 l 1 + 216 -178 l 1 + 259 -191 287 -196 300 -196 c 0 +EndSplineSet +Layer: 3 +SplineSet +267.09 10.7422 m 1 + 329.102 10.7422 l 1 + 307.129 -76.1719 l 1 + 297.852 -62.5 l 1 + 322.266 -69.8242 l 2 + 334.875 -73.6074 347.53 -77.6768 358.879 -84.3496 c 0 + 370.227 -91.0234 380.162 -100.207 387.207 -111.328 c 0 + 393.922 -121.928 397.992 -134.176 399.033 -146.68 c 0 + 400.072 -159.184 398.111 -171.903 393.555 -183.594 c 0 + 387.546 -199.01 377.027 -212.588 363.8 -222.527 c 0 + 350.573 -232.467 334.714 -238.705 318.359 -241.211 c 0 + 299.284 -244.134 279.746 -242.086 260.879 -238.027 c 0 + 242.012 -233.971 223.579 -228.145 205.078 -222.656 c 0 + 199.548 -221.016 194.015 -219.387 188.477 -217.773 c 1 + 201.172 -173.34 l 1 + 206.048 -174.826 210.932 -176.291 215.82 -177.734 c 0 + 230.384 -182.031 244.982 -186.229 259.728 -189.852 c 0 + 274.473 -193.475 289.51 -196.713 304.688 -196.289 c 0 + 313.725 -196.037 322.858 -194.318 330.843 -190.077 c 0 + 338.827 -185.836 345.505 -178.893 348.633 -170.41 c 0 + 350.771 -164.613 351.228 -158.213 349.975 -152.163 c 0 + 348.722 -146.112 345.791 -140.457 341.797 -135.742 c 0 + 336.615 -129.627 329.742 -125.125 322.462 -121.77 c 0 + 315.182 -118.414 307.475 -116.102 299.805 -113.77 c 2 + 238.77 -95.2148 l 1 + 267.09 10.7422 l 1 +EndSplineSet +EndChar + +StartChar: Ccedilla +Encoding: 199 199 127 +Width: 648 +VWidth: 0 +Flags: W +HStem: -247.05 52.0498<253.366 389.816> -10 75.5625<306.92 554.233> 627.748 74.5547<303.55 551.397> +VStem: 50 94.916<231.433 466.293> +LayerCount: 4 +Fore +SplineSet +361.374 -66 m 1 + 410.807 -81.7285 448.825 -98.9482 448.825 -156.18 c 0 + 448.825 -207.781 400.695 -247.05 343.787 -247.05 c 0 + 332.054 -247.05 319.574 -245.7 306.374 -243 c 0 + 297.374 -241 276.374 -235 245.374 -226 c 2 + 229.374 -221 l 1 + 244.374 -170 l 1 + 258.374 -175 l 1 + 305.374 -189 335.374 -195 347.374 -195 c 0 + 371.374 -194 385.374 -187 391.374 -172 c 0 + 400.968 -150.892 383.004 -132.815 371.374 -127 c 0 + 365.374 -124 356.374 -121 346.374 -118 c 2 + 279.374 -98 l 1 + 309.374 12 l 1 + 379.374 9 l 1 + 361.374 -66 l 1 +EndSplineSet +Refer: 54 67 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +377.197 12.3506 m 1 + 447.51 9.4209 l 1 + 425.537 -77.4932 l 1 + 411.865 -60.8916 l 1 + 436.279 -68.2158 l 2 + 449.303 -72.123 462.375 -76.2979 474.147 -83.1016 c 0 + 485.919 -89.9062 496.284 -99.2734 503.662 -110.696 c 0 + 510.703 -121.604 514.99 -134.263 516.099 -147.198 c 0 + 517.212 -160.134 515.19 -173.297 510.498 -185.403 c 0 + 504.482 -200.922 494.092 -214.677 481 -224.95 c 0 + 467.905 -235.225 452.158 -241.954 435.791 -244.974 c 0 + 415.339 -248.746 394.202 -246.794 373.854 -242.494 c 0 + 353.507 -238.193 333.657 -231.851 313.721 -225.931 c 0 + 308.191 -224.289 302.658 -222.66 297.119 -221.048 c 1 + 311.768 -170.267 l 1 + 316.643 -171.756 321.525 -173.22 326.416 -174.661 c 0 + 341.562 -179.125 356.747 -183.464 372.045 -187.373 c 0 + 387.343 -191.283 402.916 -195.06 418.701 -194.681 c 0 + 426.928 -194.483 435.241 -192.983 442.568 -189.238 c 0 + 449.896 -185.493 456.111 -179.348 459.229 -171.731 c 0 + 461.312 -166.639 461.99 -160.982 461.185 -155.539 c 0 + 460.378 -150.096 458.107 -144.904 454.834 -140.481 c 0 + 450.111 -134.099 443.412 -129.39 436.246 -125.972 c 0 + 429.079 -122.555 421.426 -120.297 413.818 -118.021 c 2 + 346.924 -98.001 l 1 + 377.197 12.3506 l 1 +EndSplineSet +Refer: 54 67 N 1 0 0 1 0 0 3 +EndChar + +StartChar: dieresis +Encoding: 168 168 128 +Width: 585 +VWidth: 0 +Flags: W +HStem: 603 90<138 229 357 448> +VStem: 138 91<603 693> 357 91<603 693> +LayerCount: 4 +Fore +SplineSet +357 693 m 1 + 448 693 l 1 + 448 603 l 1 + 357 603 l 1 + 357 693 l 1 +138 693 m 1 + 229 693 l 1 + 229 603 l 1 + 138 603 l 1 + 138 693 l 1 +EndSplineSet +Layer: 3 +SplineSet +138.184 693.359 m 5 + 228.516 693.359 l 5 + 228.516 603.027 l 5 + 138.184 603.027 l 5 + 138.184 693.359 l 5 +357.422 693.359 m 5 + 447.754 693.359 l 5 + 447.754 603.027 l 5 + 357.422 603.027 l 5 + 357.422 693.359 l 5 +EndSplineSet +EndChar + +StartChar: Adieresis +Encoding: 196 196 129 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 836 90<159 250 378 469> +VStem: 159 91<836 926> 378 91<836 926> +LayerCount: 4 +Fore +Refer: 128 168 N 1 0 0 1 20.9998 233 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 N 1 0 0 1 64.6973 232.91 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Edieresis +Encoding: 203 203 130 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 836 90<128 219 347 438> +VStem: 80 83<73 321 394 621> 128 91<836 926> 347 91<836 926> +LayerCount: 4 +Fore +Refer: 128 168 N 1 0 0 1 -9.9998 233 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 N 1 0 0 1 52.002 233.398 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Idieresis +Encoding: 207 207 131 +Width: 327 +VWidth: 0 +Flags: W +HStem: 0 21G<142 225> 674 20G<142 225> 800 91<43 133 233 323> +VStem: 43 90<800 891> 142 83<0 694> 233 90<800 891> +LayerCount: 4 +Fore +SplineSet +233 891 m 1 + 323 891 l 1 + 323 800 l 1 + 233 800 l 1 + 233 891 l 1 +43 891 m 1 + 133 891 l 1 + 133 800 l 1 + 43 800 l 1 + 43 891 l 1 +142 694 m 1 + 225 694 l 1 + 225 0 l 1 + 142 0 l 1 + 142 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 1 + 224.609 693.848 l 1 + 224.609 0 l 1 + 141.602 0 l 1 + 141.602 693.848 l 1 +42.9688 890.625 m 1 + 133.301 890.625 l 1 + 133.301 800.293 l 1 + 42.9688 800.293 l 1 + 42.9688 890.625 l 1 +232.91 890.625 m 5 + 323.242 890.625 l 5 + 323.242 800.293 l 5 + 232.91 800.293 l 5 + 232.91 890.625 l 5 +EndSplineSet +EndChar + +StartChar: Odieresis +Encoding: 214 214 132 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 836 90<231 322 450 541> +VStem: 50 94<222.236 467.906> 231 91<836 926> 450 91<836 926> 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 93 233 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 143.106 233.415 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Udieresis +Encoding: 220 220 133 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 836 90<189 280 408 499> +VStem: 81 83<137.119 694> 189 91<836 926> 408 91<836 926> 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 128 168 N 1 0 0 1 50.9996 233 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 N 1 0 0 1 112.305 233.398 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: adieresis +Encoding: 228 228 134 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 603 90<88 179 307 398> +VStem: 88 91<603 693> 307 91<603 693> 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 -50 0 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 -11.7502 0 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: edieresis +Encoding: 235 235 135 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 603 90<119.4 210.4 338.4 429.4> +VStem: 59.4 75<139 218 281 352> 119.4 91<603 693> 338.4 91<603 693> 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 -18.6 0 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 6.08179 0 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: idieresis +Encoding: 239 239 136 +Width: 255 +VWidth: 0 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> 604 90<-7 83 173 263> +VStem: -7 90<604 694> 88 80<0 482> 173 90<604 694> +CounterMasks: 1 1c +LayerCount: 4 +Fore +SplineSet +173 694 m 1 + 263 694 l 1 + 263 604 l 1 + 173 604 l 1 + 173 694 l 1 +-7 694 m 1 + 83 694 l 1 + 83 604 l 1 + -7 604 l 1 + -7 694 l 1 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +-7.32422 693.848 m 5 + 83.0078 693.848 l 5 + 83.0078 603.516 l 5 + -7.32422 603.516 l 5 + -7.32422 693.848 l 5 +172.852 693.848 m 5 + 263.184 693.848 l 5 + 263.184 603.516 l 5 + 172.852 603.516 l 5 + 172.852 693.848 l 5 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +EndChar + +StartChar: odieresis +Encoding: 246 246 137 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 603 90<130 221 349 440> +VStem: 46 83<137.066 343.078> 130 91<603 693> 349 91<603 693> 427 83<137.24 343.792> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 -8 0 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 17.5781 0 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: udieresis +Encoding: 252 252 138 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 603 90<104 195 323 414> +VStem: 66 81<88 480> 104 91<603 693> 323 91<603 693> 391 82<83 480> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 -34 0 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 -3.66211 0 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ydieresis +Encoding: 255 255 139 +Width: 507 +VWidth: 0 +Flags: W +HStem: 462 20<22 110.384 397.616 481> 603 90<127 218 346 437> +VStem: 127 91<603 693> 346 91<603 693> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 -11 0 2 +Refer: 26 121 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 -10.7422 0 2 +Refer: 26 121 N 1 0 0 1 0 0 3 +EndChar + +StartChar: dotlessi +Encoding: 305 305 140 +Width: 255 +VWidth: 1023 +Flags: W +HStem: 0 21G<88 168> 462 20G<88 168> +VStem: 88 80<0 482> +LayerCount: 4 +Fore +SplineSet +88 482 m 1 + 168 482 l 1 + 168 0 l 1 + 88 0 l 1 + 88 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +87.8906 482.422 m 1 + 167.969 482.422 l 1 + 167.969 0 l 1 + 87.8906 0 l 1 + 87.8906 482.422 l 1 +EndSplineSet +EndChar + +StartChar: Agrave +Encoding: 192 192 141 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 738 204 +VStem: 180 281 +LayerCount: 4 +Fore +Refer: 89 96 S 1 0 0 1 45.9998 168 2 +Refer: 32 65 S 1 0 0 1 0 0 3 +Layer: 3 +Refer: 89 96 S 1 0 0 1 88.623 167.969 2 +Refer: 32 65 S 1 0 0 1 0 0 3 +EndChar + +StartChar: Aacute +Encoding: 193 193 142 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 717 207 +VStem: 213 223 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 92.9998 168 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 N 1 0 0 1 76.416 168.457 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 143 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 761 182 +VStem: 183 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -32.9998 191 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 N 1 0 0 1 12.6953 187.012 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Atilde +Encoding: 195 195 144 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 767.663 60.761<391.178 458.514> 855.675 60.662<248.482 320.825> +LayerCount: 4 +Fore +Refer: 88 126 S 1 0 0 1 99 486 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 88 126 S 1 0 0 1 15.8691 163.642 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Aring +Encoding: 197 197 145 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 664.173 51.314<259.599 371.617> 674 20<259.882 368.118> 863.727 50.1736<260.082 369.403> +VStem: 187.501 52.9201<732.573 845.718> 390.762 54.1228<733.615 845.093> +LayerCount: 4 +Fore +Refer: 124 176 N 1.20273 0 0 1.14031 143 102 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 124 176 N 1.20273 0 0 1.14031 185.447 102.19 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni00B2 +Encoding: 178 178 146 +Width: 390 +VWidth: 0 +Flags: W +HStem: 370 51<140 307> 693 51<87.9536 228.253> +VStem: 243 58<601.895 676.965> +LayerCount: 4 +Fore +SplineSet +243 640 m 0 + 243 671.944 207.068 693 173 693 c 0 + 153 693 123 685 82 669 c 1 + 63 713 l 1 + 105 734 144 744 179 744 c 0 + 242.873 744 301 708.42 301 647 c 0 + 301 600.617 265.417 567.965 236 541 c 2 + 201 508 l 1 + 173 483 153 454 140 421 c 1 + 307 421 l 1 + 307 370 l 1 + 71 370 l 1 + 72 402 l 1 + 86 447 107 485 136 517 c 0 + 160 544 181 564 198 579 c 0 + 228 605 243 626 243 640 c 0 +EndSplineSet +Layer: 3 +SplineSet +180.367 744.15 m 4 + 247.46 744.272 300.8 705.322 300.8 647.09 c 4 + 300.8 557.388 182.674 528.779 139.558 421.387 c 5 + 307.129 421.387 l 5 + 307.129 370.117 l 5 + 71.2891 370.117 l 5 + 71.6211 402.082 l 5 + 116.67 546.646 243.273 589.185 243.273 640.312 c 4 + 243.273 667.163 213.334 693.428 172.627 693.428 c 4 + 153.432 693.428 130.859 688.477 81.5352 668.96 c 5 + 63.4863 713.311 l 5 + 91.7852 727.251 131.311 744.058 180.367 744.15 c 4 +EndSplineSet +EndChar + +StartChar: uni00B3 +Encoding: 179 179 147 +Width: 390 +VWidth: 1023 +Flags: W +HStem: 366 53<78.7285 224.798> 544 50<135 215.983> 690 53<86.4071 223.646> +VStem: 231 56<610.477 680.831> 246 56<440.416 523.928> +LayerCount: 4 +Fore +SplineSet +175 743 m 0xf0 + 236.421 743 287 707.812 287 647 c 0xf0 + 287 617 274 594 246 576 c 1 + 284 560 302 533 302 494 c 0 + 302 415.219 240.23 366 161 366 c 2 + 160 366 l 2 + 130 366 97 374 61 388 c 1 + 77 435 l 1 + 114 425 143 419 164 419 c 0 + 201.618 419 246 443.589 246 480 c 0xe8 + 246 497 238 512 223 525 c 0 + 208 538 182 544 147 544 c 2 + 135 544 l 1 + 135 594 l 1 + 185 595 216 607 227 629 c 0 + 230 635 231 642 231 651 c 0 + 231 660 226 668 215 677 c 0 + 204 686 188 690 167 690 c 0 + 146 690 120 683 87 668 c 1 + 68 714 l 1 + 107 733 143 743 175 743 c 0xf0 +EndSplineSet +Layer: 3 +SplineSet +245.434 575.596 m 5 + 287.303 558.315 302.246 525.029 302.246 490.723 c 4 + 302.246 415.944 241.354 366.722 160.668 366.211 c 5 + 159.668 366.211 l 6 + 131.754 366.211 99.6592 372.263 67.5557 385.305 c 6 + 61.1084 387.924 l 5 + 77.3672 434.666 l 5 + 83.9785 432.842 l 6 + 126.147 421.209 145.712 419.434 161.133 419.434 c 4 + 206.348 419.434 245.605 444.434 245.605 481.934 c 4 + 245.605 506.738 225.977 543.945 147.461 543.945 c 6 + 135.254 543.945 l 5 + 135.254 594.053 l 5 + 142.391 594.238 l 6 + 212.962 596.045 230.957 625.586 230.957 646.484 c 4 + 230.957 668.76 209.295 690.43 169.922 690.43 c 4 + 139.51 690.43 109.624 678.345 93.8896 671.084 c 6 + 86.9922 667.9 l 5 + 67.7285 713.994 l 5 + 73.9316 717.031 l 6 + 96.8711 728.242 134.748 742.676 175.293 742.676 c 4 + 238.695 742.676 287.109 705.312 287.109 653.32 c 4 + 287.109 620.366 270.844 591.86 245.434 575.596 c 5 +EndSplineSet +EndChar + +StartChar: acute +Encoding: 180 180 148 +Width: 463 +VWidth: 0 +Flags: W +HStem: 549 207 +VStem: 120 223 +LayerCount: 4 +Fore +SplineSet +298 756 m 5 + 343 703 l 5 + 159 549 l 5 + 120 598 l 5 + 298 756 l 5 +EndSplineSet +Layer: 3 +SplineSet +379.883 773.926 m 1 + 414.062 713.867 l 1 + 164.062 569.824 l 1 + 133.789 622.559 l 1 + 379.883 773.926 l 1 +EndSplineSet +EndChar + +StartChar: uni00B9 +Encoding: 185 185 149 +Width: 265 +VWidth: 0 +Flags: W +HStem: 665 47<40.0638 54.3077> +VStem: 112 55<371 685> +LayerCount: 4 +Fore +SplineSet +167 738 m 1 + 167 371 l 1 + 112 371 l 1 + 112 685 l 1 + 42 665 l 1 + 29 712 l 1 + 123 738 l 1 + 167 738 l 1 +EndSplineSet +Layer: 3 +SplineSet +122.559 737.793 m 1 + 167.48 737.793 l 1 + 167.48 371.094 l 1 + 112.305 371.094 l 1 + 112.305 685.059 l 1 + 41.5039 665.039 l 1 + 29.2969 712.402 l 1 + 122.559 737.793 l 1 +EndSplineSet +EndChar + +StartChar: ordmasculine +Encoding: 186 186 150 +Width: 372 +VWidth: 1023 +Flags: W +HStem: 367 49<127.88 244.921> 691 51<124.531 246.569> +VStem: 33 55<459.267 652.047> 284 55<458.123 650.569> +LayerCount: 4 +Fore +SplineSet +191 691 m 0 + 119.257 691 88 643.521 88 561 c 0 + 88 496 104 453 135 432 c 0 + 150 422 166 416 181 416 c 0 + 213.905 416 232.017 424.017 250 442 c 0 + 272 463 284 502 284 558 c 0 + 284 618 268 657 237 677 c 0 + 222 687 207 691 191 691 c 0 +339 558 m 0 + 339 453.12 284.132 367 186 367 c 0 + 144 367 108 380 80 407 c 0 + 48 437 33 489 33 560 c 0 + 33 620 49 665 81 697 c 0 + 111 727 145 742 182 742 c 0 + 219.169 742 237.842 736.948 264 722 c 0 + 315.48 692.583 339 641.869 339 558 c 0 +EndSplineSet +Layer: 3 +SplineSet +186.523 741.699 m 4 + 243.164 741.699 339.355 716.309 339.355 559.082 c 4 + 339.355 437.012 270.996 367.188 185.547 367.188 c 4 + 107.91 367.188 32.7148 411.621 32.7148 559.57 c 4 + 32.7148 683.105 109.863 741.699 186.523 741.699 c 4 +185.547 691.406 m 4 + 141.113 690.918 88.3789 664.551 88.3789 561.035 c 4 + 88.3789 437.988 147.461 416.016 186.523 416.016 c 4 + 228.027 416.016 283.691 440.918 283.691 557.617 c 4 + 283.691 670.898 226.074 691.406 185.547 691.406 c 4 +EndSplineSet +EndChar + +StartChar: Egrave +Encoding: 200 200 151 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 737 204 +VStem: 80 83<73 321 394 621> 137 281 +LayerCount: 4 +Fore +Refer: 89 96 S 1 0 0 1 3.0002 167 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 89 96 S 1 0 0 1 65.4297 166.992 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Eacute +Encoding: 201 201 152 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 716 207 +VStem: 80 83<73 321 394 621> 203 223 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 83.0002 167 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 85.0928 167.354 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 153 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 761 182 +VStem: 80 83<73 321 394 621> 164 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -51.9998 191 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 N 1 0 0 1 -2.68555 190.918 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 154 +Width: 243 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 761 182 +VStem: -7.9998 263 80 83<0 694> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -224 191 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 N 1 0 0 1 -162.842 187.012 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Igrave +Encoding: 204 204 155 +Width: 243 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 737 204 +VStem: -9 281 80 83<0 694> +LayerCount: 4 +Fore +Refer: 89 96 S 1 0 0 1 -143 167 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 89 96 S 1 0 0 1 -67.3828 166.504 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Iacute +Encoding: 205 205 156 +Width: 243 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 717 207 +VStem: 42 223 80 83<0 694> +LayerCount: 4 +Fore +Refer: 148 180 N 1 0 0 1 -78 168 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 N 1 0 0 1 -108.999 168.33 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ntilde +Encoding: 209 209 157 +Width: 726 +VWidth: 0 +Flags: W +HStem: 0 21<80 163 528.01 646> 674 20<80 198.012 563 646> 767.663 60.761<460.178 527.514> 855.675 60.662<317.482 389.825> +VStem: 80 83<0 582> 563 83<113 694> +LayerCount: 4 +Fore +Refer: 88 126 S 1 0 0 1 168 486 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 88 126 S 1 0 0 1 85.6934 163.642 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ograve +Encoding: 210 210 158 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 739 204 +VStem: 50 94<222.236 467.906> 275 281 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 89 96 S 1 0 0 1 141 169 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 89 96 S 1 0 0 1 191.446 168.962 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Oacute +Encoding: 211 211 159 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 717 207 +VStem: 50 94<222.236 467.906> 261 223 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 141 168 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 160.572 168.347 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 160 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 761 182 +VStem: 50 94<222.236 467.906> 247 263 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 31.0002 191 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 N 1 0 0 1 91.104 187.028 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Otilde +Encoding: 213 213 161 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 767.663 60.761<440.178 507.514> 855.675 60.662<297.482 369.825> +VStem: 50 94<222.236 467.906> 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 88 126 S 1 0 0 1 148 486 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 88 126 N 1 0 0 1 94.2778 163.658 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ugrave +Encoding: 217 217 162 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 737 204 +VStem: 81 83<137.119 694> 209 281 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 89 96 S 1 0 0 1 74.9996 167 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 89 96 S 1 0 0 1 136.23 166.504 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Uacute +Encoding: 218 218 163 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 717 207 +VStem: 81 83<137.119 694> 245 223 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 125 168 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 139.536 168.33 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 164 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 724 215 +VStem: 81 83<137.119 694> 183 326 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 90 94 S 1 0 0 1 -3.00039 187 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 S 1 0 0 1 57.8613 187.012 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Yacute +Encoding: 221 221 165 +Width: 568 +VWidth: 0 +Flags: W +HStem: 0 21<239 322> 674 20<10 120.334 452.456 558> 717 207 +VStem: 126 223 239 83<0 329> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 6.0004 168 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 45.542 168.33 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +EndChar + +StartChar: agrave +Encoding: 224 224 166 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 +VStem: 345 82<91 224 284 384> +LayerCount: 4 +Fore +SplineSet +217 756 m 1 + 395 598 l 1 + 356 549 l 1 + 172 703 l 1 + 217 756 l 1 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +217.287 756.348 m 29 + 395.021 598.145 l 29 + 355.959 549.316 l 29 + 172.365 703.125 l 29 + 217.287 756.348 l 29 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: aacute +Encoding: 225 225 167 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 549 207 +VStem: 150 223 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 30 0 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +330.08 756.348 m 29 + 152.346 598.145 l 29 + 191.408 549.316 l 29 + 375.002 703.125 l 29 + 330.08 756.348 l 29 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: acircumflex +Encoding: 226 226 168 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 549 182 +VStem: 130.2 263 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 219 710 N 1 0 0 1 -85.8 -21 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 N 1 0 0 1 -88.1665 -24.9023 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: atilde +Encoding: 227 227 169 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 554.663 60.761<303.178 370.514> 642.675 60.662<160.482 232.825> +VStem: 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 88 126 S 1 0 0 1 11 273 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 88 126 N 1 0 0 1 -84.9927 -48.2725 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: aring +Encoding: 229 229 170 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 549 45<221.945 315.082> 724 44<222.347 313.241> +VStem: 162 44<608.984 708.207> 331 45<609.898 707.659> 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 124 176 S 1 0 0 1 125 56 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 124 176 S 1 0 0 1 125.212 55.6641 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: egrave +Encoding: 232 232 171 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 +VStem: 59.4 75<139 218 281 352> 395.4 75<281 374> +LayerCount: 4 +Fore +SplineSet +230.4 756 m 1 + 407.4 598 l 1 + 368.4 549 l 1 + 185.4 703 l 1 + 230.4 756 l 1 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +224.609 756.348 m 29 + 402.344 598.145 l 29 + 363.281 549.316 l 29 + 179.688 703.125 l 29 + 224.609 756.348 l 29 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: eacute +Encoding: 233 233 172 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 549 207 +VStem: 59.4 75<139 218 281 352> 200 223 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 80 0 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +378.906 756.348 m 29 + 201.172 598.145 l 29 + 240.234 549.316 l 29 + 423.828 703.125 l 29 + 378.906 756.348 l 29 +EndSplineSet +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 173 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 549 182 +VStem: 59.4 75<139 218 281 352> 164.2 263 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -51.8 -21 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 N 1 0 0 1 -45.9202 -24.9023 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: igrave +Encoding: 236 236 174 +Width: 255 +VWidth: 0 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> +VStem: -5 223 88 80<0 482> +LayerCount: 4 +Fore +SplineSet +40 756 m 1xe0 + 218 598 l 1 + 179 549 l 1 + -5 703 l 1 + 40 756 l 1xe0 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +40.0391 756.348 m 29 + 217.773 598.145 l 29 + 178.711 549.316 l 29 + -4.88281 703.125 l 29 + 40.0391 756.348 l 29 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +EndChar + +StartChar: iacute +Encoding: 237 237 175 +Width: 255 +VWidth: 0 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> 549 207 +VStem: 50 223 88 80<0 482> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 -70 0 2 +Refer: 140 305 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +232.422 756.348 m 29 + 54.6875 598.145 l 29 + 93.75 549.316 l 29 + 277.344 703.125 l 29 + 232.422 756.348 l 29 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +EndChar + +StartChar: icircumflex +Encoding: 238 238 176 +Width: 255 +VWidth: 0 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> 549 182 +VStem: -1.8 263 88 80<0 482> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -217.8 -21 2 +Refer: 140 305 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 S 1 0 0 1 -216.797 -24.9023 2 +Refer: 140 305 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ograve +Encoding: 242 242 177 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> +VStem: 46 83<137.066 343.078> 427 83<137.24 343.792> +LayerCount: 4 +Fore +SplineSet +242 756 m 1 + 420 598 l 1 + 381 549 l 1 + 197 703 l 1 + 242 756 l 1 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +258.301 756.348 m 25 + 436.035 598.145 l 25 + 396.973 549.316 l 25 + 213.379 703.125 l 25 + 258.301 756.348 l 25 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: oacute +Encoding: 243 243 178 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 549 207 +VStem: 46 83<137.066 343.078> 160 223 427 83<137.24 343.792> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 40 0 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +344.727 756.348 m 25 + 166.992 598.145 l 25 + 206.055 549.316 l 25 + 389.648 703.125 l 25 + 344.727 756.348 l 25 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 179 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 512 215 +VStem: 46 83<137.066 343.078> 121 326 427 83<137.24 343.792> +LayerCount: 4 +Fore +Refer: 90 94 N 1 0 0 1 -65 -25 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 N 1 0 0 1 -49.0723 -24.9023 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: otilde +Encoding: 245 245 180 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 559.663 60.761<321.178 388.514> 647.675 60.662<178.482 250.825> +VStem: 46 83<137.066 343.078> 427 83<137.24 343.792> +LayerCount: 4 +Fore +Refer: 88 126 S 1 0 0 1 29 278 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 88 126 N 1 0 0 1 -43.457 -46.3867 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ugrave +Encoding: 249 249 181 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 +VStem: 66 81<88 480> 391 82<83 480> +LayerCount: 4 +Fore +SplineSet +116 756 m 1 + 294 598 l 1 + 255 549 l 1 + 71 703 l 1 + 116 756 l 1 +EndSplineSet +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +232.91 756.348 m 29 + 410.645 598.145 l 29 + 371.582 549.316 l 29 + 187.988 703.125 l 29 + 232.91 756.348 l 29 +EndSplineSet +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uacute +Encoding: 250 250 182 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 549 207 +VStem: 66 81<88 480> 170 223 391 82<83 480> +LayerCount: 4 +Fore +Refer: 148 180 N 1 0 0 1 50 0 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +374.023 756.348 m 29 + 196.289 598.145 l 29 + 235.352 549.316 l 29 + 418.945 703.125 l 29 + 374.023 756.348 l 29 +EndSplineSet +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 183 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 530 215 +VStem: 66 81<88 480> 95 326 391 82<83 480> +LayerCount: 4 +Fore +Refer: 90 94 S 1 0 0 1 -91 -7 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 S 1 0 0 1 -55.6641 -24.9023 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: yacute +Encoding: 253 253 184 +Width: 507 +VWidth: 0 +Flags: W +HStem: 462 20<22 110.384 397.616 481> +LayerCount: 4 +Fore +SplineSet +374 756 m 1 + 419 703 l 1 + 235 549 l 1 + 196 598 l 1 + 374 756 l 1 +EndSplineSet +Refer: 26 121 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +374.023 756.348 m 25 + 196.289 598.145 l 25 + 235.352 549.316 l 25 + 418.945 703.125 l 25 + 374.023 756.348 l 25 +EndSplineSet +Refer: 26 121 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ntilde +Encoding: 241 241 185 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 559.663 60.761<344.178 411.514> 647.675 60.662<201.482 273.825> +VStem: 66 82<0 397> 404 81<0 392> +LayerCount: 4 +Fore +Refer: 88 126 S 1 0 0 1 52 278 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 88 126 N 1 0 0 1 -43.5905 -46.1226 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +EndChar + +StartChar: eth +Encoding: 240 240 186 +Width: 611 +VWidth: 1023 +Flags: W +HStem: -9.44526 65.0683<223.236 370.028> 394.038 66.243<213.55 379.221> +VStem: 62.8568 78.1522<142.451 320.14> 446.271 76.729<147.944 348.795> +LayerCount: 4 +Fore +SplineSet +290.317 394.038 m 0 + 201.319 394.038 141.009 326.47 141.009 237.939 c 0 + 141.009 157.789 177.868 101.901 229 73 c 0 + 249.102 61.6379 270.732 55.623 292.555 55.623 c 0 + 349.927 55.623 390.91 81.9947 417 130 c 0 + 437.016 165.483 446.271 225.8 446.271 310.951 c 0 + 446.271 319.39 446.18 328.073 446 337 c 1 + 385.55 375.025 333.656 394.038 290.317 394.038 c 0 +436 604 m 1 + 490.888 543.335 523 463.61 523 350 c 0 + 523 276 520 220 511 182 c 0 + 492.628 104.429 468.089 59.7388 411 21 c 0 + 378.88 -0.795974 339.005 -9.44526 289.82 -9.44526 c 0 + 155.647 -9.44526 62.8568 73.9438 62.8568 207.765 c 0 + 62.8568 341.877 145.603 460.281 277.481 460.281 c 0 + 331.98 460.281 380.01 442.31 441 407 c 1 + 431.347 476.981 409.62 520.165 365 563 c 1 + 278 513 l 1 + 251 559 l 1 + 321 599 l 1 + 291 620 257 637 220 649 c 1 + 250 712 l 1 + 304 697 353 673 395 641 c 1 + 483 692 l 1 + 510 646 l 1 + 436 604 l 1 +EndSplineSet +Layer: 3 +SplineSet +251.337 558.921 m 1 + 483.54 692.227 l 1 + 510.151 646.138 l 1 + 277.948 512.827 l 1 + 251.337 558.921 l 1 +250.488 712.158 m 1 + 305.841 696.826 358.367 670.635 402.832 634.277 c 0 + 435.629 607.461 463.76 574.648 483.398 537.109 c 0 + 515.488 475.782 523.208 404.664 523.438 335.449 c 0 + 523.618 280.926 520.762 226.045 508.789 172.852 c 0 + 502.212 143.635 492.363 114.949 477.139 89.1602 c 0 + 461.914 63.3711 441.103 40.7695 416.016 24.4141 c 0 + 382.316 2.44336 341.944 -7.92676 301.758 -9.76562 c 0 + 267.904 -11.3145 233.66 -7.22559 201.551 3.6084 c 0 + 169.439 14.4434 139.588 32.627 116.699 57.6172 c 0 + 97.3262 78.7695 83.1592 104.488 74.5703 131.855 c 0 + 65.9805 159.223 62.7227 188.123 63.4766 216.797 c 0 + 64.3379 249.598 70.3174 282.301 81.5234 313.141 c 0 + 92.7285 343.98 109.432 373 131.836 396.973 c 0 + 151.704 418.232 176.08 435.35 203.077 446.203 c 0 + 230.074 457.059 259.519 461.525 288.574 459.961 c 0 + 330.52 457.702 370.993 443.333 408.691 424.805 c 0 + 444.13 407.387 477.769 386.418 509.766 363.281 c 1 + 476.562 317.383 l 1 + 448.034 337.369 417.977 355.293 386.23 369.629 c 0 + 354.084 384.146 319.443 394.827 284.18 394.043 c 0 + 245.742 393.188 207.543 377.043 181.641 348.633 c 0 + 165.724 331.176 154.428 309.717 147.943 286.999 c 0 + 141.459 264.281 139.598 240.336 141.602 216.797 c 0 + 144.336 184.681 154.277 152.98 171.875 125.977 c 0 + 186.062 104.206 205.371 85.6582 228.193 73.2344 c 0 + 251.016 60.8105 277.281 54.6406 303.223 56.1523 c 0 + 326.718 57.5215 349.812 65.2021 369.453 78.168 c 0 + 389.094 91.1348 405.123 109.282 416.504 129.883 c 0 + 430.555 155.318 437.608 184.081 441.406 212.891 c 0 + 447.137 256.364 447.327 300.4 446.289 344.238 c 0 + 445.175 391.307 440.668 439.254 421.875 482.422 c 0 + 407.909 514.502 386.406 543.013 360.84 566.895 c 0 + 320.863 604.243 272.031 631.621 220.215 649.17 c 1 + 250.488 712.158 l 1 +EndSplineSet +EndChar + +StartChar: thorn +Encoding: 254 254 187 +Width: 596 +VWidth: 1023 +Flags: W +HStem: -11.375 69.0818<227.647 377.764> 421 68.426<229.25 373.292> 674 20G<93 173> +VStem: 93 80<-259 41 113.354 360.198 432 694> 455 78<139.59 334.787> +LayerCount: 4 +Fore +SplineSet +307.744 -11.375 m 0 + 250.945 -11.375 208.338 6.73296 173 41 c 1 + 173 -259 l 1 + 93 -259 l 1 + 93 694 l 1 + 173 694 l 1 + 173 432 l 1 + 207.563 469.803 251.682 489.426 313.366 489.426 c 0 + 386.164 489.426 442.365 457.114 478 415 c 0 + 514 372 533 315 533 245 c 0 + 533 135.528 476.502 44.259 394 7 c 0 + 366.875 -5.25 337.453 -11.375 307.744 -11.375 c 0 +299.993 57.7068 m 0 + 392.678 57.7068 455 134.026 455 226 c 0 + 455 275 447 313 430 340 c 0 + 397 393 354 420 300 421 c 1 + 204.081 421 168 336.933 168 238 c 0 + 168 182 175 142 190 119 c 0 + 216.176 77.8655 252.841 57.7068 299.993 57.7068 c 0 +EndSplineSet +Layer: 3 +SplineSet +309.57 57.6172 m 0 + 347.086 60 383.611 76.9355 409.18 104.492 c 0 + 425.035 121.58 436.6 142.435 443.896 164.574 c 0 + 451.193 186.713 454.449 210.088 454.59 233.398 c 0 + 454.829 273.065 446.129 313.412 425.293 347.168 c 0 + 411.997 368.709 393.697 387.228 371.963 400.205 c 0 + 350.229 413.184 325.117 420.642 299.805 420.898 c 0 + 283.084 421.068 266.293 418.068 250.829 411.705 c 0 + 235.364 405.344 221.312 395.58 209.961 383.301 c 0 + 191.73 363.578 181.022 337.857 175.475 311.579 c 0 + 169.928 285.301 168.584 258.303 168.457 231.445 c 0 + 168.361 211.222 169.109 190.922 172.479 170.981 c 0 + 175.85 151.041 182.143 131.401 192.871 114.258 c 0 + 204.928 94.9922 222.607 79.3037 243.181 69.6426 c 0 + 263.753 59.9824 286.889 56.1758 309.57 57.6172 c 0 +92.7734 693.848 m 1 + 172.852 693.848 l 1 + 172.852 399.902 l 1 + 135.254 352.539 l 1 + 139.215 378.4 149.945 403.182 166.016 423.828 c 0 + 176.675 437.521 189.635 449.4 204.102 458.984 c 0 + 232.191 477.592 265.676 487.353 299.316 489.258 c 0 + 332.725 491.152 366.561 485.557 397.527 472.877 c 0 + 428.494 460.197 456.472 440.145 478.027 414.551 c 0 + 516.133 369.307 532.603 308.665 532.715 249.512 c 0 + 532.842 184.529 514.424 118.057 473.145 67.8711 c 0 + 451.785 41.9043 424.442 20.8311 393.71 7.19141 c 0 + 362.978 -6.44824 328.977 -12.6963 295.41 -10.7422 c 0 + 245.611 -7.84375 196.619 13.8516 163.086 50.7812 c 0 + 141.738 74.292 126.845 103.628 120.605 134.766 c 1 + 172.852 82.0312 l 1 + 172.852 -259.277 l 1 + 92.7734 -259.277 l 1 + 92.7734 693.848 l 1 +EndSplineSet +EndChar + +StartChar: Eth +Encoding: 208 208 188 +Width: 783 +VWidth: 1023 +Flags: W +HStem: 0 73<247 495.343> 321 74<57 164 247 372> 621 73<247 498.191> +VStem: 164 83<73 321 395 621> 645.201 83.431<229.593 471.083> +LayerCount: 4 +Fore +SplineSet +728.632 371.877 m 0 + 728.632 134.67 609.749 6.04524 376 0 c 1 + 164 0 l 1 + 164 321 l 1 + 57 321 l 1 + 57 395 l 1 + 164 395 l 1 + 164 694 l 1 + 357 694 l 2 + 522.137 694 616.401 654.857 683 553 c 0 + 713.421 506.474 728.632 446.338 728.632 371.877 c 0 +247 321 m 1 + 247 73 l 1 + 348 73 l 2 + 388 73 421 76 448 80 c 0 + 524.163 91.2835 581.509 139.018 612 200 c 0 + 633.107 242.215 645.201 296.906 645.201 360.745 c 0 + 645.201 498.194 554.916 598.058 446 617 c 0 + 430 620 408 621 381 621 c 2 + 247 621 l 1 + 247 395 l 1 + 372 395 l 1 + 372 321 l 1 + 247 321 l 1 +EndSplineSet +Layer: 3 +SplineSet +57.1289 394.531 m 1 + 371.582 394.531 l 1 + 371.582 321.289 l 1 + 57.1289 321.289 l 1 + 57.1289 394.531 l 1 +246.582 620.605 m 1 + 246.582 73.2422 l 1 + 347.656 73.2422 l 2 + 378.312 73.2422 409.105 73.4502 439.383 78.252 c 0 + 469.66 83.0547 499.36 92.5332 525.879 107.91 c 0 + 562.964 129.412 592.964 162.426 612.305 200.684 c 0 + 633.735 243.084 643.042 290.893 644.531 338.379 c 0 + 646.377 397.117 635.942 457.562 605.469 507.812 c 0 + 582.329 545.967 547.935 577.153 507.812 596.68 c 0 + 488.33 606.162 467.494 612.856 446.139 616.523 c 0 + 424.781 620.19 403.017 620.605 381.348 620.605 c 2 + 246.582 620.605 l 1 +163.574 693.848 m 1 + 357.422 693.848 l 2 + 421.89 693.848 487.672 689.883 547.363 665.527 c 0 + 600.376 643.896 647.651 607.183 678.711 559.082 c 0 + 719.106 496.523 730.776 419.121 727.539 344.727 c 0 + 725.581 299.721 718.486 254.77 704.185 212.053 c 0 + 689.883 169.336 667.656 128.938 636.719 96.1914 c 0 + 598.301 55.5254 546.943 28.2363 492.676 14.6484 c 0 + 434.539 0.0927734 373.896 0 313.965 0 c 2 + 163.574 0 l 1 + 163.574 693.848 l 1 +EndSplineSet +EndChar + +StartChar: Oslash +Encoding: 216 216 189 +Width: 857 +VWidth: 0 +Flags: W +HStem: -7 72<338.804 530.876> 628 73.025<335.582 527.99> +VStem: 105 84.875<227.138 474.84> 672 85.143<218.816 471.155> +LayerCount: 4 +Fore +SplineSet +435 701 m 0 + 536.098 701 618.875 658.414 670 602 c 1 + 760 688 l 1 + 791 656 l 1 + 698 567 l 1 + 738.005 508.898 757.143 439.91 757.143 358.306 c 0 + 757.143 142.39 628.226 -7 424 -7 c 0 + 334 -7 258 25 196 89 c 1 + 106 2 l 1 + 75 34 l 1 + 168 123 l 1 + 126 184 105 258 105 346 c 0 + 105 554.539 234.209 701.025 430.56 701.025 c 0 + 432.036 701.025 433.516 701.017 435 701 c 0 +433 628 m 1 + 281.464 625.952 189.875 512.648 189.875 356.656 c 0 + 189.875 287.897 204.364 231.832 232 184 c 1 + 609 544 l 1 + 574.505 586.161 509.125 628 433 628 c 1 +258 147 m 1 + 295.953 101.817 357.654 65 437 65 c 0 + 516.396 65 580.067 106.378 616 156 c 0 + 653 206 672 266 672 335 c 0 + 672 404 659 462 634 507 c 1 + 258 147 l 1 +EndSplineSet +Layer: 3 +SplineSet +759.722 688.022 m 1 + 790.366 656.172 l 1 + 106.002 2.40918 l 1 + 75.3555 34.2598 l 1 + 759.722 688.022 l 1 +425.781 628.418 m 0 + 361.807 628.066 298.066 600.322 255.859 552.246 c 0 + 231.48 524.478 214.299 490.771 203.924 455.305 c 0 + 193.55 419.838 189.581 382.646 190.43 345.703 c 0 + 191.991 277.713 210.051 208.352 251.953 154.785 c 0 + 273.873 126.764 302.15 103.687 334.205 88.251 c 0 + 366.258 72.8145 401.926 64.9824 437.5 65.4297 c 0 + 472.126 65.8652 506.67 74.1562 537.563 89.8008 c 0 + 568.457 105.445 595.518 128.484 616.211 156.25 c 0 + 656.216 209.926 671.797 278.76 671.875 345.703 c 0 + 671.943 404.287 660.132 463.989 629.883 514.16 c 0 + 608.818 549.102 578.726 578.623 543.081 598.481 c 0 + 507.441 618.345 466.58 628.643 425.781 628.418 c 0 +435.059 701.172 m 0 + 479.1 700.747 523.159 692.344 563.857 675.513 c 0 + 604.556 658.682 641.724 633.14 671.387 600.586 c 0 + 702.319 566.641 724.829 525.391 738.691 481.605 c 0 + 752.554 437.822 758.208 391.62 757.324 345.703 c 0 + 756.362 295.709 747.705 245.682 729.81 198.988 c 0 + 711.919 152.295 684.214 109.1 647.461 75.1953 c 0 + 588.594 20.8936 507.822 -7.39258 427.734 -7.32422 c 0 + 345.117 -7.25391 261.688 23.2676 203.125 81.543 c 0 + 168.952 115.549 143.703 158.05 127.832 203.572 c 0 + 111.96 249.094 104.936 297.493 104.98 345.703 c 0 + 105.028 396.167 112.801 446.833 130.207 494.199 c 0 + 147.611 541.567 175.283 585.439 212.402 619.629 c 0 + 271.945 674.473 354.111 701.958 435.059 701.172 c 0 +EndSplineSet +EndChar + +StartChar: logicalnot +Encoding: 172 172 190 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 285 72<61 550> +VStem: 550 73<138 285> +LayerCount: 4 +Fore +SplineSet +61 357 m 1 + 623 357 l 1 + 623 138 l 1 + 550 138 l 1 + 550 285 l 1 + 61 285 l 1 + 61 357 l 1 +EndSplineSet +Layer: 3 +SplineSet +61.0352 357.422 m 1 + 622.559 357.422 l 1 + 622.559 137.695 l 1 + 550.293 137.695 l 1 + 550.293 284.668 l 1 + 61.0352 284.668 l 1 + 61.0352 357.422 l 1 +EndSplineSet +EndChar + +StartChar: macron +Encoding: 175 175 191 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 728 73<139 544> +LayerCount: 4 +Fore +SplineSet +139 801 m 1 + 544 801 l 1 + 544 728 l 1 + 139 728 l 1 + 139 801 l 1 +EndSplineSet +Layer: 3 +SplineSet +139.16 800.781 m 5 + 544.434 800.781 l 5 + 544.434 728.027 l 5 + 139.16 728.027 l 5 + 139.16 800.781 l 5 +EndSplineSet +EndChar + +StartChar: ordfeminine +Encoding: 170 170 192 +Width: 374 +VWidth: 1023 +Flags: W +HStem: 362 39<144.741 237.587> 498 40<147.785 255> 615 39<99.9282 239.181> +VStem: 85 48<412.449 483.615> 255 47<416.144 498 538 590.62> +LayerCount: 4 +Fore +SplineSet +85 447 m 0 + 85 530.372 163.33 535.917 255 538 c 1 + 255 547 l 2 + 255 568 252 583 245 591 c 0 + 231 607 211 615 185 615 c 0 + 159 615 132 611 103 602 c 1 + 94 636 l 1 + 126 648 156 654 183 654 c 0 + 262.741 654 303 628.557 303 552 c 2 + 302 371 l 1 + 269 371 l 1 + 258 397 l 1 + 237 374 213 362 184 362 c 0 + 128.88 362 85 392.669 85 447 c 0 +133 449 m 0 + 133 418.608 162.696 401 197 401 c 0 + 218 401 237 415 255 441 c 1 + 255 498 l 1 + 246 498 l 2 + 195 498 161 491 147 479 c 0 + 137 471 133 461 133 449 c 0 +EndSplineSet +Layer: 3 +SplineSet +185.059 362.305 m 0 + 127.93 362.305 85.4492 391.602 85.4492 446.777 c 0 + 85.4492 525.879 146.973 538.086 263.672 538.086 c 1 + 263.184 497.559 l 1 + 223.145 496.582 132.812 503.906 132.812 447.754 c 0 + 132.812 425.781 155.273 401.367 192.383 401.367 c 0 + 230.469 401.367 262.207 438.477 274.414 482.422 c 5 + 297.852 483.887 l 1 + 291.504 426.27 245.117 362.305 185.059 362.305 c 0 +191.406 653.809 m 0 + 301.758 653.809 303.223 583.496 303.223 552.246 c 2 + 302.246 371.094 l 1 + 269.043 371.094 l 1 + 255.371 404.297 l 1 + 255.371 539.551 l 2 + 255.371 541.992 255.371 544.922 255.371 547.363 c 0 + 255.371 560.547 256.836 614.746 186.035 614.746 c 0 + 158.203 614.746 119.141 606.445 103.027 601.562 c 1 + 94.2383 636.23 l 1 + 125 647.461 158.203 653.809 191.406 653.809 c 0 +EndSplineSet +EndChar + +StartChar: Thorn +Encoding: 222 222 193 +Width: 647 +VWidth: 1023 +Flags: W +HStem: 0 21G<142 225> 158.862 72.725<225 457.377> 492.117 74.79<225 457.448> 674 20G<142 225> +VStem: 142 83<0 162 234.494 488.746 560 694> 519.387 84.301<286.868 438.621> +LayerCount: 4 +Fore +SplineSet +352.983 566.907 m 0 + 504.418 566.907 603.688 523.139 603.688 383.604 c 0 + 603.688 271.024 550.763 199.657 465 175 c 0 + 434.748 165.924 360.429 158.862 307.7 158.862 c 0 + 281.939 158.862 254.474 159.856 225 162 c 1 + 225 0 l 1 + 142 0 l 1 + 142 694 l 1 + 225 694 l 1 + 225 560 l 1 + 272.887 564.581 315.572 566.907 352.983 566.907 c 0 +519.387 367.931 m 0 + 519.387 466.266 439.375 492.117 327.446 492.117 c 0 + 297.616 492.117 263.486 490.429 225 487 c 1 + 225 236 l 1 + 263.095 233.041 296.676 231.587 325.844 231.587 c 0 + 445.322 231.587 519.387 257.663 519.387 367.931 c 0 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 1 + 224.609 693.848 l 1 + 224.609 0 l 1 + 141.602 0 l 1 + 141.602 693.848 l 1 +158.203 552.246 m 1 + 174.449 554.438 190.728 556.392 207.031 558.105 c 0 + 252.354 562.871 297.873 566.04 343.443 566.523 c 0 + 389.014 567.002 435.179 565.234 479.004 552.734 c 0 + 512.983 543.042 545.498 525.396 567.871 498.047 c 0 + 583.916 478.434 594.326 454.521 599.355 429.684 c 0 + 604.385 404.848 604.473 379.177 601.562 354.004 c 0 + 598.384 326.53 591.68 299.342 580.259 274.154 c 0 + 568.833 248.966 552.202 225.965 530.762 208.496 c 0 + 511.455 192.769 488.579 181.742 464.683 174.75 c 0 + 440.784 167.758 415.939 164.513 391.113 162.598 c 0 + 330.039 157.887 268.533 158.135 207.52 163.574 c 0 + 191.189 165.03 174.902 166.978 158.691 169.434 c 1 + 172.363 241.699 l 1 + 188.092 239.433 203.891 237.652 219.727 236.328 c 0 + 276.547 231.576 333.855 229.053 390.625 234.375 c 0 + 406.352 235.85 422.053 238.438 437.021 243.483 c 0 + 451.99 248.529 466.168 256.168 478.027 266.602 c 0 + 490.684 277.736 500.527 291.924 507.168 307.418 c 0 + 513.809 322.912 517.446 339.625 518.555 356.445 c 0 + 519.634 372.793 518.311 389.375 513.789 405.122 c 0 + 509.263 420.869 501.328 435.695 490.234 447.754 c 0 + 476.479 462.707 458.221 473.013 438.965 479.492 c 0 + 404.033 491.245 366.488 492.515 329.631 492.417 c 0 + 292.775 492.314 255.934 490.259 219.238 486.816 c 0 + 203.418 485.332 187.626 483.543 171.875 481.445 c 1 + 158.203 552.246 l 1 +EndSplineSet +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 194 +Width: 405 +VWidth: 1023 +Flags: W +HStem: 482 212<81 115 266 300> +LayerCount: 4 +Fore +SplineSet +176 694 m 1 + 115 482 l 1 + 20 482 l 1 + 81 694 l 1 + 176 694 l 1 +361 694 m 1 + 300 482 l 1 + 205 482 l 1 + 266 694 l 1 + 361 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +361.328 693.848 m 5 + 266.113 693.848 l 5 + 205.078 482.422 l 5 + 300.293 482.422 l 5 + 361.328 693.848 l 5 +175.781 693.848 m 5 + 80.5664 693.848 l 5 + 19.5312 482.422 l 5 + 114.746 482.422 l 5 + 175.781 693.848 l 5 +EndSplineSet +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 195 +Width: 405 +VWidth: 1023 +Flags: W +HStem: 482 212<81 115 266 300> +LayerCount: 4 +Fore +SplineSet +81 694 m 1 + 176 694 l 1 + 115 482 l 1 + 20 482 l 1 + 81 694 l 1 +266 694 m 1 + 361 694 l 1 + 300 482 l 1 + 205 482 l 1 + 266 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +266.113 693.848 m 5 + 361.328 693.848 l 5 + 300.293 482.422 l 5 + 205.078 482.422 l 5 + 266.113 693.848 l 5 +80.5664 693.848 m 5 + 175.781 693.848 l 5 + 114.746 482.422 l 5 + 19.5312 482.422 l 5 + 80.5664 693.848 l 5 +EndSplineSet +EndChar + +StartChar: Ydieresis +Encoding: 376 376 196 +Width: 568 +VWidth: 0 +Flags: W +HStem: 0 21<239 322> 674 20<10 120.334 452.456 558> 836 90<126 217 345 436> +VStem: 126 91<836 926> 239 83<0 329> 345 91<836 926> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 -11.9996 233 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 27.0996 233.398 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +EndChar + +StartChar: zcaron +Encoding: 382 382 197 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<177 453> 408 73<73 336> 549.1 182 +VStem: 128.3 262 +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 0 0 2 +Refer: 25 122 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 90 94 S -1 0 -0 -1 607.422 1301.27 2 +Refer: 25 122 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Zcaron +Encoding: 381 381 198 +Width: 578 +VWidth: 1023 +Flags: W +HStem: 0 73<120 568> 621 73<24 436> 761.1 182 +VStem: 157.674 262 +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 29.374 212 2 +Refer: 38 90 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 90 94 S -1 0 -0 -1 704.102 1513.18 2 +Refer: 38 90 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Scaron +Encoding: 352 352 199 +Width: 599 +VWidth: 0 +Flags: W +HStem: -9 81<162.544 387.194> 622 78<232.03 485.598> 761.1 182 +VStem: 74 91<458.576 567.539> 178.3 262 449 90<124.411 240.321> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 50.0002 212 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 S 1 0 0 1 107.422 211.914 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +EndChar + +StartChar: scaron +Encoding: 353 353 200 +Width: 497 +VWidth: 0 +Flags: W +HStem: 0 73<112.539 330.762> 408 73<295.706 414.2> 549.1 182 +VStem: 80 85 140.5 262 360 85 +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 12.2 0 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 S 1 0 0 1 5.37109 0 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Euro +Encoding: 8364 8364 201 +Width: 651 +VWidth: 1023 +Flags: W +HStem: -10 76<349.001 559.486> 246 64<24 124 212 412> 414 64<56 127 224 443> 625 74<338.062 553.681> +VStem: 123 74<310 412.97> 133 79<197.717 246> +LayerCount: 4 +Fore +SplineSet +212 246 m 1xf4 + 243.542 149.401 325.735 66 448 66 c 0 + 493 66 540 76 590 96 c 1 + 613 34 l 1 + 551 4 494 -10 441 -10 c 0 + 388 -10 342 -1 304 17 c 0 + 215 59 158 135 133 246 c 1xf4 + 24 246 l 1 + 24 310 l 1 + 124 310 l 1 + 123 322 123 336 123 354 c 0 + 123 372 124 392 127 414 c 1 + 56 414 l 1 + 56 478 l 1 + 142 478 l 1 + 145 488 l 1 + 176 576 230 637 307 672 c 0 + 346 690 391 699 442 699 c 0 + 493 699 547 687 604 662 c 1 + 582 593 l 1 + 525 615 476 625 438 625 c 0 + 364 625 306 597 262 542 c 0 + 247 523 234 502 224 478 c 1 + 443 478 l 1 + 443 414 l 1 + 204 414 l 1 + 199 392 197 372 197 354 c 0xf8 + 197 336 198 322 199 310 c 1 + 412 310 l 1 + 412 246 l 1 + 212 246 l 1xf4 +EndSplineSet +Layer: 3 +SplineSet +122.559 345.703 m 0 + 122.559 552.046 247.363 698.75 434.569 698.75 c 0 + 502.539 698.75 561.445 680.21 604.492 661.621 c 1 + 581.543 592.773 l 1 + 497.261 625.054 447.674 625.527 433.01 625.527 c 0 + 291.562 625.527 197.266 497.852 197.266 345.703 c 0 + 197.266 202.568 289.267 66.5234 448.244 66.5234 c 0 + 490.815 66.5234 536.763 74.9336 589.844 95.7031 c 1 + 612.793 34.1797 l 1 + 567.231 12.2744 502.998 -10.1982 429.799 -10.1982 c 0 + 245.454 -10.1982 122.559 141.523 122.559 345.703 c 0 +24.4141 309.57 m 1 + 412.109 309.57 l 1 + 412.109 246.094 l 1 + 24.4141 246.094 l 1 + 24.4141 309.57 l 1 +55.6641 477.539 m 1 + 443.359 477.539 l 1 + 443.359 414.062 l 1 + 55.6641 414.062 l 1 + 55.6641 477.539 l 1 +EndSplineSet +EndChar + +StartChar: emdash +Encoding: 8212 8212 202 +Width: 675 +VWidth: 1023 +Flags: W +HStem: 288 67<0 676> +LayerCount: 4 +Fore +SplineSet +0 355 m 1 + 676 355 l 1 + 676 288 l 1 + 0 288 l 1 + 0 355 l 1 +EndSplineSet +Layer: 3 +SplineSet +0 355.469 m 1 + 675.781 355.469 l 1 + 675.781 287.598 l 5 + 0 287.598 l 5 + 0 355.469 l 1 +EndSplineSet +EndChar + +StartChar: endash +Encoding: 8211 8211 203 +Width: 565 +VWidth: 1023 +Flags: W +HStem: 288 67<0 566> +LayerCount: 4 +Fore +SplineSet +0 355 m 1 + 566 355 l 1 + 566 288 l 1 + 0 288 l 1 + 0 355 l 1 +EndSplineSet +Layer: 3 +SplineSet +0 355.469 m 1 + 565.918 355.469 l 1 + 565.918 287.598 l 5 + 0 287.598 l 5 + 0 355.469 l 1 +EndSplineSet +EndChar + +StartChar: afii00208 +Encoding: 8213 8213 204 +Width: 781 +VWidth: 1023 +Flags: W +HStem: 288 67<0 781> +LayerCount: 4 +Fore +SplineSet +0 355 m 1 + 781 355 l 1 + 781 288 l 1 + 0 288 l 1 + 0 355 l 1 +EndSplineSet +Layer: 3 +SplineSet +0 355.469 m 1 + 781.25 355.469 l 1 + 781.25 287.598 l 1 + 0 287.598 l 1 + 0 355.469 l 1 +EndSplineSet +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 205 +Width: 839 +VWidth: 1023 +Flags: W +HStem: 0 103<88 190 364 466 640 742> +VStem: 88 102<0 103> 364 102<0 103> 640 102<0 103> +CounterMasks: 1 70 +LayerCount: 4 +Fore +Refer: 68 46 N 1 0 0 1 552 0 2 +Refer: 68 46 N 1 0 0 1 276 0 2 +Refer: 68 46 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 68 46 N 1 0 0 1 551.758 0 2 +Refer: 68 46 N 1 0 0 1 275.879 0 2 +Refer: 68 46 N 1 0 0 1 0 0 2 +EndChar + +StartChar: bullet +Encoding: 8226 8226 206 +Width: 680 +VWidth: 0 +Flags: W +HStem: 170 334<260.836 419.164> +VStem: 173 334<257.836 416.164> +LayerCount: 4 +Back +SplineSet +475 205 m 1 + 205 205 l 1 + 205 475 l 1 + 475 475 l 1 + 475 205 l 1 +EndSplineSet +Fore +SplineSet +340 170 m 4 + 248.756 170 173 245.758 173 337 c 4 + 173 428.244 248.758 504 340 504 c 4 + 431.244 504 507 428.242 507 337 c 4 + 507 245.756 431.242 170 340 170 c 4 +EndSplineSet +Layer: 3 +SplineSet +92.7734 421.387 m 1 + 219.727 421.387 l 1 + 219.727 294.434 l 1 + 92.7734 294.434 l 1 + 92.7734 421.387 l 1 +EndSplineSet +EndChar + +StartChar: interrobang +Encoding: 8253 8253 207 +Width: 510 +VWidth: 1023 +Flags: W +HStem: 0 98<152 250> 632.038 69.962<77.3546 292.577> +VStem: 152 98<0 98> 164 73<191 274.663 369 527> 347 81<454.508 584.211> +LayerCount: 4 +Fore +SplineSet +152 98 m 1xe8 + 250 98 l 1 + 250 0 l 1 + 152 0 l 1 + 152 98 l 1xe8 +199.542 632.038 m 0 + 152.701 632.038 109.001 623.584 74 609 c 1 + 49 668 l 1 + 95 690 144 702 196 702 c 0 + 350 702 427 647 428 536 c 0 + 428 483 412 437 380 398 c 1 + 360.425 376.468 304.297 329.297 283 308 c 0 + 260.356 285.356 237 241.307 237 198 c 2 + 237 191 l 1 + 164 191 l 1 + 164 527 l 1 + 237 527 l 1 + 237 369 l 1xd8 + 255 384 l 2 + 298.471 421.261 347 458.517 347 522 c 0 + 347 594.998 281.488 632.038 199.542 632.038 c 0 +EndSplineSet +Layer: 3 +SplineSet +206.543 701.66 m 0 + 246.387 701.665 286.668 697.207 324.121 683.613 c 0 + 354.123 672.72 382.157 654.57 400.606 628.525 c 0 + 419.545 601.787 427.496 568.408 427.734 535.645 c 0 + 427.914 510.845 424.068 485.986 416.086 462.504 c 0 + 408.105 439.023 395.646 417.104 379.712 398.098 c 0 + 353.57 366.916 318.617 344.42 290.21 315.288 c 0 + 274.094 298.762 260.209 279.861 250.88 258.747 c 0 + 241.551 237.633 236.805 214.484 237.305 191.406 c 1 + 178.711 191.406 l 1 + 169.152 215.965 167.078 243.332 172.537 269.113 c 0 + 177.996 294.895 190.92 318.756 207.834 338.965 c 0 + 234.158 370.416 269.533 392.895 298.514 421.916 c 0 + 311.957 435.379 324.023 450.389 332.789 467.274 c 0 + 341.556 484.16 346.955 502.949 347.168 521.973 c 0 + 347.351 538.281 343.619 554.673 335.963 569.072 c 0 + 325.943 587.915 309.375 602.837 290.459 612.72 c 0 + 260.921 628.154 226.682 632.388 193.359 631.836 c 0 + 179.779 631.611 166.217 630.566 152.748 628.823 c 0 + 138.443 626.968 124.236 624.312 110.275 620.684 c 0 + 98.0273 617.505 85.9746 613.569 74.2188 608.887 c 1 + 48.8281 668.457 l 1 + 65.0957 676.313 82.0547 682.739 99.4307 687.686 c 0 + 116.862 692.646 134.703 696.123 152.688 698.374 c 0 + 170.545 700.61 188.546 701.66 206.543 701.66 c 0 +164.062 527.344 m 1 + 237.305 527.344 l 1 + 237.305 191.406 l 1 + 164.062 191.406 l 1 + 164.062 527.344 l 1 +151.855 97.6562 m 1 + 249.512 97.6562 l 1 + 249.512 0 l 1 + 151.855 0 l 1 + 151.855 97.6562 l 1 +EndSplineSet +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 208 +Width: 219 +VWidth: 1023 +Flags: W +HStem: 482 212<105 139> +VStem: 44 156 +LayerCount: 4 +Fore +SplineSet +44 694 m 1 + 139 694 l 1 + 200 482 l 1 + 105 482 l 1 + 44 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +43.9453 693.848 m 5 + 139.16 693.848 l 5 + 200.195 482.422 l 5 + 104.98 482.422 l 5 + 43.9453 693.848 l 5 +EndSplineSet +EndChar + +StartChar: quoteright +Encoding: 8217 8217 209 +Width: 219 +VWidth: 1023 +Flags: W +HStem: 482 212<81 115> +VStem: 20 156 +LayerCount: 4 +Fore +SplineSet +81 694 m 1 + 176 694 l 1 + 115 482 l 1 + 20 482 l 1 + 81 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +80.5664 693.848 m 1 + 175.781 693.848 l 1 + 114.746 482.422 l 1 + 19.5312 482.422 l 1 + 80.5664 693.848 l 1 +EndSplineSet +EndChar + +StartChar: fraction +Encoding: 8260 8260 210 +Width: 505 +VWidth: 0 +Flags: W +HStem: 0 21G<10 107.527> 674 20G<399.444 496> +LayerCount: 4 +Fore +SplineSet +411 694 m 1 + 496 694 l 1 + 96 0 l 1 + 10 0 l 1 + 411 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +410.645 693.848 m 1 + 496.094 693.848 l 1 + 95.7031 0 l 1 + 9.76562 0 l 1 + 410.645 693.848 l 1 +EndSplineSet +EndChar + +StartChar: florin +Encoding: 402 402 211 +Width: 400 +VWidth: 1023 +Flags: W +HStem: -278 67<-48.3591 106.718> 419 63<53 136 217 378> 631 67<248.569 403.359> +VStem: 136 81<-182.807 419 482 598.798> +LayerCount: 4 +Fore +SplineSet +26 -211 m 0 + 101.483 -211 136 -182.687 136 -109 c 2 + 136 419 l 1 + 53 419 l 1 + 53 482 l 1 + 136 482 l 1 + 136 535 l 2 + 136 644.378 191.97 698 299 698 c 0 + 333 698 371 692 413 679 c 1 + 401 619 l 1 + 371 627 347 631 329 631 c 0 + 254.751 631 217 601.062 217 528 c 2 + 217 482 l 1 + 378 482 l 1 + 378 419 l 1 + 217 419 l 1 + 217 -130 l 2 + 217 -138 216 -144 216 -147 c 0 + 216 -150 215 -154 215 -159 c 0 + 215 -169.13 214.212 -170.153 212 -179 c 1 + 212 -186.889 207.586 -192.182 205 -198 c 0 + 184.221 -249.004 125.908 -278 56 -278 c 0 + 22 -278 -16 -272 -58 -259 c 1 + -46 -200 l 1 + -16 -208 8 -211 26 -211 c 0 +EndSplineSet +Layer: 3 +SplineSet +52.7344 482.422 m 1 + 135.742 482.422 l 1 + 135.742 534.668 l 2 + 135.742 562.5 136.719 596.68 154.785 627.93 c 0 + 180.176 672.852 231.934 697.754 296.875 697.754 c 0 + 339.844 697.754 383.789 687.5 413.086 678.711 c 1 + 400.879 619.141 l 1 + 385.742 623.047 354.004 630.859 323.242 630.859 c 0 + 217.773 630.859 216.797 553.711 216.797 528.32 c 2 + 216.797 482.422 l 1 + 378.418 482.422 l 1 + 378.418 419.434 l 1 + 216.797 419.434 l 1 + 216.797 -111.816 l 2 + 216.797 -141.113 218.262 -176.27 199.707 -208.496 c 0 + 173.828 -253.418 122.559 -278.32 57.6172 -278.32 c 0 + 14.6484 -278.32 -28.8086 -268.066 -58.1055 -259.277 c 1 + -45.8984 -199.707 l 1 + -30.7617 -203.613 0.488281 -211.426 31.25 -211.426 c 0 + 137.695 -211.426 135.742 -136.23 135.742 -108.887 c 2 + 135.742 419.434 l 1 + 52.7344 419.434 l 1 + 52.7344 482.422 l 1 +EndSplineSet +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 212 +Width: 275 +VWidth: 1023 +Flags: W +HStem: 462 20G<147.067 251> +VStem: 37 214 +LayerCount: 4 +Fore +SplineSet +161 482 m 1 + 251 482 l 1 + 118 304 l 1 + 251 126 l 1 + 161 126 l 1 + 37 304 l 1 + 161 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +160.645 482.422 m 5 + 251.465 482.422 l 5 + 110.352 294.922 l 5 + 110.352 313.965 l 5 + 251.465 125.977 l 5 + 161.133 125.977 l 5 + 36.6211 304.199 l 5 + 160.645 482.422 l 5 +EndSplineSet +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 213 +Width: 275 +VWidth: 1023 +Flags: W +HStem: 462 20G<24 128.933> +VStem: 24 215 +LayerCount: 4 +Fore +SplineSet +24 482 m 1 + 115 482 l 1 + 239 304 l 1 + 115 126 l 1 + 24 126 l 1 + 158 304 l 1 + 24 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +24.4141 482.422 m 1 + 114.746 482.422 l 1 + 239.258 304.199 l 1 + 115.234 125.977 l 1 + 24.4141 125.977 l 1 + 165.527 313.477 l 1 + 165.527 294.434 l 1 + 24.4141 482.422 l 1 +EndSplineSet +EndChar + +StartChar: dagger +Encoding: 8224 8224 214 +Width: 459 +VWidth: 1023 +Flags: W +HStem: 569 54<83 195 265 377> +VStem: 195 70<72 574 618 738> +LayerCount: 4 +Fore +SplineSet +195 72 m 1 + 195 574 l 1 + 83 569 l 1 + 83 623 l 1 + 195 618 l 1 + 195 738 l 1 + 265 738 l 1 + 265 618 l 1 + 377 623 l 1 + 377 569 l 1 + 265 574 l 1 + 265 72 l 1 + 195 72 l 1 +EndSplineSet +Layer: 3 +SplineSet +194.824 72.2656 m 9 + 194.824 574.219 l 1 + 83.0078 569.336 l 1 + 83.0078 623.047 l 1 + 194.824 618.164 l 1 + 194.824 737.793 l 1 + 264.648 737.793 l 1 + 264.648 618.164 l 1 + 376.953 623.047 l 1 + 376.953 569.336 l 1 + 264.648 574.219 l 1 + 264.648 72.2656 l 17 + 194.824 72.2656 l 9 +EndSplineSet +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 215 +Width: 459 +VWidth: 1023 +Flags: W +HStem: -2 53<83 195 265 377> 569 54<83 195 265 377> +VStem: 195 70<-117 2 46 574 618 738> +LayerCount: 4 +Fore +SplineSet +195 738 m 1 + 265 738 l 1 + 265 618 l 1 + 377 623 l 1 + 377 569 l 1 + 265 574 l 1 + 265 46 l 1 + 377 51 l 1 + 377 -2 l 1 + 265 2 l 1 + 265 -117 l 1 + 195 -117 l 1 + 195 2 l 1 + 83 -2 l 1 + 83 51 l 1 + 195 46 l 1 + 195 574 l 1 + 83 569 l 1 + 83 623 l 1 + 195 618 l 1 + 195 738 l 1 +EndSplineSet +Layer: 3 +SplineSet +194.824 46.3867 m 1 + 194.824 574.219 l 1 + 83.0078 569.336 l 1 + 83.0078 623.047 l 1 + 194.824 618.164 l 1 + 194.824 737.793 l 1 + 264.648 737.793 l 1 + 264.648 618.164 l 1 + 376.953 623.047 l 1 + 376.953 569.336 l 1 + 264.648 574.219 l 1 + 264.648 46.3867 l 1 + 376.953 51.2695 l 1 + 376.953 -2.44141 l 1 + 264.648 2.44141 l 1 + 264.648 -117.188 l 1 + 194.824 -117.188 l 1 + 194.824 2.44141 l 1 + 83.0078 -2.44141 l 1 + 83.0078 51.2695 l 1 + 194.824 46.3867 l 1 +EndSplineSet +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 216 +Width: 219 +VWidth: 1023 +Flags: W +HStem: -105 211<81 115> +VStem: 20 156 +LayerCount: 4 +Fore +SplineSet +81 106 m 1 + 176 106 l 1 + 115 -105 l 1 + 20 -105 l 1 + 81 106 l 1 +EndSplineSet +Layer: 3 +SplineSet +80.5664 105.957 m 1 + 175.781 105.957 l 1 + 114.746 -105.469 l 1 + 19.5312 -105.469 l 1 + 80.5664 105.957 l 1 +EndSplineSet +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 217 +Width: 405 +VWidth: 1023 +Flags: W +HStem: -107 211<81 115 266 300> +LayerCount: 4 +Fore +SplineSet +81 104 m 1 + 176 104 l 1 + 115 -107 l 1 + 20 -107 l 1 + 81 104 l 1 +266 104 m 1 + 361 104 l 1 + 300 -107 l 1 + 205 -107 l 1 + 266 104 l 1 +EndSplineSet +Layer: 3 +SplineSet +266.113 104.492 m 5 + 361.328 104.492 l 5 + 300.293 -106.934 l 5 + 205.078 -106.934 l 5 + 266.113 104.492 l 5 +80.5664 104.492 m 5 + 175.781 104.492 l 5 + 114.746 -106.934 l 5 + 19.5312 -106.934 l 5 + 80.5664 104.492 l 5 +EndSplineSet +EndChar + +StartChar: perthousand +Encoding: 8240 8240 218 +Width: 937 +VWidth: 1023 +Flags: W +HStem: 0 21G<42 138.631> 32 46<431.758 522.51 727.9 818.51> 257 47<429.249 522.219 724.885 818.643> 394 45<115.026 204.27> 619 47<112.326 206.024> 674 20G<501.369 598> +VStem: 48 48<456.261 603.332> 223 48<457.342 602.894> 365 47<96.8323 240.945> 540 48<95.8844 239.739> 661 47<97.0987 240.945> 836 48<95.8844 241.138> +LayerCount: 4 +Fore +SplineSet +223 519 m 0 + 223 582.926 211.759 619 152 619 c 0 + 118.232 619 96 582.241 96 543 c 0 + 96 484.457 108.558 439 161 439 c 0 + 199.367 439 223 476.114 223 519 c 0 +48 528 m 0 + 48 606.892 88.6172 666 160 666 c 0 + 232.295 666 271 614.579 271 533 c 0 + 271 456.55 230.917 394 159 394 c 0 + 86.0752 394 48 448.445 48 528 c 0 +540 157 m 0 + 540 220.518 527.698 257 468 257 c 0 + 434.116 257 412 219.893 412 181 c 0 + 412 138.681 416.452 113.548 435 95 c 0 + 447 84 462 78 478 78 c 0 + 516.903 78 540 113.799 540 157 c 0 +472 304 m 0 + 545.697 304 588 259.625 588 180 c 0 + 588 97.2033 550.897 32 476 32 c 0 + 401.651 32 365 85.9226 365 167 c 0 + 365 213 376 247 398 270 c 0 + 420 293 444 304 472 304 c 0 +836 157 m 0 + 836 221.613 824.325 257 764 257 c 0 + 730.115 257 708 219.893 708 181 c 0 + 708 123.416 722.295 78 774 78 c 0 + 812.903 78 836 113.799 836 157 c 0 +769 304 m 0 + 842.102 304 884 259.057 884 180 c 0 + 884 97.2033 846.897 32 772 32 c 0 + 698.629 32 661 87.0104 661 167 c 0 + 661 213 672 247 694 270 c 0 + 716 293 741 304 769 304 c 0 +515 694 m 1 + 598 694 l 1 + 125 0 l 1 + 42 0 l 1 + 515 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +514.648 693.848 m 1 + 597.656 693.848 l 1 + 124.512 0 l 1 + 41.5039 0 l 1 + 514.648 693.848 l 1 +772.461 304.199 m 4 + 813.477 304.199 883.789 285.645 883.789 171.387 c 4 + 883.789 82.5195 833.984 32.2266 771.973 32.2266 c 4 + 715.82 32.2266 661.133 64.4531 661.133 171.875 c 4 + 661.133 261.719 716.797 304.199 772.461 304.199 c 4 +771.973 257.324 m 4 + 743.164 256.836 708.496 240.234 708.496 172.363 c 4 + 708.496 91.7969 747.07 77.6367 772.461 77.6367 c 4 + 799.805 77.6367 835.938 93.75 835.938 169.922 c 4 + 835.938 244.141 798.34 257.324 771.973 257.324 c 4 +476.074 304.199 m 0 + 517.09 304.199 587.402 285.645 587.402 171.387 c 0 + 587.402 82.5195 537.598 32.2266 475.586 32.2266 c 0 + 419.434 32.2266 364.746 64.4531 364.746 171.875 c 0 + 364.746 261.719 420.41 304.199 476.074 304.199 c 0 +475.586 257.324 m 0 + 446.777 256.836 412.109 240.234 412.109 172.363 c 0 + 412.109 91.7969 450.684 77.6367 476.074 77.6367 c 0 + 503.418 77.6367 539.551 93.75 539.551 169.922 c 0 + 539.551 244.141 501.953 257.324 475.586 257.324 c 0 +159.668 665.527 m 0 + 200.684 665.527 270.508 647.461 270.508 533.203 c 0 + 270.508 444.336 221.191 393.555 159.18 393.555 c 0 + 103.027 393.555 47.8516 426.27 47.8516 533.691 c 0 + 47.8516 623.535 104.004 665.527 159.668 665.527 c 0 +159.18 619.141 m 0 + 130.371 618.652 95.7031 602.051 95.7031 534.18 c 0 + 95.7031 453.613 134.277 439.453 159.668 439.453 c 0 + 187.012 439.453 223.145 455.566 223.145 531.738 c 0 + 223.145 605.957 185.547 619.141 159.18 619.141 c 0 +EndSplineSet +EndChar + +StartChar: circumflex +Encoding: 710 710 219 +Width: 722 +VWidth: 1023 +Flags: W +HStem: 570 182 +VStem: 216 263 +LayerCount: 4 +Fore +SplineSet +354 752 m 5 + 479 613 l 5 + 434 570 l 5 + 348 666 l 5 + 259 570 l 5 + 216 608 l 5 + 354 752 l 5 +EndSplineSet +Layer: 3 +SplineSet +354.004 752.441 m 29 + 479.004 612.793 l 21 + 433.594 569.824 l 5 + 325.684 689.941 l 5 + 379.883 699.707 l 5 + 259.277 570.312 l 13 + 216.309 608.398 l 29 + 354.004 752.441 l 29 +EndSplineSet +EndChar + +StartChar: tilde +Encoding: 732 732 220 +Width: 683 +VWidth: 1023 +Flags: W +HStem: 604.352 60.562<388.521 465.956> 693.086 59.562<237.194 313.691> +LayerCount: 4 +Fore +SplineSet +430.627 604.352 m 0 + 392.873 604.352 363.378 623.622 341 646 c 0 + 317 669 302 683 295 687 c 0 + 287.389 691.077 280.148 693.086 273.236 693.086 c 0 + 254.718 693.086 238.564 678.671 224 651 c 2 + 201 604 l 1 + 149 627 l 1 + 163 654 l 2 + 178 685 191 706 201 717 c 0 + 222.825 740.871 246.975 752.648 273.134 752.648 c 0 + 311.302 752.648 339.513 733.487 362 711 c 0 + 386 688 401 675 408 671 c 0 + 415.611 666.923 422.852 664.914 429.764 664.914 c 0 + 448.282 664.914 464.436 679.329 479 707 c 2 + 502 753 l 1 + 554 730 l 1 + 541 704 l 2 + 526 673 512 651 502 640 c 0 + 480.175 616.129 456.49 604.352 430.627 604.352 c 0 +EndSplineSet +Layer: 3 +SplineSet +502.441 753.418 m 5 + 553.711 730.469 l 5 + 540.527 703.613 l 6 + 529.209 680.557 517.798 657.056 500.4 638.159 c 4 + 491.699 628.706 481.525 620.542 470.076 614.722 c 4 + 458.627 608.901 445.938 605.503 433.105 604.98 c 4 + 419.283 604.414 405.418 607.173 392.57 612.3 c 4 + 379.723 617.432 367.868 624.829 356.934 633.301 c 4 + 340.991 645.654 327.562 660.903 312.5 674.316 c 4 + 307.195 679.038 301.549 683.447 295.26 686.748 c 4 + 288.971 690.049 282.002 692.178 274.902 692.383 c 4 + 267.102 692.607 259.283 690.459 252.57 686.479 c 4 + 245.856 682.5 240.27 676.816 235.662 670.518 c 4 + 226.449 657.92 220.359 643.354 213.379 629.395 c 6 + 200.684 604.004 l 5 + 149.414 626.953 l 5 + 162.598 653.809 l 6 + 173.918 676.865 185.327 700.366 202.725 719.263 c 4 + 211.424 728.716 221.6 736.88 233.049 742.7 c 4 + 244.498 748.521 257.188 751.919 270.02 752.441 c 4 + 283.842 753.008 297.707 750.249 310.555 745.122 c 4 + 323.402 739.99 335.257 732.593 346.191 724.121 c 4 + 362.134 711.768 375.563 696.519 390.625 683.105 c 4 + 395.93 678.384 401.576 673.975 407.865 670.674 c 4 + 414.154 667.373 421.123 665.244 428.223 665.039 c 4 + 436.023 664.814 443.842 666.963 450.555 670.942 c 4 + 457.269 674.922 462.855 680.605 467.463 686.904 c 4 + 476.676 699.502 482.766 714.067 489.746 728.027 c 6 + 502.441 753.418 l 5 +EndSplineSet +EndChar + +StartChar: ring +Encoding: 730 730 221 +Width: 529 +VWidth: 0 +Flags: W +HStem: 549 45<236.945 330.082> 724 44<237.347 328.241> +VStem: 177 44<608.984 708.207> 346 45<609.898 707.659> +LayerCount: 4 +Fore +Refer: 124 176 S 1 0 0 1 140 56 2 +Layer: 3 +Refer: 124 176 S 1 0 0 1 139.859 55.6641 2 +EndChar + +StartChar: breve +Encoding: 728 728 222 +Width: 526 +VWidth: 0 +Flags: W +HStem: 548.73 67.0791<201.274 317.827> +VStem: 110.2 305.6 +LayerCount: 4 +Fore +SplineSet +258.263 615.81 m 0 + 301.758 615.81 339.08 652.153 361.12 681.541 c 1 + 415.8 644.792 l 1 + 382.463 600.849 324.165 548.73 251.179 548.73 c 0 + 207.397 548.73 170.987 564.388 141.4 596.792 c 0 + 127 611.992 117.4 630.393 110.2 649.592 c 1 + 168.88 681.541 l 1 + 181.12 656.341 195.52 639.061 212.8 628.98 c 0 + 227.818 620.221 242.972 615.81 258.263 615.81 c 0 +EndSplineSet +Layer: 3 +SplineSet +399.17 707.031 m 1 + 382.216 684.6 362.467 664.16 339.844 647.461 c 0 + 317.191 630.742 290.776 617.983 262.695 615.967 c 0 + 240.164 614.346 217.273 619.98 197.754 631.348 c 0 + 180.319 641.504 165.529 655.811 153.32 671.875 c 0 + 144.996 682.827 137.814 694.644 131.836 707.031 c 1 + 71.7773 674.805 l 1 + 80.5537 650.708 94.0508 628.33 111.328 609.375 c 0 + 130.449 588.398 154.254 571.641 180.637 561.177 c 0 + 207.02 550.708 235.898 546.689 264.16 549.316 c 0 + 305.296 553.14 344.309 570.718 377.93 594.727 c 0 + 406.982 615.474 432.587 640.947 454.102 669.434 c 1 + 399.17 707.031 l 1 +EndSplineSet +EndChar + +StartChar: caron +Encoding: 711 711 223 +Width: 722 +VWidth: 1023 +Flags: W +HStem: 549.1 182 +VStem: 128.3 262 +LayerCount: 4 +Fore +SplineSet +174.3 731.1 m 29 + 259.3 636.1 l 25 + 347.3 731.1 l 25 + 390.3 694.336 l 25 + 253.3 549.1 l 25 + 128.3 688.1 l 25 + 174.3 731.1 l 29 +EndSplineSet +Layer: 3 +Refer: 90 94 S -1 0 -0 -1 607.422 1301.27 2 +EndChar + +StartChar: dotaccent +Encoding: 729 729 224 +Width: 585 +VWidth: 0 +Flags: W +HStem: 602 103<237 339> +VStem: 237 102<602 705> +LayerCount: 4 +Fore +Refer: 68 46 S 1 0 0 1 149 602 2 +Layer: 3 +Refer: 68 46 S 1 0 0 1 148.926 601.562 2 +EndChar + +StartChar: trademark +Encoding: 8482 8482 225 +Width: 695 +VWidth: 1023 +Flags: W +HStem: 699 39<54 139 187 272> +VStem: 139 48<460 699> 337 48<460 680> 569 48<460 678> +LayerCount: 4 +Fore +SplineSet +187 460 m 1 + 139 460 l 1 + 139 699 l 1 + 54 699 l 1 + 54 738 l 1 + 272 738 l 1 + 272 699 l 1 + 187 699 l 1 + 187 460 l 1 +337 738 m 1 + 394 738 l 1 + 478 583 l 1 + 559 738 l 1 + 617 738 l 1 + 617 460 l 1 + 569 460 l 1 + 569 678 l 1 + 491 535 l 1 + 458 535 l 1 + 385 680 l 1 + 385 460 l 1 + 337 460 l 1 + 337 738 l 1 +EndSplineSet +Layer: 3 +SplineSet +336.914 737.793 m 1 + 393.555 737.793 l 1 + 477.654 582.793 l 1 + 558.594 737.793 l 1 + 617.188 737.793 l 1 + 617.188 460.449 l 1 + 569.336 460.449 l 1 + 569.336 705.176 l 1 + 583.984 705.078 l 1 + 491.211 534.668 l 1 + 458.008 534.668 l 1 + 364.258 720.703 l 1 + 384.766 701.66 l 1 + 384.766 460.449 l 1 + 336.914 460.449 l 1 + 336.914 737.793 l 1 +187.012 460.449 m 1 + 139.16 460.449 l 1 + 139.16 698.73 l 1 + 53.7109 698.73 l 1 + 53.7109 737.793 l 1 + 272.461 737.793 l 1 + 272.461 698.73 l 1 + 187.012 698.73 l 1 + 187.012 460.449 l 1 +EndSplineSet +EndChar + +StartChar: Amacron +Encoding: 256 256 226 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 766 63<135 496> +LayerCount: 4 +Fore +SplineSet +135 829 m 1 + 496 829 l 1 + 496 766 l 1 + 135 766 l 1 + 135 829 l 1 +EndSplineSet +Refer: 32 65 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +177.49 828.613 m 1 + 538.818 828.613 l 1 + 538.818 765.625 l 1 + 177.49 765.625 l 1 + 177.49 828.613 l 1 +EndSplineSet +Refer: 32 65 N 1 0 0 1 0 0 3 +EndChar + +StartChar: amacron +Encoding: 257 257 227 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 588 63<129 389> +VStem: 345 82<91 224 284 384> +LayerCount: 4 +Fore +SplineSet +129 651 m 1 + 389 651 l 1 + 389 588 l 1 + 129 588 l 1 + 129 651 l 1 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +129.24 650.879 m 1 + 389.319 650.879 l 1 + 389.319 587.891 l 1 + 129.24 587.891 l 1 + 129.24 650.879 l 1 +EndSplineSet +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Abreve +Encoding: 258 258 228 +Width: 628 +VWidth: 0 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 760.73 67.0791<262.274 378.827> +VStem: 171.2 305.6 +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 60.9998 212 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 103.271 211.919 2 +Refer: 32 65 N 1 0 0 1 0 0 3 +EndChar + +StartChar: abreve +Encoding: 259 259 229 +Width: 491 +VWidth: 0 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 548.73 67.0791<213.274 329.827> +VStem: 122.2 305.6 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 12 0 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 12.1755 0.00554321 2 +Refer: 0 97 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Cacute +Encoding: 262 262 230 +Width: 648 +VWidth: 0 +Flags: W +HStem: -10 75.5625<306.92 554.233> 627.748 74.5547<303.55 551.397> 740 207 +VStem: 50 94.916<231.433 466.293> 266.374 223 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 146.374 191 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 144.053 190.918 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +EndChar + +StartChar: cacute +Encoding: 263 263 231 +Width: 467 +VWidth: 0 +Flags: W +HStem: 0 73<209.074 393.763> 408 73<206.038 398.764> 549 207 +VStem: 158 223 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 38 0 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +334.961 756.348 m 29 + 157.227 598.145 l 29 + 196.289 549.316 l 29 + 379.883 703.125 l 29 + 334.961 756.348 l 29 +EndSplineSet +Refer: 18 99 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 232 +Width: 648 +VWidth: 0 +Flags: W +HStem: -10 75.5625<306.92 554.233> 627.748 74.5547<303.55 551.397> 761 182 +VStem: 50 94.916<231.433 466.293> 227 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 11.0002 191 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 59.0918 190.918 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 233 +Width: 467 +VWidth: 0 +Flags: W +HStem: 0 73<209.074 393.763> 408 73<206.038 398.764> 549 182 +VStem: 145.636 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -70.3643 -21 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 -77.356 -20.9961 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 234 +Width: 648 +VWidth: 0 +Flags: W +HStem: -10 75.5625<306.92 554.233> 627.748 74.5547<303.55 551.397> 791 103<300.374 402.374> +VStem: 50 94.916<231.433 466.293> 300.374 102<791 894> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 63.374 189 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 131.357 188.965 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 235 +Width: 467 +VWidth: 0 +Flags: W +HStem: 0 73<209.074 393.763> 408 73<206.038 398.764> 592 103<234.636 336.636> +VStem: 234.636 102<592 695> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -2.36423 -10 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 9.55811 -9.76562 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ccaron +Encoding: 268 268 236 +Width: 648 +VWidth: 0 +Flags: W +HStem: -10 75.5625<306.92 554.233> 627.748 74.5547<303.55 551.397> 761.1 182 +VStem: 50 94.916<231.433 466.293> 257.674 262 +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 129.374 212 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 S 1 0 0 1 146.982 211.914 2 +Refer: 54 67 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ccaron +Encoding: 269 269 237 +Width: 467 +VWidth: 0 +Flags: W +HStem: 0 73<209.074 393.763> 408 73<206.038 398.764> 547.1 182 +VStem: 144.936 262 +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 16.6358 -2 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 S 1 0 0 1 10.5346 0 2 +Refer: 18 99 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Dcaron +Encoding: 270 270 238 +Width: 708 +VWidth: 0 +Flags: W +HStem: 0 74<172 416.469> 620 73<172 414.961> 761.1 182 +VStem: 80 92<74 620> 166.3 262 562 96<219.024 478.27> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 38 212 2 +Refer: 48 68 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 S 1 0 0 1 158.703 211.914 2 +Refer: 48 68 N 1 0 0 1 0 0 3 +EndChar + +StartChar: dcaron +Encoding: 271 271 239 +Width: 695 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 651 20 +VStem: 56 85<138 347> 420 83<79 415 471 671> +LayerCount: 4 +Fore +SplineSet +590 738 m 1 + 671 738 l 1 + 613 547 l 1 + 533 547 l 1 + 590 738 l 1 +EndSplineSet +Refer: 1 100 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +590.332 737.793 m 5 + 670.898 737.793 l 5 + 613.281 547.363 l 5 + 532.715 547.363 l 5 + 590.332 737.793 l 5 +EndSplineSet +Refer: 1 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Dcroat +Encoding: 272 272 240 +Width: 783 +VWidth: 0 +Flags: W +HStem: 0 73<247 495.343> 321 74<57 164 247 372> 621 73<247 498.191> +VStem: 164 83<73 321 395 621> 645.201 83.431<229.593 471.083> +LayerCount: 4 +Fore +Refer: 188 208 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 188 208 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Emacron +Encoding: 274 274 241 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 766 63<114 472> +VStem: 80 83<73 321 394 621> +LayerCount: 4 +Fore +SplineSet +114 829 m 1 + 472 829 l 1 + 472 766 l 1 + 114 766 l 1 + 114 829 l 1 +EndSplineSet +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +175.781 828.613 m 5 + 533.691 828.613 l 5 + 533.691 765.625 l 5 + 175.781 765.625 l 5 + 175.781 828.613 l 5 +EndSplineSet +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: emacron +Encoding: 275 275 242 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 578 73<135.513 424.295> +VStem: 59.4 75<139 218 281 352> 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 191 175 N 0.713043 0 0 1 36.4 -150 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 191 175 S 0.713043 0 0 1 30.6981 -149.902 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ebreve +Encoding: 276 276 243 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 760.73 67.0791<230.274 346.827> +VStem: 80 83<73 321 394 621> 139.2 305.6 +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 29.0002 212 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 90.5762 211.919 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ebreve +Encoding: 277 277 244 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 548.73 67.0791<248.674 365.227> +VStem: 59.4 75<139 218 281 352> 157.6 305.6 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 47.4 0 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 41.3638 0.00554321 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 245 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 791 103<227 329> +VStem: 80 83<73 321 394 621> 227 102<791 894> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -9.9998 189 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 52.002 188.965 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: edotaccent +Encoding: 279 279 246 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 592 103<248.4 350.4> +VStem: 59.4 75<139 218 281 352> 248.4 102<592 695> 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 11.4 -10 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 6.20752 -9.76562 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ecaron +Encoding: 282 282 247 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 761.1 182 +VStem: 80 83<73 321 394 621> 151.3 262 +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 23.0002 212 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 N 1 0 0 1 85.2051 211.914 2 +Refer: 34 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ecaron +Encoding: 283 283 248 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 73 217 73 408 73 549.1 182 +VStem: 59.4 75<139 218 281 352> 174.7 262 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 46.4 0 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 N 1 0 0 1 40.8755 0 2 +Refer: 2 101 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 249 +Width: 719 +VWidth: 0 +Flags: W +HStem: -9.0752 73.0752<301.774 518.145> 298 68<371.047 568.047> 627.014 72.4102<291.524 515.887> 761 182 +VStem: 50 82.9893<235.173 462.435> 234.047 263 568.047 78<103.09 298> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 18.0467 191 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 72.9336 190.918 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 250 +Width: 542 +VWidth: 0 +Flags: W +HStem: -261 73 0 73 408 73 549 182 +VStem: 160 263 406 80<-123 23 74 407> +LayerCount: 4 +Fore +Refer: 219 710 N 1 0 0 1 -56 -21 2 +Refer: 30 103 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 N 1 0 0 1 -56.083 -20.9961 2 +Refer: 30 103 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Gbreve +Encoding: 286 286 251 +Width: 719 +VWidth: 0 +Flags: W +HStem: -9.0752 73.0752<301.774 518.145> 298 68<371.047 568.047> 627.014 72.4102<291.524 515.887> 760.73 67.0791<322.321 438.874> +VStem: 50 82.9893<235.173 462.435> 231.247 305.6 568.047 78<103.09 298> +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 121.047 212 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 175.961 211.919 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +EndChar + +StartChar: gbreve +Encoding: 287 287 252 +Width: 542 +VWidth: 0 +Flags: W +HStem: -261 73 0 73 408 73 548.73 67.0791<248.274 364.827> +VStem: 157.2 305.6 406 80<-123 23 74 407> +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 47 0 2 +Refer: 30 103 S 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 46.875 0 2 +Refer: 30 103 S 1 0 0 1 0 0 3 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 253 +Width: 719 +VWidth: 0 +Flags: W +HStem: -9.0752 73.0752<301.774 518.145> 298 68<371.047 568.047> 627.014 72.4102<291.524 515.887> 791 103<334.047 436.047> +VStem: 50 82.9893<235.173 462.435> 334.047 102<791 894> 568.047 78<103.09 298> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 97.047 189 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 152.523 188.965 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 254 +Width: 542 +VWidth: 0 +Flags: W +HStem: -261 73 0 73 408 73 592 103<236 338> +VStem: 236 102<592 695> 406 80<-123 23 74 407> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -1 -10 2 +Refer: 30 103 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 -1.39549 -9.76562 2 +Refer: 30 103 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Gcommaaccent +Encoding: 290 290 255 +Width: 719 +VWidth: 0 +Flags: W +HStem: -259 190<378.047 388.047> -9.0752 73.0752<301.774 518.145> 298 68<371.047 568.047> 627.014 72.4102<291.524 515.887> +VStem: 50 82.9893<235.173 462.435> 301.047 165 568.047 78<103.09 298> +LayerCount: 4 +Fore +Refer: 69 44 N 1 0 0 1 280.047 -152 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 N 1 0 0 1 334.717 -151.887 2 +Refer: 28 71 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 256 +Width: 720 +VWidth: 0 +Flags: W +HStem: 0 21<80 167 552 640> 311 75<167 552> 763 182 +VStem: 80 87<0 311 386 692> 231 263 552 88<0 311 386 692> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 15.0004 193 2 +Refer: 29 72 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 58.5938 193.359 2 +Refer: 29 72 N 1 0 0 1 0 0 3 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 257 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 716 182 +VStem: -30 263 60 83<0 400 452 670> 390 82<0 395> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -246 146 2 +Refer: 3 104 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 -63.3462 193.359 2 +Refer: 3 104 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Itilde +Encoding: 296 296 258 +Width: 243 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 756.75 63.375<146.543 201.777> 850.297 60.9033<26.1817 83.9769> +VStem: -41 314 80 83<0 694> +LayerCount: 4 +Fore +SplineSet +61.0244 911.2 m 0xf8 + 89.9375 911.2 107.068 894.909 122 875 c 2 + 145 844 l 2 + 156.541 827.329 162.139 820.125 177.5 820.125 c 0 + 197.338 820.125 202.469 840.775 209 862 c 2 + 222 910 l 1 + 273 896 l 1 + 260 849 l 2 + 246.736 801.63 227.208 756.75 171.266 756.75 c 0 + 142.432 756.75 126.16 775.146 110 794 c 1 + 87 825 l 2 + 73.8047 842.154 68.5645 850.297 50.8691 850.297 c 0 + 37.5996 850.297 28.4688 840.531 23 821 c 2 + 10 773 l 1 + -41 787 l 1 + -28 835 l 2 + -15.2002 881.93 12.9287 911.2 61.0244 911.2 c 0xf8 +EndSplineSet +Refer: 40 73 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +85.9375 773.438 m 1 + 35.1562 787.109 l 1 + 47.8516 834.961 l 2 + 50.2773 844.102 52.8379 853.262 56.7988 861.851 c 0 + 60.7598 870.439 66.0771 878.423 72.6768 885.2 c 0 + 85.876 898.755 103.852 907.334 122.559 910.156 c 0 + 137.095 912.349 152.38 910.869 165.63 904.502 c 0 + 172.254 901.318 178.29 896.963 183.569 891.851 c 0 + 188.85 886.733 193.344 880.879 197.754 875 c 2 + 221.191 843.75 l 2 + 225.647 837.808 230.035 831.694 235.771 826.978 c 0 + 238.64 824.619 241.859 822.651 245.37 821.44 c 0 + 248.879 820.225 252.671 819.795 256.348 820.312 c 0 + 260.799 820.942 265.01 822.979 268.41 825.918 c 0 + 271.811 828.857 274.41 832.637 276.393 836.675 c 0 + 280.357 844.741 282.279 853.638 284.668 862.305 c 2 + 297.852 910.156 l 1 + 348.633 895.996 l 1 + 335.938 848.633 l 2 + 330.65 828.911 324.396 808.994 312.276 792.559 c 0 + 300.156 776.123 282.592 763.379 262.695 758.789 c 0 + 248.031 755.405 232.18 756.782 218.687 763.447 c 0 + 211.94 766.777 205.838 771.343 200.486 776.631 c 0 + 195.135 781.924 190.55 787.925 186.035 793.945 c 2 + 162.598 825.195 l 2 + 157.782 831.616 152.99 838.188 146.755 843.242 c 0 + 143.637 845.771 140.152 847.881 136.365 849.209 c 0 + 132.579 850.537 128.496 851.064 124.512 850.586 c 0 + 117.646 849.756 111.334 845.791 107.168 840.269 c 0 + 103.004 834.746 100.959 827.959 99.1211 821.289 c 2 + 85.9375 773.438 l 1 +EndSplineSet +Refer: 40 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: itilde +Encoding: 297 297 259 +Width: 255 +VWidth: 0 +Flags: W +HStem: -4 21<88 168> 458 20<88 168> 540.75 63.375<158.543 213.778> 634.297 60.903<38.1814 95.9767> +VStem: -29 314 88 80<-4 478> +LayerCount: 4 +Fore +SplineSet +73.024 695.2 m 0xf8 + 101.937 695.2 119.068 678.909 134 659 c 2 + 157 628 l 2 + 168.541 611.329 174.139 604.125 189.5 604.125 c 0 + 209.338 604.125 214.469 624.775 221 646 c 2 + 234 694 l 1 + 285 680 l 1 + 272 633 l 2 + 258.736 585.63 239.208 540.75 183.266 540.75 c 0 + 154.432 540.75 138.16 559.146 122 578 c 1 + 99 609 l 2 + 85.8048 626.154 80.5637 634.297 62.8694 634.297 c 0 + 49.5996 634.297 40.4688 624.531 35 605 c 2 + 22 558 l 1 + -29 571 l 1 + -16 619 l 2 + -3.20098 665.93 24.9279 695.2 73.024 695.2 c 0xf8 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 -4 3 +Layer: 3 +SplineSet +21.9727 557.617 m 1 + -28.8086 571.289 l 1 + -16.1133 619.141 l 2 + -13.6875 628.281 -11.127 637.441 -7.16602 646.03 c 0 + -3.20508 654.619 2.1123 662.603 8.71191 669.38 c 0 + 21.9111 682.935 39.8867 691.514 58.5938 694.336 c 0 + 73.1299 696.528 88.415 695.049 101.665 688.682 c 0 + 108.289 685.498 114.325 681.143 119.604 676.03 c 0 + 124.885 670.913 129.379 665.059 133.789 659.18 c 2 + 157.227 627.93 l 2 + 161.683 621.987 166.07 615.874 171.807 611.157 c 0 + 174.675 608.799 177.895 606.831 181.405 605.62 c 0 + 184.914 604.404 188.706 603.975 192.383 604.492 c 0 + 196.834 605.122 201.045 607.158 204.445 610.098 c 0 + 207.846 613.037 210.445 616.816 212.428 620.854 c 0 + 216.393 628.921 218.314 637.817 220.703 646.484 c 2 + 233.887 694.336 l 1 + 284.668 680.176 l 1 + 271.973 632.812 l 2 + 266.686 613.091 260.432 593.174 248.312 576.738 c 0 + 236.191 560.303 218.627 547.559 198.73 542.969 c 0 + 184.066 539.585 168.215 540.962 154.722 547.627 c 0 + 147.976 550.957 141.873 555.522 136.521 560.811 c 0 + 131.17 566.104 126.585 572.104 122.07 578.125 c 2 + 98.6328 609.375 l 2 + 93.8174 615.796 89.0254 622.368 82.79 627.422 c 0 + 79.6719 629.951 76.1875 632.061 72.4004 633.389 c 0 + 68.6143 634.717 64.5312 635.244 60.5469 634.766 c 0 + 53.6807 633.936 47.3682 629.971 43.2041 624.448 c 0 + 39.0391 618.926 36.9932 612.139 35.1562 605.469 c 2 + 21.9727 557.617 l 1 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 -4.39453 3 +EndChar + +StartChar: Imacron +Encoding: 298 298 260 +Width: 243 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 766 63<22 222> +VStem: 22 200<766 829> 80 83<0 694> +LayerCount: 4 +Fore +SplineSet +22 829 m 1xf0 + 222 829 l 1 + 222 766 l 1 + 22 766 l 1 + 22 829 l 1xf0 +EndSplineSet +Refer: 40 73 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +97.6562 828.613 m 1 + 297.852 828.613 l 1 + 297.852 765.625 l 1 + 97.6562 765.625 l 1 + 97.6562 828.613 l 1 +EndSplineSet +Refer: 40 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: imacron +Encoding: 299 299 261 +Width: 255 +VWidth: 0 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> 588 63<39 217> +VStem: 39 178<588 651> 88 80<0 482> +LayerCount: 4 +Fore +SplineSet +39 651 m 1xf0 + 217 651 l 1 + 217 588 l 1 + 39 588 l 1 + 39 651 l 1xf0 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +39.0625 650.879 m 5 + 216.797 650.879 l 5 + 216.797 587.891 l 5 + 39.0625 587.891 l 5 + 39.0625 650.879 l 5 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ibreve +Encoding: 300 300 262 +Width: 243 +VWidth: 0 +Flags: W +HStem: 0 21<60 143> 674 20<60 143> 760.544 71.0273<45.609 154.907> +VStem: -56 313 60 83<0 694> +LayerCount: 4 +Fore +SplineSet +257 876 m 1xf0 + 223.582 819.718 166.529 760.544 86.0703 760.544 c 0 + 32.5781 760.544 -7.88574 785.922 -36 836 c 0 + -44 851 -51 866 -56 883 c 1 + 4 915 l 1 + 15 884 31 862 53 847 c 0 + 67.918 836.699 83.0889 831.571 98.5566 831.571 c 0 + 126.636 831.571 155.694 848.47 186 882 c 0 + 194 892 203 902 212 914 c 1 + 257 876 l 1xf0 +EndSplineSet +Refer: 40 73 N 1 0 0 1 -20 0 3 +Layer: 3 +SplineSet +288.33 914.067 m 1 + 280.092 902.954 271.427 892.148 262.207 881.836 c 0 + 249.764 867.915 236.189 854.707 220.093 845.244 c 0 + 203.996 835.786 185.053 830.63 166.504 832.769 c 0 + 153.23 834.302 140.477 839.429 129.433 846.948 c 0 + 118.389 854.468 108.986 864.238 101.074 875.005 c 0 + 92.0762 887.246 84.9072 900.811 79.5898 915.044 c 1 + 19.5312 882.817 l 1 + 24.6025 866.567 31.2451 850.796 39.5508 835.938 c 0 + 48.1963 820.474 58.7559 805.962 71.7773 793.945 c 0 + 85.8125 780.996 102.745 771.172 121.03 765.664 c 0 + 139.315 760.156 158.781 758.896 177.734 761.235 c 0 + 208.703 765.059 238.115 778.291 263.184 796.875 c 0 + 276.717 806.909 289.078 818.481 300.293 831.055 c 0 + 312.796 845.068 323.902 860.322 333.496 876.47 c 1 + 288.33 914.067 l 1 +EndSplineSet +Refer: 40 73 N 1 0 0 1 -19.5312 0 3 +EndChar + +StartChar: ibreve +Encoding: 301 301 263 +Width: 255 +VWidth: 0 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> 546.544 70.735<84.6075 194.074> 681 20G<5.63636 48 246.5 274.684> +VStem: -18 314 88 80<0 482> +LayerCount: 4 +Fore +SplineSet +296 662 m 1xf8 + 261.373 604.865 206.255 546.544 125.03 546.544 c 0 + 71.35 546.544 30.1141 571.922 2 622 c 0 + -6 637 -13 651 -18 668 c 1 + 42 701 l 1 + 54 670 71 648 92 633 c 0 + 107.157 622.535 122.574 617.279 138.298 617.279 c 0 + 166.147 617.279 194.961 633.765 225 667 c 0 + 233 677 242 688 251 700 c 1 + 296 662 l 1xf8 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +251.221 699.707 m 1 + 242.982 688.594 234.317 677.788 225.098 667.476 c 0 + 212.654 653.555 199.08 640.347 182.983 630.884 c 0 + 166.887 621.426 147.943 616.27 129.395 618.408 c 0 + 116.121 619.941 103.367 625.068 92.3232 632.588 c 0 + 81.2793 640.107 71.877 649.878 63.9648 660.645 c 0 + 54.9668 672.886 47.7979 686.45 42.4805 700.684 c 1 + -17.5781 668.457 l 1 + -12.5068 652.207 -5.86426 636.436 2.44141 621.577 c 0 + 11.0869 606.113 21.6465 591.602 34.668 579.585 c 0 + 48.7031 566.636 65.6357 556.812 83.9209 551.304 c 0 + 102.206 545.796 121.672 544.536 140.625 546.875 c 0 + 171.594 550.698 201.006 563.931 226.074 582.515 c 0 + 239.607 592.549 251.969 604.121 263.184 616.694 c 0 + 275.687 630.708 286.793 645.962 296.387 662.109 c 1 + 251.221 699.707 l 1 +EndSplineSet +Refer: 140 305 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Idotaccent +Encoding: 304 304 264 +Width: 243 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 791 103<70 172> +VStem: 70 102<791 894> 80 83<0 694> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -167 189 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 -91.3086 188.965 2 +Refer: 40 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: IJ +Encoding: 306 306 265 +Width: 821 +VWidth: 0 +Flags: W +HStem: -8.18359 72.2275<386.891 546.563> 0 21<80 163> 673 20<602 685> 674 20<80 163> +VStem: 80 83<0 694> 602 83<116.872 693> +LayerCount: 4 +Fore +Refer: 46 74 N 1 0 0 1 356 0 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 46 74 N 1 0 0 1 356.445 0 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ij +Encoding: 307 307 266 +Width: 511 +VWidth: 0 +Flags: W +HStem: 0 21<60 142> 462 20<339 419.073> 463 20<60 142> 586 83<60 142 338 420> +VStem: 60 82<0 483 586 669> 338 82<-158.014 482 586 669> +LayerCount: 4 +Fore +Refer: 23 106 N 1 0 0 1 256 0 2 +Refer: 4 105 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 23 106 N 1 0 0 1 255.859 0 2 +Refer: 4 105 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 267 +Width: 409 +VWidth: 0 +Flags: W +HStem: -8.18359 72.2275<30.8911 190.563> 673 20<246 329> 761 182 +VStem: 159 263 246 83<116.872 693> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -56.9996 191 2 +Refer: 46 74 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 -23.4375 190.918 2 +Refer: 46 74 N 1 0 0 1 0 0 3 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 268 +Width: 255 +VWidth: 0 +Flags: W +HStem: 462 20<86 166.073> 549 182 +VStem: 0 263 87.1071 80.8929<-154.237 482> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -216 -21 2 +Refer: 323 567 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 -216.309 -20.9961 2 +Refer: 323 567 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Kcommaaccent +Encoding: 310 310 269 +Width: 631 +VWidth: 0 +Flags: W +HStem: -250 190<255 265> 0 21<80 163 466.584 591> 674 20<80 163 450.604 572> +VStem: 80 83<0 694> 178 165 +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 157 -143 2 +Refer: 43 75 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 218.506 -142.578 2 +Refer: 43 75 N 1 0 0 1 0 0 3 +EndChar + +StartChar: kcommaaccent +Encoding: 311 311 270 +Width: 503 +VWidth: 0 +Flags: W +HStem: -250 190<231 241> 0 73 217 73 408 73 651 20 +VStem: 68 80<0 738> 154 165 +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 133 -143 2 +Refer: 22 107 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 133.301 -142.578 2 +Refer: 22 107 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Lacute +Encoding: 313 313 271 +Width: 514 +VWidth: 0 +Flags: W +HStem: 0 73<163 474> 674 20<80 163> 740 207 +VStem: 62 223 80 83<73 694> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 -58 191 2 +Refer: 33 76 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 4.39453 190.918 2 +Refer: 33 76 N 1 0 0 1 0 0 3 +EndChar + +StartChar: lacute +Encoding: 314 314 272 +Width: 308 +VWidth: 0 +Flags: W +HStem: 0 21<103.4 183.4> 651 20<103.4 183.4> 777 207 +VStem: 65.4004 80<0 671> 69.4004 223 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 -50.5996 228 2 +Refer: 10 108 S 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 -55.6641 227.539 2 +Refer: 10 108 S 1 0 0 1 0 0 3 +EndChar + +StartChar: Lcommaaccent +Encoding: 315 315 273 +Width: 514 +VWidth: 0 +Flags: W +HStem: -250 190<156 166> 0 73<163 474> 674 20<80 163> +VStem: 79 165 80 83<73 694> +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 58 -143 2 +Refer: 33 76 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 119.873 -142.578 2 +Refer: 33 76 N 1 0 0 1 0 0 3 +EndChar + +StartChar: lcommaaccent +Encoding: 316 316 274 +Width: 308 +VWidth: 0 +Flags: W +HStem: -250 190<117.4 127.4> 0 21<103.4 183.4> 651 20<103.4 183.4> +VStem: 40.4004 165 65.4004 80<0 671> +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 19.4004 -143 2 +Refer: 10 108 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 13.916 -142.578 2 +Refer: 10 108 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Lcaron +Encoding: 317 317 275 +Width: 514 +VWidth: 0 +Flags: W +HStem: 0 73<163 474> 504 190<346 356> 674 20<80 163> +VStem: 80 83<73 694> 269 165 +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 248 611 2 +Refer: 33 76 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 69 44 S 1 0 0 1 309.57 610.84 2 +Refer: 33 76 N 1 0 0 1 0 0 2 +EndChar + +StartChar: lcaron +Encoding: 318 318 276 +Width: 393 +VWidth: 0 +Flags: W +HStem: 0 21.0139<103.4 183.4> 651.43 20.0132<103.4 183.4> +VStem: 65.4004 80<0 671.443> +LayerCount: 4 +Fore +SplineSet +288 738 m 1 + 369 738 l 1 + 311 547 l 1 + 230 547 l 1 + 288 738 l 1 +EndSplineSet +Refer: 10 108 N 1 0 0 1.00066 0 0 2 +Layer: 3 +SplineSet +288.086 737.793 m 5 + 368.652 737.793 l 5 + 311.035 547.363 l 5 + 230.469 547.363 l 5 + 288.086 737.793 l 5 +EndSplineSet +Refer: 10 108 N 1 0 0 1.00066 0 0 2 +EndChar + +StartChar: Ldot +Encoding: 319 319 277 +Width: 514 +VWidth: 0 +Flags: W +HStem: 0 73<163 474> 300 102<270 372> 674 20<80 163> +VStem: 80 83<73 694> 270 102<300 402> +LayerCount: 4 +Fore +Refer: 107 183 S 1 0 0 1 177 -7 2 +Refer: 33 76 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 107 183 S 1 0 0 1 238.77 -7.32422 2 +Refer: 33 76 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ldot +Encoding: 320 320 278 +Width: 402 +VWidth: 0 +Flags: W +HStem: 0 21<103.4 183.4> 307 102<261 363> 651 20<103.4 183.4> +VStem: 65.4004 80<0 671> 261 102<307 409> +LayerCount: 4 +Fore +Refer: 107 183 S 1 0 0 1 168 0 2 +Refer: 10 108 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 107 183 S 1 0 0 1 167.969 0 2 +Refer: 10 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Nacute +Encoding: 323 323 279 +Width: 726 +VWidth: 0 +Flags: W +HStem: 0 21<80 163 528.01 646> 674 20<80 198.012 563 646> 740 207 +VStem: 80 83<0 582> 275 223 563 83<113 694> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 155 191 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 153.076 190.918 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +EndChar + +StartChar: nacute +Encoding: 324 324 280 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 530 207 +VStem: 66 82<0 397> 128 223 404 81<0 392> +LayerCount: 4 +Fore +Refer: 148 180 N 1 0 0 1 8 -19 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 36.4878 -18.8463 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ncommaaccent +Encoding: 325 325 281 +Width: 726 +VWidth: 0 +Flags: W +HStem: -250 190<281 291> 0 21<80 163 528.01 646> 674 20<80 198.012 563 646> +VStem: 80 83<0 582> 204 165 563 83<113 694> +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 183 -143 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 244.629 -142.578 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ncommaaccent +Encoding: 326 326 282 +Width: 520 +VWidth: 0 +Flags: W +HStem: -250 190<225 235> 0 73 408 73 +VStem: 66 82<0 397> 148 165 404 81<0 392> +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 127 -143 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 156.25 -142.578 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ncaron +Encoding: 327 327 283 +Width: 726 +VWidth: 0 +Flags: W +HStem: 0 21<80 163 528.01 646> 674 20<80 198.012 563 646> 761.1 182 +VStem: 80 83<0 582> 255.3 262 563 83<113 694> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 127 212 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 N 1 0 0 1 189.209 211.914 2 +Refer: 36 78 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ncaron +Encoding: 328 328 284 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 551.1 182 +VStem: 66 82<0 397> 138.3 262 404 81<0 392> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 10 2 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 N 1 0 0 1 38.4407 2.14979 2 +Refer: 5 110 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Omacron +Encoding: 332 332 285 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 766 63<210 571> +VStem: 50 94<222.236 467.906> 614 94<221.325 469.476> +LayerCount: 4 +Fore +SplineSet +210 829 m 1 + 571 829 l 1 + 571 766 l 1 + 210 766 l 1 + 210 829 l 1 +EndSplineSet +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +259.521 828.613 m 5 + 620.85 828.613 l 5 + 620.85 765.625 l 5 + 259.521 765.625 l 5 + 259.521 828.613 l 5 +EndSplineSet +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: omacron +Encoding: 333 333 286 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 588 63<107 468> +VStem: 46 83<137.066 343.078> 427 83<137.24 343.792> +LayerCount: 4 +Fore +SplineSet +107 651 m 1 + 468 651 l 1 + 468 588 l 1 + 107 588 l 1 + 107 651 l 1 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +122.559 650.879 m 1 + 483.887 650.879 l 1 + 483.887 587.891 l 1 + 122.559 587.891 l 1 + 122.559 650.879 l 1 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Obreve +Encoding: 334 334 287 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 760.73 67.0791<335.274 451.827> +VStem: 50 94<222.236 467.906> 244.2 305.6 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 134 212 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 183.37 211.936 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: obreve +Encoding: 335 335 288 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 548.73 67.0791<244.274 360.827> +VStem: 46 83<137.066 343.078> 153.2 305.6 427 83<137.24 343.792> +LayerCount: 4 +Fore +Refer: 222 728 N 1 0 0 1 43 0 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 N 1 0 0 1 58.5938 0.00554321 2 +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Racute +Encoding: 340 340 289 +Width: 588 +VWidth: 0 +Flags: W +HStem: 0 21<80 163 472.034 578> 289 73<163 297> 621 73<163 399.684> 740 207 +VStem: 80 83<0 289 362 621> 134 223 455.404 82.5957<419.529 567.436> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 14.0002 191 2 +Refer: 47 82 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 76.1719 190.918 2 +Refer: 47 82 N 1 0 0 1 0 0 3 +EndChar + +StartChar: racute +Encoding: 341 341 290 +Width: 391 +VWidth: 0 +Flags: W +HStem: 0 21<88 171> 402 79<299.077 364> 418 72<207.126 357.922> +VStem: 88 83<0 395.646> +LayerCount: 4 +Fore +SplineSet +296 756 m 1x90 + 341 703 l 1 + 157 549 l 1 + 118 598 l 1 + 296 756 l 1x90 +EndSplineSet +Refer: 20 114 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +295.898 756.348 m 29 + 118.164 598.145 l 29 + 157.227 549.316 l 29 + 340.82 703.125 l 29 + 295.898 756.348 l 29 +EndSplineSet +Refer: 20 114 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Rcommaaccent +Encoding: 342 342 291 +Width: 588 +VWidth: 0 +Flags: W +HStem: -250 190<165 175> 0 21<80 163 472.034 578> 289 73<163 297> 621 73<163 399.684> +VStem: 80 83<0 289 362 621> 88.0002 165 455.404 82.5957<419.529 567.436> +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 67.0002 -143 2 +Refer: 47 82 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 128.906 -142.578 2 +Refer: 47 82 N 1 0 0 1 0 0 3 +EndChar + +StartChar: rcommaaccent +Encoding: 343 343 292 +Width: 391 +VWidth: 0 +Flags: W +HStem: -250 190<90 100> 0 21<88 171> 402 79<299.077 364> 418 72<207.126 357.922> +VStem: 13 165 88 83<0 395.646> +LayerCount: 4 +Fore +Refer: 69 44 S 1 0 0 1 -8 -143 2 +Refer: 20 114 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 69 44 S 1 0 0 1 -8.05664 -142.578 2 +Refer: 20 114 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Rcaron +Encoding: 344 344 293 +Width: 588 +VWidth: 0 +Flags: W +HStem: 0 21<80 163 472.034 578> 289 73<163 297> 621 73<163 399.684> 761.1 182 +VStem: 80 83<0 289 362 621> 154.3 262 455.404 82.5957<419.529 567.436> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 26.0002 212 2 +Refer: 47 82 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 N 1 0 0 1 87.8906 211.914 2 +Refer: 47 82 N 1 0 0 1 0 0 3 +EndChar + +StartChar: rcaron +Encoding: 345 345 294 +Width: 391 +VWidth: 0 +Flags: W +HStem: 0 21<88 171> 402 79<299.077 364> 418 72<207.126 357.922> 549.1 182 +VStem: 88 83<0 395.646> 114.3 262 +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 -14 0 2 +Refer: 20 114 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 N 1 0 0 1 -12.9395 0 2 +Refer: 20 114 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Sacute +Encoding: 346 346 295 +Width: 599 +VWidth: 0 +Flags: W +HStem: -9 81<162.544 387.194> 622 78<232.03 485.598> 740 207 +VStem: 74 91<458.576 567.539> 189 223 449 90<124.411 240.321> +LayerCount: 4 +Fore +Refer: 148 180 N 1 0 0 1 69.0002 191 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 76.1719 190.918 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +EndChar + +StartChar: sacute +Encoding: 347 347 296 +Width: 497 +VWidth: 0 +Flags: W +HStem: 0 73<112.539 330.762> 408 73<295.706 414.2> 549 207 +VStem: 80 85 150 223 360 85 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 30 0 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +330.078 756.348 m 29 + 152.344 598.145 l 29 + 191.406 549.316 l 29 + 375 703.125 l 29 + 330.078 756.348 l 29 +EndSplineSet +Refer: 7 115 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 297 +Width: 599 +VWidth: 0 +Flags: W +HStem: -9 81<162.544 387.194> 622 78<232.03 485.598> 761 182 +VStem: 74 91<458.576 567.539> 154 263 449 90<124.411 240.321> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -61.9998 191 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 -4.88281 190.918 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +EndChar + +StartChar: scircumflex +Encoding: 349 349 298 +Width: 497 +VWidth: 0 +Flags: W +HStem: 0 73<112.539 330.762> 408 73<295.706 414.2> 549 182 +VStem: 80 85 140.2 263 360 85 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -75.8 -21 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 -82.5195 -20.9961 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Scedilla +Encoding: 350 350 299 +Width: 599 +VWidth: 0 +Flags: W +HStem: -247.275 52.275<208.451 347.138> -9 81<162.544 387.194> 622 78<232.03 485.598> +VStem: 74 91<458.576 567.539> 449 90<124.411 240.321> +LayerCount: 4 +Fore +SplineSet +318 -66 m 1 + 367.449 -81.7339 405.451 -98.951 405.451 -156.208 c 0 + 405.451 -207.747 359.086 -247.275 302.094 -247.275 c 0 + 289.874 -247.275 276.832 -245.829 263 -243 c 0 + 254 -241 234 -236 203 -227 c 2 + 186 -222 l 1 + 201 -171 l 1 + 215 -175 l 2 + 262 -189 291 -195 303 -195 c 0 + 327 -194 342 -187 348 -172 c 0 + 357.736 -150.58 339.772 -133.886 328 -128 c 0 + 321 -125 312 -122 302 -119 c 2 + 236 -99 l 1 + 266 12 l 1 + 337 9 l 1 + 318 -66 l 1 +EndSplineSet +Refer: 55 83 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +322.998 11.8623 m 1 + 393.311 8.93262 l 1 + 371.338 -77.9814 l 1 + 357.666 -61.3799 l 1 + 382.08 -68.7041 l 2 + 395.104 -72.6113 408.176 -76.7861 419.947 -83.5898 c 0 + 431.72 -90.3945 442.086 -99.7627 449.463 -111.185 c 0 + 456.506 -122.092 460.791 -134.751 461.901 -147.687 c 0 + 463.013 -160.622 460.99 -173.785 456.299 -185.892 c 0 + 450.284 -201.41 439.895 -215.165 426.801 -225.439 c 0 + 413.706 -235.713 397.959 -242.442 381.592 -245.462 c 0 + 361.141 -249.234 340.003 -247.281 319.655 -242.982 c 0 + 299.308 -238.682 279.458 -232.339 259.521 -226.419 c 0 + 253.992 -224.777 248.459 -223.148 242.92 -221.536 c 1 + 257.568 -170.755 l 1 + 262.443 -172.244 267.327 -173.708 272.217 -175.149 c 0 + 287.362 -179.613 302.548 -183.952 317.846 -187.861 c 0 + 333.144 -191.771 348.717 -195.548 364.502 -195.169 c 0 + 372.729 -194.971 381.042 -193.472 388.369 -189.727 c 0 + 395.697 -185.981 401.912 -179.836 405.029 -172.22 c 0 + 407.113 -167.127 407.791 -161.471 406.984 -156.027 c 0 + 406.179 -150.584 403.908 -145.393 400.635 -140.97 c 0 + 395.912 -134.587 389.213 -129.878 382.047 -126.46 c 0 + 374.88 -123.043 367.227 -120.785 359.619 -118.509 c 2 + 292.725 -98.4893 l 1 + 322.998 11.8623 l 1 +EndSplineSet +Refer: 55 83 N 1 0 0 1 0 0 3 +EndChar + +StartChar: scedilla +Encoding: 351 351 300 +Width: 497 +VWidth: 0 +Flags: W +HStem: -242.556 46.556<156.325 300.107> 0 73<112.539 330.762> 408 73<295.706 414.2> +VStem: 80 85 303.977 47.674<-189.658 -126.299> 360 85 +LayerCount: 4 +Fore +Refer: 126 184 S 1 0 0 1 -47.8 -0 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 126 184 S 1 0 0 1 -54.4434 -0.344727 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Tcommaaccent +Encoding: 354 354 301 +Width: 590 +VWidth: 0 +Flags: W +HStem: -250.75 51.75<219.644 356.923> 621 73<42 273 356 588> +VStem: 273 83<-67.2031 621> 360.375 54.804<-194.046 -137.081> +LayerCount: 4 +Fore +SplineSet +310 -199 m 0 + 337.799 -199 360.375 -188.43 360.375 -162.902 c 0 + 360.375 -154.551 356.811 -146.811 350 -140 c 0 + 344 -134 330 -128 307 -121 c 2 + 246 -102 l 1 + 261 -48 l 2 + 274.145 2.38844 273 8.50585 273 73 c 2 + 273 621 l 1 + 42 621 l 1 + 42 694 l 1 + 588 694 l 1 + 588 621 l 1 + 356 621 l 1 + 356 78 l 2 + 356 16.6432 355.348 5.19239 341 -44 c 2 + 333 -71 l 1 + 374.752 -83.2799 415.179 -107.053 415.179 -157.618 c 0 + 415.179 -214.935 365.735 -250.75 309.093 -250.75 c 0 + 296.68 -250.75 283.348 -249.189 269 -246 c 0 + 261 -244 242 -239 212 -230 c 2 + 195 -225 l 1 + 210 -174 l 1 + 225 -179 l 1 + 269 -192 298 -199 310 -199 c 0 +EndSplineSet +Layer: 3 +SplineSet +356.445 680.176 m 1 + 356.445 78.125 l 2 + 356.445 57.4277 356.479 36.6768 354.178 16.1074 c 0 + 351.877 -4.46191 346.719 -24.5938 340.82 -44.4336 c 2 + 330.078 -80.5664 l 1 + 306.152 -63.4766 l 1 + 330.566 -70.8008 l 2 + 344.48 -74.9746 358.463 -79.3584 371.125 -86.4766 c 0 + 383.789 -93.5947 395.029 -103.469 402.832 -115.723 c 0 + 409.664 -126.453 413.803 -138.873 414.824 -151.552 c 0 + 415.846 -164.23 413.797 -177.112 409.18 -188.965 c 0 + 402.685 -205.641 391.134 -220.242 376.67 -230.781 c 0 + 362.207 -241.32 344.899 -247.726 327.148 -250 c 0 + 307.662 -252.496 287.833 -250.137 268.661 -245.85 c 0 + 249.489 -241.562 230.744 -235.58 211.914 -229.98 c 0 + 206.385 -228.336 200.852 -226.707 195.312 -225.098 c 1 + 210.449 -174.316 l 1 + 215.328 -175.795 220.211 -177.26 225.098 -178.711 c 0 + 239.538 -183 253.99 -187.262 268.558 -191.098 c 0 + 283.125 -194.936 297.926 -198.549 312.988 -198.73 c 0 + 322.02 -198.84 331.209 -197.551 339.375 -193.691 c 0 + 347.54 -189.831 354.55 -183.188 357.91 -174.805 c 0 + 360.249 -168.97 360.766 -162.416 359.336 -156.294 c 0 + 357.904 -150.173 354.559 -144.566 350.098 -140.137 c 0 + 344.404 -134.483 337.069 -130.765 329.562 -127.935 c 0 + 322.055 -125.106 314.316 -122.939 306.641 -120.605 c 2 + 245.605 -102.051 l 1 + 260.742 -47.8516 l 2 + 266.227 -28.2139 270.686 -8.22656 272.25 12.1025 c 0 + 273.815 32.4307 273.438 52.8535 273.438 73.2422 c 2 + 273.438 680.176 l 1 + 356.445 680.176 l 1 +41.5039 693.848 m 1 + 588.379 693.848 l 1 + 588.379 620.605 l 1 + 41.5039 620.605 l 1 + 41.5039 693.848 l 1 +EndSplineSet +EndChar + +StartChar: tcommaaccent +Encoding: 355 355 302 +Width: 387 +VWidth: 0 +Flags: W +HStem: -243.556 46.556<110.125 253.907> -9 68<205.76 345.524> 415 68<25 106 187 347> +VStem: 106 81<78.6659 415 483 603> 257.777 47.674<-190.658 -127.299> +LayerCount: 4 +Fore +Refer: 126 184 S 1 0 0 1 -94 -1 2 +Refer: 19 116 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 126 184 S 1 0 0 1 -68.6035 -0.770947 2 +Refer: 19 116 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Tcaron +Encoding: 356 356 303 +Width: 566 +VWidth: 0 +Flags: W +HStem: 0 21<241 324> 621 73<10 241 324 556> 761.1 182 +VStem: 164.3 262 241 83<0 621> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 36.0002 212 2 +Refer: 39 84 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 223 711 S 1 0 0 1 67.8711 211.914 2 +Refer: 39 84 N 1 0 0 1 0 0 3 +EndChar + +StartChar: tcaron +Encoding: 357 357 304 +Width: 387 +VWidth: 0 +Flags: W +HStem: -9 68<205.76 345.524> 415 68<25 106 187 347> 556 190<310 320> +VStem: 106 81<78.6659 415 483 603> 233 165 +LayerCount: 4 +Fore +Refer: 69 44 N 1 0 0 1 212 663 2 +Refer: 19 116 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 69 44 N 1 0 0 1 237.793 662.598 2 +Refer: 19 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Utilde +Encoding: 360 360 305 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 761.352 60.562<371.521 448.956> 850.086 59.562<220.194 296.691> +VStem: 81 83<137.119 694> 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 220 732 N 1 0 0 1 -17.0004 157 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 220 732 N 1 0 0 1 43.9453 156.738 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: utilde +Encoding: 361 361 306 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 547.352 60.562<325.521 402.956> 636.086 59.562<174.194 250.691> +VStem: 66 81<88 480> 391 82<83 480> +LayerCount: 4 +Fore +Refer: 220 732 S 1 0 0 1 -63 -57 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 220 732 S 1 0 0 1 -62.2559 -55.1758 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Umacron +Encoding: 362 362 307 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 766 63<132 537> +VStem: 81 83<137.119 694> 525 83<140.498 694> +LayerCount: 4 +Fore +SplineSet +132 829 m 1 + 537 829 l 1 + 537 766 l 1 + 132 766 l 1 + 132 829 l 1 +EndSplineSet +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +192.871 828.613 m 5 + 598.145 828.613 l 5 + 598.145 765.625 l 5 + 192.871 765.625 l 5 + 192.871 828.613 l 5 +EndSplineSet +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: umacron +Encoding: 363 363 308 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 588 63<26 318> +VStem: 66 81<88 480> 391 82<83 480> +LayerCount: 4 +Fore +SplineSet +26 651 m 1 + 318 651 l 1 + 318 588 l 1 + 26 588 l 1 + 26 651 l 1 +EndSplineSet +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +143.066 650.879 m 5 + 435.059 650.879 l 5 + 435.059 587.891 l 5 + 143.066 587.891 l 5 + 143.066 650.879 l 5 +EndSplineSet +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ubreve +Encoding: 364 364 309 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 764.73 67.0791<294.274 410.827> +VStem: 81 83<137.119 694> 203.2 305.6 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 93 216 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 N 1 0 0 1 111.816 211.919 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ubreve +Encoding: 365 365 310 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 550.73 67.0791<204.274 320.827> +VStem: 66 81<88 480> 113.2 305.6 391 82<83 480> +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 3 2 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 222 728 S 1 0 0 1 30.0293 0.00554321 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Uring +Encoding: 366 366 311 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 761 45<287.945 381.082> 936 44<288.347 379.241> +VStem: 81 83<137.119 694> 228 44<820.984 920.207> 397 45<821.898 919.659> 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 221 730 N 1 0 0 1 50.9996 212 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 221 730 N 1 0 0 1 111.85 211.914 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uring +Encoding: 367 367 312 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 549 45<215.945 309.082> 724 44<216.347 307.241> +VStem: 66 81<88 480> 156 44<608.984 708.207> 325 45<609.898 707.659> 391 82<83 480> +LayerCount: 4 +Fore +Refer: 221 730 S 1 0 0 1 -21 0 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 221 730 S 1 0 0 1 5.64907 0 2 +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 313 +Width: 975 +VWidth: 0 +Flags: W +HStem: 0 21<221.718 321.862 662.69 762.994> 674 20<10 105.003 442.997 539.175 877.168 965> 763 182 +VStem: 356 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 140 193 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 197.998 192.871 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 314 +Width: 817 +VWidth: 0 +Flags: W +HStem: 0 21<195.697 285.598 527.555 622.303> 462 20<27 118.485 365.614 457.139 699.515 791> 551 182 +VStem: 292 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 76 -19 2 +Refer: 11 119 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 75.9277 -18.5547 2 +Refer: 11 119 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 315 +Width: 568 +VWidth: 0 +Flags: W +HStem: 0 21<239 322> 674 20<10 120.334 452.456 558> 761 182 +VStem: 155 263 239 83<0 329> +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -60.9996 191 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 S 1 0 0 1 -22.7051 190.918 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 316 +Width: 507 +VWidth: 0 +Flags: W +HStem: 462 20<22 110.384 397.616 481> 549 182 +VStem: 130 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -86 -21 2 +Refer: 26 121 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 219 710 N 1 0 0 1 -55.6641 -20.9961 2 +Refer: 26 121 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Zacute +Encoding: 377 377 317 +Width: 578 +VWidth: 0 +Flags: W +HStem: 0 73<120 568> 621 73<24 436> 740 207 +VStem: 192 223 +LayerCount: 4 +Fore +Refer: 148 180 N 1 0 0 1 71.9996 191 2 +Refer: 38 90 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 89.3555 190.918 2 +Refer: 38 90 N 1 0 0 1 0 0 3 +EndChar + +StartChar: zacute +Encoding: 378 378 318 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 73<177 453> 408 73<73 336> 549 207 +VStem: 160 223 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 40 0 2 +Refer: 25 122 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +334.961 756.348 m 29 + 157.227 598.145 l 29 + 196.289 549.316 l 29 + 379.883 703.125 l 29 + 334.961 756.348 l 29 +EndSplineSet +Refer: 25 122 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 319 +Width: 578 +VWidth: 0 +Flags: W +HStem: 0 73<120 568> 621 73<24 436> 791 103<230 332> +VStem: 230 102<791 894> +LayerCount: 4 +Fore +Refer: 224 729 N 1 0 0 1 -7.0004 189 2 +Refer: 38 90 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 N 1 0 0 1 59.082 188.965 2 +Refer: 38 90 N 1 0 0 1 0 0 3 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 320 +Width: 526 +VWidth: 0 +Flags: W +HStem: 0 63<177 453> 419 63<73 336> 602 92<211 306> +VStem: 211 95<602 694> +LayerCount: 4 +Fore +SplineSet +211 694 m 1 + 306 694 l 1 + 306 602 l 1 + 211 602 l 1 + 211 694 l 1 +73 482 m 1 + 441 482 l 1 + 441 440 l 1 + 177 63 l 1 + 453 63 l 1 + 453 0 l 1 + 73 0 l 1 + 73 42 l 1 + 336 419 l 1 + 73 419 l 1 + 73 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +73.2422 482.422 m 25 + 440.918 482.422 l 17 + 440.918 439.941 l 1 + 177.246 62.9883 l 9 + 453.125 62.9883 l 25 + 453.125 0 l 25 + 73.2422 0 l 17 + 73.2422 42.4805 l 1 + 335.938 419.434 l 9 + 73.2422 419.434 l 25 + 73.2422 482.422 l 25 +211.426 693.848 m 1 + 306.152 693.848 l 1 + 306.152 601.562 l 1 + 211.426 601.562 l 1 + 211.426 693.848 l 1 +EndSplineSet +EndChar + +StartChar: gcommaaccent +Encoding: 291 291 321 +Width: 542 +VWidth: 1023 +Flags: W +HStem: -262 73 -1 73 407 73 565 190<296 306> +VStem: 219 165 406 80<-124 22 73 406> +LayerCount: 4 +Fore +Refer: 69 44 N 1 0 0 1 198 672 2 +Refer: 30 103 N 1 0 0 1 0 -1 2 +Layer: 3 +Refer: 69 44 N 1 0 0 1 197.754 672.363 2 +Refer: 30 103 N 1 0 0 1 0 -0.976562 2 +EndChar + +StartChar: eng +Encoding: 331 331 322 +Width: 574 +VWidth: 1023 +Flags: W +HStem: -168.67 67.391<251.305 385.964> 0 21G<88 168> 419.539 72.941<224.433 367.793> 462 20G<88 152.5> +VStem: 88 80<0 391.742> 406 80<-81.6817 377.368> +LayerCount: 4 +Fore +SplineSet +406 291 m 2xec + 406 373.414 374.131 419.539 295.932 419.539 c 0xec + 258.806 419.539 216.162 406.789 168 382 c 1 + 168 0 l 1 + 88 0 l 1 + 88 482 l 1 + 144 482 l 1xdc + 161 442 l 1 + 201 464 241 479 282 487 c 0 + 299.279 490.665 315.598 492.48 330.975 492.48 c 0 + 425.288 492.48 479.502 426.294 485 331 c 0 + 486 319 486 294 486 257 c 2 + 486 -8 l 2 + 486 -51 481 -82 472 -100 c 0 + 446.368 -148.417 414.284 -168.67 349.593 -168.67 c 0 + 327.854 -168.67 303.446 -165.937 277 -160 c 2 + 242 -151 l 1 + 254 -92 l 1 + 292 -98 l 2 + 304.398 -100.188 315.799 -101.279 326.196 -101.279 c 0 + 372.826 -101.279 399.276 -79.3369 405 -36 c 0 + 406 -29 406 -19 406 -5 c 2 + 406 291 l 2xec +EndSplineSet +Layer: 3 +SplineSet +278.809 486.328 m 0 + 316.094 494.009 355.789 494.521 391.334 480.893 c 0 + 426.88 467.264 456.176 438.508 470.703 403.32 c 0 + 480.103 380.547 483.843 355.812 485.288 331.219 c 0 + 486.733 306.623 486.328 281.961 486.328 257.324 c 2 + 486.328 -7.8125 l 2 + 486.328 -24.3945 486.24 -41.0371 483.921 -57.457 c 0 + 481.606 -73.876 477.029 -90.0664 469.369 -104.773 c 0 + 461.709 -119.479 450.978 -132.604 437.924 -142.83 c 0 + 424.871 -153.057 409.59 -160.33 393.555 -164.551 c 0 + 355.707 -174.514 315.613 -167.861 277.344 -159.668 c 0 + 265.414 -157.113 253.534 -154.329 241.699 -151.367 c 1 + 253.906 -91.7969 l 1 + 266.451 -93.8369 278.965 -96.0635 291.504 -98.1445 c 0 + 310.416 -101.283 329.885 -104.104 348.633 -100.098 c 0 + 358.609 -97.9648 368.197 -93.8457 376.373 -87.7422 c 0 + 384.547 -81.6387 391.236 -73.6055 395.959 -64.5625 c 0 + 400.682 -55.5195 403.441 -45.5371 404.825 -35.4297 c 0 + 406.209 -25.3223 406.25 -15.085 406.25 -4.88281 c 2 + 406.25 290.527 l 2 + 406.25 304.674 406.148 318.889 403.845 332.846 c 0 + 401.542 346.803 397 360.473 389.648 372.559 c 0 + 377.646 392.288 358.086 407.049 336.117 414.166 c 0 + 314.146 421.283 290.359 421.266 267.578 417.48 c 0 + 216.177 408.94 168.4 385.02 124.512 356.934 c 1 + 106.445 407.715 l 1 + 158.625 443.993 216.564 473.502 278.809 486.328 c 0 +87.8906 482.422 m 1 + 144.043 482.422 l 1 + 167.969 426.27 l 1 + 167.969 0 l 1 + 87.8906 0 l 1 + 87.8906 482.422 l 1 +EndSplineSet +EndChar + +StartChar: uni0237 +Encoding: 567 567 323 +Width: 255 +VWidth: 1023 +Flags: W +HStem: 462 20G<86 166.073> +VStem: 87.1071 80.8929<-154.237 482> +LayerCount: 4 +Fore +SplineSet +87.1071 -77.5661 m 0 + 87.1071 -75.4016 87.0714 -73.2129 87 -71 c 2 + 87 -68 l 1 + 86 482 l 1 + 166 482 l 1 + 168 -64 l 2 + 168 -131.744 162.384 -143.232 144 -180 c 0 + 123.609 -220.783 83.3186 -246.521 38 -263 c 1 + 8 -202 l 1 + 61.037 -176.928 87.1071 -136.048 87.1071 -77.5661 c 0 +EndSplineSet +Layer: 3 +SplineSet +167.969 -63.9648 m 6 + 167.969 -116.699 169.434 -214.844 38.0859 -262.695 c 5 + 7.8125 -202.148 l 5 + 95.2148 -161.133 86.9141 -80.0781 86.9141 -68.3594 c 6 + 85.9375 482.422 l 5 + 166.016 482.422 l 5 + 167.969 -63.9648 l 6 +EndSplineSet +EndChar + +StartChar: Eng +Encoding: 330 330 324 +Width: 804 +VWidth: 1023 +Flags: W +HStem: -179.062 68.341<444.88 590.701> 0 21G<142 225> 642.235 81.165<353.403 537.736> 675 20G<142 205.362> +VStem: 142 83<0 583.908> 619 83<-81.481 555.594> +LayerCount: 4 +Fore +SplineSet +450.737 642.235 m 0xec + 369.564 642.235 291.043 606.37 225 575 c 1 + 225 0 l 1 + 142 0 l 1 + 142 695 l 1 + 196 695 l 1xdc + 218 648 l 1 + 293.179 682.839 392.149 723.4 482.013 723.4 c 0 + 609.219 723.4 684.261 643.002 699 530 c 0 + 701 511 702 482 702 445 c 2 + 702 -8 l 2 + 702 -83.5164 688.629 -122.418 639 -154 c 0 + 618.068 -166.559 583.409 -179.062 545.941 -179.062 c 0 + 516.724 -179.062 479.625 -173.042 435 -161 c 1 + 447 -102 l 1 + 479.849 -108.111 505.111 -110.721 522.787 -110.721 c 0 + 577.064 -110.721 609.565 -83.4866 617 -41 c 0 + 619 -33 619 -21 619 -5 c 2 + 619 410 l 2 + 619 491.793 615.916 534.761 581 582 c 0 + 550.882 622.157 507.379 642.235 450.737 642.235 c 0xec +EndSplineSet +Layer: 3 +SplineSet +183.594 554.688 m 1 + 158.203 620.117 l 1 + 214.357 647.612 271.523 673.276 330.566 693.848 c 0 + 392.195 715.322 458.04 730.952 522.48 720.635 c 0 + 554.702 715.479 586.001 703.589 612.627 684.722 c 0 + 639.253 665.859 660.859 640.103 675.293 610.84 c 0 + 687.778 585.532 694.951 557.827 698.516 529.834 c 0 + 702.08 501.841 702.148 473.533 702.148 445.312 c 2 + 702.148 -7.8125 l 2 + 702.148 -26.4756 701.953 -45.2471 698.604 -63.6074 c 0 + 695.254 -81.9688 688.735 -99.8438 678.579 -115.5 c 0 + 668.418 -131.156 654.717 -144.465 638.892 -154.357 c 0 + 623.066 -164.251 605.234 -170.748 586.914 -174.316 c 0 + 548.618 -181.775 508.95 -177.138 470.703 -169.434 c 0 + 458.742 -167.024 446.855 -164.247 435.059 -161.133 c 1 + 447.266 -101.562 l 1 + 459.747 -103.965 472.276 -106.137 484.863 -107.91 c 0 + 503.789 -110.576 523.052 -112.438 541.992 -109.863 c 0 + 554.009 -108.23 565.835 -104.705 576.431 -98.7979 c 0 + 587.021 -92.8906 596.284 -84.5859 603.169 -74.5996 c 0 + 610.049 -64.6133 614.473 -53.042 616.743 -41.1289 c 0 + 619.009 -29.2148 619.141 -17.0107 619.141 -4.88281 c 2 + 619.141 410.156 l 2 + 619.141 439.701 619.272 469.406 614.565 498.574 c 0 + 609.854 527.739 599.756 556.44 582.031 580.078 c 0 + 564.448 603.53 539.634 621.323 512.026 631.177 c 0 + 484.422 641.03 454.488 643.237 425.293 640.625 c 0 + 394.824 637.9 364.979 630.22 335.938 620.605 c 0 + 283.361 603.198 232.825 580.054 183.594 554.688 c 1 +141.602 694.824 m 1 + 195.801 694.824 l 1 + 224.609 633.789 l 1 + 224.609 0 l 1 + 141.602 0 l 1 + 141.602 694.824 l 1 +EndSplineSet +EndChar + +StartChar: Lslash +Encoding: 321 321 325 +Width: 514 +VWidth: 1023 +Flags: W +HStem: 0 73<163 474> 674 20<80 163> +VStem: 80 83<73 694> +LayerCount: 4 +Fore +SplineSet +9 314 m 1 + 290 477 l 1 + 290 393 l 1 + 9 230 l 1 + 9 314 l 1 +EndSplineSet +Refer: 33 76 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +71.2891 314.453 m 1 + 351.562 476.562 l 1 + 351.562 392.578 l 1 + 71.2891 230.469 l 1 + 71.2891 314.453 l 1 +EndSplineSet +Refer: 33 76 N 1 0 0 1 0 0 2 +EndChar + +StartChar: lslash +Encoding: 322 322 326 +Width: 335 +VWidth: 1023 +Flags: W +HStem: 0 21<118.4 198.4> 651 20<118.4 198.4> +VStem: 44 252 80.4004 80<0 671> +LayerCount: 4 +Fore +SplineSet +44 328 m 1xe0 + 296 474 l 1 + 296 401 l 1 + 44 255 l 1 + 44 328 l 1xe0 +EndSplineSet +Refer: 10 108 N 1 0 0 1 15 0 2 +Layer: 3 +SplineSet +43.9453 328.125 m 1 + 296.387 474.121 l 1 + 296.387 400.879 l 1 + 43.9453 255.371 l 1 + 43.9453 328.125 l 1 +EndSplineSet +Refer: 10 108 N 1 0 0 1 14.6484 0 2 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 327 +Width: 523 +VWidth: 0 +Flags: W +HStem: 0 21G<88 168 373.591 489> 462 20G<88 168 362.638 463> +VStem: 88 80<0 482> +LayerCount: 4 +Fore +SplineSet +88 482 m 1 + 168 482 l 1 + 168 0 l 1 + 88 0 l 1 + 88 482 l 1 +380 482 m 1 + 463 482 l 1 + 267 257 l 1 + 489 0 l 1 + 391 0 l 1 + 176 247 l 1 + 380 482 l 1 +EndSplineSet +Layer: 3 +SplineSet +380.371 482.422 m 1 + 463.379 482.422 l 1 + 245.117 232.422 l 1 + 265.137 259.277 l 1 + 489.258 0 l 1 + 391.113 0 l 1 + 175.781 247.07 l 1 + 380.371 482.422 l 1 +87.8906 482.422 m 1 + 167.969 482.422 l 1 + 167.969 0 l 1 + 87.8906 0 l 1 + 87.8906 482.422 l 1 +EndSplineSet +EndChar + +StartChar: napostrophe +Encoding: 329 329 328 +Width: 659 +VWidth: 1023 +Flags: W +HStem: 0 73 408 73 481.934 21G<36.0996 110.1> 673.934 20G<36.0996 110.1> +VStem: 36.0996 74.0004<481.934 693.934> 149 82<0 397> 487 81<0 392> +LayerCount: 4 +Fore +SplineSet +36.0996 693.934 m 5 + 110.1 693.934 l 5 + 110.1 481.934 l 5 + 36.0996 481.934 l 5 + 36.0996 693.934 l 5 +EndSplineSet +Refer: 5 110 N 1 0 0 1 83 0 2 +Layer: 3 +SplineSet +68.3594 694.336 m 1 + 141.602 694.336 l 1 + 141.602 482.422 l 1 + 68.3594 482.422 l 1 + 68.3594 694.336 l 1 +EndSplineSet +Refer: 5 110 N 1 0 0 1 83.0078 0 2 +EndChar + +StartChar: ogonek +Encoding: 731 731 329 +Width: 529 +VWidth: 0 +Flags: W +HStem: -266.126 65.038<304.694 404.323> 16 54<407.306 439.944> +VStem: 223.833 70.942<-191.831 -85.2867> +LayerCount: 4 +Fore +SplineSet +324.273 -266.126 m 0 + 264.52 -266.126 223.833 -221.525 223.833 -170.269 c 0 + 223.833 -128.474 237.169 -91.2469 260 -57 c 0 + 304 8 363 50 438 70 c 1 + 453 16 l 1 + 423 5 397 -9 374 -27 c 0 + 321.755 -67.8464 294.775 -107.79 294.775 -145.975 c 0 + 294.775 -178.665 314.491 -201.088 346.059 -201.088 c 0 + 367.468 -201.088 394.521 -191.247 427 -172 c 1 + 450 -216 l 1 + 405.474 -248.1 365.885 -266.126 324.273 -266.126 c 0 +EndSplineSet +Layer: 3 +SplineSet +438.477 70.3125 m 1 + 452.637 15.625 l 1 + 423.388 4.89941 395.746 -10.249 371.094 -29.2969 c 0 + 351.305 -44.5869 333.225 -62.291 318.821 -82.7354 c 0 + 311.619 -92.957 305.375 -103.912 300.975 -115.616 c 0 + 296.573 -127.32 294.023 -139.872 294.922 -152.344 c 0 + 295.865 -165.434 301.045 -178.447 310.547 -187.5 c 0 + 319.631 -196.155 332.188 -200.686 344.727 -201.172 c 0 + 360.561 -201.785 376.083 -196.723 390.625 -190.43 c 0 + 403.059 -185.05 415.062 -178.712 426.758 -171.875 c 1 + 450.195 -215.82 l 1 + 435.366 -226.502 419.708 -236.051 403.32 -244.141 c 0 + 380.354 -255.479 355.65 -264.17 330.078 -265.625 c 0 + 308.685 -266.842 286.67 -262.423 268.555 -250.977 c 0 + 253.247 -241.305 241.125 -226.829 233.791 -210.273 c 0 + 226.457 -193.719 223.771 -175.314 224.609 -157.227 c 0 + 226.33 -120.105 241.76 -84.6309 262.636 -53.8887 c 0 + 283.512 -23.1455 310.344 3.46191 340.82 24.7246 c 0 + 370.43 45.3828 403.626 60.8867 438.477 70.3125 c 1 +EndSplineSet +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 330 +Width: 806 +VWidth: 1023 +Flags: W +LayerCount: 4 +Fore +Refer: 148 180 N 0.996195 0.0871557 -0.0871557 0.996195 60 -21 2 +Refer: 148 180 N 0.996195 0.0871557 -0.0871557 0.996195 313 -21 2 +Layer: 3 +Refer: 148 180 N 0.996195 0.0871557 -0.0871557 0.996195 59.6001 -21.3175 2 +Refer: 148 180 N 0.996195 0.0871557 -0.0871557 0.996195 313.506 -21.3175 2 +EndChar + +StartChar: uni02EE +Encoding: 750 750 331 +Width: 407 +VWidth: 1023 +Flags: W +HStem: 529 209<54 144 244 334> +VStem: 54 90<529 738> 244 90<529 738> +LayerCount: 4 +Fore +Refer: 83 34 S 1 0 0 1 0 0 2 +Layer: 3 +Refer: 83 34 S 1 0 0 1 0 0 2 +EndChar + +StartChar: uni0302 +Encoding: 770 770 332 +Width: 0 +VWidth: 1023 +Flags: W +HStem: 537 215 +VStem: -391 326 +LayerCount: 4 +Fore +Refer: 90 94 S 1 0 0 1 -577 0 2 +Layer: 3 +Refer: 90 94 S 1 0 0 1 0 0 2 +EndChar + +StartChar: Tbar +Encoding: 358 358 333 +Width: 566 +VWidth: 1023 +Flags: W +HStem: 0 21<241 324> 294 74<92 499> 621 73<10 241 324 556> +VStem: 241 83<0 621> +LayerCount: 4 +Fore +SplineSet +92 368 m 1 + 499 368 l 1 + 499 294 l 1 + 92 294 l 1 + 92 368 l 1 +EndSplineSet +Refer: 39 84 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +124.023 367.676 m 1 + 530.762 367.676 l 1 + 530.762 294.434 l 1 + 124.023 294.434 l 1 + 124.023 367.676 l 1 +EndSplineSet +Refer: 39 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tbar +Encoding: 359 359 334 +Width: 387 +VWidth: 1023 +Flags: W +HStem: -9 68<205.76 345.524> 234 53<8 300> 415 68<25 106 187 347> +VStem: 106 81<78.6659 415 483 603> +LayerCount: 4 +Fore +SplineSet +8 287 m 1 + 300 287 l 1 + 300 234 l 1 + 8 234 l 1 + 8 287 l 1 +EndSplineSet +Refer: 19 116 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +34.1797 287.109 m 1 + 326.172 287.109 l 1 + 326.172 233.887 l 1 + 34.1797 233.887 l 1 + 34.1797 287.109 l 1 +EndSplineSet +Refer: 19 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Hbar +Encoding: 294 294 335 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 0 21<80 167 552 640> 311 75<167 552> 553 68<30 714> +VStem: 80 87<0 311 386 692> 552 88<0 311 386 692> +LayerCount: 4 +Fore +SplineSet +30 621 m 1 + 714 621 l 1 + 714 553 l 1 + 30 553 l 1 + 30 621 l 1 +EndSplineSet +Refer: 29 72 S 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +74.2188 620.605 m 5 + 757.812 620.605 l 5 + 757.812 553.223 l 5 + 74.2188 553.223 l 5 + 74.2188 620.605 l 5 +EndSplineSet +Refer: 29 72 S 1 0 0 1 0 0 2 +EndChar + +StartChar: hbar +Encoding: 295 295 336 +Width: 520 +VWidth: 1023 +Flags: W +HStem: 0 73 408 73 558 63<16 301> +VStem: 60 83<0 400 452 670> 390 82<0 395> +LayerCount: 4 +Fore +SplineSet +16 621 m 1 + 301 621 l 1 + 301 558 l 1 + 16 558 l 1 + 16 621 l 1 +EndSplineSet +Refer: 3 104 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +46.3867 620.605 m 1 + 330.566 620.605 l 1 + 330.566 557.617 l 1 + 46.3867 557.617 l 1 + 46.3867 620.605 l 1 +EndSplineSet +Refer: 3 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dcroat +Encoding: 273 273 337 +Width: 604 +VWidth: 1023 +Flags: W +HStem: 0 73 408 73 558 63<276 561> 651 20 +VStem: 56 85<138 347> 420 83<79 415 471 671> +LayerCount: 4 +Fore +SplineSet +276 621 m 1 + 561 621 l 1 + 561 558 l 1 + 276 558 l 1 + 276 621 l 1 +EndSplineSet +Refer: 1 100 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +276.367 620.605 m 1 + 560.547 620.605 l 1 + 560.547 557.617 l 1 + 276.367 557.617 l 1 + 276.367 620.605 l 1 +EndSplineSet +Refer: 1 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 338 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> +VStem: 50 94<222.236 467.906> 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 330 733 S 1 0 0 1 31 191 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 330 733 S 1 0 0 1 80.8306 190.935 2 +Refer: 31 79 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 339 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> +VStem: 46 83<137.066 343.078> 427 83<137.24 343.792> +LayerCount: 4 +Fore +SplineSet +292 756 m 1 + 337 703 l 1 + 153 549 l 1 + 114 598 l 1 + 292 756 l 1 +506 756 m 1 + 551 703 l 1 + 367 549 l 1 + 328 598 l 1 + 506 756 l 1 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +521.973 756.348 m 29 + 344.238 598.145 l 29 + 383.301 549.316 l 29 + 566.895 703.125 l 29 + 521.973 756.348 l 29 +307.617 756.348 m 29 + 129.883 598.145 l 29 + 168.945 549.316 l 29 + 352.539 703.125 l 29 + 307.617 756.348 l 29 +EndSplineSet +Refer: 6 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Aogonek +Encoding: 260 260 340 +Width: 675 +VWidth: 0 +Flags: W +HStem: -266.044 65.017<463.861 561.447> 0 21G<63 146.931> 202 72<235 471> 674 20G<302.882 411.118> +VStem: 381.891 71.109<-191.5 -91.799> +LayerCount: 4 +Fore +SplineSet +381.891 -167.071 m 0 + 381.891 -78.1021 476.067 11.2104 554 38 c 1 + 497 202 l 1 + 210 202 l 1 + 140 0 l 1 + 63 0 l 1 + 310 694 l 1 + 404 694 l 1 + 651 0 l 1 + 644 0 l 2 + 557.638 0 516.533 -32.7883 478 -86 c 0 + 461 -109 453 -129 453 -146 c 0 + 454.984 -179.723 473.456 -201.027 504.891 -201.027 c 0 + 534.404 -201.027 561.053 -184.772 585 -172 c 1 + 608 -216 l 1 + 560.439 -249.972 519.472 -266.044 481.443 -266.044 c 0 + 421.165 -266.044 381.891 -219.905 381.891 -167.071 c 0 +354 613 m 1 + 235 274 l 1 + 471 274 l 1 + 354 613 l 1 +EndSplineSet +Layer: 3 +SplineSet +353.298 612.891 m 1 + 235.576 274.414 l 1 + 471.26 274.414 l 1 + 353.298 612.891 l 1 +310.059 693.848 m 1 + 404.297 693.848 l 1 + 650.879 0 l 1 + 644.043 0 l 2 + 627.676 0 611.211 -0.325195 595.142 -3.44434 c 0 + 579.072 -6.5625 563.54 -12.3428 549.268 -20.3652 c 0 + 520.732 -36.4092 496.743 -59.9141 477.539 -86.4258 c 0 + 470.725 -95.832 464.615 -105.809 460.127 -116.521 c 0 + 455.64 -127.234 452.814 -138.779 453.125 -150.391 c 0 + 453.469 -163.244 458.011 -176.159 466.797 -185.547 c 0 + 473.879 -193.114 483.491 -198.162 493.652 -200.195 c 0 + 502.173 -201.9 511.016 -201.59 519.561 -200.018 c 0 + 528.105 -198.445 536.387 -195.662 544.434 -192.383 c 0 + 558.467 -186.664 571.909 -179.572 584.961 -171.875 c 1 + 608.398 -215.82 l 1 + 595.039 -225.432 581.021 -234.132 566.406 -241.699 c 0 + 538.867 -255.959 508.535 -266.636 477.539 -265.625 c 0 + 453.798 -264.851 430.012 -256.389 412.598 -240.234 c 0 + 400.658 -229.158 391.9 -214.781 387.086 -199.224 c 0 + 382.271 -183.666 381.309 -167.042 383.301 -150.879 c 0 + 386.463 -125.227 396.766 -100.829 410.404 -78.875 c 0 + 424.044 -56.9199 441.023 -37.1211 459.961 -19.5312 c 0 + 496.924 14.8018 543.071 41.2881 593.262 46.3867 c 0 + 603.477 47.4238 613.779 47.5908 624.023 46.875 c 1 + 562.012 13.6719 l 1 + 496.616 201.66 l 1 + 210.273 201.66 l 1 + 140.137 0 l 1 + 63.4766 0 l 1 + 310.059 693.848 l 1 +EndSplineSet +EndChar + +StartChar: aogonek +Encoding: 261 261 341 +Width: 521 +VWidth: 0 +Flags: W +HStem: -265.681 60.322<282.14 386.733> -8.5723 65.5188<168.891 308.045> 213 61<177.199 354> 418.919 66.081<111.721 315.671> +VStem: 59.95 79.926<84.6951 180.212> 204.814 69.905<-196.801 -104.97> 354 79<83.2771 213 274 382.234> +LayerCount: 4 +Fore +SplineSet +216.374 -8.5723 m 0 + 130.091 -8.5723 59.95 55.6831 59.95 127.679 c 0 + 59.95 163.125 73.9989 193.899 103 220 c 0 + 124 239 150 251 180 258 c 0 + 220 267 278 273 354 274 c 1 + 354 293 l 2 + 354 322 352 342 349 352 c 0 + 336.198 396.806 295.164 418.919 235.194 418.919 c 0 + 199.901 418.919 156.789 411.661 106 397 c 1 + 91 456 l 1 + 143 476 191 485 236 485 c 0 + 354 485 419 445 432 364 c 0 + 434 353 434 335 434 314 c 2 + 433 -22 l 1 + 387 -45 356 -62 339 -71 c 0 + 295.871 -95.3771 274.719 -123.27 274.719 -154.68 c 0 + 274.719 -185.934 294.999 -205.359 326.323 -205.359 c 0 + 347.64 -205.359 374.532 -196.71 407 -179 c 1 + 430 -219 l 1 + 382.1 -250.295 340.727 -265.681 304.837 -265.681 c 0 + 249.226 -265.681 204.814 -229.809 204.814 -173.559 c 0 + 204.814 -104.004 262.157 -47.847 375 4 c 1 + 359 42 l 1 + 309.25 8.53184 261.955 -8.5723 216.374 -8.5723 c 0 +139.876 135.704 m 0 + 139.876 81.8962 189.476 56.9465 243.169 56.9465 c 0 + 280.711 56.9465 317.355 69.9987 354 97 c 1 + 354 213 l 1 + 347 213 338 213 325 213 c 0 + 264 212 224 209 204 203 c 0 + 173.896 193.969 139.876 170.888 139.876 135.704 c 0 +EndSplineSet +Layer: 3 +SplineSet +367.676 273.926 m 1 + 367.188 213.867 l 1 + 327.79 212.897 288.301 213.674 249.023 210.449 c 0 + 232.644 209.104 216.244 206.787 200.605 201.734 c 0 + 184.967 196.682 169.994 188.689 158.691 176.758 c 0 + 146.024 163.387 138.451 144.807 140.137 126.465 c 0 + 141.127 115.688 145.223 105.287 151.371 96.3809 c 0 + 157.52 87.4746 165.678 80.0352 174.805 74.2188 c 0 + 192.572 62.8955 213.803 57.709 234.863 57.1289 c 0 + 264.393 56.3164 293.832 64.0566 320.312 77.1484 c 0 + 352.716 93.1689 380.899 117.52 401.855 146.973 c 1 + 424.805 97.168 l 1 + 394.524 65.5322 359.402 38.2939 320.312 18.5547 c 0 + 283.821 0.12793 242.883 -11.2646 202.148 -7.8125 c 0 + 175.592 -5.56152 149.58 3.00586 126.953 17.0898 c 0 + 108.438 28.6143 92.1016 43.8398 80.1953 62.1113 c 0 + 68.2891 80.3848 60.9082 101.742 60.0586 123.535 c 0 + 58.6445 159.802 75.8301 195.695 103.027 219.727 c 0 + 126.891 240.812 157.422 253.096 188.457 260.23 c 0 + 219.492 267.365 251.4 269.859 283.203 271.484 c 0 + 311.338 272.922 339.507 273.599 367.676 273.926 c 1 +90.8203 456.055 m 1 + 109 462.891 127.601 468.604 146.484 473.145 c 0 + 179.164 481.002 212.709 485.477 246.32 485.598 c 0 + 279.931 485.719 313.955 481.59 345.215 469.238 c 0 + 374.277 457.755 400.645 437.854 416.016 410.645 c 0 + 424.141 396.261 429.143 380.23 431.631 363.899 c 0 + 434.121 347.567 434.153 330.973 434.082 314.453 c 2 + 432.617 -21.9727 l 1 + 404.324 -36.5283 375.718 -50.5293 348.145 -66.4062 c 0 + 329.885 -76.9209 311.947 -88.5693 297.713 -104.104 c 0 + 290.596 -111.871 284.479 -120.637 280.32 -130.316 c 0 + 276.162 -139.996 274.008 -150.636 274.902 -161.133 c 0 + 275.94 -173.32 281.401 -185.215 290.527 -193.359 c 0 + 299.785 -201.621 312.305 -205.672 324.707 -206.055 c 0 + 340.647 -206.547 356.3 -201.759 371.094 -195.801 c 0 + 383.323 -190.875 395.183 -185.059 406.738 -178.711 c 1 + 430.176 -219.238 l 1 + 415.227 -229.02 399.57 -237.735 383.301 -245.117 c 0 + 359.683 -255.834 334.503 -263.975 308.594 -265.137 c 0 + 287.791 -266.07 266.471 -262.043 248.535 -251.465 c 0 + 234.078 -242.938 222.104 -230.247 214.502 -215.282 c 0 + 206.902 -200.317 203.68 -183.264 204.59 -166.504 c 0 + 206.309 -134.871 222.373 -105.325 243.838 -82.0254 c 0 + 265.303 -58.7266 291.866 -40.6816 319.336 -24.9023 c 0 + 345.293 -9.99121 372.318 3.02148 399.902 14.6484 c 1 + 388.184 -25.8789 l 1 + 353.516 56.1523 l 1 + 353.516 293.457 l 2 + 353.516 313.106 354.367 333.115 349.121 352.051 c 0 + 346.325 362.144 341.681 371.741 335.305 380.05 c 0 + 328.929 388.358 320.908 395.354 312.012 400.879 c 0 + 289.889 414.621 263.188 419.323 237.145 419.556 c 0 + 211.104 419.787 185.183 415.863 159.668 410.645 c 0 + 141.603 406.949 123.691 402.51 105.957 397.461 c 1 + 90.8203 456.055 l 1 +EndSplineSet +EndChar + +StartChar: Eogonek +Encoding: 280 280 342 +Width: 626 +VWidth: 0 +Flags: W +HStem: -265 65<399.581 501.679> 0 73<225 435> 321 73<225 521> 621 73<225 548> +VStem: 142 83<73 321 394 621> 322 69.969<-191.833 -93.5666> +LayerCount: 4 +Fore +SplineSet +391.969 -148.936 m 0 + 391.969 -184.446 414.253 -200 450 -200 c 0 + 468 -200 492 -190 524 -171 c 1 + 547 -215 l 1 + 502 -248 461 -264 421 -265 c 0 + 398 -265 379 -261 364 -250 c 0 + 336 -230 322 -204 322 -171 c 0 + 322 -138 330 -109 347 -83 c 0 + 364 -57 390 -31 426 -6 c 2 + 435 0 l 1 + 142 0 l 1 + 142 694 l 1 + 548 694 l 1 + 548 621 l 1 + 225 621 l 1 + 225 394 l 1 + 521 394 l 1 + 521 321 l 1 + 225 321 l 1 + 225 73 l 1 + 548 73 l 1 + 548 14 l 1 + 462 -47 l 1 + 415 -82.2503 391.969 -116.542 391.969 -148.936 c 0 +EndSplineSet +Layer: 3 +SplineSet +141.602 0 m 1 + 141.602 693.848 l 1 + 548.34 693.848 l 1 + 548.34 620.605 l 1 + 224.609 620.605 l 1 + 224.609 394.043 l 1 + 521.484 394.043 l 1 + 521.484 320.801 l 1 + 224.609 320.801 l 1 + 224.609 73.2422 l 1 + 548.34 73.2422 l 1 + 547.852 13.6719 l 1 + 519.556 -6.93555 490.435 -26.4033 462.402 -47.3633 c 0 + 443.238 -61.6914 424.488 -77.1631 410.645 -96.6797 c 0 + 399.306 -112.664 391.284 -131.785 392.09 -151.367 c 0 + 392.379 -158.373 393.849 -165.357 396.704 -171.762 c 0 + 399.56 -178.166 403.822 -183.953 409.18 -188.477 c 0 + 418.57 -196.408 431.068 -200.071 443.359 -200.195 c 0 + 455.003 -200.312 466.525 -197.629 477.539 -193.848 c 0 + 493.818 -188.258 509.263 -180.402 523.926 -171.387 c 1 + 547.363 -215.332 l 1 + 534.238 -225.029 520.361 -233.725 505.859 -241.211 c 0 + 479.479 -254.828 450.586 -264.898 420.898 -265.137 c 0 + 399.691 -265.307 378.136 -259.831 360.84 -247.559 c 0 + 347.994 -238.443 337.753 -225.781 331.205 -211.455 c 0 + 324.658 -197.13 321.723 -181.278 321.777 -165.527 c 0 + 321.885 -134.848 332.839 -104.793 349.609 -79.1016 c 0 + 369.059 -49.3076 397.238 -26.4297 426.27 -5.85938 c 2 + 511.719 54.6875 l 1 + 508.789 0 l 1 + 141.602 0 l 1 +EndSplineSet +EndChar + +StartChar: eogonek +Encoding: 281 281 343 +Width: 538 +VWidth: 0 +Flags: W +HStem: -266 60.25<298.341 402.215> -11.093 62.9967<229.93 307> 16 54<399.64 435.815> 199 60<145 397> 417.426 69.618<207.053 348.232> +VStem: 63 80<129.623 199 259 340.11> 220 69.586<-197.736 -89.5661> 397.273 77.727<259 366.969> +LayerCount: 4 +Fore +SplineSet +297.431 -11.093 m 0xdf + 141.248 -11.093 63 71.061 63 227 c 0 + 63 337.3 115.694 425.347 187 461 c 0 + 222.803 478.901 254.456 487.044 289.253 487.044 c 0 + 393.42 487.044 453.625 430.251 469 338 c 0 + 473 316 475 285 475 246 c 2 + 475 199 l 1 + 143 199 l 1 + 144 166 155 138 175 116 c 0 + 212.962 73.456 262.92 51.9037 325.153 51.9037 c 0xdf + 358.001 51.9037 394.27 57.9083 434 70 c 1 + 448 16 l 1xbf + 415 5 387 -11 364 -31 c 0 + 314.66 -73.8238 289.586 -114.048 289.586 -151.671 c 0 + 289.586 -187.3 309.254 -205.75 342.5 -205.75 c 0 + 369.531 -205.75 401.511 -190.952 422 -179 c 1 + 445 -220 l 1 + 398 -251 355 -266 315 -266 c 0 + 256.414 -266 220 -221.475 220 -169 c 0 + 220 -116 249 -63 307 -11 c 1 + 303.787 -11.0618 300.597 -11.093 297.431 -11.093 c 0xdf +397.273 273.107 m 0 + 397.273 365.62 358.733 417.426 269.671 417.426 c 0 + 218.867 417.426 184.826 381.602 165 345 c 0 + 152 321 146 292 145 259 c 1 + 397 259 l 1 + 397.182 263.818 397.273 268.521 397.273 273.107 c 0 +EndSplineSet +Layer: 3 +SplineSet +288.574 416.992 m 0 + 261.783 418.895 234.129 413.277 211.426 398.926 c 0 + 192.4 386.9 177.476 369.038 166.992 349.121 c 0 + 152.503 321.594 145.485 290.382 145.02 259.277 c 1 + 396.973 259.277 l 1 + 397.535 279.705 396.349 300.229 392.578 320.312 c 0 + 388.662 341.172 381.426 361.847 368.164 378.418 c 0 + 358.681 390.268 346.299 399.714 332.524 406.088 c 0 + 318.751 412.461 303.713 415.917 288.574 416.992 c 0 +291.992 486.816 m 0 + 315.916 487.194 340.016 483.991 362.579 476.031 c 0 + 385.145 468.072 406.021 455.12 422.59 437.857 c 0 + 448.42 410.943 462.566 374.598 468.949 337.844 c 0 + 474.199 307.613 474.609 276.776 474.609 246.094 c 2 + 474.609 198.73 l 1 + 143.066 198.73 l 1 + 143.973 166.851 156.867 135.6 178.111 111.813 c 0 + 196.718 90.9824 221.164 75.8066 247.364 66.1279 c 0 + 271.427 57.2383 297.103 52.9414 322.754 52.7344 c 0 + 335.284 52.6338 347.812 53.46 360.26 54.9004 c 0 + 372.775 56.3486 385.221 58.4062 397.553 60.9883 c 0 + 409.856 63.5654 422.048 66.6777 434.082 70.3125 c 1 + 448.242 15.625 l 1 + 415.725 4.62012 385.376 -12.7402 359.375 -35.1562 c 0 + 340.717 -51.2422 324.06 -69.7754 310.94 -90.627 c 0 + 304.381 -101.051 298.738 -112.105 294.846 -123.791 c 0 + 290.955 -135.478 288.82 -147.899 290.039 -160.156 c 0 + 290.785 -167.658 292.836 -175.07 296.442 -181.69 c 0 + 300.049 -188.311 305.24 -194.077 311.523 -198.242 c 0 + 319.564 -203.572 329.229 -206.166 338.867 -206.543 c 0 + 354.967 -207.172 370.783 -202.273 385.742 -196.289 c 0 + 398.119 -191.338 410.137 -185.517 421.875 -179.199 c 1 + 445.312 -219.727 l 1 + 433.729 -227.48 421.659 -234.512 409.18 -240.723 c 0 + 379.82 -255.334 347.73 -266.182 314.941 -265.625 c 0 + 295.145 -265.289 275.14 -260.191 258.789 -249.023 c 0 + 246.013 -240.297 235.739 -228.015 229.172 -214.005 c 0 + 222.605 -199.996 219.675 -184.418 219.727 -168.945 c 0 + 219.803 -146.041 226.17 -123.455 235.877 -102.709 c 0 + 245.584 -81.9648 258.629 -62.8828 273.438 -45.4102 c 0 + 301.826 -11.916 336.562 16.0029 374.512 38.0859 c 1 + 422.852 9.76562 l 1 + 397.957 1.19531 372.17 -4.76855 346.049 -8.07227 c 0 + 328.774 -10.2568 311.357 -11.3047 293.945 -11.2305 c 0 + 252.651 -11.0547 210.721 -4.74707 173.533 13.2061 c 0 + 139.885 29.4512 111.151 55.8672 92.7891 88.4082 c 0 + 71.0576 126.92 63.6055 172.089 63.4766 216.309 c 0 + 63.3125 272.921 73.7168 330.804 102.359 379.636 c 0 + 123.387 415.485 154.925 445.147 192.268 463.393 c 0 + 223.191 478.502 257.578 486.273 291.992 486.816 c 0 +EndSplineSet +EndChar + +StartChar: Iogonek +Encoding: 302 302 344 +Width: 356 +VWidth: 0 +Flags: W +HStem: -266.108 65.04<94.7634 194.502> 674 20G<156 239> +VStem: 15 70.325<-192.171 -90.5854> 156 83<13.125 694> +LayerCount: 4 +Fore +SplineSet +110.693 -266.108 m 0 + 54.4268 -266.108 15 -218.947 15 -173 c 0 + 15 -119 37 -70 84 -26 c 0 + 105 -6 130 11 156 24 c 1 + 156 694 l 1 + 239 694 l 1 + 239 15 l 1 + 166 -25 119 -65 98 -105 c 0 + 89.55 -120.6 85.325 -134.932 85.325 -148.272 c 0 + 85.325 -182.334 108.228 -201.068 139.031 -201.068 c 0 + 160.383 -201.068 185.503 -191.089 217 -172 c 1 + 241 -216 l 1 + 194.104 -249.348 153.28 -266.108 110.693 -266.108 c 0 +EndSplineSet +Layer: 3 +SplineSet +156.25 693.848 m 1 + 239.258 693.848 l 1 + 239.258 14.6484 l 1 + 197.575 -8.08887 157.082 -34.2988 124.512 -68.8477 c 0 + 114.192 -79.7939 104.82 -91.7344 97.6641 -104.967 c 0 + 90.5078 -118.199 85.5439 -132.906 85.4492 -147.949 c 0 + 85.4043 -155.126 86.5078 -162.338 89.0137 -169.062 c 0 + 91.5195 -175.788 95.4531 -181.996 100.586 -187.012 c 0 + 109.836 -196.05 122.816 -200.744 135.742 -201.172 c 0 + 151.056 -201.679 166.08 -196.923 180.176 -190.918 c 0 + 192.976 -185.465 205.304 -178.947 217.285 -171.875 c 1 + 240.723 -215.82 l 1 + 228.281 -224.84 215.236 -233.034 201.66 -240.234 c 0 + 175.172 -254.283 146.188 -265.017 116.211 -265.625 c 0 + 93.1152 -266.094 69.5303 -259.756 51.2695 -245.605 c 0 + 39.3145 -236.342 29.8398 -223.974 23.709 -210.147 c 0 + 17.5791 -196.321 14.7334 -181.14 14.6484 -166.016 c 0 + 14.498 -139.271 22.6924 -112.915 35.3145 -89.3359 c 0 + 47.9365 -65.7578 64.9971 -44.6973 84.4727 -26.3672 c 0 + 117.191 4.42676 156.783 27.7168 199.219 42.4805 c 1 + 156.25 0.976562 l 1 + 156.25 693.848 l 1 +EndSplineSet +EndChar + +StartChar: iogonek +Encoding: 303 303 345 +Width: 255 +VWidth: 0 +Flags: W +HStem: -270.523 64.976<19.9105 122.531> 462 20G<88 168> 602 92<81 175> +VStem: -60.1875 69.9467<-195.627 -89.6225> 81 94<602 694> 88 80<27.6183 482> +LayerCount: 4 +Fore +SplineSet +43.0527 -270.523 m 0xf4 + -18.213 -270.523 -60.1875 -233.904 -60.1875 -169.363 c 0 + -60.1875 -130.323 -47.2295 -96.8736 -25 -63 c 0 + 4 -19 42 15 88 40 c 1 + 88 482 l 1 + 168 482 l 1 + 168 11 l 1 + 137 0 110 -15 87 -33 c 0 + 34.9408 -73.7008 9.75924 -112.61 9.75924 -151.423 c 0 + 9.75924 -184.118 30.9527 -205.547 62.1577 -205.547 c 0 + 90.1515 -205.547 119.536 -189.096 142 -177 c 1 + 166 -220 l 1 + 119.722 -254.99 87.8516 -270.523 43.0527 -270.523 c 0xf4 +81 694 m 1xf8 + 175 694 l 1 + 175 602 l 1 + 81 602 l 1 + 81 694 l 1xf8 +EndSplineSet +Layer: 3 +SplineSet +80.5664 693.848 m 1 + 175.293 693.848 l 1 + 175.293 601.562 l 1 + 80.5664 601.562 l 1 + 80.5664 693.848 l 1 +87.8906 482.422 m 1 + 167.969 482.422 l 1 + 167.969 10.7422 l 1 + 137.936 0.000976562 109.586 -15.4922 84.4727 -35.1562 c 0 + 64.9727 -50.4248 47.2129 -68.1182 33.165 -88.5156 c 0 + 26.1416 -98.7148 20.083 -109.636 15.8594 -121.276 c 0 + 11.6348 -132.916 9.25195 -145.372 10.2539 -157.715 c 0 + 11.3223 -170.869 16.6836 -183.904 26.3672 -192.871 c 0 + 35.4082 -201.242 47.7451 -205.598 60.0586 -206.055 c 0 + 75.8896 -206.643 91.3916 -201.543 105.957 -195.312 c 0 + 118.344 -190.015 130.342 -183.84 142.09 -177.246 c 1 + 165.527 -220.215 l 1 + 149.883 -231.781 133.234 -242.012 115.723 -250.488 c 0 + 94.2246 -260.896 71.1875 -268.797 47.3633 -270.508 c 0 + 24.9551 -272.117 1.75 -267.609 -17.0898 -255.371 c 0 + -32.1328 -245.6 -43.9883 -231.152 -51.1465 -214.704 c 0 + -58.3037 -198.256 -60.9043 -180.027 -60.0586 -162.109 c 0 + -58.334 -125.549 -43.3516 -90.5674 -23.0264 -60.1289 c 0 + -2.70117 -29.6885 23.4541 -3.22852 53.2227 18.0664 c 0 + 78.7168 36.3027 106.967 50.6797 136.719 60.5469 c 1 + 87.8906 9.27734 l 1 + 87.8906 482.422 l 1 +EndSplineSet +EndChar + +StartChar: Uogonek +Encoding: 370 370 346 +Width: 771 +VWidth: 0 +Flags: W +HStem: -266.108 63.643<401.62 502.68> -11 73<304.816 400> 674 20G<142 225 586 669> +VStem: 142 83<141.178 694> 321 70.146<-193.065 -88.127> 586 83<139.22 694> +LayerCount: 4 +Fore +SplineSet +416.277 -266.108 m 0 + 354.914 -266.108 321 -219.88 321 -166 c 0 + 321 -132 329 -102 346 -75 c 0 + 363 -48 381 -27 400 -11 c 1 + 251.529 -11 154.467 57.0364 143 187 c 0 + 141 208 141 230 141 255 c 0 + 141 280 142 296 142 303 c 2 + 142 694 l 1 + 225 694 l 1 + 225 244 l 2 + 225 181.579 232.05 149.819 263 115 c 0 + 292.873 81.3927 343.401 62 405 62 c 0 + 491.716 62 560.322 101.025 579 172 c 0 + 584 191 586 215 586 244 c 2 + 586 694 l 1 + 669 694 l 1 + 669 223 l 1 + 667.541 135.461 644.035 75.3567 594 42 c 0 + 579 32 558 20 532 7 c 0 + 491 -13 460 -32 442 -51 c 0 + 408.329 -87.3288 391.146 -118.947 391.146 -146.55 c 0 + 391.146 -178.591 412.243 -202.465 443.227 -202.465 c 0 + 464.681 -202.465 491.343 -191.905 523 -171 c 1 + 547 -216 l 1 + 503.142 -249.416 461.907 -266.108 416.277 -266.108 c 0 +EndSplineSet +Layer: 3 +SplineSet +141.602 693.848 m 1 + 224.609 693.848 l 1 + 224.609 244.141 l 2 + 224.609 221.554 225.033 198.742 230.465 176.818 c 0 + 235.896 154.895 246.291 134.129 261.23 117.188 c 0 + 278.756 97.3145 302.079 82.9951 327.104 74.2871 c 0 + 352.13 65.5801 378.776 62.0117 405.273 62.0117 c 0 + 431.771 62.0117 458.417 65.5801 483.442 74.2871 c 0 + 508.467 82.9951 531.792 97.3145 549.316 117.188 c 0 + 564.258 134.129 574.653 154.895 580.083 176.818 c 0 + 585.513 198.742 585.938 221.554 585.938 244.141 c 2 + 585.938 693.848 l 1 + 668.945 693.848 l 1 + 668.945 302.734 l 2 + 668.945 250.477 672.656 197.455 661.133 146.484 c 0 + 656.133 124.355 647.729 102.873 635.142 84 c 0 + 622.549 65.127 605.811 49.1797 586.914 36.6211 c 0 + 568.472 24.3643 548.184 15.2197 528.188 5.70996 c 0 + 508.193 -3.79883 488.457 -14.1143 470.703 -27.3438 c 0 + 458.766 -36.2383 447.697 -46.2832 437.5 -57.1289 c 0 + 424.541 -70.9121 412.724 -85.9297 403.908 -102.669 c 0 + 395.093 -119.408 389.334 -138.51 392.09 -157.227 c 0 + 393.73 -168.372 398.668 -179.152 406.738 -187.012 c 0 + 416.115 -196.145 429.299 -200.788 442.383 -201.172 c 0 + 456.46 -201.585 470.353 -197.688 483.398 -192.383 c 0 + 497.246 -186.752 510.42 -179.535 522.949 -171.387 c 1 + 546.875 -216.309 l 1 + 533.379 -226.498 518.994 -235.527 503.906 -243.164 c 0 + 478.367 -256.09 450.491 -265.443 421.875 -266.113 c 0 + 397.557 -266.683 372.527 -259.906 354.004 -244.141 c 0 + 342.781 -234.588 334.195 -222.068 328.833 -208.34 c 0 + 323.471 -194.612 321.227 -179.777 321.289 -165.039 c 0 + 321.438 -130.016 333.551 -95.6572 352.051 -65.918 c 0 + 384.307 -14.0645 438.1 23.6768 497.559 37.5977 c 1 + 504.883 0.488281 l 1 + 444.875 -11.8203 382.443 -14.8652 322.266 -3.41797 c 0 + 288.572 2.99121 255.514 14.5557 227.051 33.6914 c 0 + 188.246 59.7812 160.338 101.019 149.414 146.484 c 0 + 137.202 197.312 141.602 250.459 141.602 302.734 c 2 + 141.602 693.848 l 1 +EndSplineSet +EndChar + +StartChar: uogonek +Encoding: 371 371 347 +Width: 576 +VWidth: 0 +Flags: W +HStem: -265.149 59.79<339.497 443.575> -10.0526 71.7141<209.11 354.428> 462 20G<89.8444 170 409 489> +VStem: 88 82<103.93 482> 260.824 69.317<-195.969 -106.54> 409 80<90.1281 482> +LayerCount: 4 +Fore +SplineSet +359.257 -265.149 m 0 + 300.219 -265.149 260.824 -224.196 260.824 -172.757 c 0 + 260.824 -114.607 300.388 -66.915 376 -24 c 0 + 393 -15 411 -6 431 3 c 1 + 416 40 l 1 + 377 18 336 3 295 -5 c 0 + 277.928 -8.3626 261.726 -10.0526 246.412 -10.0526 c 0 + 202.519 -10.0526 165.912 3.82915 137 32 c 0 + 90.6001 75.1999 88 131.68 88 225 c 2 + 90 482 l 1 + 170 482 l 1 + 170 191 l 2 + 170 109.871 202.433 61.6615 279.813 61.6615 c 0 + 317.232 61.6615 360.294 74.931 409 100 c 1 + 409 482 l 1 + 489 482 l 1 + 489 -22 l 1 + 442 -46 412 -62 396 -71 c 0 + 367 -88 347 -107 337 -129 c 0 + 332.389 -138.99 330.141 -148.389 330.141 -157.085 c 0 + 330.141 -184.377 353.448 -205.359 382.957 -205.359 c 0 + 403.988 -205.359 430.532 -196.71 463 -179 c 1 + 486 -219 l 1 + 440.958 -248.33 401.667 -265.149 359.257 -265.149 c 0 +EndSplineSet +Layer: 3 +SplineSet +89.8438 482.422 m 1 + 169.922 482.422 l 1 + 170.41 191.406 l 2 + 170.434 177.263 170.555 163.053 172.855 149.098 c 0 + 175.156 135.143 179.679 121.469 187.012 109.375 c 0 + 198.989 89.6211 218.543 74.8301 240.521 67.7129 c 0 + 262.498 60.5957 286.298 60.6406 309.082 64.4531 c 0 + 360.469 73.0518 408.219 96.9883 452.148 125 c 1 + 470.215 74.2188 l 1 + 418.348 37.4346 360.214 8.02637 297.852 -4.39453 c 0 + 260.406 -11.8525 220.646 -12.0723 184.977 1.54492 c 0 + 149.309 15.1631 119.656 43.5742 104.492 78.6133 c 0 + 94.6904 101.262 90.4922 125.976 88.8438 150.599 c 0 + 87.1963 175.222 87.7031 199.932 87.8906 224.609 c 2 + 89.8438 482.422 l 1 +408.691 482.422 m 1 + 488.77 482.422 l 1 + 488.77 -21.7969 l 1 + 461.51 -36.0234 433.949 -49.707 407.227 -64.918 c 0 + 388.465 -75.5977 369.955 -87.3027 355.131 -102.996 c 0 + 347.719 -110.842 341.305 -119.719 336.906 -129.576 c 0 + 332.508 -139.434 330.172 -150.323 331.055 -161.081 c 0 + 332.055 -173.275 337.518 -185.189 346.68 -193.299 c 0 + 355.955 -201.51 368.479 -205.465 380.859 -205.828 c 0 + 396.605 -206.292 412.088 -201.723 426.758 -195.984 c 0 + 439.162 -191.132 451.189 -185.342 462.891 -178.98 c 1 + 486.328 -219.253 l 1 + 471.421 -229.125 455.754 -237.862 439.453 -245.207 c 0 + 416.275 -255.648 391.595 -263.5 366.211 -264.896 c 0 + 344.948 -266.064 323.072 -262.217 304.688 -251.471 c 0 + 290.047 -242.914 277.936 -230.071 270.334 -214.912 c 0 + 262.73 -199.753 259.635 -182.479 260.742 -165.556 c 0 + 262.812 -133.926 279.137 -104.533 300.738 -81.3369 c 0 + 322.341 -58.1406 348.957 -40.1631 376.465 -24.4141 c 0 + 403.519 -8.9248 431.699 4.55078 460.449 16.6016 c 1 + 436.035 -8.30078 l 1 + 408.691 55.6641 l 1 + 408.691 482.422 l 1 +EndSplineSet +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 348 +Width: 689 +VWidth: 0 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> +VStem: 81 83<137.119 694> 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 330 733 S 1 0 0 1 -8.00039 186 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 330 733 S 1 0 0 1 53.2227 186.035 2 +Refer: 51 85 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 349 +Width: 520 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 +VStem: 66 81<88 480> 391 82<83 480> +LayerCount: 4 +Fore +SplineSet +410 756 m 1 + 455 703 l 1 + 271 549 l 1 + 232 598 l 1 + 410 756 l 1 +186 756 m 1 + 231 703 l 1 + 47 549 l 1 + 8 598 l 1 + 186 756 l 1 +EndSplineSet +Refer: 14 117 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +302.734 756.348 m 29 + 125 598.145 l 29 + 164.062 549.316 l 29 + 347.656 703.125 l 29 + 302.734 756.348 l 29 +526.855 756.348 m 29 + 349.121 598.145 l 29 + 388.184 549.316 l 29 + 571.777 703.125 l 29 + 526.855 756.348 l 29 +EndSplineSet +Refer: 14 117 N 1 0 0 1 0 0 3 +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 350 +Width: 219 +VWidth: 1023 +Flags: W +HStem: 482 212<105 139> +VStem: 44 156 +LayerCount: 4 +Fore +SplineSet +139 694 m 1 + 200 482 l 1 + 105 482 l 1 + 44 694 l 1 + 139 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +139.16 693.848 m 5 + 43.9453 693.848 l 5 + 104.98 482.422 l 5 + 200.195 482.422 l 5 + 139.16 693.848 l 5 +EndSplineSet +EndChar + +StartChar: uni201F +Encoding: 8223 8223 351 +Width: 405 +VWidth: 1023 +Flags: W +HStem: 482 212<195 229 381 415> +LayerCount: 4 +Fore +SplineSet +325 694 m 1 + 386 482 l 1 + 291 482 l 1 + 229 694 l 1 + 325 694 l 1 +139 694 m 1 + 200 482 l 1 + 105 482 l 1 + 44 694 l 1 + 139 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +139.16 693.848 m 5 + 43.9453 693.848 l 5 + 104.98 482.422 l 5 + 200.195 482.422 l 5 + 139.16 693.848 l 5 +324.707 693.848 m 5 + 229.492 693.848 l 5 + 290.527 482.422 l 5 + 385.742 482.422 l 5 + 324.707 693.848 l 5 +EndSplineSet +EndChar + +StartChar: exclamdbl +Encoding: 8252 8252 352 +Width: 634 +VWidth: 0 +Flags: W +HStem: 0 98<110 208 427 525> 674 20<117 200 434 517> +VStem: 110 98<0 98> 117 83<224 694> 427 98<0 98> 434 83<224 694> +LayerCount: 4 +Fore +Refer: 12 33 N 1 0 0 1 317 0 2 +Refer: 12 33 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 12 33 N 1 0 0 1 317.383 0 2 +Refer: 12 33 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni204B +Encoding: 8267 8267 353 +Width: 653 +VWidth: 1023 +Flags: W +HStem: 0 21<92 175 293 376.06> 665 73<175 293> +VStem: 92 83<0 665> 293 83<0 336.969> 293 297<448.802 646.908> +LayerCount: 4 +Fore +Refer: 106 182 N -1 0 0 1 653 0 2 +Layer: 3 +Refer: 106 182 N -1 0 0 1 653.32 0 2 +EndChar + +StartChar: minute +Encoding: 8242 8242 354 +Width: 197 +VWidth: 0 +Flags: W +HStem: 529 209<54 144> +VStem: 54 90<529 738> +LayerCount: 4 +Fore +Refer: 84 39 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 84 39 N 1 0 0 1 0 0 3 +EndChar + +StartChar: second +Encoding: 8243 8243 355 +Width: 395 +VWidth: 0 +Flags: W +HStem: 529 209<54 144 252 342> +VStem: 54 90<529 738> 252 90<529 738> +LayerCount: 4 +Fore +Refer: 354 8242 N 1 0 0 1 198 0 2 +Refer: 354 8242 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 354 8242 N 1 0 0 1 197.754 0 2 +Refer: 354 8242 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni2034 +Encoding: 8244 8244 356 +Width: 593 +VWidth: 0 +Flags: W +HStem: 529 209<54 144 252 342 450 540> +VStem: 54 90<529 738> 252 90<529 738> 450 90<529 738> +CounterMasks: 1 70 +LayerCount: 4 +Fore +Refer: 354 8242 N 1 0 0 1 396 0 2 +Refer: 354 8242 N 1 0 0 1 198 0 2 +Refer: 354 8242 N 1 0 0 1 0 0 2 +Layer: 3 +Refer: 354 8242 N 1 0 0 1 395.508 0 2 +Refer: 354 8242 N 1 0 0 1 197.754 0 2 +Refer: 354 8242 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni2035 +Encoding: 8245 8245 357 +Width: 197 +VWidth: 1023 +Flags: W +HStem: 482 212<68 129> +VStem: 34 130 +LayerCount: 4 +Fore +SplineSet +34 694 m 1 + 129 694 l 1 + 164 482 l 1 + 68 482 l 1 + 34 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +34.1797 693.848 m 1 + 129.395 693.848 l 1 + 163.574 482.422 l 1 + 68.3594 482.422 l 1 + 34.1797 693.848 l 1 +EndSplineSet +EndChar + +StartChar: uni0191 +Encoding: 401 401 358 +Width: 609 +VWidth: 1023 +Flags: W +HStem: -274.929 65.929<-42.5198 109.072> 321 73<225 514> 621 73<225 543> +VStem: 142 83<-176.991 321 394 621> +LayerCount: 4 +Fore +SplineSet +225 -109 m 2 + 225 -217.986 168.054 -274.929 57.5288 -274.929 c 0 + 24.0527 -274.929 -12.1488 -269.158 -52 -257 c 1 + -40 -197 l 1 + -10.5 -205 15.5 -209 38 -209 c 0 + 105.639 -209 142 -171.958 142 -106 c 2 + 142 694 l 1 + 543 694 l 1 + 543 621 l 1 + 225 621 l 1 + 225 394 l 1 + 514 394 l 1 + 514 321 l 1 + 225 321 l 1 + 225 -109 l 2 +EndSplineSet +Layer: 3 +SplineSet +-52.2461 -256.836 m 1 + -40.0391 -197.266 l 1 + 78.0586 -229.453 141.602 -194.238 141.602 -106.445 c 2 + 141.602 693.848 l 1 + 543.457 693.848 l 1 + 543.457 620.605 l 1 + 224.609 620.605 l 1 + 224.609 394.043 l 1 + 514.16 394.043 l 1 + 514.16 320.801 l 1 + 224.609 320.801 l 1 + 224.609 -109.375 l 2 + 224.609 -278.809 84.4941 -298.826 -52.2461 -256.836 c 1 +EndSplineSet +EndChar + +StartChar: uni022C +Encoding: 556 556 359 +Width: 758 +VWidth: 0 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 767.663 60.761<440.178 507.514> 855.675 60.662<297.482 369.825> 985 73<188 593> +VStem: 50 94<222.236 467.906> 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 191 175 S 1 0 0 1 49 257 2 +Refer: 161 213 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 191 175 N 1 0 0 1 98.6724 257.408 2 +Refer: 161 213 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E6B +Encoding: 7787 7787 360 +Width: 387 +VWidth: 0 +Flags: W +HStem: -9 68<205.76 345.524> 415 68<25 106 187 347> 689 103<70 172> +VStem: 70 102<689 792> 106 81<78.6659 415 483 603> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -167 87 2 +Refer: 19 116 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 -141.113 87.4023 2 +Refer: 19 116 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E6A +Encoding: 7786 7786 361 +Width: 566 +VWidth: 0 +Flags: W +HStem: 0 21<241 324> 621 73<10 241 324 556> 825 103<240 342> +VStem: 240 102<825 928> 241 83<0 621> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 3.0002 223 2 +Refer: 39 84 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 34.668 222.656 2 +Refer: 39 84 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E02 +Encoding: 7682 7682 362 +Width: 622 +VWidth: 0 +Flags: W +HStem: 0 73<163 422.444> 339.516 60.4844<163 366.819> 630 64<163 386.71> 825 103<270 372> +VStem: 80 83<73 333 397 630> 270 102<825 928> 435 80<456.049 587.086> 490 82<131.524 273.431> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 33 223 2 +Refer: 50 66 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 94.9707 222.656 2 +Refer: 50 66 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E03 +Encoding: 7683 7683 363 +Width: 553 +VWidth: 0 +Flags: W +HStem: 0 73<176.849 341.916> 408 73<151.423 339.129> 651 20 825 103<263 365> +VStem: 65 85<77.1611 89 407 415.828> 263 102<825 928> 413 85<137.983 349.728> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 26 223 2 +Refer: 9 98 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 55.6577 222.656 2 +Refer: 9 98 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E0A +Encoding: 7690 7690 364 +Width: 708 +VWidth: 0 +Flags: W +HStem: 0 74<172 416.469> 620 73<172 414.961> 825 103<301 403> +VStem: 80 92<74 620> 301 102<825 928> 562 96<219.024 478.27> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 64 223 2 +Refer: 48 68 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 125.5 222.656 2 +Refer: 48 68 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 365 +Width: 975 +VWidth: 0 +Flags: W +HStem: 0 21<221.718 321.862 662.69 762.994> 674 20<10 105.003 442.997 539.175 877.168 965> 737 204 +VStem: 380 281 +LayerCount: 4 +Fore +Refer: 89 96 S 1 0 0 1 246 167 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 89 96 S 1 0 0 1 303.467 166.992 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 366 +Width: 975 +VWidth: 0 +Flags: W +HStem: 0 21<221.718 321.862 662.69 762.994> 674 20<10 105.003 442.997 539.175 877.168 965> 716 207 +VStem: 327 223 +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 207 167 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 148 180 S 1 0 0 1 264.404 167.48 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E0B +Encoding: 7691 7691 367 +Width: 576 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 651 20 825 103<229 331> +VStem: 56 85<138 347> 229 102<825 928> 420 83<79 415 471 671> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -8 223 2 +Refer: 1 100 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 -7.81528 222.656 2 +Refer: 1 100 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 368 +Width: 568 +VWidth: 0 +Flags: W +HStem: 0 21<239 322> 674 20<10 120.334 452.456 558> 737 204 +VStem: 152 281 239 83<0 329> +LayerCount: 4 +Fore +Refer: 89 96 S 1 0 0 1 18.0004 167 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 89 96 S 1 0 0 1 56.3965 166.992 2 +Refer: 42 89 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E1E +Encoding: 7710 7710 369 +Width: 521 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 321 73<163 452> 621 73<163 481> 825 103<225 327> +VStem: 80 83<0 321 394 621> 225 102<825 928> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -11.9998 223 2 +Refer: 35 70 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 49.5605 222.656 2 +Refer: 35 70 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E1F +Encoding: 7711 7711 370 +Width: 372 +VWidth: 0 +Flags: W +HStem: 0 21<95.9523 177> 419 63<25 95 176 337> 631.456 66.352<210.753 361.572> 791 103<180 282> +VStem: 95 81<0 419 482 598.066> 180 102<791 894> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -57 189 2 +Refer: 27 102 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 -30.923 188.943 2 +Refer: 27 102 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E40 +Encoding: 7744 7744 371 +Width: 835 +VWidth: 0 +Flags: W +HStem: 0 21<80 163 672 755> 674 20<80 207.546 635.216 755> 825 103<362 464> +VStem: 80 83<0 575> 362 102<825 928> 672 83<0 575> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 125 223 2 +Refer: 44 77 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 186.523 222.656 2 +Refer: 44 77 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E41 +Encoding: 7745 7745 372 +Width: 783 +VWidth: 0 +Flags: W +HStem: 0 73 408 73 592 103<348 450> +VStem: 60 82<0 400> 348 102<592 695> 349 81<0 382> 642 81<0 390> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 111 -10 2 +Refer: 17 109 S 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 139.648 -9.76562 2 +Refer: 17 109 S 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E56 +Encoding: 7766 7766 373 +Width: 589 +VWidth: 0 +Flags: W +HStem: 0 21<80 163> 287.862 72.1377<163 393.035> 621 73<163 399.783> 825 103<235 337> +VStem: 80 83<0 291 362.441 621> 235 102<825 928> 455.637 83.8975<421.027 569.074> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -2 223 2 +Refer: 49 80 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 59.5308 222.656 2 +Refer: 49 80 N 1 0 0 1 0 0 3 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 374 +Width: 817 +VWidth: 0 +Flags: W +HStem: 0 21<195.697 285.598 527.555 622.303> 462 20<27 118.485 365.614 457.139 699.515 791> +LayerCount: 4 +Fore +SplineSet +369 756 m 1 + 546 598 l 1 + 507 549 l 1 + 324 703 l 1 + 369 756 l 1 +EndSplineSet +Refer: 11 119 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +368.654 756.348 m 29 + 546.387 598.145 l 29 + 507.324 549.316 l 29 + 323.732 703.125 l 29 + 368.654 756.348 l 29 +EndSplineSet +Refer: 11 119 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E57 +Encoding: 7767 7767 375 +Width: 568 +VWidth: 0 +Flags: W +HStem: -261 73 -13 64<176 361> 423 68<200 363> 592 103<262 364> +VStem: 87 83<-261 11 66 404> 262 102<592 695> 436 85<134 344> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 25 -10 2 +Refer: 15 112 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 25.6019 -9.76562 2 +Refer: 15 112 N 1 0 0 1 0 0 3 +EndChar + +StartChar: wacute +Encoding: 7811 7811 376 +Width: 817 +VWidth: 0 +Flags: W +HStem: 0 21<195.697 285.598 527.555 622.303> 462 20<27 118.485 365.614 457.139 699.515 791> +LayerCount: 4 +Fore +SplineSet +511 756 m 1 + 556 703 l 1 + 372 549 l 1 + 333 598 l 1 + 511 756 l 1 +EndSplineSet +Refer: 11 119 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +510.742 756.348 m 29 + 333.01 598.145 l 29 + 372.072 549.316 l 29 + 555.664 703.125 l 29 + 510.742 756.348 l 29 +EndSplineSet +Refer: 11 119 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E60 +Encoding: 7776 7776 377 +Width: 599 +VWidth: 0 +Flags: W +HStem: -9 81<162.544 387.194> 622 78<232.03 485.598> 825 103<259 361> +VStem: 74 91<458.576 567.539> 259 102<825 928> 449 90<124.411 240.321> +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 22.0002 223 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 79.1016 222.656 2 +Refer: 55 83 N 1 0 0 1 0 0 3 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 378 +Width: 507 +VWidth: 0 +Flags: W +HStem: 462 20<22 110.384 397.616 481> +LayerCount: 4 +Fore +SplineSet +217 756 m 1 + 395 598 l 1 + 356 549 l 1 + 172 703 l 1 + 217 756 l 1 +EndSplineSet +Refer: 26 121 N 1 0 0 1 0 0 3 +Layer: 3 +SplineSet +217.287 756.348 m 29 + 395.021 598.145 l 29 + 355.959 549.316 l 29 + 172.365 703.125 l 29 + 217.287 756.348 l 29 +EndSplineSet +Refer: 26 121 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 379 +Width: 975 +VWidth: 0 +Flags: W +HStem: 0 21<221.718 321.862 662.69 762.994> 674 20<10 105.003 442.997 539.175 877.168 965> 836 90<333 424 552 643> +VStem: 333 91<836 926> 552 91<836 926> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 195 233 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 252.686 233.398 2 +Refer: 53 87 N 1 0 0 1 0 0 3 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 380 +Width: 817 +VWidth: 0 +Flags: W +HStem: 0 21<195.697 285.598 527.555 622.303> 462 20<27 118.485 365.614 457.139 699.515 791> 604 90<259 350 478 569> +VStem: 259 91<604 694> 478 91<604 694> +LayerCount: 4 +Fore +Refer: 128 168 S 1 0 0 1 121 1 2 +Refer: 11 119 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 128 168 S 1 0 0 1 120.85 0.976562 2 +Refer: 11 119 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1E61 +Encoding: 7777 7777 381 +Width: 497 +VWidth: 0 +Flags: W +HStem: 0 73<112.539 330.762> 408 73<295.706 414.2> 592 103<216.2 318.2> +VStem: 80 85 216.2 102<592 695> 360 85 +LayerCount: 4 +Fore +Refer: 224 729 S 1 0 0 1 -20.8 -10 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +Layer: 3 +Refer: 224 729 S 1 0 0 1 -27.832 -9.76562 2 +Refer: 7 115 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uniFB00 +Encoding: 64256 64256 382 +Width: 672 +VWidth: 0 +Flags: HW +HStem: 0 21G<95.952 177 395.952 477> 419 63<25 95 176 395 476 638> 619 60<282.015 360.517 582.385 661.4> 631.456 66.352<210.753 361.572 510.94 662.072> +VStem: 95 81<0 419 482 598.066> 395 81<0 419 482 597.65> +LayerCount: 4 +Fore +SplineSet +581.354 631.456 m 0xdc + 523.811 631.456 485.538 599.201 478 559 c 0 + 477 552 476 541 476 528 c 2 + 476 482 l 1 + 638 482 l 1 + 638 419 l 1 + 476 419 l 1 + 477 0 l 1 + 396 0 l 1 + 395 419 l 1 + 176 419 l 1 + 177 0 l 1 + 96 0 l 1 + 95 419 l 1 + 25 419 l 1 + 25 482 l 1 + 95 482 l 1 + 95 531 l 2 + 95 573 100 604 110 622 c 0 + 138.782 672.368 187.379 697.808 255.791 697.808 c 0xdc + 296.645 697.808 338.183 689.145 372 679 c 1 + 359 619 l 1xec + 328.489 627.375 302.632 631.456 280.998 631.456 c 0 + 224.213 631.456 184.257 599.045 178 559 c 0 + 177 552 176 541 176 528 c 2 + 176 482 l 1 + 395 482 l 1 + 395 531 l 2 + 395 573 400 604 410 622 c 0 + 438.782 672.368 487.379 697.808 555.791 697.808 c 0xdc + 596.645 697.808 638.183 689.145 672 679 c 1 + 660 619 l 1xec + 629.489 627.375 603.274 631.456 581.354 631.456 c 0xdc +EndSplineSet +Layer: 3 +SplineSet +230.957 687.988 m 0 + 269.694 700.742 311.797 699.424 352.051 692.871 c 0 + 372.523 689.541 392.756 684.756 412.598 678.711 c 1 + 400.391 619.141 l 1 + 390.569 621.855 380.629 624.146 370.605 625.977 c 0 + 339.207 631.714 306.098 633.809 275.879 623.535 c 0 + 256.685 617.007 239.143 604.536 228.805 587.1 c 0 + 223.635 578.379 220.302 568.628 218.586 558.638 c 0 + 216.871 548.647 216.778 538.457 216.797 528.32 c 2 + 217.773 0 l 1 + 136.719 0 l 1 + 135.742 531.25 l 2 + 135.712 547.847 135.84 564.517 138.504 580.898 c 0 + 141.167 597.28 146.365 613.315 154.57 627.739 c 0 + 170.982 656.587 199.432 677.607 230.957 687.988 c 0 +631.348 687.988 m 0 + 670.083 700.742 712.188 699.424 752.441 692.871 c 0 + 772.915 689.541 793.145 684.756 812.988 678.711 c 1 + 800.781 619.141 l 1 + 790.962 621.855 781.021 624.146 770.996 625.977 c 0 + 739.6 631.714 706.489 633.809 676.27 623.535 c 0 + 657.075 617.007 639.531 604.536 629.194 587.1 c 0 + 624.023 578.379 620.693 568.628 618.979 558.638 c 0 + 617.261 548.647 617.168 538.457 617.188 528.32 c 2 + 618.164 0 l 1 + 537.109 0 l 1 + 536.133 531.25 l 2 + 536.104 547.847 536.23 564.517 538.896 580.898 c 0 + 541.558 597.28 546.758 613.315 554.961 627.739 c 0 + 571.372 656.587 599.824 677.607 631.348 687.988 c 0 +65.918 482.422 m 1 + 778.809 482.422 l 1 + 778.809 419.434 l 1 + 65.918 419.434 l 1 + 65.918 482.422 l 1 +EndSplineSet +LCarets2: 1 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f f +EndChar + +StartChar: uniFB01 +Encoding: 64257 64257 383 +Width: 572 +VWidth: 0 +Flags: HW +HStem: 0 21<95.9523 177 460 542> 419 63<25 95 176 337> 463 20<460 542> 586 83<460 542> 631.456 66.352<210.753 361.572> +VStem: 95 81<0 419 482 598.066> 460 82<0 483 586 669> +LayerCount: 4 +Fore +SplineSet +280.998 631.456 m 0 + 224.213 631.456 184.257 599.045 178 559 c 0 + 177 552 176 541 176 528 c 2 + 176 482 l 1 + 430 482 l 1 + 430 482.934 l 1 + 512 482.934 l 1 + 512 -0.0664062 l 1 + 430 -0.0664062 l 1 + 430 419 l 1 + 176 419 l 1 + 177 0 l 1 + 96 0 l 1 + 95 419 l 1 + 25 419 l 1 + 25 482 l 1 + 95 482 l 1 + 95 531 l 2 + 95 573 100 604 110 622 c 0 + 138.782 672.368 187.379 697.808 255.791 697.808 c 0 + 296.645 697.808 338.183 689.145 372 679 c 1 + 359 619 l 1 + 328.489 627.375 302.632 631.456 280.998 631.456 c 0 +430 668.934 m 1 + 512 668.934 l 1 + 512 585.934 l 1 + 430 585.934 l 1 + 430 668.934 l 1 +EndSplineSet +Layer: 3 +Refer: 4 105 N 1 0 0 1 400.391 0 2 +Refer: 27 102 N 1 0 0 1 0 0 2 +LCarets2: 1 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f i +EndChar + +StartChar: uniFB02 +Encoding: 64258 64258 384 +Width: 635 +VWidth: 0 +Flags: HW +HStem: 0 21<95.9523 177 476.4 556.4> 419 63<25 95 176 337> 631.456 66.352<210.753 361.572> 651 20<476.4 556.4> +VStem: 95 81<0 419 482 598.066> 438.4 80<0 671> +LayerCount: 4 +Fore +SplineSet +543.646 65.2197 m 0 + 562.646 65.2197 578.896 69.3867 601 76 c 1 + 601 14 l 1 + 583.646 8 550.646 -10 504 -10 c 0 + 441 -10 401 37 400 105 c 1 + 400.367 621.5 l 1 + 361 629.5 310.5 631.456 280.998 631.456 c 1 + 224.213 631.456 184.257 599.045 178 559 c 0 + 177 552 176 541 176 528 c 2 + 176 482 l 1 + 337 482 l 1 + 337 419 l 1 + 176 419 l 1 + 177 0 l 1 + 96 0 l 1 + 95 419 l 1 + 25 419 l 1 + 25 482 l 1 + 95 482 l 1 + 95 531 l 2 + 95 573 100 604 110 622 c 0 + 138.782 672.368 187.379 697.808 255.791 697.808 c 0 + 368 697.808 446.583 675.145 480.4 665 c 5 + 480.146 134.22 l 2 + 480.129 97 482.047 65.2197 543.646 65.2197 c 0 +EndSplineSet +Layer: 3 +Refer: 10 108 N 1 0 0 1 400.391 0 2 +Refer: 27 102 N 1 0 0 1 0 0 2 +LCarets2: 1 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f l +EndChar + +StartChar: uniFB03 +Encoding: 64259 64259 385 +Width: 884 +VWidth: 0 +Flags: HW +HStem: 0 21G<95.952 177 415.952 497 737 817> 419 63<25 95 176 415 496 658> 602 92<729 824> 619 60<282.015 360.517 602.385 681.4> 631.456 66.3516<210.753 361.572 530.94 682.072> +VStem: 95 81<0 419 482 598.066> 415 81<0 419 482 597.65> 729 95<602 694> 737 80<0 482> +LayerCount: 4 +Fore +SplineSet +592.354 631.456 m 0 + 534.811 631.456 496.538 599.201 489 559 c 0 + 488 552 487 541 487 528 c 2 + 487 482 l 1 + 737 482 l 1 + 739 482 l 1 + 817 482 l 1 + 817 0 l 1 + 737 0 l 1 + 737 419 l 1 + 487 419 l 1 + 488 0 l 1 + 407 0 l 1 + 406 419 l 1 + 176 419 l 1 + 177 0 l 1 + 96 0 l 1 + 95 419 l 1 + 25 419 l 1 + 25 482 l 1 + 95 482 l 1 + 95 531 l 2 + 95 573 100 604 110 622 c 0 + 138.782 672.368 187.379 697.808 255.791 697.808 c 0 + 296.645 697.808 338.183 689.145 372 679 c 1 + 359 619 l 1 + 328.489 627.375 302.632 631.456 280.998 631.456 c 0 + 224.213 631.456 184.257 599.045 178 559 c 0 + 177 552 176 541 176 528 c 2 + 176 482 l 1 + 406 482 l 1 + 406 531 l 2 + 406 573 411 604 421 622 c 0 + 449.782 672.368 498.379 697.808 566.791 697.808 c 0 + 607.645 697.808 649.183 689.145 683 679 c 1 + 671 619 l 1 + 640.489 627.375 614.274 631.456 592.354 631.456 c 0 +729 694 m 1 + 824 694 l 1 + 824 602 l 1 + 729 602 l 1 + 729 694 l 1 +EndSplineSet +Layer: 3 +SplineSet +65.918 482.422 m 5 + 778.809 482.422 l 5 + 778.809 419.434 l 5 + 65.918 419.434 l 5 + 65.918 482.422 l 5 +230.957 687.988 m 0 + 269.694 700.742 311.797 699.424 352.051 692.871 c 0 + 372.523 689.541 392.756 684.756 412.598 678.711 c 1 + 400.391 619.141 l 1 + 390.569 621.855 380.629 624.146 370.605 625.977 c 0 + 339.207 631.714 306.098 633.809 275.879 623.535 c 0 + 256.685 617.007 239.143 604.536 228.805 587.1 c 0 + 223.635 578.379 220.302 568.628 218.586 558.638 c 0 + 216.871 548.647 216.778 538.457 216.797 528.32 c 2 + 217.773 0 l 1 + 136.719 0 l 1 + 135.742 531.25 l 2 + 135.712 547.847 135.84 564.517 138.504 580.898 c 0 + 141.167 597.28 146.365 613.315 154.57 627.739 c 0 + 170.982 656.587 199.432 677.607 230.957 687.988 c 0 +631.348 687.988 m 0 + 670.083 700.742 712.188 699.424 752.441 692.871 c 0 + 772.915 689.541 793.145 684.756 812.988 678.711 c 1 + 800.781 619.141 l 1 + 790.962 621.855 781.021 624.146 770.996 625.977 c 0 + 739.6 631.714 706.489 633.809 676.27 623.535 c 0 + 657.075 617.007 639.531 604.536 629.194 587.1 c 0 + 624.023 578.379 620.693 568.628 618.979 558.638 c 0 + 617.261 548.647 617.168 538.457 617.188 528.32 c 2 + 618.164 0 l 1 + 537.109 0 l 1 + 536.133 531.25 l 2 + 536.104 547.847 536.23 564.517 538.896 580.898 c 0 + 541.558 597.28 546.758 613.315 554.961 627.739 c 0 + 571.372 656.587 599.824 677.607 631.348 687.988 c 0 +881.348 693.848 m 1 + 976.074 693.848 l 1 + 976.074 601.562 l 1 + 881.348 601.562 l 1 + 881.348 693.848 l 1 +888.672 482.422 m 1 + 968.75 482.422 l 1 + 968.75 0 l 1 + 888.672 0 l 1 + 888.672 482.422 l 1 +EndSplineSet +LCarets2: 2 0 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f uniFB01 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" uniFB00 i +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f f i +EndChar + +StartChar: uniFB04 +Encoding: 64260 64260 386 +Width: 946 +VWidth: 0 +Flags: HW +HStem: -10 75.2197<835.457 941.438> 0 21G<101.952 183 418.952 500> 419 63<25 101 182 418 499 661> 619 60<288.015 366.517 605.385 684.4> 631.456 66.352<216.753 367.572 533.94 685.072> 651 20G<746.986 827> +VStem: 101 81<0 419 482 598.066> 418 81<0 419 482 597.65> 746.6 80.145<74.7623 671> +LayerCount: 4 +Fore +SplineSet +604.354 631.456 m 0 + 546.811 631.456 508.538 599.201 501 559 c 0 + 500 552 499 541 499 528 c 2 + 499 482 l 1 + 661 482 l 1 + 661 419 l 1 + 499 419 l 1 + 500 0 l 1 + 419 0 l 1 + 418 419 l 1 + 182 419 l 1 + 183 0 l 1 + 102 0 l 1 + 101 419 l 1 + 25 419 l 1 + 25 482 l 1 + 101 482 l 1 + 101 531 l 2 + 101 573 106 604 116 622 c 0 + 144.782 672.368 193.379 697.808 261.791 697.808 c 0 + 302.645 697.808 344.183 689.145 378 679 c 1 + 365 619 l 1 + 334.489 627.375 308.632 631.456 286.998 631.456 c 0 + 230.213 631.456 190.257 599.045 184 559 c 0 + 183 552 182 541 182 528 c 2 + 182 482 l 1 + 418 482 l 1 + 418 531 l 2 + 418 573 423 604 433 622 c 0 + 461.782 672.368 510.379 697.808 578.791 697.808 c 0 + 695.55 697.808 762.183 681.145 796 671 c 1 + 795.745 134.22 l 2 + 795.745 97 797.646 65.2197 859.245 65.2197 c 0 + 878.245 65.2197 894.495 69.3867 916.6 76 c 1 + 916.6 14 l 1 + 899.245 8 866.245 -10 819.6 -10 c 0 + 756.6 -10 716.6 37 715.6 105 c 1 + 715.964 619.81 l 1 + 685.771 627.639 645.65 631.456 604.354 631.456 c 0 +EndSplineSet +Layer: 3 +SplineSet +65.918 482.422 m 1 + 778.809 482.422 l 1 + 778.809 419.434 l 1 + 65.918 419.434 l 1 + 65.918 482.422 l 1 +230.957 687.988 m 0 + 269.694 700.742 311.797 699.424 352.051 692.871 c 0 + 372.523 689.541 392.756 684.756 412.598 678.711 c 1 + 400.391 619.141 l 1 + 390.569 621.855 380.629 624.146 370.605 625.977 c 0 + 339.207 631.714 306.098 633.809 275.879 623.535 c 0 + 256.685 617.007 239.143 604.536 228.805 587.1 c 0 + 223.635 578.379 220.302 568.628 218.586 558.638 c 0 + 216.871 548.647 216.778 538.457 216.797 528.32 c 2 + 217.773 0 l 1 + 136.719 0 l 1 + 135.742 531.25 l 2 + 135.712 547.847 135.84 564.517 138.504 580.898 c 0 + 141.167 597.28 146.365 613.315 154.57 627.739 c 0 + 170.982 656.587 199.432 677.607 230.957 687.988 c 0 +631.348 687.988 m 0 + 670.083 700.742 712.188 699.424 752.441 692.871 c 0 + 772.915 689.541 793.145 684.756 812.988 678.711 c 1 + 800.781 619.141 l 1 + 790.962 621.855 781.021 624.146 770.996 625.977 c 0 + 739.6 631.714 706.489 633.809 676.27 623.535 c 0 + 657.075 617.007 639.531 604.536 629.194 587.1 c 0 + 624.023 578.379 620.693 568.628 618.979 558.638 c 0 + 617.261 548.647 617.168 538.457 617.188 528.32 c 2 + 618.164 0 l 1 + 537.109 0 l 1 + 536.133 531.25 l 2 + 536.104 547.847 536.23 564.517 538.896 580.898 c 0 + 541.558 597.28 546.758 613.315 554.961 627.739 c 0 + 571.372 656.587 599.824 677.607 631.348 687.988 c 0 +898.438 737.793 m 1 + 978.516 737.793 l 1 + 978.516 0 l 1 + 898.438 0 l 1 + 898.438 737.793 l 1 +EndSplineSet +LCarets2: 2 0 0 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f uniFB02 +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" uniFB00 l +Ligature2: "'liga' Standard Ligatures in Latin lookup 0-1" f f l +EndChar + +StartChar: H18533 +Encoding: 9679 9679 387 +Width: 680 +VWidth: 0 +Flags: W +HStem: 129.601 417.599<248.502 429.498> +VStem: 130.2 417.6<247.903 428.897> +LayerCount: 4 +Back +SplineSet +102 337 m 4 + 102 468.376 208.624 575 340 575 c 4 + 471.376 575 578 468.376 578 337 c 4 + 578 205.624 471.376 99 340 99 c 4 + 208.624 99 102 205.624 102 337 c 4 +EndSplineSet +Fore +SplineSet +130.2 338.4 m 4 + 130.2 453.657 223.742 547.2 339 547.2 c 4 + 454.258 547.2 547.8 453.657 547.8 338.4 c 4 + 547.8 223.143 454.258 129.601 339 129.601 c 4 + 223.742 129.601 130.2 223.143 130.2 338.4 c 4 +EndSplineSet +EndChar + +StartChar: circle +Encoding: 9675 9675 388 +Width: 859 +VWidth: 1023 +Flags: W +HStem: -7 65<322.611 537.072> 609 65<322.134 536.159> +VStem: 83 65<228.479 437.754> 711 65<228.645 438.102> +LayerCount: 4 +Fore +SplineSet +430 609 m 0 + 347.349 609 276.19 572.452 231 529 c 0 + 185.674 485.417 148 415.959 148 333 c 0 + 148 250.693 185.988 181.281 231 138 c 0 + 276.251 94.4893 347.259 58 430 58 c 0 + 512.849 58 582.789 94.5277 628 138 c 0 + 673.073 181.339 711 250.606 711 333 c 0 + 711 415.861 673.263 485.478 628 529 c 0 + 582.725 572.534 512.947 609 430 609 c 0 +428 674 m 0 + 529.516 674 617.596 629.673 673 576 c 0 + 728.939 521.809 776 436.04 776 333 c 0 + 776 230.871 729.636 145.897 674 92 c 0 + 618.362 38.1004 532.018 -7 430 -7 c 0 + 327.323 -7 241.838 37.9067 186 92 c 0 + 129.885 146.362 83 229.828 83 333 c 0 + 83 434.91 129.401 521.138 185 575 c 0 + 240.322 628.594 327.26 674 428 674 c 0 +EndSplineSet +EndChar + +StartChar: uni2759 +Encoding: 10073 10073 389 +Width: 585 +VWidth: 1023 +Flags: W +HStem: 0 21G<250.8 333.8> +VStem: 250.8 83<0 621> +LayerCount: 4 +Fore +SplineSet +333.8 621 m 5 + 333.8 0 l 5 + 250.8 0 l 5 + 250.8 621 l 5 + 333.8 621 l 5 +EndSplineSet +EndChar + +StartChar: uni232B +Encoding: 9003 9003 390 +Width: 656 +VWidth: 0 +Flags: W +HStem: 1.94336 91.3867<315.674 405.618 512.95 602.891> 380.547 91.387<315.674 404.66 515.239 602.891> +VStem: 602.891 118.322<93.3301 184.022 287.187 380.547> +LayerCount: 4 +Fore +SplineSet +681.704 471.934 m 6 + 707.677 471.934 721.213 453.572 721.213 432.766 c 6 + 721.213 41.1064 l 6 + 721.213 21.2227 704.192 2.8252 683.427 1.94336 c 6 + 246.4 1.94336 l 5 + 11.4053 236.938 l 5 + 246.4 471.934 l 5 + 681.704 471.934 l 6 +315.674 380.547 m 5 + 315.674 332.675 l 5 + 314.646 319.217 319.044 306.072 329.14 296.77 c 6 + 390.469 235.438 l 5 + 329.14 175.609 l 6 + 320.12 166.583 315.674 153.919 315.674 141.195 c 6 + 315.674 93.3301 l 5 + 363.545 93.3301 l 6 + 376.26 93.3301 388.933 97.7715 397.952 106.796 c 6 + 459.281 168.127 l 5 + 520.617 106.796 l 6 + 529.638 97.7715 542.311 93.3301 555.025 93.3301 c 6 + 602.891 93.3301 l 5 + 602.891 141.195 l 6 + 602.891 153.919 598.449 166.583 589.429 175.609 c 6 + 529.593 235.438 l 5 + 590.922 296.77 l 6 + 601.25 306.305 602.891 318.976 602.891 332.675 c 6 + 602.891 380.547 l 5 + 555.025 380.547 l 6 + 543.472 380.211 534.825 376.615 522.111 365.581 c 6 + 459.281 304.252 l 5 + 397.952 365.581 l 6 + 389.441 374.374 377.243 379.979 365.044 380.547 c 6 + 315.674 380.547 l 5 +EndSplineSet +EndChar + +StartChar: uni2328 +Encoding: 9000 9000 391 +Width: 625 +VWidth: 0 +Flags: W +LayerCount: 4 +Fore +SplineSet +574 471.935 m 2 + 50.5752 471.935 l 2 + 29.877 471.935 13.1895 454.505 13.1895 432.887 c 2 + 13.1895 42.3662 l 2 + 13.1895 20.748 29.877 3.31836 50.5752 3.31836 c 2 + 574 3.31836 l 2 + 594.697 3.31836 611.385 20.748 611.385 42.3662 c 2 + 611.385 432.887 l 2 + 611.385 454.505 594.697 471.935 574 471.935 c 2 +536.607 393.838 m 1 + 536.607 315.731 l 1 + 461.836 315.731 l 1 + 461.836 393.838 l 1 + 536.607 393.838 l 1 +424.443 393.838 m 1 + 424.443 315.731 l 1 + 349.664 315.731 l 1 + 349.664 393.838 l 1 + 424.443 393.838 l 1 +312.278 393.838 m 1 + 312.278 315.731 l 1 + 237.501 315.731 l 1 + 237.501 393.838 l 1 + 312.278 393.838 l 1 +200.115 393.838 m 1 + 200.115 315.731 l 1 + 125.353 315.731 l 1 + 125.353 393.838 l 1 + 200.115 393.838 l 1 +499.222 275.454 m 1 + 499.222 197.364 l 1 + 424.443 197.364 l 1 + 424.443 275.454 l 1 + 499.222 275.454 l 1 +387.059 275.454 m 1 + 387.059 197.364 l 1 + 312.278 197.364 l 1 + 312.278 275.454 l 1 + 387.059 275.454 l 1 +274.887 275.454 m 1 + 274.887 197.364 l 1 + 200.115 197.364 l 1 + 200.115 275.454 l 1 + 274.887 275.454 l 1 +162.738 275.454 m 1 + 162.738 197.364 l 1 + 87.958 197.364 l 1 + 87.958 275.454 l 1 + 162.738 275.454 l 1 +536.607 158.309 m 1 + 536.607 80.2021 l 1 + 461.836 80.2021 l 1 + 461.836 158.309 l 1 + 536.607 158.309 l 1 +424.443 158.309 m 1 + 424.443 80.2021 l 1 + 200.115 80.2021 l 1 + 200.115 158.309 l 1 + 424.443 158.309 l 1 +162.738 158.309 m 1 + 162.738 80.2021 l 1 + 50.5752 80.2021 l 1 + 50.5752 158.309 l 1 + 162.738 158.309 l 1 +EndSplineSet +EndChar + +StartChar: uni25FE +Encoding: 9726 9726 392 +Width: 680 +VWidth: 0 +Flags: W +HStem: 99 476<102 578> +VStem: 102 476<99 575> +LayerCount: 4 +Fore +SplineSet +578 99 m 1 + 102 99 l 1 + 102 575 l 1 + 578 575 l 1 + 578 99 l 1 +EndSplineSet +EndChar + +StartChar: afii10023 +Encoding: 1025 1025 393 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 760 90<128 219 347 438> +VStem: 80 83<73 321 394 621> 128 91<760 850> 347 91<760 850> +LayerCount: 4 +Fore +Refer: 399 1045 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -10 157 2 +EndChar + +StartChar: afii10017 +Encoding: 1040 1040 394 +Width: 628 +VWidth: 1023 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> +LayerCount: 4 +Fore +Refer: 32 65 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10018 +Encoding: 1041 1041 395 +Width: 623 +VWidth: 2048 +Flags: W +HStem: -1.46484 73.9902<162.81 425.35> 339.575 57.8213<167.05 410.519> 630.636 63.7002<162.81 519.04> +VStem: 80 82.8096<72.5254 333.329 397.396 630.636> 491.109 82.3203<129.302 272.476> +LayerCount: 4 +Fore +SplineSet +302.46 403.865 m 0 + 458.24 414.955 573.43 316.671 573.43 209.235 c 0 + 573.43 141.847 544.86 96.1689 506.79 62.2354 c 0 + 460.536 21.0176 394.69 -1.46484 305.399 -1.46484 c 2 + 80 -1.46484 l 1 + 80 694.336 l 1 + 519.04 694.336 l 1 + 519.04 630.636 l 1 + 162.81 630.636 l 1 + 162.81 397.396 l 1 + 195.149 397.396 l 2 + 213.067 397.396 282.655 402.455 302.46 403.865 c 0 +491.109 200.905 m 0 + 491.109 296.082 405.685 339.575 304.419 339.575 c 0 + 301.153 339.575 253.95 337.126 162.81 332.226 c 1 + 162.81 72.5254 l 1 + 215.893 72.5254 268.977 72.5254 322.06 72.5254 c 0 + 378.736 72.5254 435.459 89.6191 462.2 119.565 c 0 + 477.898 136.574 491.109 167.747 491.109 200.905 c 0 +EndSplineSet +EndChar + +StartChar: afii10019 +Encoding: 1042 1042 396 +Width: 622 +VWidth: 1023 +Flags: W +HStem: 0 73<163 422.444> 339.516 60.4844<163 366.819> 630 64<163 386.71> +VStem: 80 83<73 333 397 630> 435 80<456.049 587.086> 490 82<131.524 273.431> +LayerCount: 4 +Fore +Refer: 50 66 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10020 +Encoding: 1043 1043 397 +Width: 482 +VWidth: 2048 +Flags: W +HStem: 0 21G<80 162.81> 622.79 73.0107<162.81 475.43> +VStem: 80 82.8096<0 622.79> +LayerCount: 4 +Fore +SplineSet +80 0 m 1 + 80 695.801 l 1 + 475.43 695.801 l 1 + 475.43 622.79 l 1 + 162.81 622.79 l 1 + 162.81 0 l 1 + 80 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10021 +Encoding: 1044 1044 398 +Width: 682 +VWidth: 2048 +Flags: W +HStem: 1 83<159 513> 611 84<289 513> +VStem: 38 83<-159 1> 210 79<448.677 611> 513 83<84 611> 581 83<-159 1> +LayerCount: 4 +Back +SplineSet +695.455 -202.617 m 5xe8 + 615.104 -202.617 l 5 + 615.104 2.69141 l 5xe8 + 122.65 2.69141 l 5 + 122.65 -202.617 l 5 + 39.3496 -202.617 l 5 + 39.3496 85.0127 l 5 + 81.4902 85.0127 l 5 + 229.116 270.894 292.204 470.973 330.9 709.271 c 5 + 619.025 709.271 l 5 + 619.025 85.0127 l 5xf0 + 695.455 85.0127 l 5 + 695.455 -202.617 l 5xe8 +525.43 85.0117 m 5xf0 + 525.43 635.771 l 5 + 398.03 635.771 l 5 + 357.196 420.172 311.92 270.872 179.63 85.0117 c 5 + 525.43 85.0117 l 5xf0 +694.7 -203.907 m 5xe8 + 614.35 -203.907 l 5 + 614.35 1.40234 l 5xe8 + 121.895 1.40234 l 5 + 121.895 -203.907 l 5 + 38.5947 -203.907 l 5 + 38.5947 83.7227 l 5 + 80.7354 83.7227 l 5 + 126.795 144.482 164.77 206.059 194.66 268.453 c 4 + 224.55 330.847 248.642 393.238 266.935 455.633 c 4 + 290.455 536.973 311.525 621.09 330.145 707.982 c 5 + 618.27 707.982 l 5 + 618.27 83.7227 l 5xf0 + 694.7 83.7227 l 5 + 694.7 -203.907 l 5xe8 +524.675 83.7227 m 5xf0 + 524.675 634.482 l 5 + 397.275 634.482 l 5 + 356.441 418.883 288.308 235.297 178.875 83.7227 c 5 + 524.675 83.7227 l 5xf0 +EndSplineSet +Fore +SplineSet +121 1 m 1xf4 + 121 -159 l 1 + 38 -159 l 1 + 37 84 l 1 + 38 84 l 1 + 76 84 l 1 + 119 168 152 257 175 348 c 0 + 203 460 210 576 210 691 c 2 + 210 695 l 1 + 596 695 l 1 + 596 84 l 1xf8 + 664 84 l 1 + 664 -159 l 1 + 581 -159 l 1 + 581 1 l 1 + 121 1 l 1xf4 +513 611 m 1 + 289 611 l 17 + 289 523 278 434 258 348 c 0 + 236 257 203 168 159 84 c 1 + 513 84 l 1 + 513 611 l 1 +EndSplineSet +EndChar + +StartChar: afii10022 +Encoding: 1045 1045 399 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> +VStem: 80 83<73 321 394 621> +LayerCount: 4 +Fore +Refer: 34 69 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10024 +Encoding: 1046 1046 400 +Width: 962 +VWidth: 2048 +Flags: W +HStem: 678.95 20G<28.6201 150.36 439.24 523.521 812.401 934.141> +VStem: 439.24 84.2803<3.15039 698.95> +LayerCount: 4 +Fore +SplineSet +28.6201 698.95 m 1 + 132.99 698.95 l 1 + 427.48 359.87 l 1 + 117.311 3.15039 l 1 + 10 3.15039 l 1 + 322.13 366.729 l 1 + 28.6201 698.95 l 1 +439.24 698.95 m 1 + 440.71 698.95 l 1 + 522.051 698.95 l 1 + 523.521 698.95 l 1 + 523.521 3.15039 l 1 + 522.051 3.15039 l 1 + 440.71 3.15039 l 1 + 439.24 3.15039 l 1 + 439.24 698.95 l 1 +829.771 698.95 m 1 + 934.141 698.95 l 1 + 640.141 366.729 l 1 + 952.76 3.15039 l 1 + 845.45 3.15039 l 1 + 535.28 359.87 l 1 + 829.771 698.95 l 1 +EndSplineSet +EndChar + +StartChar: afii10025 +Encoding: 1047 1047 401 +Width: 623 +VWidth: 1023 +Flags: W +HStem: -21 79<107.95 375.792> 336 71<212 351.334> 627 77<148.815 394.46> +VStem: 468 85<135.719 272.241> +LayerCount: 4 +Back +SplineSet +314.838 338 m 5xf0 + 415.453 338 500 296.148 500 202 c 4 + 500 109.278 419.777 76 326 76 c 6 + 91 76 l 5 + 91 0 l 5 + 315 0 l 6 + 402 0 469 21 516 63 c 4 + 560 103 582 152 582 210 c 4xe8 + 582 301.279 514.426 373.223 435 388 c 5 + 475.964 403.605 525 470.422 525 527 c 5 + 521.828 632.473 422.6 694.336 334 694 c 5 + 91 694.336 l 29 + 91 627 l 29 + 306 627 l 6 + 389.969 629.344 445 595.153 445 523 c 4 + 445 444 384 407 261 404 c 5 + 158 404 l 13 + 158 338 l 21 + 314.838 338 l 5xf0 +314.838 338 m 1xf0 + 415.453 338 500 296.148 500 202 c 0 + 500 109.278 419.777 76 326 76 c 2 + 91 76 l 1 + 91 0 l 1 + 315 0 l 2 + 402 0 469 21 516 63 c 0 + 560 103 582 152 582 210 c 0xe8 + 582 301.279 514.426 373.223 435 388 c 1 + 475.964 403.605 525 470.422 525 527 c 1 + 521.828 632.473 422.6 694.336 334 694 c 1 + 91 694.336 l 25 + 91 627 l 25 + 306 627 l 2 + 389.969 629.344 445 595.153 445 523 c 0 + 445 444 384 407 261 404 c 1 + 158 404 l 9 + 158 338 l 17 + 314.838 338 l 1xf0 +445 523 m 4xf8 + 445 595.153 390.012 630 306 630 c 6 + 173 630 l 5 + 173 397 l 5 + 261 400 l 5 + 384 403 445 444 445 523 c 4xf8 +500 202 m 4 + 500 296.148 415.453 339.516 314.838 339.516 c 4 + 308.039 339.516 301.091 339.343 294 339 c 6 + 173 333 l 5 + 173 73 l 5 + 326 73 l 6 + 419.778 73 500 109.278 500 202 c 4 +435 388 m 5 + 514.426 373.223 582 301.279 582 210 c 4 + 582 152 560 103 516 63 c 4 + 469 21 402 0 315 0 c 6 + 90 0 l 5 + 90 694 l 5 + 334 694 l 6 + 443.235 694 525 632.273 525 527 c 4 + 525 470.422 475.964 403.605 435 388 c 5 +EndSplineSet +Refer: 50 66 N 1 0 0 1 0 0 2 +Refer: 50 66 N 1 0 0 1 0 0 2 +Refer: 50 66 N 1 0 0 1 0 0 2 +Refer: 50 66 N 1 0 0 1 0 0 2 +Refer: 50 66 N 1 0 0 1 0 0 2 +Fore +SplineSet +103 587 m 1 + 75 654 l 1 + 118 673 l 1 + 168 690 221 701 274 704 c 0 + 307 706 341 705 373 698 c 0 + 406 691 438 678 464 657 c 0 + 488 638 507 613 517 584 c 0 + 526 558 527 531 522 504 c 0 + 516 478 504 453 486 433 c 0 + 468 410 444 393 417 382 c 1 + 417 381 l 1 + 435 377 452 370 468 362 c 0 + 490 350 509 334 524 314 c 0 + 543 287 552 253 553 220 c 0 + 556 171 541 120 512 80 c 0 + 483 42 441 14 395 -2 c 0 + 350 -18 301 -23 253 -21 c 0 + 209 -20 165 -14 122 -3 c 0 + 102 2 82 9 63 17 c 1 + 85 85 l 1 + 103 78 121 73 139 69 c 0 + 183 59 228 55 272 58 c 0 + 303 59 335 64 364 75 c 0 + 393 85 420 103 440 127 c 0 + 454 145 464 167 468 190 c 0 + 471 213 467 237 456 257 c 0 + 448 273 436 286 421 296 c 0 + 407 306 391 314 374 319 c 0 + 341 330 305 332 270 333 c 0 + 251 334 231 335 212 336 c 1 + 212 407 l 1 + 235 409 259 412 282 415 c 0 + 317 419 352 425 383 442 c 0 + 398 451 412 462 422 476 c 0 + 432 490 439 507 440 524 c 0 + 441 550 429 575 411 593 c 0 + 395 608 374 617 353 622 c 0 + 332 627 310 627 288 627 c 0 + 247 626 207 622 167 611 c 0 + 145 605 124 597 103 587 c 1 +EndSplineSet +EndChar + +StartChar: afii10026 +Encoding: 1048 1048 402 +Width: 727 +VWidth: 2048 +Flags: W +LayerCount: 4 +Fore +SplineSet +647.915 696.285 m 1 + 542.565 696.285 l 1 + 163.301 113.68 l 1 + 163.301 696.285 l 1 + 80 696.285 l 1 + 80 0 l 1 + 185.351 0 l 1 + 564.615 583.59 l 1 + 564.615 0 l 1 + 647.915 0 l 1 + 647.915 696.285 l 1 +EndSplineSet +EndChar + +StartChar: afii10027 +Encoding: 1049 1049 403 +Width: 727 +VWidth: 2048 +Flags: W +HStem: 774.73 67.0791<319.274 435.827> +VStem: 228.2 305.6 +LayerCount: 4 +Fore +Refer: 222 728 S 1 0 0 1 118 226 2 +Refer: 402 1048 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10028 +Encoding: 1050 1050 404 +Width: 631 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163 466.584 591> 674 20<80 163 450.604 572> +VStem: 80 83<0 694> +LayerCount: 4 +Fore +Refer: 43 75 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10029 +Encoding: 1051 1051 405 +Width: 660 +VWidth: 1023 +Flags: W +HStem: 0 21G<20 156 492 580> 617 75<339.039 492> +VStem: 492 88<0 617> +LayerCount: 4 +Fore +SplineSet +580 692 m 1 + 580 0 l 1 + 492 0 l 1 + 492 617 l 1 + 342 617 l 1 + 279 356 205 171 107 0 c 1 + 20 0 l 1 + 128 205 219 412 279 692 c 1 + 580 692 l 1 +EndSplineSet +EndChar + +StartChar: afii10030 +Encoding: 1052 1052 406 +Width: 835 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163 672 755> 674 20<80 207.546 635.216 755> +VStem: 80 83<0 575> 672 83<0 575> +LayerCount: 4 +Fore +Refer: 44 77 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10031 +Encoding: 1053 1053 407 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 0 21<80 167 552 640> 311 75<167 552> +VStem: 80 87<0 311 386 692> 552 88<0 311 386 692> +LayerCount: 4 +Fore +Refer: 29 72 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10032 +Encoding: 1054 1054 408 +Width: 758 +VWidth: 1023 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> +VStem: 50 94<222.236 467.906> 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 31 79 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10033 +Encoding: 1055 1055 409 +Width: 706 +VWidth: 2048 +Flags: W +HStem: 0 21G<80 168.3 535.705 626.505> 622.3 73.5<168.3 535.705> +VStem: 80 88.2998<0 622.3> 535.705 90.7998<0 622.3> +LayerCount: 4 +Back +SplineSet +562 692 m 5 + 650 692 l 5 + 650 0 l 5 + 562 0 l 5 + 562 311 l 5 + 177 311 l 5 + 177 0 l 5 + 90 0 l 5 + 90 692 l 5 + 177 692 l 5 + 177 386 l 5 + 562 386 l 5 + 562 692 l 5 +EndSplineSet +Fore +SplineSet +626.505 695.8 m 1 + 626.505 0 l 1 + 535.705 0 l 1 + 535.705 622.3 l 1 + 168.3 622.3 l 1 + 168.3 0 l 1 + 80 0 l 1 + 80 695.8 l 1 + 626.505 695.8 l 1 +EndSplineSet +EndChar + +StartChar: afii10034 +Encoding: 1056 1056 410 +Width: 589 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163> 287.862 72.1377<163 393.035> 621 73<163 399.783> +VStem: 80 83<0 291 362.441 621> 455.637 83.8975<421.027 569.074> +LayerCount: 4 +Fore +Refer: 49 80 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10035 +Encoding: 1057 1057 411 +Width: 648 +VWidth: 1023 +Flags: W +HStem: -10 75.5625<306.92 554.233> 627.748 74.5547<303.55 551.397> +VStem: 50 94.916<231.433 466.293> +LayerCount: 4 +Fore +Refer: 54 67 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10036 +Encoding: 1058 1058 412 +Width: 566 +VWidth: 1023 +Flags: W +HStem: 0 21<241 324> 621 73<10 241 324 556> +VStem: 241 83<0 621> +LayerCount: 4 +Fore +Refer: 39 84 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10037 +Encoding: 1059 1059 413 +Width: 618 +VWidth: 2048 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20G<21.9424 126.225 499.495 600.514> +LayerCount: 4 +Back +SplineSet +22.7598 694.336 m 5 + 118.8 694.336 l 5 + 320.189 229.332 l 5 + 515.699 693.367 l 5 + 599.979 694.336 l 5 + 585.279 659.387 559.64 599.689 523.05 515.246 c 4 + 486.464 430.803 455.103 357.467 428.97 295.236 c 4 + 402.836 233.006 378.662 173.145 356.449 115.65 c 4 + 355.797 114.346 354.326 110.996 352.039 105.605 c 4 + 349.753 100.217 348.201 96.7051 347.385 95.0723 c 4 + 346.567 93.4375 345.099 90.416 342.975 86.0059 c 4 + 340.851 81.5957 339.055 78.248 337.585 75.9609 c 4 + 336.114 73.6758 334.317 70.7344 332.194 67.1406 c 4 + 330.07 63.5488 327.866 60.2812 325.58 57.3418 c 4 + 323.294 54.4004 320.68 51.625 317.739 49.0117 c 5 + 280.174 9.1582 225.13 -10.7695 152.609 -10.7695 c 4 + 119.616 -10.7695 87.6025 -6.84961 56.5693 0.992188 c 5 + 69.7998 70.082 l 5 + 91.6855 64.8535 114.554 62.2422 138.399 62.2422 c 4 + 158 62.2422 175.804 64.3652 191.81 68.6113 c 4 + 207.162 72.5312 219.902 77.4316 230.029 83.3105 c 260 + 240.157 89.1914 248.813 96.8691 256 106.342 c 4 + 263.514 115.814 268.25 123.328 270.21 128.881 c 4 + 270.862 130.842 270.699 133.455 269.72 136.721 c 4 + 268.739 139.986 267.024 144.316 264.574 149.707 c 4 + 262.125 155.096 260.572 158.607 259.92 160.242 c 6 + 22.7598 694.336 l 5 +EndSplineSet +Fore +SplineSet +117.656 695.765 m 1 + 316.085 232.622 l 1 + 507.8 694.336 l 1 + 600.514 694.336 l 1 + 359.479 123.043 l 2 + 352.044 105.421 344.235 87.8428 333.665 71.9023 c 0 + 323.095 55.9629 309.962 41.708 294.8 30.0508 c 0 + 260.79 3.90137 217.875 -8.73633 175.117 -12.2217 c 0 + 135.654 -15.4385 95.6016 -11.2539 57.6562 0.0507812 c 1 + 67.6562 70.0508 l 1 + 99.8564 62.4814 133.37 60.5391 166.229 64.3359 c 0 + 192.127 67.3291 218.363 74.2285 239.085 90.0508 c 0 + 253.03 100.698 264.018 115.181 270.514 131.479 c 1 + 21.9424 695.765 l 1 + 117.656 695.765 l 1 +EndSplineSet +EndChar + +StartChar: afii10038 +Encoding: 1060 1060 414 +Width: 843 +VWidth: 1023 +Flags: W +HStem: 0 21G<380 463> 96 72<229.943 379.234 463.766 613.057> 611 72<210.555 378.542 464.458 632.445> 674 20G<380 463> +VStem: 44 84<275.438 513.034> 380 83<0 110 174.322 601.03 660 694> 715 84<275.438 513.034> +LayerCount: 4 +Fore +SplineSet +463 694 m 1xde + 463 660 l 1 + 470 669 500 683 530 683 c 0 + 588 683 641 680 680 656 c 0 + 736 622 799 559 799 385 c 0 + 799 145 642 96 528 96 c 0 + 514 96 477 101 463 110 c 1 + 463 -0 l 1 + 380 0 l 1 + 380 110 l 1 + 366 101 329 96 315 96 c 0 + 201 96 44 145 44 385 c 0 + 44 559 107 622 163 656 c 0 + 202 680 255 683 313 683 c 0xee + 343 683 373 669 380 660 c 1 + 380 694 l 1 + 463 694 l 1xde +534 168 m 0 + 610 168 715 225 715 385 c 0 + 715 521 661 575 625 594 c 0 + 608 603 574 611 536 611 c 0 + 500 611 477 599 463 588 c 1 + 463 182 l 1 + 481 172 519 168 534 168 c 0 +309 168 m 0 + 324 168 362 172 380 182 c 1 + 380 588 l 1 + 366 599 343 611 307 611 c 0 + 269 611 235 603 218 594 c 0 + 182 575 128 521 128 385 c 0 + 128 225 233 168 309 168 c 0 +EndSplineSet +EndChar + +StartChar: afii10039 +Encoding: 1061 1061 415 +Width: 619 +VWidth: 1023 +Flags: W +HStem: 0 21<10 125.356 488.644 609> 674 20<39 153.487 473.897 582> +LayerCount: 4 +Fore +Refer: 41 88 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10040 +Encoding: 1062 1062 416 +Width: 744 +VWidth: 1023 +Flags: W +HStem: 0 75<167 552> +VStem: 80 87<75 692> 552 88<75 692> 656 68<-164 0> +LayerCount: 4 +Back +SplineSet +90.1504 0.985352 m 1 + 90.1504 694.336 l 1 + 179.82 694.336 l 1 + 179.82 75.4658 l 1 + 509.58 75.4658 l 1 + 509.58 694.336 l 1 + 601.7 694.336 l 1 + 601.7 58.8057 l 1 + 626.891 50.1736 669.23 30.3785 690.88 13.7256 c 0 + 703.95 2.94531 714.4 -10.6113 722.24 -26.9443 c 0 + 730.41 -44.9111 734.49 -65.9814 734.49 -90.1543 c 0 + 734.49 -130.548 711.278 -172.765 688.43 -192.564 c 0 + 678.63 -201.385 663.28 -209.388 642.37 -216.574 c 0 + 622.12 -223.107 599.9 -226.375 575.73 -226.375 c 0 + 528.689 -226.375 479.85 -218.861 429.22 -203.835 c 1 + 444.9 -148.954 l 1 + 494.23 -158.755 532.61 -163.654 560.05 -163.654 c 0 + 615.266 -163.654 651.189 -145.112 651.189 -90.1543 c 0 + 651.189 -42.1961 618.403 -27.6329 583.57 -12.2441 c 1 + 540.052 -2.00492 476.78 -0.00878906 417.74 0.250977 c 0 + 90.1504 0.985352 l 1 +EndSplineSet +Fore +SplineSet +640 66 m 1 + 724 66 l 1 + 724 -164 l 1 + 656 -164 l 1 + 656 0 l 1 + 80 0 l 1 + 80 692 l 1 + 167 692 l 1 + 167 75 l 1 + 552 75 l 1 + 552 692 l 1 + 640 692 l 1 + 640 66 l 1 +EndSplineSet +EndChar + +StartChar: afii10041 +Encoding: 1063 1063 417 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 0 21G<552 640> 169 79<231.675 427.206> +VStem: 80 87<309.051 692> 552 88<0 292 339.876 692> +LayerCount: 4 +Fore +SplineSet +321 169 m 0 + 211 169 80 231 80 377 c 2 + 80 692 l 1 + 167 692 l 1 + 167 386 l 2 + 167 289 236 248 334 248 c 0 + 423 248 485 297 552 360 c 1 + 552 692 l 1 + 640 692 l 1 + 640 0 l 1 + 552 0 l 1 + 552 292 l 1 + 513 235 437 169 321 169 c 0 +EndSplineSet +EndChar + +StartChar: afii10042 +Encoding: 1064 1064 418 +Width: 910 +VWidth: 1023 +Flags: W +HStem: 0 75<167 411 499 742> +VStem: 80 87<75 692> 411 88<75 692> 742 88<75 692> +LayerCount: 4 +Back +SplineSet +89.0293 -3.42383 m 5 + 89.0293 694.336 l 1 + 186.54 694.336 l 1 + 186.54 66.1562 l 1 + 519.25 66.1562 l 1 + 519.25 694.336 l 1 + 612.84 694.336 l 1 + 612.84 66.1562 l 1 + 956.819 66.1562 l 1 + 956.819 694.336 l 1 + 1049.43 694.336 l 1 + 1049.43 -3.42383 l 5 + 89.0293 -3.42383 l 5 +EndSplineSet +Fore +SplineSet +830 0 m 1 + 80 0 l 1 + 80 692 l 1 + 167 692 l 1 + 167 75 l 1 + 411 75 l 1 + 411 692 l 1 + 440 692 470 692 499 692 c 1 + 499 75 l 1 + 742 75 l 1 + 742 692 l 1 + 830 692 l 1 + 830 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10043 +Encoding: 1065 1065 419 +Width: 934 +VWidth: 1023 +Flags: W +HStem: 0 75<167 411 499 742> +VStem: 80 87<75 692> 411 88<75 692> 742 88<75 692> 846 68<-164 0> +LayerCount: 4 +Back +SplineSet +90.7002 694.819 m 1 + 183.311 694.819 l 1 + 183.311 70.5596 l 1 + 529.25 70.5596 l 1 + 529.25 694.819 l 1 + 618.431 694.819 l 1 + 618.431 70.5596 l 1 + 953.101 70.5596 l 1 + 953.101 694.819 l 1 + 1046.69 694.819 l 1 + 1046.69 133.28 l 1 + 1046.69 62.7197 l 1 + 1057.8 58.7998 1072.99 52.4297 1092.26 43.6094 c 0 + 1107.94 36.4238 1122.15 27.9297 1134.89 18.1299 c 0 + 1147.96 7.67578 1158.41 -5.7168 1166.25 -22.0498 c 0 + 1174.42 -39.6904 1178.5 -60.5977 1178.5 -84.7705 c 0 + 1178.5 -91.9561 1177.03 -102.41 1174.09 -116.13 c 0 + 1171.48 -126.91 1166.58 -138.833 1159.39 -151.9 c 0 + 1151.22 -166.273 1142.24 -177.706 1132.44 -186.201 c 0 + 1122.64 -195.02 1107.45 -202.859 1086.87 -209.72 c 0 + 1066.94 -216.581 1044.89 -220.01 1020.72 -220.01 c 0 + 974.33 -220.01 925.99 -212.497 875.681 -197.47 c 1 + 891.36 -142.59 l 1 + 940.36 -152.39 978.25 -157.29 1005.04 -157.29 c 0 + 1033.79 -157.29 1056.16 -151.737 1072.17 -140.63 c 0 + 1087.85 -129.524 1095.69 -110.904 1095.69 -84.7705 c 0 + 1095.69 -70.7236 1092.75 -58.7998 1086.87 -49 c 0 + 1080.66 -38.873 1072.5 -30.7061 1062.37 -24.5 c 0 + 1053.88 -19.2744 1042.61 -13.7197 1028.56 -7.83984 c 1 + 1016.47 -4.24609 997.851 -1.63281 972.7 0 c 1 + 205.36 0 l 1 + 90.7002 0 l 1 + 90.7002 694.819 l 1 +EndSplineSet +Fore +SplineSet +846 0 m 1 + 80 0 l 1 + 80 692 l 1 + 167 692 l 1 + 167 75 l 1 + 411 75 l 1 + 411 692 l 1 + 440 692 470 692 499 692 c 1 + 499 75 l 1 + 742 75 l 1 + 742 692 l 1 + 830 692 l 1 + 830 66 l 1 + 914 66 l 1 + 914 -164 l 1 + 846 -164 l 1 + 846 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10044 +Encoding: 1066 1066 420 +Width: 691 +VWidth: 1023 +Flags: W +HStem: 0 73<265 499.247> 344 72<265 493.961> 621 73<10 182> +VStem: 182 83<73 341.692 413 621> 557 84<128.858 282.325> +LayerCount: 4 +Fore +SplineSet +353 344 m 0 + 327 344 298 343 265 340 c 1 + 265 73 l 1 + 355 73 l 2 + 400 73 429 74 442 76 c 0 + 511 83 557 131 557 206 c 0 + 557 270 518 321 467 334 c 0 + 448 339 391 344 353 344 c 0 +10 694 m 1 + 265 694 l 1 + 265 413 l 1 + 294 415 321 416 347 416 c 0 + 405 416 477 409 513 397 c 0 + 594 370 641 294 641 188 c 0 + 641 133 624 83 590 49 c 1 + 545 6 496 0 400 0 c 2 + 182 0 l 1 + 182 621 l 1 + 10 621 l 1 + 10 694 l 1 +EndSplineSet +Layer: 2 +SplineSet +44.7695 698.899 m 5 + 209.9 698.899 l 5 + 237.34 698.899 l 5 + 293.2 698.899 l 5 + 293.2 406.86 l 5 + 328.807 409.474 355.594 410.78 373.561 410.78 c 4 + 394.467 410.78 414.066 410.126 432.36 408.819 c 5 + 447.061 408.167 466.66 405.88 491.16 401.96 c 4 + 513.047 398.366 531.912 393.63 547.755 387.749 c 132 + 563.601 381.87 579.689 373.376 596.015 362.269 c 4 + 613.005 350.837 626.405 337.769 636.205 323.069 c 4 + 646.325 307.716 654.655 288.604 661.195 265.739 c 4 + 668.045 241.892 671.485 216.085 671.485 188.319 c 4 + 671.485 169.372 669.355 151.079 665.115 133.438 c 4 + 661.195 117.104 656.295 102.896 650.415 90.8096 c 4 + 644.535 79.376 636.365 68.7588 625.915 58.96 c 4 + 614.805 48.1787 605.495 40.3389 597.985 35.4385 c 4 + 588.175 29.2334 577.073 24.0068 564.66 19.7588 c 4 + 554.207 16.167 543.1 13.0615 531.34 10.4502 c 4 + 518.927 7.50879 507.33 5.71191 496.55 5.05957 c 5 + 487.73 4.0791 477.604 3.42676 466.17 3.09863 c 5 + 439.71 3.09863 l 5 + 212.9 3.09863 l 5 + 209.9 622.95 l 5 + 44.7695 622.95 l 5 + 44.7695 698.899 l 5 +382.38 336.79 m 4 + 354.287 336.79 324.561 335.481 293.2 332.87 c 5 + 293.2 76.1104 l 5 + 414.23 76.1104 l 6 + 426.317 76.1104 439.384 76.5986 453.43 77.5791 c 4 + 465.19 78.5596 477.767 80.1924 491.16 82.4795 c 4 + 505.533 84.7666 518.11 88.8486 528.89 94.7295 c 4 + 538.363 99.9561 548 107.306 557.8 116.78 c 4 + 567.927 126.253 575.276 137.849 579.85 151.569 c 260 + 584.424 165.29 586.705 181.95 586.705 201.55 c 4 + 586.705 219.843 584.424 236.339 579.85 251.04 c 4 + 575.276 265.413 569.561 277.009 562.7 285.829 c 4 + 555.514 295.304 546.04 303.47 534.28 310.329 c 4 + 523.5 316.536 512.557 321.437 501.45 325.03 c 4 + 489.363 329.276 476.297 332.216 462.25 333.849 c 4 + 448.53 335.481 435.137 336.462 422.07 336.79 c 5 + 422.07 336.79 422.07 336.79 382.38 336.79 c 4 +EndSplineSet +EndChar + +StartChar: afii10045 +Encoding: 1067 1067 421 +Width: 775 +VWidth: 1023 +Flags: W +HStem: 0 73<163 377.247> 344 72<163 371.961> 674 20G<80 163 612 695> +VStem: 80 83<73 341.986 413 694> 435 84<128.858 282.325> 612 83<0 694> +LayerCount: 4 +Fore +SplineSet +612 694 m 1 + 695 694 l 1 + 695 0 l 1 + 612 0 l 1 + 612 694 l 1 +80 0 m 1 + 80 694 l 1 + 163 694 l 1 + 163 413 l 1 + 192 415 199 416 225 416 c 0 + 283 416 355 409 391 397 c 0 + 472 370 519 294 519 188 c 0 + 519 133 502 83 468 49 c 1 + 423 6 374 0 278 0 c 2 + 80 0 l 1 +231 344 m 0 + 205 344 196 343 163 340 c 1 + 163 73 l 1 + 233 73 l 2 + 278 73 307 74 320 76 c 0 + 389 83 435 131 435 206 c 0 + 435 270 396 321 345 334 c 0 + 326 339 269 344 231 344 c 0 +EndSplineSet +EndChar + +StartChar: afii10046 +Encoding: 1068 1068 422 +Width: 589 +VWidth: 1023 +Flags: W +HStem: 0 73<163 397.247> 344 72<163 391.961> 674 20G<80 163> +VStem: 80 83<73 341.692 413 694> 455 84<128.858 282.325> +LayerCount: 4 +Fore +SplineSet +80 0 m 5 + 80 694 l 1 + 163 694 l 1 + 163 413 l 1 + 192 415 219 416 245 416 c 0 + 303 416 375 409 411 397 c 0 + 492 370 539 294 539 188 c 0 + 539 133 522 83 488 49 c 1 + 443 6 394 0 298 0 c 2 + 80 0 l 5 +251 344 m 0 + 225 344 196 343 163 340 c 1 + 163 73 l 1 + 253 73 l 2 + 298 73 327 74 340 76 c 0 + 409 83 455 131 455 206 c 0 + 455 270 416 321 365 334 c 0 + 346 339 289 344 251 344 c 0 +EndSplineSet +EndChar + +StartChar: afii10047 +Encoding: 1069 1069 423 +Width: 692 +VWidth: 1023 +Flags: W +HStem: -10 74<165.479 411.033> 308 67<301 566> 622 75<162.637 408.565> +VStem: 566 95<221.445 308 375 464.252> +LayerCount: 4 +Back +SplineSet +265.26 711.075 m 4 + 336.473 711.075 399.357 695.064 453.91 663.045 c 4 + 508.136 631.362 549.46 588.405 577.88 534.18 c 4 + 606.627 479.627 621 418.377 621 350.43 c 4 + 621 310.25 615.938 272.029 605.81 235.77 c 4 + 595.683 199.184 580.494 165.536 560.24 134.83 c 4 + 540.64 105.43 516.63 79.2969 488.21 56.4297 c 4 + 460.116 34.2168 427.613 16.9033 390.7 4.49023 c 4 + 353.787 -7.59668 313.933 -13.6396 271.14 -13.6396 c 4 + 201.886 -13.6396 132.633 1.22266 63.3799 30.9502 c 5 + 99.5996 111.32 l 5 + 139.6 83.32 197.64 64.7598 249.58 64.7598 c 4 + 293.68 64.7598 333.37 72.1104 368.65 86.8096 c 4 + 404.256 101.837 434.31 122.58 458.81 149.04 c 4 + 482.983 175.173 501.93 205.88 515.65 241.16 c 4 + 523.49 261.74 529.044 282.484 532.31 303.39 c 5 + 190.7 303.39 l 5 + 190.7 387.18 l 5 + 533.78 387.18 l 5 + 531.167 411.68 525.614 435.2 517.12 457.74 c 4 + 504.38 492.04 486.74 522.42 464.2 548.88 c 4 + 441.334 575.995 413.077 597.229 379.43 612.58 c 5 + 346.11 628.26 309.197 636.095 268.69 636.095 c 4 + 220.343 636.095 163.6 629.32 109.6 589.32 c 5 + 75.5996 661.32 l 5 + 131.6 694.336 200.253 711.075 265.26 711.075 c 4 + Spiro + 265.26 711.075 o + 333.631 705.749 o + 396.64 689.707 o + 453.91 663.045 o + 503.79 627.643 o + 545.196 584.602 o + 577.88 534.18 o + 610.22 447.328 o + 621 350.43 o + 619.316 310.942 o + 614.243 272.645 o + 605.81 235.77 o + 594.009 200.198 o + 578.789 166.484 o + 560.24 134.83 o + 539.193 106.546 o + 515.135 80.3605 o + 488.21 56.4297 o + 458.677 35.8689 o + 426.109 18.5211 o + 390.7 4.49023 o + 352.846 -5.574 o + 312.912 -11.6293 o + 271.14 -13.6396 o + 201.956 -8.6953 o + 132.564 6.19746 o + 63.3799 30.9502 v + 99.5996 111.32 v + 144.67 86.8252 o + 196.554 70.5974 o + 249.58 64.7598 o + 292.169 67.205 o + 331.938 74.5698 o + 368.65 86.8096 o + 402.373 103.723 o + 432.487 124.508 o + 458.81 149.04 o + 481.22 176.668 o + 500.205 207.437 o + 515.65 241.16 o + 522.722 261.774 o + 528.286 282.559 o + 532.31 303.39 v + 190.7 303.39 v + 190.7 387.18 v + 533.78 387.18 v + 527.656 423.195 o + 517.12 457.74 o + 494.335 506.25 o + 464.2 548.88 o + 425.858 585.142 o + 379.43 612.58 v + 344.948 625.635 o + 307.961 633.488 o + 268.69 636.095 o + 218.01 632.864 o + 164.047 619.204 o + 109.6 589.32 v + 75.5996 661.32 v + 135.151 688.871 o + 199.707 705.524 o + 0 0 z + EndSpiro +EndSplineSet +Fore +SplineSet +141 94 m 1 + 203 73 232 64 310 64 c 0 + 388 64 457 101 496 144 c 0 + 537 189 560 243 566 308 c 1 + 301 308 l 1 + 301 375 l 1 + 566 375 l 1 + 557 475 506 547 436 587 c 0 + 394 611 346 622 292 622 c 0 + 238 622 184 611 130 589 c 1 + 109 655 l 1 + 170 683 239 697 316 697 c 0 + 426 697 512 656 568 598 c 1 + 630 532 661 447 661 342 c 0 + 661 235 621 146 566 89 c 0 + 514 35 425 -10 325 -10 c 0 + 235 -10 184 1 118 26 c 1 + 141 94 l 1 +EndSplineSet +EndChar + +StartChar: afii10048 +Encoding: 1070 1070 424 +Width: 968 +VWidth: 1023 +Flags: W +HStem: -8 74<493.965 686.576> 0 21G<80 167> 311 75<167 262.503> 626 74<492.501 686.631> +VStem: 80 87<0 311 386 692> 261 93<223.447 311 386 469.166> 824 94<221.305 469.402> +LayerCount: 4 +Back +SplineSet +398 346 m 4xbe + 398 235.13 443.021 147.319 511 102 c 4 + 547 78 588 66 633 66 c 4 + 735.562 66 802.679 127.826 838 202 c 4 + 858 244 868 292 868 346 c 4 + 868 456.419 822.667 544.889 755 590 c 4 + 719 614 678 626 633 626 c 4 + 530.438 626 463.321 564.174 428 490 c 4 + 408 448 398 400 398 346 c 4xbe +177 301.5 m 5 + 177 0 l 5 + 90 0 l 5x7e + 90 692 l 5 + 177 692 l 5 + 177 386 l 5 + 305.554 386 l 5 + 315.54 512.146 373.012 606.127 459 656 c 4 + 509 685 567 700 633 700 c 4 + 774.135 700 871.819 630.362 921 532 c 4 + 948 478 962 416 962 346 c 4 + 962 200.126 900.693 90.9219 806 36 c 4 + 756 7 699 -8 633 -8 c 4 + 490.87 -8 393.959 61.9316 344 160 c 4 + 321.646 203.88 308.889 245.614 305.16 301.5 c 5 + 177 301.5 l 5 +635.09 705.6 m 0xee + 680.5 705.6 723.13 697.43 762.98 681.1 c 256 + 802.83 664.77 837.13 641.899 865.88 612.5 c 0 + 894.95 583.1 917.82 546.35 934.48 502.25 c 0 + 950.811 458.476 958.98 410.13 958.98 357.21 c 0 + 958.98 285.997 944.771 222.46 916.351 166.6 c 1 + 888.91 111.72 850.04 69.0898 799.73 38.71 c 1 + 750.4 8.33008 694.38 -6.86035 631.66 -6.86035 c 0 + 590.17 -6.86035 550.65 0.652344 513.08 15.6797 c 0 + 473.88 31.0322 439.58 52.4297 410.181 79.8701 c 0 + 379.8 108.29 355.463 145.692 337.17 192.08 c 0 + 326.391 219.847 318.713 252.84 314.141 291.06 c 1 + 186.74 291.55 l 1 + 186.74 0.979492 l 1 + 90.7002 0 l 1 + 90.7002 696.78 l 1 + 186.74 697.76 l 1xde + 186.74 376.81 l 1 + 311.69 376.319 l 1 + 315.283 423.686 322.96 463.54 334.72 495.88 c 0 + 351.054 539.979 373.92 577.547 403.32 608.58 c 0 + 432.395 639.609 466.694 663.46 506.22 680.12 c 0 + 546.07 697.109 589.03 705.6 635.09 705.6 c 0xee +630.19 632.59 m 0xee + 601.44 632.59 573.351 626.873 545.91 615.439 c 0 + 518.8 604.333 493.808 588 470.94 566.439 c 0 + 447.42 544.554 428.963 515.97 415.57 480.689 c 0 + 401.524 444.43 394.5 403.433 394.5 357.7 c 0 + 394.5 314.906 401.033 274.726 414.101 237.159 c 0 + 426.84 199.92 443.99 169.05 465.55 144.55 c 0 + 486.783 120.05 512.26 100.857 541.99 86.9746 c 0 + 571.72 73.0918 603.73 66.1494 638.03 66.1494 c 0 + 661.55 66.1494 684.011 69.498 705.4 76.1943 c 0 + 726.8 82.8906 748.12 93.917 769.351 109.27 c 0 + 789.931 124.297 807.73 142.427 822.761 163.659 c 0 + 838.12 184.893 850.53 211.68 860 244.02 c 0 + 869.15 275.707 873.72 310.497 873.72 348.39 c 0 + 873.72 386.936 868.82 422.38 859.021 454.72 c 256 + 849.22 487.061 836.48 513.848 820.8 535.08 c 0 + 805.12 555.986 786.34 574.115 764.45 589.47 c 0 + 742.24 605.149 720.511 616.257 699.28 622.79 c 0 + 677.07 629.322 654.04 632.59 630.19 632.59 c 0xee +EndSplineSet +Fore +SplineSet +354 346 m 0xbe + 354 235 399 147 467 102 c 0 + 503 78 544 66 589 66 c 0 + 692 66 759 128 794 202 c 0 + 814 244 824 292 824 346 c 0 + 824 456 779 545 711 590 c 0 + 675 614 634 626 589 626 c 0 + 486 626 419 564 384 490 c 0 + 364 448 354 400 354 346 c 0xbe +261 311 m 1 + 167 311 l 1 + 167 0 l 1 + 80 0 l 1x7e + 80 692 l 1 + 167 692 l 1 + 167 386 l 1 + 262 386 l 1 + 272 512 329 606 415 656 c 0 + 465 685 523 700 589 700 c 0 + 730 700 828 630 877 532 c 0 + 904 478 918 416 918 346 c 0 + 918 200 857 91 762 36 c 0 + 712 7 655 -8 589 -8 c 0 + 447 -8 350 62 300 160 c 0 + 278 204 265 255 261 311 c 1 +EndSplineSet +EndChar + +StartChar: afii10049 +Encoding: 1071 1071 425 +Width: 598 +VWidth: 1023 +Flags: W +HStem: 0 21G<20 148 435 518> 289 73<290.462 435> 621 73<198.178 435> +VStem: 60 83<419.552 567.336> 435 83<0 289 362 621> +LayerCount: 4 +Fore +SplineSet +60 505 m 0 + 60 563 78 610 111 645 c 0 + 147 683 190 694 264 694 c 2 + 518 694 l 1 + 518 0 l 1 + 435 0 l 1 + 435 289 l 1 + 362 289 l 2 + 331 289 311 290 301 290 c 1 + 245 177 183 81 113 0 c 1 + 20 0 l 1 + 92 94 166 188 216 298 c 1 + 119 318 60 394 60 505 c 0 +435 362 m 1 + 435 621 l 1 + 308 621 l 2 + 277 621 255 619 240 616 c 0 + 182 604 143 560 143 492 c 0 + 143 473 147 454 155 436 c 0 + 174 393 212 369 269 364 c 0 + 280 363 307 362 352 362 c 2 + 435 362 l 1 +EndSplineSet +EndChar + +StartChar: afii10065 +Encoding: 1072 1072 426 +Width: 491 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 +VStem: 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 0 97 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10066 +Encoding: 1073 1073 427 +Width: 573 +VWidth: 2048 +Flags: W +HStem: -12 66<214.144 362.651> 619 91<312.543 474.7> +VStem: 58.7002 75<139.338 382.1> 433.7 84<128.788 338.207> +LayerCount: 4 +Back +SplineSet +527.95 239.946 m 4 + 527.95 88.5188 437.782 -22.2041 290.3 -22.2041 c 4 + 223.66 -22.2041 169.105 0.00976562 126.64 44.4375 c 4 + 84.5 88.5361 63.4287 148.48 63.4287 224.268 c 4 + 63.1025 326.188 66.9603 419.21 80.0898 502.586 c 4 + 85.7 538.212 102.08 579.443 117.759 604.263 c 4 + 141.28 641.833 168.862 666.743 194.505 678.993 c 4 + 227.775 694.887 279.766 696.483 329.5 696.343 c 4 + 375.7 696.212 421.7 694.336 443.95 720.423 c 4 + 446.471 723.379 449.818 722.626 451.79 724.583 c 5 + 492.179 642.553 l 6 + 492.437 642.03 491.389 641.651 491.2 641.083 c 4 + 480.42 633.399 446.348 614.934 429.46 611.953 c 4 + 395.461 607.521 383.7 608.212 331.705 608.633 c 4 + 293.299 608.943 247.019 614.588 216.31 594.953 c 4 + 204.55 587.443 193.605 576.503 183.479 562.123 c 260 + 159.581 528.211 143.409 478.494 138.89 420.756 c 5 + 176.029 452.754 233.178 481.518 298.14 481.518 c 4 + 364.78 481.518 419.742 460.038 463.025 417.081 c 4 + 506.308 374.125 527.95 315.08 527.95 239.946 c 4 +299.61 46.3975 m 4 + 391.366 46.3975 449.55 127.215 449.55 223.286 c 4 + 449.55 311.561 408.971 374.328 348.61 400.666 c 4 + 330.97 408.506 312.023 412.426 291.77 412.426 c 4 + 250.936 412.426 215.656 397.073 185.929 366.366 c 4 + 156.203 335.333 141.34 292.703 141.34 238.478 c 260 + 141.34 137.306 201.273 46.3975 299.61 46.3975 c 4 +EndSplineSet +Fore +SplineSet +474.7 710 m 1 + 474.7 619 l 1 + 420.7 623 366.7 619 314.7 608 c 0 + 268.7 598 221.7 581 189.7 546 c 0 + 174.7 529 163.7 509 154.7 488 c 0 + 146.7 467 140.7 458 137.7 435 c 1 + 172.7 462 214.7 480 258.7 486 c 0 + 315.7 494 375.7 482 422.7 448 c 0 + 456.7 424 482.7 389 497.7 350 c 0 + 513.7 311 519.7 268 517.7 226 c 0 + 516.7 190 508.7 154 494.7 121 c 0 + 480.7 87 458.7 57 430.7 35 c 0 + 387.7 0 330.7 -15 275.7 -12 c 0 + 240.7 -11 206.7 -4 175.7 12 c 0 + 145.7 28 118.7 53 99.7002 82 c 0 + 73.7002 122 63.7002 170 58.7002 218 c 0 + 52.7002 278 54.7002 339 59.7002 399 c 0 + 63.7002 458 72.7002 508 103.7 558 c 0 + 130.7 601 172.7 633 218.7 656 c 0 + 259.7 676 304.7 687.8 350.7 695.8 c 0 + 390.7 703.8 432.7 709 474.7 710 c 1 +225.7 419 m 0 + 189.7 411 157.7 390 135.7 361 c 1 + 133.7 328 133.7 294 133.7 261 c 0 + 134.7 224 135.7 188 148.7 154 c 0 + 159.7 125 179.7 99 205.7 81 c 0 + 230.7 63 262.7 53 293.7 54 c 0 + 335.7 55 377.7 77 401.7 111 c 0 + 423.7 142 431.7 181 433.7 219 c 0 + 435.7 255 432.7 293 418.7 326 c 0 + 401.7 364 369.7 395 331.7 411 c 0 + 305.7 421 274.7 427 225.7 419 c 0 +EndSplineSet +EndChar + +StartChar: afii10067 +Encoding: 1074 1074 428 +Width: 474 +VWidth: 1023 +Flags: W +HStem: 0 75.5<143.8 323.475> 217 56<144.56 274.232> 422.601 59.333<144.56 282.599> +VStem: 66.7998 77.7598<75.5 217 273 422.601> 305.8 76<300.921 400.863> 348.916 76.8838<99.6011 192.71> +LayerCount: 4 +Back +SplineSet +146 274 m 25xf8 + 177.083 274.39 225.7 275 225.7 275 c 2 + 297.722 275.903 343.7 326 343.7 366 c 0 + 343.7 409 301.7 429 238.7 429 c 0 + 151.7 429 147 371 146 335 c 0 + 145 299 146 297.79 146 274 c 25xf8 +146 214 m 25 + 146 103 l 25 + 146 103 205.659 54 254.7 54 c 0 + 295.7 54 358.7 79 356.7 133 c 0xf4 + 354.183 200.961 291.7 214 225.7 214 c 2 + 146 214 l 25 +65 0 m 25 + 65 128.7 65 175 65 330 c 0 + 65 485 192.7 493 252.7 493 c 0 + 312.7 493 422.7 461 422.7 369 c 0xf8 + 422.7 277 351.7 258 323.7 256 c 1 + 352.7 253 437.7 218 436.7 126 c 0 + 435.917 53.9765 359.706 -6 271.7 -6 c 0 + 199.7 -6 162.7 28 139.7 46 c 9 + 121.7 0 l 25 + 65 0 l 25 +EndSplineSet +Fore +SplineSet +305.8 357.5 m 0xf8 + 305.8 392.5 270.8 422.601 222.32 422.601 c 2 + 144.56 422.601 l 1 + 144.56 273 l 1 + 189.92 273 l 1 + 278.48 275.16 305.8 308.49 305.8 357.5 c 0xf8 +192.133 217 m 2 + 144.56 217 l 1 + 143.8 75.5 l 1 + 235.96 75.5 l 2 + 303.48 75.5 348.916 96.6667 348.916 145.549 c 0xf4 + 348.916 195.667 311.133 217 192.133 217 c 2 +228.8 0 m 1 + 66.7998 0 l 1 + 66.7998 481.68 l 1 + 220.8 481.934 l 2 + 325.8 482.107 381.8 418.5 381.8 359.5 c 0xf8 + 381.8 305.5 352.293 276.736 322.8 265.5 c 1 + 379.986 254.861 426.314 208.507 425.8 153.5 c 0 + 424.8 46.5 339.8 0 228.8 0 c 1 +EndSplineSet +EndChar + +StartChar: afii10068 +Encoding: 1075 1075 429 +Width: 419 +VWidth: 2048 +Flags: W +HStem: 421 60.9805<170 392.29> +VStem: 88 82<1.05957 421> +LayerCount: 4 +Fore +SplineSet +392.29 481.98 m 5 + 392.29 421 l 5 + 170 421 l 4 + 170 1.05957 l 1 + 88 1.05957 l 1 + 88 481.98 l 5 + 392.29 481.98 l 5 +EndSplineSet +EndChar + +StartChar: afii10069 +Encoding: 1076 1076 430 +Width: 552 +VWidth: 2048 +Flags: W +HStem: 0 75<177 388> 413 70<246.216 388> +VStem: 46 74<-119 0> 92 85<75 138.576> 388 82<77 413> 444 74<-121 0> +LayerCount: 4 +Back +SplineSet +449 74 m 29 + 449 421 l 29 + 277.566 421 l 21 + 262.566 300.426 239.567 157.425 170.567 74 c 13 + 449 74 l 29 +46 74 m 29 + 97.5667 74 l 21 + 188.567 200.425 196.567 349.425 218.566 482 c 13 + 526 482 l 29 + 526 74 l 29 + 610 74 l 29 + 610 -164 l 29 + 541 -164 l 29 + 541 0 l 29 + 115 0 l 29 + 115 -164 l 29 + 46 -164 l 29 + 46 74 l 29 +449 74 m 25 + 449 421 l 25 + 277.566 421 l 17 + 262.566 300.426 239.567 157.425 170.567 74 c 9 + 449 74 l 25 +46 74 m 25 + 97.5667 74 l 17 + 188.567 200.425 196.567 349.425 218.566 482 c 9 + 526 482 l 29 + 526 74 l 29 + 610 74 l 25 + 610 -164 l 25 + 541 -164 l 25 + 541 0 l 25 + 115 0 l 25 + 115 -164 l 25 + 46 -164 l 25 + 46 74 l 25 +114.14 -154.455 m 2 + 114.14 -156.742 113.65 -158.702 112.67 -160.336 c 0 + 111.69 -161.969 109.73 -163.275 106.79 -164.256 c 0 + 103.85 -165.235 100.093 -166.052 95.5195 -166.705 c 0 + 90.9473 -167.359 86.7002 -167.686 82.7803 -167.686 c 0 + 75.5928 -167.686 69.7139 -167.359 65.1396 -166.705 c 0 + 60.5674 -166.052 56.8096 -165.235 53.8701 -164.256 c 0 + 50.9297 -163.275 48.8057 -161.969 47.5 -160.336 c 0 + 46.1934 -158.702 45.54 -156.742 45.54 -154.455 c 2 + 45.54 52.8145 l 2 + 45.54 61.6348 46.9277 67.4326 49.7051 70.21 c 0 + 52.4805 72.9863 57.79 74.375 65.6299 74.375 c 2 + 98.9502 74.375 l 1 + 111.69 89.7275 123.613 107.45 134.72 127.54 c 0 + 145.827 147.63 156.117 172.702 165.59 202.755 c 0 + 175.062 232.808 183.72 269.068 191.56 311.535 c 0 + 199.4 354.002 206.587 404.798 213.12 463.925 c 0 + 213.773 468.499 214.754 472.827 216.06 476.91 c 0 + 217.367 480.994 219.082 484.096 221.205 486.22 c 0 + 223.329 488.343 225.942 490.14 229.045 491.609 c 0 + 232.148 493.08 235.823 493.814 240.07 493.814 c 2 + 498.79 493.814 l 2 + 506.961 493.814 513.412 491.284 518.145 486.22 c 0 + 522.882 481.157 525.25 473.562 525.25 463.435 c 2 + 525.25 74.375 l 1 + 589.93 74.375 l 2 + 597.117 74.375 602.261 72.9863 605.365 70.21 c 0 + 608.468 67.4326 610.02 61.6348 610.02 52.8145 c 2 + 610.02 -154.455 l 2 + 610.02 -156.742 609.53 -158.702 608.55 -160.336 c 0 + 607.57 -161.969 605.61 -163.275 602.67 -164.256 c 0 + 599.73 -165.235 595.81 -166.052 590.91 -166.705 c 0 + 586.01 -167.359 580.294 -167.686 573.76 -167.686 c 0 + 569.186 -167.686 564.695 -167.359 560.285 -166.705 c 0 + 555.875 -166.052 552.2 -165.235 549.26 -164.256 c 0 + 546.32 -163.275 544.197 -161.969 542.89 -160.336 c 0 + 541.584 -158.702 540.93 -156.742 540.93 -154.455 c 2 + 540.93 1.85449 l 1 + 114.14 1.85449 l 1 + 114.14 -154.455 l 2 +449.3 431.095 m 1 + 278.78 431.095 l 1 + 269.634 360.535 262.12 310.555 256.24 281.154 c 0 + 248.4 242.607 240.07 210.104 231.25 183.645 c 0 + 222.757 157.511 213.447 135.789 203.32 118.475 c 0 + 193.846 101.814 183.884 87.1152 173.43 74.375 c 1 + 449.3 74.375 l 1 + 449.3 431.095 l 1 +EndSplineSet +Fore +SplineSet +470 483 m 5xd8 + 470 77 l 5xd8 + 518 77 l 5 + 518 -121 l 5 + 444 -121 l 5 + 444 0 l 5 + 120 0 l 5 + 120 -119 l 5 + 46 -119 l 5 + 46 75 l 5xe4 + 92 75 l 5 + 111 127 127 179 140 234 c 4 + 158 312 169 394 170 483 c 5 + 470 483 l 5xd8 +248 413 m 5 + 243 347 234 285 221 226 c 4 + 209 173 194 123 177 75 c 5 + 388 75 l 5 + 388 413 l 5 + 248 413 l 5 +EndSplineSet +EndChar + +StartChar: afii10070 +Encoding: 1077 1077 431 +Width: 523 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73 408 73 +VStem: 59.4 75<139 218 281 352> 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 2 101 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10072 +Encoding: 1078 1078 432 +Width: 686 +VWidth: 1023 +Flags: W +HStem: 0 21G<21 130.333 303 383 555.667 665> 462 20G<34 138.093 303 383 547.907 652> +VStem: 303 80<0 482> +LayerCount: 4 +Fore +SplineSet +564 482 m 5 + 652 482 l 5 + 482 275 l 5 + 665 0 l 5 + 569 0 l 5 + 391 267 l 5 + 564 482 l 5 +383 482 m 5 + 383 0 l 5 + 303 0 l 5 + 303 482 l 5 + 383 482 l 5 +122 482 m 5 + 295 267 l 5 + 117 0 l 5 + 21 0 l 5 + 204 275 l 5 + 34 482 l 5 + 122 482 l 5 +EndSplineSet +EndChar + +StartChar: afii10073 +Encoding: 1079 1079 433 +Width: 409 +VWidth: 1023 +Flags: W +HStem: -8 75<106.251 289.859> 231 56<99 249.387> 421 64<88.4025 257.497> +VStem: 278 74<314.439 401.768> 309 76<86.3512 199.074> +LayerCount: 4 +Back +SplineSet +196.81 492.3 m 0xf0 + 321.6 493.94 393.196 440.457 392.91 365.71 c 0xf0 + 392.6 321.94 366.857 277.433 328.33 258.79 c 1 + 330.29 257.32 l 1 + 373.768 236.483 413.569 197.421 413.569 133.64 c 0 + 413.569 80.999 374.538 44.542 341.359 21.9199 c 0 + 312.521 2.00898 265.692 -10.4199 214.45 -10.4199 c 0 + 151.187 -10.4199 115.507 2.9332 65 22.9004 c 1 + 84.5996 90.2305 l 5 + 142.42 68.6699 188.152 57.8896 221.8 57.8896 c 4 + 280.921 57.8896 326.38 81.4268 326.38 135.8 c 1xe8 + 326.38 192.871 283.964 215.19 214.45 215.19 c 1 + 125.6 214.939 l 1 + 125.6 226.537 125.6 262.133 125.6 273.73 c 1 + 209.55 273.98 l 1 + 272.842 273.98 310.6 301.926 310.6 354.939 c 1 + 311.6 402.94 269.33 423.93 201.71 423.93 c 0 + 170.677 423.93 134.743 417.886 93.9102 405.8 c 1 + 74.7998 472.7 l 1 + 117.594 485.766 158.267 491.793 196.81 492.3 c 0xf0 +EndSplineSet +Refer: 2 101 S 1 0 0 1 0 0 2 +Fore +SplineSet +188 485 m 0xf0 + 318 485 352 423 352 368 c 0xf0 + 352 328 311 281 282 270 c 1 + 338 260 385 210 385 146 c 0 + 385 105 372 61 341 33 c 0 + 308 4 284 -8 201 -8 c 0 + 142 -8 103 6 53 25 c 1 + 73 100 l 1 + 130 79 175 67 209 67 c 0 + 276 68 309 87 309 140 c 0xe8 + 309 206 258 231 188 231 c 0 + 183 231 179 231 174 231 c 2 + 99 227 l 1 + 99 285 l 1 + 160 287 l 2 + 231 289 278 310 278 365 c 0 + 278 391 243 421 202 421 c 0 + 160 421 134 415 93 403 c 1 + 74 465 l 1 + 117 478 145 485 188 485 c 0xf0 +EndSplineSet +Layer: 2 +Refer: 2 101 N 1 0 0 1 0 0 2 +Refer: 2 101 N 1 0 0 1 0 0 2 +Layer: 3 +SplineSet +71.1 482.535 m 1 + 193.1 482.535 l 2 + 212.547 482.535 232.083 482.393 251.282 479.298 c 0 + 270.481 476.202 289.323 470.124 306.015 460.147 c 0 + 322.707 450.169 337.134 436.312 347.311 419.74 c 0 + 358.201 402.008 364.18 382.411 364.18 360.339 c 0 + 364.18 340.267 358.737 320.209 348.532 302.922 c 0 + 337.616 284.429 321.29 269.173 302.1 259.535 c 1 + 326.516 248.351 347.679 230.15 362.346 207.653 c 0 + 376.959 185.238 385.1 158.587 385.1 131.83 c 0 + 385.077 111.186 380.29 90.7193 370.853 72.444 c 0 + 361.469 54.2708 347.509 38.5064 330.687 26.8727 c 0 + 313.865 15.2391 294.325 7.82644 274.229 4.02185 c 0 + 254.133 0.217251 233.553 3.93543e-12 213.1 0 c 2 + 71.1 0 l 1 + 70.1 71.5354 l 1 + 205.1 71.5354 l 2 + 215.678 71.5354 226.312 71.625 236.735 73.4274 c 0 + 247.158 75.2298 257.351 78.7618 266.264 84.459 c 0 + 275.176 90.1563 282.736 97.9946 287.93 107.21 c 0 + 293.29 116.722 296.108 127.338 296.108 138.552 c 0 + 296.108 150.237 292.914 161.889 287.103 172.029 c 0 + 281.122 182.462 272.4 191.293 262.1 197.5 c 0 + 254.686 201.968 246.456 205.048 237.96 206.709 c 0 + 229.465 208.37 220.757 208.535 212.1 208.535 c 2 + 97.1 208.535 l 1 + 97.35 274.535 l 1 + 201.1 274.535 l 2 + 206.904 274.535 212.73 274.636 218.461 275.547 c 0 + 224.193 276.459 229.803 278.129 235.1 280.5 c 0 + 249.636 287.005 261.806 298.504 269.586 312.4 c 0 + 275.613 323.166 278.967 335.49 278.967 347.802 c 0 + 278.967 351.382 278.684 354.961 278.1 358.5 c 0 + 275.102 376.673 263.668 393.271 247.692 402.435 c 0 + 239.703 407.017 230.766 409.819 221.663 411.215 c 0 + 212.561 412.611 203.309 412.61 194.1 412.535 c 2 + 71.1 411.535 l 1 + 71.1 482.535 l 1 + Spiro + 71.1 482.535 v + 193.1 482.535 ] + 364.1 364.535 o + 302.1 259.535 v + 385.1 131.535 o + 213.1 0 [ + 71.1 0 v + 70.1 71.5354 v + 205.1 71.5354 ] + 296.1 137.535 o + 262.1 197.5 o + 212.1 208.535 [ + 97.1 208.535 v + 97.35 274.535 v + 201.1 274.535 ] + 235.1 280.5 o + 278.1 358.5 o + 194.1 412.535 [ + 71.1 411.535 v + 0 0 z + EndSpiro +EndSplineSet +EndChar + +StartChar: afii10074 +Encoding: 1080 1080 434 +Width: 532 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 155.665 390 472> 463 20G<60 142 376.335 472> +VStem: 60 82<120.018 483> 390 82<0 362.982> +LayerCount: 4 +Back +SplineSet +457.65 1.53711 m 2 + 457.65 -0.75 456.997 -2.95508 455.69 -5.07812 c 128 + 454.383 -7.20117 452.178 -8.83594 449.075 -9.97852 c 128 + 445.968 -11.1211 441.64 -12.1016 436.09 -12.918 c 128 + 430.537 -13.7344 423.676 -14.1426 415.51 -14.1426 c 0 + 409.303 -14.1426 403.586 -13.6523 398.36 -12.6738 c 0 + 396.713 -12.6738 395.57 -12.5098 394.93 -12.1836 c 128 + 394.277 -11.8555 393.705 -11.5293 393.215 -11.2031 c 128 + 392.725 -10.877 391.99 -10.5508 391.01 -10.2227 c 0 + 387.744 -8.91602 385.375 -7.20117 383.905 -5.07812 c 128 + 382.435 -2.95508 381.7 -0.75 381.7 1.53711 c 2 + 381.7 268.098 l 2 + 381.7 281.49 382.027 295.211 382.68 309.258 c 0 + 383.006 312.852 383.251 323.223 383.415 340.371 c 128 + 383.579 357.521 383.824 368.547 384.15 373.447 c 1 + 378.923 362.992 371.329 350.418 361.365 335.717 c 128 + 351.402 321.018 338.417 302.643 322.41 280.592 c 128 + 306.404 258.543 298.4 247.354 298.4 247.027 c 2 + 124.94 1.53711 l 1 + 122.327 -1.07617 120.122 -3.44531 118.325 -5.56836 c 128 + 116.529 -7.69141 114.16 -9.32422 111.22 -10.4688 c 128 + 108.28 -11.6113 104.605 -12.5098 100.195 -13.1621 c 128 + 95.7852 -13.8164 90.3125 -14.1426 83.7803 -14.1426 c 0 + 76.2666 -14.1426 70.0596 -13.7344 65.1602 -12.918 c 128 + 60.2598 -12.1016 56.3398 -11.1211 53.4004 -9.97852 c 128 + 50.46 -8.83594 48.418 -7.20117 47.2754 -5.07812 c 128 + 46.1309 -2.95508 45.5596 -0.75 45.5596 1.53711 c 2 + 45.5596 466.057 l 2 + 45.5596 468.344 46.1309 470.549 47.2754 472.672 c 128 + 48.418 474.795 50.624 476.51 53.8896 477.816 c 128 + 57.1572 479.123 61.5674 480.021 67.1201 480.512 c 128 + 72.6729 481.002 79.3701 481.246 87.21 481.246 c 0 + 97.3359 481.246 105.503 479.941 111.71 477.326 c 128 + 117.917 474.715 121.02 470.957 121.02 466.057 c 2 + 121.02 197.537 l 2 + 121.02 184.145 120.693 170.912 120.04 157.848 c 0 + 119.713 154.254 119.468 144.453 119.305 128.447 c 128 + 119.142 112.441 118.896 101.986 118.57 97.0879 c 1 + 132.29 122.895 158.096 161.768 195.99 213.707 c 1 + 375.82 466.057 l 1 + 378.107 468.67 380.312 471.037 382.435 473.162 c 128 + 384.558 475.285 387.253 476.92 390.52 478.062 c 128 + 393.787 479.205 397.707 480.021 402.28 480.512 c 128 + 406.853 481.002 412.733 481.246 419.92 481.246 c 128 + 427.107 481.246 433.15 481.002 438.05 480.512 c 128 + 442.95 480.021 446.87 479.123 449.81 477.816 c 128 + 452.75 476.51 454.792 474.795 455.935 472.672 c 128 + 457.079 470.541 457.65 468.174 457.65 465.566 c 2 + 457.65 1.53711 l 2 +EndSplineSet +Fore +SplineSet +60 483 m 1 + 142 483 l 1 + 142 120.018 l 1 + 390 483 l 1 + 472 483 l 1 + 472 0 l 1 + 390 0 l 1 + 390 362.982 l 1 + 142 0 l 1 + 60 0 l 1 + 60 483 l 1 +EndSplineSet +EndChar + +StartChar: afii10075 +Encoding: 1081 1081 435 +Width: 532 +VWidth: 2048 +Flags: W +HStem: 0 21<60 155.665 390 472> 463 20<60 142 376.335 472> 555.89 58.8<214.361 340.585> 673.58 20G<131.947 174.204 392.58 430.304> +VStem: 60 82<120.018 483> 390 82<0 362.982> +LayerCount: 4 +Fore +SplineSet +117.2 665.65 m 1 + 169.141 693.58 l 1 + 179.267 672.35 193.396 653.891 211.525 638.21 c 0 + 229.655 622.53 251.135 614.69 275.96 614.69 c 0 + 298.827 614.69 321.204 622.37 343.09 637.72 c 0 + 364.977 653.07 384.25 671.69 400.91 693.58 c 1 + 448.44 661.24 l 1 + 425.9 630.86 398.787 605.71 367.101 585.78 c 0 + 335.413 565.854 302.747 555.89 269.101 555.89 c 0 + 232.187 555.89 200.419 566.751 173.795 588.48 c 0 + 147.172 610.2 128.307 635.92 117.2 665.65 c 1 +EndSplineSet +Refer: 434 1080 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10076 +Encoding: 1082 1082 436 +Width: 504 +VWidth: 2048 +Flags: W +HStem: 0 21G<68 147.87 358.454 471.27> 463.41 20G<68 147.87 369.84 443.457> +VStem: 68 79.87<0 483.41> +LayerCount: 4 +Fore +SplineSet +68 483.41 m 1 + 147.87 483.41 l 1 + 147.87 0 l 1 + 68 0 l 1 + 68 483.41 l 1 +369.84 483.41 m 1 + 463.53 483.41 l 5 + 248.34 269 l 1 + 471.27 0 l 1 + 374.739 0 l 1 + 155.71 269 l 1 + 369.84 483.41 l 1 +EndSplineSet +EndChar + +StartChar: afii10077 +Encoding: 1083 1083 437 +Width: 494 +VWidth: 1023 +Flags: W +HStem: 0 21G<10 127 352 434> 416 64<250.097 352> +VStem: 352 82<0 416> +LayerCount: 4 +Back +SplineSet +49.3 66.2425 m 17xb0 + 61.6333 63.9092 60.4134 61.6196 83.6348 63.9092 c 0xb0 + 107.3 66.2426 143.487 81.9219 170.3 151.242 c 10 + 252.3 363.242 l 18 + 282.023 443.714 317.3 490.242 412.3 487.242 c 0 + 453.279 485.948 476.3 468.934 489.3 462.242 c 9 + 501.3 482.242 l 25 + 557 482.242 l 25 + 557 0 l 25 + 477 0 l 25x70 + 477 401.242 l 17 + 467 408.242 456.8 417.242 432.3 417.242 c 0 + 357.227 417.242 341.145 379.298 329.3 346.242 c 10 + 243.3 116.243 l 18 + 216.084 43.4561 158.633 -8.42411 72.3 -10.7575 c 0 + 62.2815 -11.0283 47.3 -9.75745 36.3 -7.75748 c 9 + 49.3 66.2425 l 17xb0 +586 483 m 5 + 668 483 l 5 + 668 0 l 5 + 586 0 l 5 + 586 483 l 5 +436.67 495.88 m 2xb0 + 457.98 495.88 476.151 492.151 493.02 487.55 c 1 + 499.88 493.92 l 1 + 557.7 493.92 l 1 + 557.7 0 l 1 + 477 0 l 1x70 + 477 67.7861 477.885 346.839 477 418.95 c 1 + 463.28 421.236 452.35 422.38 440.59 422.38 c 0 + 392.775 422.38 347.752 404.153 334.26 369.46 c 0 + 305.063 295.692 273.094 207.399 247.88 129.22 c 1 + 238.351 105.427 222.426 70.5986 206.229 52.29 c 0 + 193.214 37.2217 167.653 15.4141 148.9 7.20996 c 1 + 109.7 -5.20312 71.9697 -10.5938 35.71 -8.95996 c 1 + 46.4902 60.1299 l 1 + 84.5596 62.5088 118.595 64.4268 136.405 87.3252 c 0 + 151.831 107.159 162.692 129.891 173.4 156.66 c 1 + 244.1 353.29 l 2 + 248.898 366.637 253.41 383.67 261.25 403.271 c 0 + 277.583 443.45 301.92 470.073 334.26 483.14 c 0 + 354.186 491.634 377.707 495.88 404.82 495.88 c 2 + 436.67 495.88 l 2xb0 +EndSplineSet +Fore +SplineSet +352 416 m 1 + 253 416 l 1 + 223 254 162 123 92 0 c 1 + 10 0 l 1 + 96 154 160 312 192 480 c 1 + 434 480 l 1 + 434 0 l 1 + 352 0 l 1 + 352 416 l 1 +EndSplineSet +Layer: 2 +SplineSet +352 416 m 5 + 253 416 l 5 + 223 254 162 123 92 0 c 5 + 10 0 l 5 + 96 154 160 312 192 480 c 5 + 434 480 l 5 + 434 0 l 5 + 352 0 l 5 + 352 416 l 5 +EndSplineSet +EndChar + +StartChar: afii10078 +Encoding: 1084 1084 438 +Width: 608 +VWidth: 1023 +Flags: W +HStem: 0 21G<72 154 466 548> 460 20G<72 171.034 448.966 548> +VStem: 72 82<0 336> 466 82<0 336> +LayerCount: 4 +Fore +SplineSet +466 336 m 1 + 326.8 102 l 1 + 292 102 l 1 + 154 336 l 1 + 154 0 l 1 + 72 0 l 1 + 72 480 l 1 + 101 480 130 480 160 480 c 1 + 304 219 l 1 + 316 219 l 1 + 460 480 l 1 + 490 480 519 480 548 480 c 1 + 548 0 l 1 + 466 0 l 1 + 466 336 l 1 +EndSplineSet +Layer: 2 +SplineSet +447.2 482.92 m 5 + 447.2 0 l 5 + 364.78 0 l 5 + 364.78 413 l 5 + 144.36 413 l 5 + 144.36 0 l 5 + 60 0 l 5 + 60 482.92 l 5 + 447.2 482.92 l 5 +EndSplineSet +EndChar + +StartChar: afii10079 +Encoding: 1085 1085 439 +Width: 544 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 142 402 484> 226 64<142 402> 460 20G<60 142 402 484> +VStem: 60 82<0 226 290 480> 402 82<0 226 290 480> +LayerCount: 4 +Fore +SplineSet +402 226 m 5 + 142 226 l 1 + 142 0 l 1 + 60 0 l 1 + 60 480 l 1 + 142 480 l 1 + 142 290 l 1 + 402 290 l 5 + 402 480 l 5 + 484 480 l 5 + 484 0 l 5 + 402 0 l 5 + 402 226 l 5 +EndSplineSet +EndChar + +StartChar: afii10080 +Encoding: 1086 1086 440 +Width: 569 +VWidth: 1023 +Flags: W +HStem: -10 65<204.434 352.871> 426 64<203.115 351.282> +VStem: 46 83<137.148 343.221> 427 83<137.351 343.862> +LayerCount: 4 +Fore +SplineSet +278 426 m 0 + 181 426 129 342 129 240 c 0 + 129 138 180 55 278 55 c 0 + 377 55 427 137 427 240 c 0 + 427 343 376 426 278 426 c 0 +276 -10 m 0 + 128 -10 46 90 46 240 c 0 + 46 391 131 490 279 490 c 0 + 428 490 510 392 510 241 c 0 + 510 91 424 -10 276 -10 c 0 +EndSplineSet +EndChar + +StartChar: afii10081 +Encoding: 1087 1087 441 +Width: 544 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 142 402 484> 416 64<142 402> +VStem: 60 82<0 416> 402 82<0 416> +LayerCount: 4 +Back +SplineSet +379 310 m 6 + 379 390.255 351.708 427 273 427 c 132 + 235 427 192 415 143 391 c 5 + 143 0 l 5 + 60 0 l 5 + 60 670 l 5 + 143 670 l 5 + 143 452 l 5 + 201 481 254 496 304 496 c 132 + 405.391 496 460 431.195 460 329 c 6 + 460 0 l 5 + 379 0 l 5 + 379 310 l 6 +EndSplineSet +Fore +SplineSet +402 416 m 1 + 142 416 l 1 + 142 0 l 1 + 60 0 l 1 + 60 480 l 1 + 484 480 l 1 + 484 0 l 1 + 402 0 l 1 + 402 416 l 1 +EndSplineSet +EndChar + +StartChar: afii10082 +Encoding: 1088 1088 442 +Width: 568 +VWidth: 1023 +Flags: W +HStem: -261 73 -13 64<176 361> 423 68<200 363> +VStem: 87 83<-261 11 66 404> 436 85<134 344> +LayerCount: 4 +Fore +Refer: 15 112 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10083 +Encoding: 1089 1089 443 +Width: 467 +VWidth: 1023 +Flags: W +HStem: 0 73<209.074 393.763> 408 73<206.038 398.764> +LayerCount: 4 +Fore +Refer: 18 99 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10084 +Encoding: 1090 1090 444 +Width: 479 +VWidth: 2048 +Flags: W +HStem: 0 21G<207.8 289.8> 423 60<26.7998 207.8 289.8 472.8> +VStem: 207.8 82<0 423> +LayerCount: 4 +Fore +SplineSet +207.8 0 m 1 + 207.8 423 l 5 + 26.7998 423 l 5 + 26.7998 483 l 5 + 472.8 483 l 5 + 472.8 423 l 5 + 289.8 423 l 5 + 289.8 0 l 1 + 207.8 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10085 +Encoding: 1091 1091 445 +Width: 507 +VWidth: 1023 +Flags: W +HStem: 462 20<22 110.384 397.616 481> +LayerCount: 4 +Fore +Refer: 26 121 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10086 +Encoding: 1092 1092 446 +Width: 875 +VWidth: 1023 +Flags: W +HStem: -13 65<206.594 390.861 484.139 668.406> 423 68<203.363 366.279 508.721 671.637> +VStem: 45 85<135.944 343.49> 396 83<-261 11 66.7342 404.202 453.652 617> 745 85<135.944 343.49> +CounterMasks: 1 38 +LayerCount: 4 +Back +SplineSet +399.659 617.33 m 1 + 401.619 617.33 l 1 + 480.51 617.33 l 1 + 482.47 617.33 l 1 + 482.47 437.5 l 1 + 516.444 474.087 562.334 492.38 620.154 492.38 c 0 + 649.885 492.38 678.064 486.827 704.685 475.72 c 0 + 731.305 464.613 754.904 448.934 775.494 428.68 c 0 + 796.395 407.773 812.564 382.457 823.994 352.73 c 0 + 835.435 322.676 841.154 288.703 841.154 250.811 c 0 + 841.154 175.351 819.755 112.957 776.955 63.6299 c 0 + 733.515 13.9766 679.614 -10.8496 615.265 -10.8496 c 0 + 563.975 -10.8496 519.704 5.97266 482.47 39.6201 c 1 + 485.409 -259.279 l 1 + 482.96 -259.279 l 1 + 404.56 -259.279 l 1 + 402.109 -259.279 l 1 + 399.659 39.6201 l 1 + 362.42 5.97266 318.156 -10.8496 266.869 -10.8496 c 0 + 202.516 -10.8496 148.616 13.9766 105.17 63.6299 c 0 + 61.7227 113.61 40 176.004 40 250.811 c 0 + 40 287.397 46.0439 321.37 58.1299 352.73 c 0 + 69.8896 383.438 85.8955 408.754 106.149 428.68 c 0 + 126.729 448.934 150.25 464.613 176.71 475.72 c 0 + 203.17 486.827 231.59 492.38 261.97 492.38 c 0 + 319.789 492.38 365.686 474.087 399.659 437.5 c 1 + 399.659 617.33 l 1 +275.689 423.29 m 0 + 256.09 423.29 237.47 419.37 219.829 411.53 c 0 + 201.21 403.037 184.223 391.277 168.869 376.25 c 0 + 154.17 361.55 142.082 341.95 132.609 317.45 c 0 + 123.137 292.624 118.399 265.673 118.399 236.601 c 0 + 118.399 212.426 122.156 189.07 129.67 166.53 c 0 + 136.855 144.97 145.513 127.983 155.64 115.57 c 0 + 166.094 102.504 178.344 91.5605 192.39 82.7402 c 0 + 206.109 73.9199 219.992 67.5498 234.039 63.6299 c 0 + 247.76 60.0371 260.989 58.2402 273.729 58.2402 c 0 + 342.329 58.2402 384.306 93.3574 399.659 163.59 c 1 + 399.659 311.57 l 1 + 397.699 319.41 395.576 327.414 393.289 335.58 c 0 + 387.409 353.874 380.06 368.9 371.239 380.66 c 0 + 362.42 392.747 349.516 403.037 332.529 411.53 c 0 + 317.177 419.37 298.229 423.29 275.689 423.29 c 0 +605.955 423.29 m 0 + 583.084 423.29 563.975 419.37 548.614 411.53 c 0 + 532.614 403.363 520.034 393.074 510.895 380.66 c 1 + 501.744 368.9 494.395 353.874 488.84 335.58 c 0 + 486.226 327.414 484.103 319.41 482.47 311.57 c 1 + 482.47 159.67 l 1 + 498.475 92.0498 540.455 58.2402 608.404 58.2402 c 0 + 621.145 58.2402 634.364 60.0371 648.084 63.6299 c 0 + 661.484 67.2227 675.034 73.5928 688.765 82.7402 c 1 + 702.805 91.5605 715.215 102.504 725.994 115.57 c 0 + 736.784 128.963 745.604 146.032 752.455 166.775 c 0 + 759.324 187.519 762.744 210.794 762.744 236.601 c 0 + 762.744 266.98 758.334 293.93 749.524 317.45 c 0 + 740.375 341.296 727.955 360.897 712.284 376.25 c 0 + 696.604 391.93 679.944 403.69 662.295 411.53 c 256 + 644.654 419.37 625.875 423.29 605.955 423.29 c 0 +EndSplineSet +Fore +SplineSet +287 423 m 0 + 181.812 423 130 346.935 130 239 c 0 + 130 132.174 184.508 52 288 52 c 0 + 325 52 361 60 396 75 c 1 + 396 393 l 1 + 362.189 411.784 336.031 423 287 423 c 0 +479 393 m 1 + 479 75 l 1 + 514 60 550 52 587 52 c 0 + 690.492 52 745 132.174 745 239 c 0 + 745 346.935 693.188 423 588 423 c 0 + 538.969 423 512.811 411.784 479 393 c 1 +479 617 m 1 + 479 453.652 l 1 + 519.273 478.014 561.338 491 606 491 c 0 + 654 491 694 480 728 459 c 0 + 795 416 830 346 830 246 c 0 + 830 163 806 98 760 53 c 0 + 716 10 661 -13 595 -13 c 0 + 556 -13 517 -5 479 11 c 1 + 479 -261 l 1 + 396 -261 l 1 + 396 11 l 1 + 358 -5 319 -13 280 -13 c 0 + 214 -13 159 10 115 53 c 0 + 69 98 45 163 45 246 c 0 + 45 346 80 416 147 459 c 0 + 181 480 221 491 269 491 c 0 + 313.662 491 355.727 478.014 396 453.652 c 1 + 396 617 l 1 + 479 617 l 1 +EndSplineSet +EndChar + +StartChar: afii10087 +Encoding: 1093 1093 447 +Width: 511 +VWidth: 1023 +Flags: W +HStem: 0 21<38 136.591 360.746 468> 462 20<32 139.241 378.283 478> +LayerCount: 4 +Fore +Refer: 24 120 S 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10088 +Encoding: 1094 1094 448 +Width: 502 +VWidth: 2048 +Flags: W +HStem: 0 70<144 365> 463 20G<60 144 365 447> +VStem: 60 84<70 483> 365 82<70 483> 428 80<-120 0> +LayerCount: 4 +Back +SplineSet +427.924 0 m 1xe8 + 60 0 l 1 + 60 482.92 l 1 + 144.36 482.92 l 1 + 144.36 69.9199 l 1 + 364.78 69.9199 l 1 + 364.78 482.92 l 1 + 447.2 482.92 l 1 + 447.2 68.3545 l 1xf0 + 507.924 68.3545 l 1 + 507.924 -148 l 1 + 427.924 -148 l 1 + 427.924 0 l 1xe8 +447.2 0 m 5 + 447.2 493.92 l 5 + 364.78 493.92 l 5 + 364.78 69.9199 l 5 + 144.36 69.9199 l 5 + 144.36 493.92 l 5 + 60 493.92 l 5 + 60 0 l 5 + 447.2 0 l 5 +EndSplineSet +Fore +SplineSet +428 0 m 1xe8 + 60 0 l 1 + 60 483 l 1 + 144 483 l 1 + 144 70 l 1 + 365 70 l 1 + 365 483 l 1 + 447 483 l 1 + 447 70 l 1xf0 + 508 70 l 1 + 508 -120 l 1 + 428 -120 l 1 + 428 0 l 1xe8 +EndSplineSet +EndChar + +StartChar: afii10089 +Encoding: 1095 1095 449 +Width: 497 +VWidth: 2048 +Flags: W +HStem: 0 21G<360.17 437.59> 184.729 69.581<163.503 307.186> 461.92 20G<50 127.42 360.17 437.59> +VStem: 50 77.42<293.225 481.92> 360.17 77.42<0 230.3 284.559 481.92> +LayerCount: 4 +Fore +SplineSet +437.59 0 m 1 + 360.17 0 l 1 + 360.17 230.3 l 1 + 302.351 199.92 249.431 184.729 201.41 184.729 c 0 + 175.276 184.729 152.573 188.813 133.3 196.979 c 256 + 114.026 205.146 99.3262 215.109 89.2002 226.869 c 0 + 79.0732 238.304 70.7432 253.655 64.21 272.93 c 0 + 57.6768 291.877 53.5938 309.354 51.96 325.359 c 0 + 50.6533 340.387 50 359.659 50 383.18 c 2 + 50 481.92 l 1 + 127.42 481.92 l 1 + 127.42 377.3 l 2 + 127.42 295.307 163.19 254.31 234.73 254.31 c 0 + 270.663 254.31 312.478 270.724 360.17 295.55 c 1 + 360.17 481.92 l 1 + 437.59 481.92 l 1 + 437.59 0 l 1 +EndSplineSet +EndChar + +StartChar: afii10090 +Encoding: 1096 1096 450 +Width: 739 +VWidth: 2048 +Flags: W +HStem: 0 67.4102<141.83 328.41 410.24 598.775> 462.92 20G<60 141.83 328.41 410.24 598.775 679.625> +VStem: 60 81.8301<67.4102 482.92> 328.41 81.8301<67.4102 482.92> 598.775 80.8496<67.4102 482.92> +LayerCount: 4 +Back +SplineSet +60 484.17 m 5 + 141.44 484.17 l 5 + 141.44 68.6201 l 5 + 363.391 68.6201 l 5 + 363.391 484.17 l 5 + 446.24 484.17 l 5 + 446.24 40.3701 l 5 + 454.08 37.7568 464.86 33.1836 478.58 26.6504 c 5 + 490.015 21.75 500.141 15.707 508.96 8.51953 c 4 + 518.438 1.00684 525.951 -8.62988 531.5 -20.3896 c 4 + 537.38 -32.8037 540.32 -47.667 540.32 -64.9805 c 4 + 540.32 -69.8799 539.178 -77.3936 536.891 -87.5195 c 4 + 535.258 -95.3604 531.827 -103.854 526.601 -113 c 4 + 520.721 -123.453 514.351 -131.62 507.49 -137.5 c 4 + 500.63 -143.706 489.688 -149.423 474.66 -154.65 c 4 + 460.613 -159.224 444.934 -161.51 427.62 -161.51 c 4 + 394.301 -161.51 359.675 -156.283 323.74 -145.83 c 5 + 335.011 -106.63 l 5 + 369.965 -113.49 397.077 -116.92 416.351 -116.92 c 4 + 436.931 -116.92 452.938 -113 464.37 -105.16 c 4 + 475.477 -97.3203 481.03 -83.9268 481.03 -64.9805 c 4 + 481.03 -55.1797 478.907 -46.6875 474.66 -39.5 c 260 + 470.413 -32.3145 464.533 -26.4336 457.021 -21.8604 c 4 + 451.141 -18.2666 443.301 -14.3467 433.5 -10.0996 c 5 + 386.135 -3.56641 280.5 -0.299805 128.601 -0.299805 c 6 + 60 -0.299805 l 5 + 60 484.17 l 5 +EndSplineSet +Fore +SplineSet +60 0 m 1 + 60 482.92 l 1 + 141.83 482.92 l 1 + 141.83 67.4102 l 1 + 328.41 67.4102 l 1 + 328.41 482.92 l 1 + 410.24 482.92 l 1 + 410.24 67.4102 l 1 + 598.775 67.4102 l 5 + 598.775 482.92 l 5 + 679.625 482.92 l 5 + 679.625 0 l 5 + 60 0 l 1 +EndSplineSet +Layer: 2 +SplineSet +60 483 m 5 + 142 483 l 5 + 142 0 l 5 + 60 0 l 5 + 60 483 l 5 +60 669 m 5 + 142 669 l 5 + 142 586 l 5 + 60 586 l 5 + 60 669 l 5 +EndSplineSet +EndChar + +StartChar: afii10091 +Encoding: 1097 1097 451 +Width: 741 +VWidth: 2048 +Flags: W +HStem: -0 68<144 330 412 601> 463 20G<62 144 330 412 601 682> +VStem: 62 82<68 483> 330 82<68 483> 601 81<68 483> 660 80<-120 0> +LayerCount: 4 +Back +SplineSet +60 0 m 1xf4 + 60 482.92 l 1 + 141.83 482.92 l 1 + 141.83 67.4102 l 1 + 328.41 67.4102 l 1 + 328.41 482.92 l 1 + 410.24 482.92 l 1 + 410.24 67.4102 l 1 + 598.775 67.4102 l 1 + 598.775 482.92 l 1 + 679.625 482.92 l 1 + 679.625 68.3545 l 1xf8 + 737.924 68.3545 l 1 + 737.924 -148 l 1 + 657.924 -148 l 1 + 657.924 -1.42109e-14 l 1 + 60 0 l 1xf4 +EndSplineSet +Fore +SplineSet +62 -0 m 1xf4 + 62 483 l 1 + 144 483 l 1 + 144 68 l 1 + 330 68 l 1 + 330 483 l 1 + 412 483 l 1 + 412 68 l 1 + 601 68 l 1 + 601 483 l 1 + 682 483 l 1 + 682 68 l 1xf8 + 740 68 l 1 + 740 -120 l 1 + 660 -120 l 1 + 660 -0 l 1 + 62 -0 l 1xf4 +EndSplineSet +EndChar + +StartChar: afii10092 +Encoding: 1098 1098 452 +Width: 509 +VWidth: 1023 +Flags: W +HStem: 0 69<196 378.125> 229 77<196 371.127> 413 67<13 115> +VStem: 115 81<69 227.646 300 413> 400 75<91.1657 201.308> +LayerCount: 4 +Back +SplineSet +299 228 m 0 + 279 232 259 230 239 229 c 2 + 168 224 l 1 + 168 76 l 1 + 238 76 l 2 + 256 76 273 76 291 79 c 0 + 308 82 325 88 339 98 c 0 + 347 103 355 109 361 117 c 0 + 366 124 371 133 372 142 c 0 + 375 153 373 165 371 174 c 0 + 366 199 340 220 299 228 c 0 +168 482 m 5 + 168 280 l 1 + 208 284 l 2 + 233 287 259 290 284 290 c 0 + 307 290 330 287 352 279 c 0 + 373 272 394 261 410 244 c 0 + 439 216 454 174 448 134 c 0 + 444 104 430 77 410 56 c 0 + 389 35 363 19 335 11 c 0 + 304 2 271 1 238 0 c 2 + 86 0 l 1 + 86 415 l 1 + 5 415 l 1 + 5 482 l 5 + 168 482 l 5 +146 222 m 5xbc + 146 106.75 l 5 + 165 89 l 6 + 192.598 63.2175 222 56 264 54.75 c 4 + 325.973 52.9053 368.369 96.7549 369 134.75 c 4 + 370 195 316.984 224.279 221 223 c 6 + 146 222 l 5xbc +146 481.934 m 5 + 146 281.75 l 5 + 216 283.75 l 5 + 380.983 286.141 449 217 450 132.75 c 4 + 450.879 58.7275 379 -12 283 -11.25 c 4xbc + 201.996 -10.6182 183 8 144 31.75 c 5 + 129 0 l 5 + 60 0 l 5x7c + 60 437.799 l 5 + -23.9583 437.799 l 5 + -23.9583 481.934 l 5 + 146 481.934 l 5 +EndSplineSet +Fore +SplineSet +259 69 m 2 + 340 69 400 72 400 147 c 0 + 400 192 373 213 337 222 c 0 + 324 226 285 229 258 229 c 0 + 240 229 219 228 196 226 c 1 + 196 69 l 1 + 259 69 l 2 +115 413 m 1 + 13 413 l 1 + 13 480 l 1 + 196 480 l 1 + 196 300 l 1 + 213 303 261 306 279 306 c 0 + 320 306 357 299 382 291 c 0 + 439 272 475 218 475 144 c 0 + 475 106 464 63 440 39 c 1 + 408 9 357 0 290 0 c 2 + 115 0 l 1 + 115 413 l 1 +EndSplineSet +EndChar + +StartChar: afii10093 +Encoding: 1099 1099 453 +Width: 574 +VWidth: 1023 +Flags: W +HStem: 0 69<141 303.757> 229 77<141 299.133> 460 20G<60 141 432 514> +VStem: 60 81<69 227.646 300 480> 328 75<91.2493 201.245> 432 82<0 480> +LayerCount: 4 +Back +SplineSet +62 0 m 1xbc + 62 480 l 1 + 144 480 l 1 + 144 280 l 1xdc + 182 284 l 2 + 208 287 234 290 260 290 c 0 + 282 290 305 287 327 279 c 0 + 348 272 369 261 385 244 c 0 + 414 216 429 174 423 134 c 0 + 419 104 405 77 385 56 c 0 + 364 35 338 19 310 11 c 0 + 279 2 246 1 213 0 c 2 + 62 0 l 1xbc +274 228 m 0 + 254 232 234 230 214 229 c 2xbc + 144 224 l 1 + 144 76 l 1 + 213 76 l 2 + 231 76 248 76 266 79 c 0 + 283 82 300 88 314 98 c 0 + 322 103 330 109 336 117 c 0 + 341 124 346 133 348 142 c 0 + 350 153 348 165 346 174 c 0 + 341 199 315 220 274 228 c 0 +461 480 m 1 + 543 480 l 1 + 543 0 l 1 + 461 0 l 1 + 461 480 l 1 +EndSplineSet +Fore +SplineSet +432 480 m 1 + 514 480 l 1 + 514 0 l 1 + 432 0 l 1 + 432 480 l 1 +217 306 m 0 + 332 306 403 256 403 144 c 0 + 403 106 392 63 368 39 c 1 + 336 9 285 0 218 0 c 2 + 60 0 l 1 + 60 480 l 5 + 141 480 l 5 + 141 300 l 1 + 158 303 199 306 217 306 c 0 +328 147 m 0 + 328 213 272 229 203 229 c 0 + 185 229 164 228 141 226 c 1 + 141 69 l 1 + 204 69 l 2 + 276 69 328 79 328 147 c 0 +EndSplineSet +EndChar + +StartChar: afii10094 +Encoding: 1100 1100 454 +Width: 450 +VWidth: 1023 +Flags: W +HStem: 0 69<141 320.757> 229 77<141 316.127> 460 20G<60 141> +VStem: 60 81<69 227.646 300 480> 345 75<92.0012 201.308> +LayerCount: 4 +Back +SplineSet +62 0 m 1xb8 + 62 480 l 1 + 144 480 l 1 + 144 280 l 1xd8 + 182 284 l 2 + 208 287 234 290 260 290 c 0 + 282 290 305 287 327 279 c 0 + 348 272 369 261 385 244 c 0 + 414 216 429 174 423 134 c 0 + 419 104 405 77 385 56 c 0 + 364 35 338 19 310 11 c 0 + 279 2 246 1 213 0 c 2 + 62 0 l 1xb8 +274 228 m 0 + 254 232 234 230 214 229 c 2xb8 + 144 224 l 1 + 144 76 l 1 + 213 76 l 2 + 231 76 248 76 266 79 c 0 + 283 82 300 88 314 98 c 0 + 322 103 330 109 336 117 c 0 + 341 124 346 133 348 142 c 0 + 350 153 348 165 346 174 c 0 + 341 199 315 220 274 228 c 0 +145.76 493.92 m 1x78 + 145.76 465.5 145.27 395.104 144.29 282.73 c 1 + 240.004 286.323 311.38 277.504 358.42 256.271 c 0 + 377.367 247.777 393.455 238.385 406.686 228.095 c 0 + 419.915 217.806 430.45 204.494 438.29 188.16 c 1 + 445.804 171.5 449.561 153.207 449.561 133.28 c 0 + 449.561 94.4072 433.39 60.7598 401.05 32.3398 c 0 + 368.056 3.59277 327.55 -10.7803 279.53 -10.7803 c 0xb8 + 238.043 -10.7803 192.8 6.69727 143.8 41.6504 c 1 + 119.3 0 l 1 + 60.0098 0 l 1 + 60.0098 243.53 l 1 + 60.0098 335.16 l 1 + 60.0098 493.431 l 1 + 109.01 493.431 137.594 493.593 145.76 493.92 c 1x78 +144.29 222.46 m 1 + 144.29 106.82 l 1 + 176.304 72.5205 214.033 55.3701 257.48 55.3701 c 0 + 287.207 55.3701 313.014 63.7002 334.9 80.3604 c 0 + 356.134 96.6934 366.75 115.804 366.75 137.69 c 0 + 366.75 152.716 362.34 165.783 353.52 176.891 c 0 + 343.393 189.63 333.104 197.96 322.65 201.88 c 0 + 281.163 216.907 232.163 223.767 175.65 222.46 c 1 + 144.29 222.46 l 1 +EndSplineSet +Fore +SplineSet +60 0 m 1 + 60 480 l 5 + 141 480 l 5 + 141 300 l 1 + 158 303 206 306 224 306 c 0 + 265 306 302 299 327 291 c 0 + 384 272 420 218 420 144 c 0 + 420 106 409 63 385 39 c 0 + 353 9 302 0 235 0 c 2 + 60 0 l 1 +203 229 m 0 + 185 229 164 228 141 226 c 1 + 141 69 l 1 + 204 69 l 2 + 236 69 256 70 265 71 c 0 + 313 76 345 95 345 147 c 0 + 345 192 318 213 282 222 c 0 + 269 226 230 229 203 229 c 0 +EndSplineSet +EndChar + +StartChar: afii10095 +Encoding: 1101 1101 455 +Width: 467 +VWidth: 1023 +Flags: W +HStem: -10 68<77.0597 272.66> 226 64<181 344> 425 66<83.4517 262.748> +VStem: 348 79<135.615 226 290 339.08> +LayerCount: 4 +Back +SplineSet +197.46 494.311 m 4 + 221.96 494.311 244.827 491.697 266.06 486.47 c 4 + 286.967 481.243 307.874 472.098 328.78 459.03 c 4 + 350.013 445.636 368.143 429.302 383.17 410.03 c 4 + 397.87 391.083 409.957 365.848 419.43 334.325 c 4 + 428.903 302.802 433.64 268.257 433.64 230.69 c 4 + 433.64 194.104 428.903 161.11 419.43 131.71 c 4 + 409.957 101.657 397.87 78.1367 383.17 61.1504 c 4 + 369.124 44.8174 351.32 30.6074 329.76 18.5205 c 4 + 308.854 7.08594 288.6 -0.753906 269 -5 c 260 + 249.4 -9.24707 228.657 -11.3701 206.77 -11.3701 c 4 + 159.403 -11.3701 112.527 -2.38574 66.1396 15.5801 c 5 + 86.2305 71.4404 l 5 + 117.59 60.6602 148.624 55.2705 179.33 55.2705 c 5 + 197.624 55.5967 213.385 56.6582 226.615 58.4551 c 4 + 239.845 60.251 252.749 63.6006 265.325 68.5 c 4 + 277.903 73.4004 288.764 80.0156 297.91 88.3447 c 4 + 307.056 96.6748 315.632 107.455 323.635 120.686 c 4 + 331.638 133.915 338.744 149.84 344.95 168.46 c 5 + 348.544 180.873 351.157 192.796 352.79 204.23 c 5 + 185.21 204.23 l 5 + 185.21 267.44 l 5 + 354.26 267.44 l 5 + 352.953 288.673 350.013 306.478 345.44 320.85 c 4 + 339.233 341.104 330.577 357.927 319.47 371.32 c 260 + 308.363 384.713 295.46 395.493 280.76 403.66 c 4 + 266.714 411.5 251.686 417.053 235.68 420.32 c 4 + 220.653 423.26 204.646 424.73 187.66 424.73 c 4 + 153.033 424.73 117.263 418.524 80.3496 406.11 c 5 + 60.75 465.4 l 5 + 105.176 484.673 150.747 494.311 197.46 494.311 c 4 +EndSplineSet +Fore +SplineSet +198 491 m 0 + 347 491 427 401 427 248 c 0 + 427 171 407 110 368 63 c 0 + 327 14 265 -10 181 -10 c 0 + 142 -10 101 0 57 19 c 1 + 77 77 l 1 + 114 64 148 58 177 58 c 0 + 289 58 345 118 348 226 c 1 + 181 226 l 1 + 181 290 l 1 + 344 290 l 1 + 329 371 280 413 192 424 c 0 + 185 425 177 425 169 425 c 0 + 142 425 113 420 82 409 c 1 + 63 464 l 1 + 109 482 152 491 194 491 c 0 + 196 491 197 491 198 491 c 0 +EndSplineSet +EndChar + +StartChar: afii10096 +Encoding: 1102 1102 456 +Width: 715 +VWidth: 1023 +Flags: W +HStem: -10 65<371.676 521.871> 0 21G<60 142> 226 64<142 215> 426 64<373.531 520.282> 460 20G<60 142> +VStem: 60 82<0 226 290 480> 215 83<139.784 226 290 343.676> 596 83<137.351 343.862> +LayerCount: 4 +Fore +SplineSet +447 426 m 0xb7 + 350 426 298 342 298 240 c 0 + 298 138 349 55 447 55 c 0 + 546 55 596 137 596 240 c 0 + 596 343 545 426 447 426 c 0xb7 +218 290 m 1 + 235 412 317 490 448 490 c 0 + 597 490 679 392 679 241 c 0 + 679 91 593 -10 445 -10 c 0xb7 + 302 -10 220 83 215 226 c 1 + 142 226 l 1 + 142 0 l 1 + 60 0 l 1 + 60 480 l 1 + 142 480 l 1x6f + 142 290 l 1 + 218 290 l 1 +EndSplineSet +EndChar + +StartChar: afii10097 +Encoding: 1103 1103 457 +Width: 490 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 186 350 431> 174 78<276.816 350> 411 69<176.061 350> +VStem: 71 75<279.405 382.982> 350 81<0 174 252 411> +LayerCount: 4 +Fore +SplineSet +71 341 m 0 + 71 436.051 133.273 480 231 480 c 2 + 431 480 l 1 + 431 0 l 1 + 350 0 l 1 + 350 174 l 1 + 288 174 l 1 + 248 102 211 49 161 0 c 1 + 60 0 l 1 + 118 60 156 110 197 181 c 1 + 129 195 71 234 71 341 c 0 +350 252 m 1 + 350 411 l 1 + 261 411 l 2 + 239 411 223.969 409.147 214 407 c 0 + 181.5 400 146 376 146 338 c 0 + 146 325 148 312 154 299 c 0 + 167 269 194 257 234 253 c 0 + 242 252 260 252 292 252 c 2 + 350 252 l 1 +EndSplineSet +Layer: 2 +SplineSet +430.967 8.84473 m 5 + 355.767 8.84473 l 5 + 355.767 186.045 l 5 + 281.367 186.045 l 5 + 148.967 8.84473 l 5 + 61.3672 8.84473 l 5 + 204.967 192.845 l 5 + 167.9 203.778 140.767 220.045 123.567 241.646 c 132 + 106.367 263.245 97.7666 292.179 97.7666 328.445 c 4 + 97.7666 350.579 102.634 369.979 112.367 386.646 c 132 + 122.101 403.312 135.233 417.38 151.767 428.845 c 4 + 165.101 437.911 181.9 444.646 202.167 449.045 c 132 + 222.434 453.445 245.101 455.646 270.167 455.646 c 6 + 430.967 455.646 l 5 + 430.967 8.84473 l 5 +355.767 245.245 m 5 + 355.767 395.646 l 5 + 274.167 395.646 l 6 + 256.833 395.646 243.167 394.712 233.167 392.845 c 132 + 223.167 390.979 213.501 387.379 204.167 382.045 c 5 + 194.567 376.179 187.301 368.245 182.367 358.245 c 132 + 177.434 348.245 174.967 337.512 174.967 326.045 c 4 + 174.967 311.379 176.634 299.445 179.967 290.245 c 132 + 183.301 281.045 189.367 272.579 198.167 264.845 c 4 + 207.501 256.845 218.9 251.579 232.367 249.045 c 132 + 245.833 246.512 260.567 245.245 276.567 245.245 c 6 + 355.767 245.245 l 5 +EndSplineSet +EndChar + +StartChar: afii10071 +Encoding: 1105 1105 458 +Width: 523 +VWidth: 1023 +Flags: W +HStem: -9 69<220.34 443.5> 218 63<145 394> 425 65<208.776 348.214> 550 90<123 214 342 433> +VStem: 59 84<140.841 218 281 351.553> 123 91<550 640> 342 91<550 640> 394 82<281 373.006> +LayerCount: 4 +Fore +Refer: 431 1077 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -15 -53 2 +EndChar + +StartChar: uni022D +Encoding: 557 557 459 +Width: 569 +VWidth: 1023 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 543.663 60.761<302.178 369.514> 631.675 60.662<159.482 231.825> 740 73<66 471> +VStem: 46 83<137.066 343.078> 427 83<137.24 343.792> +LayerCount: 4 +Fore +Refer: 191 175 S 1 0 0 1 -73 12 2 +Refer: 88 126 N 1 0 0 1 10 262 2 +Refer: 6 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10100 +Encoding: 1107 1107 460 +Width: 419 +VWidth: 2048 +Flags: W +HStem: 421 60.9805<170 392.29> 529 207 +VStem: 88 82<1.05957 421> 156.5 223 +LayerCount: 4 +Fore +Refer: 429 1075 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 36.5 -20 2 +EndChar + +StartChar: afii10101 +Encoding: 1108 1108 461 +Width: 467 +VWidth: 1023 +Flags: W +HStem: -10 68<211.34 406.94> 226 64<140 303> 425 66<221.252 400.548> +VStem: 57 79<135.615 226 290 339.08> +LayerCount: 4 +Fore +Refer: 455 1101 N -1 0 0 1 484 0 2 +EndChar + +StartChar: afii10109 +Encoding: 1116 1116 462 +Width: 504 +VWidth: 2048 +Flags: W +HStem: 0 21<68 147.87 358.454 471.27> 463.41 20<68 147.87 369.84 443.457> 529 207 +VStem: 68 79.87<0 483.41> 210.5 223 +LayerCount: 4 +Fore +Refer: 436 1082 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 90.5 -20 2 +EndChar + +StartChar: uni045D +Encoding: 1117 1117 463 +Width: 532 +VWidth: 1023 +Flags: W +HStem: 0 21<60 155.665 390 472> 463 20<60 142 376.335 472> 550 204 +VStem: 22 281 60 82<120.018 483> 390 82<0 362.982> +LayerCount: 4 +Fore +Refer: 434 1080 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 -112 -20 2 +EndChar + +StartChar: afii10110 +Encoding: 1118 1118 464 +Width: 507 +VWidth: 1023 +Flags: W +HStem: 462 20<22 110.384 397.616 481> 549.807 67.0791<189.774 306.327> +VStem: 98.7002 305.6 +LayerCount: 4 +Fore +Refer: 445 1091 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 -11.5 1.07703 2 +EndChar + +StartChar: uni04C1 +Encoding: 1217 1217 465 +Width: 962 +VWidth: 2048 +Flags: W +HStem: 678.95 20<28.6201 150.36 439.24 523.521 812.401 934.141> 759.807 67.0791<396.014 512.567> +VStem: 304.94 305.6 439.24 84.2803<3.15039 698.95> +LayerCount: 4 +Fore +Refer: 400 1046 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 194.74 211.077 2 +EndChar + +StartChar: uni04C2 +Encoding: 1218 1218 466 +Width: 686 +VWidth: 1023 +Flags: W +HStem: 0 21<21 130.333 303 383 555.667 665> 462 20<34 138.093 303 383 547.907 652> 549.807 67.0791<281.274 397.827> +VStem: 190.2 305.6 303 80<0 482> +LayerCount: 4 +Fore +Refer: 432 1078 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 80 1.07703 2 +EndChar + +StartChar: uni04D0 +Encoding: 1232 1232 467 +Width: 628 +VWidth: 2048 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 759.807 67.0791<262.274 378.827> +VStem: 171.2 305.6 +LayerCount: 4 +Fore +Refer: 394 1040 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 61 211.077 2 +EndChar + +StartChar: uni04D1 +Encoding: 1233 1233 468 +Width: 491 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 549.807 67.0791<173.274 289.827> +VStem: 82.2002 305.6 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 426 1072 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 -28 1.07703 2 +EndChar + +StartChar: uni04D2 +Encoding: 1234 1234 469 +Width: 628 +VWidth: 2048 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 760 90<169 260 388 479> +VStem: 169 91<760 850> 388 91<760 850> +LayerCount: 4 +Fore +Refer: 394 1040 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 31 157 2 +EndChar + +StartChar: uni04D3 +Encoding: 1235 1235 470 +Width: 491 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 550 90<80 171 299 390> +VStem: 80 91<550 640> 299 91<550 640> 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 426 1072 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -58 -53 2 +EndChar + +StartChar: uni04D6 +Encoding: 1238 1238 471 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 759.807 67.0791<221.274 337.827> +VStem: 80 83<73 321 394 621> 130.2 305.6 +LayerCount: 4 +Fore +Refer: 399 1045 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 20 211.077 2 +EndChar + +StartChar: uni04D7 +Encoding: 1239 1239 472 +Width: 523 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73 408 73 549.807 67.0791<216.274 332.827> +VStem: 59.4 75<139 218 281 352> 125.2 305.6 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 431 1077 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 15 1.07703 2 +EndChar + +StartChar: afii10846 +Encoding: 1241 1241 473 +Width: 523 +VWidth: 1023 +Flags: W +HStem: 0 73 191 73 408 73 +VStem: 64.6 75<107 200> 400.6 75<129 200 263 342> +LayerCount: 4 +Fore +Refer: 431 1077 N -1 -0 0 -1 535 481 2 +EndChar + +StartChar: uni04DB +Encoding: 1243 1243 474 +Width: 523 +VWidth: 1023 +Flags: W +HStem: 0 73 191 73 408 73 550 90<78 169 297 388> +VStem: 64.6 75<107 200> 78 91<550 640> 297 91<550 640> 400.6 75<129 200 263 342> +LayerCount: 4 +Fore +Refer: 473 1241 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -60 -53 2 +EndChar + +StartChar: uni04DC +Encoding: 1244 1244 475 +Width: 962 +VWidth: 2048 +Flags: W +HStem: 678.95 20<28.6201 150.36 439.24 523.521 812.401 934.141> 760 90<302.74 393.74 521.74 612.74> +VStem: 302.74 91<760 850> 439.24 84.2803<3.15039 698.95> 521.74 91<760 850> +LayerCount: 4 +Fore +Refer: 400 1046 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 164.74 157 2 +EndChar + +StartChar: uni04DD +Encoding: 1245 1245 476 +Width: 686 +VWidth: 1023 +Flags: W +HStem: 0 21<21 130.333 303 383 555.667 665> 462 20<34 138.093 303 383 547.907 652> 550 90<188 279 407 498> +VStem: 188 91<550 640> 303 80<0 482> 407 91<550 640> +CounterMasks: 1 1c +LayerCount: 4 +Fore +Refer: 432 1078 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 50 -53 2 +EndChar + +StartChar: uni04DE +Encoding: 1246 1246 477 +Width: 623 +VWidth: 1023 +Flags: W +HStem: -21 79<107.95 375.792> 336 71<212 351.334> 627 77<148.815 394.46> 760 90<145 236 364 455> +VStem: 145 91<760 850> 364 91<760 850> 468 85<135.719 272.241> +LayerCount: 4 +Fore +Refer: 401 1047 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 7 157 2 +EndChar + +StartChar: uni04DF +Encoding: 1247 1247 478 +Width: 409 +VWidth: 1023 +Flags: W +HStem: -8 75<106.251 289.859> 231 56<99 249.387> 421 64<88.4025 257.497> 550 90<33 124 252 343> +VStem: 33 91<550 640> 252 91<550 640> 278 74<314.439 401.768> 309 76<86.3512 199.074> +LayerCount: 4 +Fore +Refer: 433 1079 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -105 -53 2 +EndChar + +StartChar: uni04E2 +Encoding: 1250 1250 479 +Width: 727 +VWidth: 2048 +Flags: W +HStem: 760 73<159.315 564.315> +LayerCount: 4 +Fore +Refer: 402 1048 N 1 0 0 1 0 0 3 +Refer: 191 175 N 1 0 0 1 20.3154 32 2 +EndChar + +StartChar: uni04E3 +Encoding: 1251 1251 480 +Width: 532 +VWidth: 1023 +Flags: W +HStem: 0 21<60 155.665 390 472> 463 20<60 142 376.335 472> 550 73<69.5 474.5> +VStem: 60 82<120.018 483> 390 82<0 362.982> +LayerCount: 4 +Fore +Refer: 434 1080 N 1 0 0 1 0 0 3 +Refer: 191 175 N 1 0 0 1 -69.5 -178 2 +EndChar + +StartChar: uni04E4 +Encoding: 1252 1252 481 +Width: 727 +VWidth: 2048 +Flags: W +HStem: 760 90<206.815 297.815 425.815 516.815> +VStem: 206.815 91<760 850> 425.815 91<760 850> +LayerCount: 4 +Fore +Refer: 402 1048 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 68.8154 157 2 +EndChar + +StartChar: uni04E5 +Encoding: 1253 1253 482 +Width: 532 +VWidth: 1023 +Flags: W +HStem: 0 21<60 155.665 390 472> 463 20<60 142 376.335 472> 550 90<117 208 336 427> +VStem: 60 82<120.018 483> 117 91<550 640> 336 91<550 640> 390 82<0 362.982> +LayerCount: 4 +Fore +Refer: 434 1080 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -21 -53 2 +EndChar + +StartChar: uni04E6 +Encoding: 1254 1254 483 +Width: 758 +VWidth: 1023 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 760 90<197 288 416 507> +VStem: 50 94<222.236 467.906> 197 91<760 850> 416 91<760 850> 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 408 1054 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 59 157 2 +EndChar + +StartChar: uni04E7 +Encoding: 1255 1255 484 +Width: 569 +VWidth: 1023 +Flags: W +HStem: -10 65<204.434 352.871> 426 64<203.115 351.282> 550 90<124 215 343 434> +VStem: 46 83<137.148 343.221> 124 91<550 640> 343 91<550 640> 427 83<137.351 343.862> +LayerCount: 4 +Fore +Refer: 440 1086 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -14 -53 2 +EndChar + +StartChar: uni04EC +Encoding: 1260 1260 485 +Width: 692 +VWidth: 1023 +Flags: W +HStem: -10 74<165.479 411.033> 308 67<301 566> 622 75<162.637 408.565> 760 90<161 252 380 471> +VStem: 161 91<760 850> 380 91<760 850> 566 95<221.445 308 375 464.252> +LayerCount: 4 +Fore +Refer: 423 1069 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 23 157 2 +EndChar + +StartChar: uni04ED +Encoding: 1261 1261 486 +Width: 467 +VWidth: 1023 +Flags: W +HStem: -10 68<77.0597 272.66> 226 64<181 344> 425 66<83.4517 262.748> 551 90<41 132 260 351> +VStem: 41 91<551 641> 260 91<551 641> 348 79<135.615 226 290 339.08> +LayerCount: 4 +Fore +Refer: 455 1101 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -97 -52 2 +EndChar + +StartChar: uni04EE +Encoding: 1262 1262 487 +Width: 618 +VWidth: 2048 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20<21.9424 126.225 499.495 600.514> 760 73<107 512> +LayerCount: 4 +Fore +Refer: 413 1059 N 1 0 0 1 0 0 3 +Refer: 191 175 N 1 0 0 1 -32 32 2 +EndChar + +StartChar: uni04EF +Encoding: 1263 1263 488 +Width: 507 +VWidth: 1023 +Flags: W +HStem: 462 20<22 110.384 397.616 481> 550 73<49 454> +LayerCount: 4 +Fore +Refer: 445 1091 N 1 0 0 1 0 0 3 +Refer: 191 175 N 1 0 0 1 -90 -178 2 +EndChar + +StartChar: uni04F0 +Encoding: 1264 1264 489 +Width: 618 +VWidth: 2048 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20<21.9424 126.225 499.495 600.514> 760 90<154.5 245.5 373.5 464.5> +VStem: 154.5 91<760 850> 373.5 91<760 850> +LayerCount: 4 +Fore +Refer: 413 1059 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 16.5 157 2 +EndChar + +StartChar: uni04F1 +Encoding: 1265 1265 490 +Width: 507 +VWidth: 1023 +Flags: W +HStem: 462 20<22 110.384 397.616 481> 550 90<96.5 187.5 315.5 406.5> +VStem: 96.5 91<550 640> 315.5 91<550 640> +LayerCount: 4 +Fore +Refer: 445 1091 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -41.5 -53 2 +EndChar + +StartChar: uni04F2 +Encoding: 1266 1266 491 +Width: 618 +VWidth: 2048 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20<21.9424 126.225 499.495 600.514> +LayerCount: 4 +Fore +Refer: 413 1059 N 1 0 0 1 0 0 3 +Refer: 330 733 N 1 0 0 1 9.30273 198.875 2 +EndChar + +StartChar: uni04F3 +Encoding: 1267 1267 492 +Width: 507 +VWidth: 1023 +Flags: W +HStem: 462 20<22 110.384 397.616 481> +LayerCount: 4 +Fore +Refer: 445 1091 N 1 0 0 1 0 0 3 +Refer: 330 733 N 1 0 0 1 -48.6973 -11.125 2 +EndChar + +StartChar: uni04F4 +Encoding: 1268 1268 493 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 0 21<552 640> 169 79<231.675 427.206> 760 90<205 296 424 515> +VStem: 80 87<309.051 692> 205 91<760 850> 424 91<760 850> 552 88<0 292 339.876 692> +LayerCount: 4 +Fore +Refer: 417 1063 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 67 157 2 +EndChar + +StartChar: uni04F5 +Encoding: 1269 1269 494 +Width: 497 +VWidth: 2048 +Flags: W +HStem: 0 21<360.17 437.59> 184.729 69.581<163.503 307.186> 461.92 20<50 127.42 360.17 437.59> 550 90<105 196 324 415> +VStem: 50 77.42<293.225 481.92> 105 91<550 640> 324 91<550 640> 360.17 77.42<0 230.3 284.559 481.92> +LayerCount: 4 +Fore +Refer: 449 1095 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -33 -53 2 +EndChar + +StartChar: uni04F8 +Encoding: 1272 1272 495 +Width: 775 +VWidth: 1023 +Flags: W +HStem: 0 73<163 377.247> 344 72<163 371.961> 674 20<80 163 612 695> 760 90<232.5 323.5 451.5 542.5> +VStem: 80 83<73 341.986 413 694> 232.5 91<760 850> 435 84<128.858 282.325> 451.5 91<760 850> 612 83<0 694> +LayerCount: 4 +Fore +Refer: 421 1067 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 94.5 157 2 +EndChar + +StartChar: uni04F9 +Encoding: 1273 1273 496 +Width: 574 +VWidth: 1023 +Flags: W +HStem: 0 69<141 303.757> 229 77<141 299.133> 460 20<60 141 432 514> 550 90<132 223 351 442> +VStem: 60 81<69 227.646 300 480> 132 91<550 640> 328 75<91.2493 201.245> 351 91<550 640> 432 82<0 480> +LayerCount: 4 +Fore +Refer: 453 1099 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -6 -53 2 +EndChar + +StartChar: uni0400 +Encoding: 1024 1024 497 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 73<163 486> 321 73<163 459> 621 73<163 486> 760 204 +VStem: 33 281 80 83<73 321 394 621> +LayerCount: 4 +Fore +Refer: 399 1045 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 -101 190 2 +EndChar + +StartChar: afii10051 +Encoding: 1026 1026 498 +Width: 772 +VWidth: 1023 +Flags: W +HStem: 0 21G<199 282> 427 69<332.468 497.423> 621 73<38 199 282 554> +VStem: 199 83<0 400.413 452 621> 604 78<-19.44 295.653> +LayerCount: 4 +Fore +SplineSet +682 152 m 0 + 682 -76 596 -184 520 -238 c 1 + 480 -180 l 1 + 556 -130 604 -12 604 152 c 0 + 604 350 516 427 412 427 c 0 + 374 427 331 415 282 391 c 1 + 282 0 l 1 + 199 0 l 1 + 199 621 l 1 + 38 621 l 1 + 38 694 l 1 + 554 694 l 1 + 554 621 l 5 + 282 621 l 1 + 282 452 l 1 + 340 481 393 496 443 496 c 0 + 593 496 682 380 682 152 c 0 +EndSplineSet +EndChar + +StartChar: afii10052 +Encoding: 1027 1027 499 +Width: 482 +VWidth: 2048 +Flags: W +HStem: 0 21<80 162.81> 622.79 73.0107<162.81 475.43> 739 207 +VStem: 80 82.8096<0 622.79> 264.609 223 +LayerCount: 4 +Fore +Refer: 397 1043 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 144.609 190 2 +EndChar + +StartChar: afii10053 +Encoding: 1028 1028 500 +Width: 659 +VWidth: 1023 +Flags: W +HStem: -10 74<316.967 562.521> 308 67<162 427> 622 75<319.435 565.363> +VStem: 67 95<221.445 308 375 464.252> +LayerCount: 4 +Fore +Refer: 423 1069 N -1 0 0 1 728 0 2 +EndChar + +StartChar: afii10054 +Encoding: 1029 1029 501 +Width: 599 +VWidth: 1023 +Flags: W +HStem: -9 81<162.544 387.194> 622 78<232.03 485.598> +VStem: 74 91<458.576 567.539> 449 90<124.411 240.321> +LayerCount: 4 +Fore +Refer: 55 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10055 +Encoding: 1030 1030 502 +Width: 243 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> +VStem: 80 83<0 694> +LayerCount: 4 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10056 +Encoding: 1031 1031 503 +Width: 243 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 760 90<-33.5 57.5 185.5 276.5> +VStem: -33.5 91<760 850> 80 83<0 694> 185.5 91<760 850> +CounterMasks: 1 1c +LayerCount: 4 +Fore +Refer: 502 1030 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -171.5 157 2 +EndChar + +StartChar: afii10057 +Encoding: 1032 1032 504 +Width: 409 +VWidth: 1023 +Flags: W +HStem: -8.18359 72.2275<30.8911 190.563> 673 20<246 329> +VStem: 246 83<116.872 693> +LayerCount: 4 +Fore +Refer: 46 74 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10058 +Encoding: 1033 1033 505 +Width: 1026 +VWidth: 1023 +Flags: W +HStem: 0 73<610 844.247> 344 72<610 838.961> 617 75<369.493 522> +VStem: 522 88<73 341.692 413 617> 902 84<128.858 282.325> +LayerCount: 4 +Fore +SplineSet +610 73 m 1 + 700 73 l 2 + 745 73 774 74 787 76 c 0 + 856 83 902 131 902 206 c 0 + 902 270 863 321 812 334 c 0 + 793 339 736 344 698 344 c 0 + 672 344 643 343 610 340 c 1 + 610 73 l 1 +610 692 m 1 + 610 413 l 1 + 639 415 666 416 692 416 c 0 + 750 416 822 409 858 397 c 0 + 939 370 986 294 986 188 c 0 + 986 133 969 83 935 49 c 1 + 890 6 841 0 745 0 c 2 + 522 0 l 1 + 522 617 l 1 + 372 617 l 1 + 319 366 235 171 137 0 c 1 + 50 0 l 1 + 158 205 242 439 309 692 c 1 + 610 692 l 1 +EndSplineSet +EndChar + +StartChar: afii10059 +Encoding: 1034 1034 506 +Width: 1016 +VWidth: 1023 +Flags: W +HStem: 0 73<600 834.247> 311 75<167 512> 344 72<600 828.961> +VStem: 80 87<0 311 386 692> 512 88<73 311 413 692> 892 84<128.858 282.325> +LayerCount: 4 +Fore +SplineSet +600 73 m 1xbc + 690 73 l 2 + 735 73 764 74 777 76 c 0 + 846 83 892 131 892 206 c 0 + 892 270 853 321 802 334 c 0 + 783 339 726 344 688 344 c 0 + 662 344 633 343 600 340 c 1 + 600 73 l 1xbc +600 692 m 1 + 600 413 l 1 + 629 415 656 416 682 416 c 0xbc + 740 416 812 409 848 397 c 0 + 929 370 976 294 976 188 c 0 + 976 133 959 83 925 49 c 1 + 880 6 831 0 735 0 c 2 + 600 0 l 1 + 517 0 l 1 + 512 0 l 1 + 512 311 l 1 + 167 311 l 1 + 167 0 l 1 + 80 0 l 1 + 80 692 l 1 + 167 692 l 1 + 167 386 l 1 + 512 386 l 1xdc + 512 692 l 1 + 600 692 l 1 +EndSplineSet +EndChar + +StartChar: afii10060 +Encoding: 1035 1035 507 +Width: 833 +VWidth: 1023 +Flags: W +HStem: 0 21G<199 282 672 753> 426 70<358.402 597.007> 621 73<38 199 282 584> +VStem: 199 83<0 384.924 442 621> 672 81<0 357.164> +LayerCount: 4 +Fore +SplineSet +38 694 m 1 + 584 694 l 1 + 584 621 l 1 + 282 621 l 1 + 282 442 l 1 + 331 474.6 426.5 496 517 496 c 0 + 730.5 496 753 372 753 309 c 2 + 753 0 l 1 + 672 0 l 1 + 672 282 l 2 + 672 372.6 606.5 426 486 426 c 0 + 420.5 426 335 406.6 282 373 c 1 + 282 0 l 1 + 199 0 l 1 + 199 621 l 1 + 38 621 l 1 + 38 694 l 1 +EndSplineSet +EndChar + +StartChar: afii10061 +Encoding: 1036 1036 508 +Width: 631 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163 466.584 591> 674 20<80 163 450.604 572> 739 207 +VStem: 80 83<0 694> 282.2 223 +LayerCount: 4 +Fore +Refer: 404 1050 N 1 0 0 1 0 0 3 +Refer: 148 180 N 1 0 0 1 162.2 190 2 +EndChar + +StartChar: uni040D +Encoding: 1037 1037 509 +Width: 727 +VWidth: 2048 +Flags: W +HStem: 760 204 +VStem: 111.815 281 +LayerCount: 4 +Fore +Refer: 402 1048 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 -22.1846 190 2 +EndChar + +StartChar: afii10062 +Encoding: 1038 1038 510 +Width: 618 +VWidth: 2048 +Flags: W +HStem: -12.2217 76.5576<69.1666 232.495> 675.765 20<21.9424 126.225 499.495 600.514> 759.807 67.0791<247.774 364.327> +VStem: 156.7 305.6 +LayerCount: 4 +Fore +Refer: 413 1059 N 1 0 0 1 0 0 3 +Refer: 222 728 N 1 0 0 1 46.5 211.077 2 +EndChar + +StartChar: afii10145 +Encoding: 1039 1039 511 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 0 75<167 326 394 552> +VStem: 80 87<75 692> 326 68<-164 0> 552 88<75 692> +LayerCount: 4 +Fore +SplineSet +640 0 m 1 + 394 -0 l 1 + 394 -164 l 1 + 326 -164 l 1 + 326 0 l 1 + 80 0 l 1 + 80 692 l 1 + 167 692 l 1 + 167 75 l 1 + 552 75 l 1 + 552 692 l 1 + 640 692 l 1 + 640 0 l 1 +EndSplineSet +EndChar + +StartChar: uni0450 +Encoding: 1104 1104 512 +Width: 523 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73 408 73 550 204 +VStem: 28 281 59.4 75<139 218 281 352> 395.4 75<281 374> +LayerCount: 4 +Fore +Refer: 431 1077 N 1 0 0 1 0 0 3 +Refer: 89 96 N 1 0 0 1 -106 -20 2 +EndChar + +StartChar: afii10099 +Encoding: 1106 1106 513 +Width: 584 +VWidth: 1023 +Flags: W +HStem: 0 21G<131 213> 317 69<261.874 399.652> 446 64<20 131 213 398> +VStem: 131 82<0 291.371 342 446> 458 82<-40.2513 246.411> +LayerCount: 4 +Fore +SplineSet +400 -199 m 1 + 370 -138 l 1 + 423 -97.9 458 -17.9004 458 102.1 c 0 + 458 258.1 411.708 317 333 317 c 0 + 295 317 262 305 213 281 c 1 + 213 0 l 1 + 131 0 l 1 + 131 446 l 1 + 20 446 l 1 + 20 510 l 1 + 398 510 l 1 + 398 446 l 1 + 213 446 l 1 + 213 342 l 1 + 271 371 314 386 364 386 c 0 + 479 386 540 274.1 540 108.1 c 0 + 540 -47.9004 481 -153.9 400 -199 c 1 +EndSplineSet +EndChar + +StartChar: afii10102 +Encoding: 1109 1109 514 +Width: 497 +VWidth: 1023 +Flags: W +HStem: 0 73<112.539 330.762> 408 73<295.706 414.2> +VStem: 80 85 360 85 +LayerCount: 4 +Fore +Refer: 7 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10103 +Encoding: 1110 1110 515 +Width: 202 +VWidth: 1023 +Flags: W +HStem: 0 21<60 142> 463 20<60 142> 586 83<60 142> +VStem: 60 82<0 483 586 669> +LayerCount: 4 +Fore +Refer: 4 105 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10104 +Encoding: 1111 1111 516 +Width: 255 +VWidth: 1023 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> 550 90<-27 64 192 283> +VStem: -27 91<550 640> 88 80<0 482> 192 91<550 640> +CounterMasks: 1 1c +LayerCount: 4 +Fore +Refer: 140 305 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 -165 -53 2 +EndChar + +StartChar: afii10105 +Encoding: 1112 1112 517 +Width: 237 +VWidth: 1023 +Flags: W +HStem: 462 20<83 163.073> 586 83<82 164> +VStem: 82 82<-158.014 482 586 669> +LayerCount: 4 +Fore +Refer: 23 106 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10106 +Encoding: 1113 1113 518 +Width: 743 +VWidth: 1023 +Flags: W +HStem: 0 68<434 613.757> 228 77<434 609.127> 416 64<250.097 352> +VStem: 352 82<68 226.646 299 416> 638 75<91.0012 200.308> +LayerCount: 4 +Fore +SplineSet +528 0 m 2 + 352 0 l 1 + 352 416 l 1 + 253 416 l 1 + 223 254 162 123 92 0 c 1 + 10 0 l 1 + 96 154 160 312 192 480 c 1 + 434 480 l 1 + 434 299 l 1 + 451 302 499 305 517 305 c 0 + 558 305 595 298 620 290 c 0 + 677 271 713 217 713 143 c 0 + 713 105 702 62 678 38 c 1 + 646 8 595 0 528 0 c 2 +434 225 m 1 + 434 68 l 1 + 497 68 l 2 + 529 68 549 69 558 70 c 0 + 606 75 638 94 638 146 c 0 + 638 191 611 212 575 221 c 0 + 562 225 523 228 496 228 c 0 + 478 228 457 227 434 225 c 1 +EndSplineSet +EndChar + +StartChar: afii10107 +Encoding: 1114 1114 519 +Width: 753 +VWidth: 1023 +Flags: W +HStem: 0 69<444 626.125> 226 64<142 362> 229 77<444 619.127> 460 20G<60 142 362 444> +VStem: 60 82<0 226 290 480> 362 82<69 226 300 480> 648 75<91.2341 201.308> +LayerCount: 4 +Fore +SplineSet +507 69 m 2xde + 587.797 69 648 72.3092 648 147 c 0 + 648 192 621 213 585 222 c 0 + 572 226 533 229 506 229 c 0xbe + 488 229 467 228 444 226 c 1 + 444 69 l 1 + 507 69 l 2xde +538 0 m 2 + 362 0 l 1 + 362 226 l 1 + 142 226 l 1 + 142 0 l 1 + 60 0 l 1 + 60 480 l 1 + 142 480 l 1 + 142 290 l 1 + 362 290 l 1xde + 362 480 l 1 + 444 480 l 1 + 444 300 l 1 + 461 303 509 306 527 306 c 0 + 568 306 605 299 630 291 c 0 + 687 272 723 218 723 144 c 0 + 723 106 712 63 688 39 c 1 + 656 9 605 0 538 0 c 2 +EndSplineSet +EndChar + +StartChar: afii10108 +Encoding: 1115 1115 520 +Width: 574 +VWidth: 1023 +Flags: W +HStem: 0 21G<131 213 449 530> 317 69<263.468 418.435> 446 64<20 131 213 398> +VStem: 131 82<0 290.413 342 446> 449 81<0 284.341> +LayerCount: 4 +Fore +SplineSet +398 446 m 1 + 213 446 l 1 + 213 342 l 1 + 271 371 324 386 374 386 c 0 + 475.391 386 530 321.195 530 219 c 2 + 530 0 l 1 + 449 0 l 1 + 449 200 l 2 + 449 280.255 421.708 317 343 317 c 0 + 305 317 262 305 213 281 c 1 + 213 0 l 1 + 131 0 l 1 + 131 446 l 1 + 20 446 l 1 + 20 510 l 1 + 398 510 l 1 + 398 446 l 1 +EndSplineSet +EndChar + +StartChar: afii10193 +Encoding: 1119 1119 521 +Width: 544 +VWidth: 1023 +Flags: W +HStem: 0 64<142 238 306 402> 460 20G<60 142 402 484> +VStem: 60 82<64 480> 238 68<-146 0> 402 82<64 480> +LayerCount: 4 +Fore +SplineSet +402 64 m 1 + 402 480 l 1 + 484 480 l 1 + 484 0 l 1 + 306 1.88738e-15 l 1 + 306 -146 l 1 + 238 -146 l 1 + 238 0 l 1 + 60 0 l 1 + 60 480 l 1 + 142 480 l 1 + 142 64 l 1 + 402 64 l 1 +EndSplineSet +EndChar + +StartChar: uni0492 +Encoding: 1170 1170 522 +Width: 551 +VWidth: 1023 +Flags: W +HStem: 0 21G<90 173> 333 74<15 90 173 305> 621 73<173 491> +VStem: 90 83<0 333 407 621> +LayerCount: 4 +Fore +SplineSet +173 333 m 1 + 173 0 l 1 + 90 0 l 1 + 90 333 l 1 + 15 333 l 1 + 15 407 l 1 + 90 407 l 1 + 90 694 l 1 + 491 694 l 1 + 491 621 l 1 + 173 621 l 1 + 173 407 l 1 + 305 407 l 1 + 305 333 l 1 + 173 333 l 1 +EndSplineSet +EndChar + +StartChar: uni0493 +Encoding: 1171 1171 523 +Width: 351 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 142> 261 64<6 60 142 296> 416 64<142 341> +VStem: 60 82<0 261 325 416> +LayerCount: 4 +Fore +SplineSet +341 416 m 1 + 142 416 l 1 + 142 325 l 1 + 296 325 l 1 + 296 261 l 1 + 142 261 l 1 + 142 0 l 1 + 60 0 l 1 + 60 261 l 1 + 6 261 l 1 + 6 325 l 1 + 60 325 l 1 + 60 480 l 1 + 341 480 l 1 + 341 416 l 1 +EndSplineSet +EndChar + +StartChar: uni0496 +Encoding: 1174 1174 524 +Width: 931 +VWidth: 1023 +Flags: W +HStem: 0 21G<34 156.225 424 507> 674 20G<53 172.089 424 507 758.911 878> +VStem: 424 83<0 694> 829 68<-164 0> +LayerCount: 4 +Fore +SplineSet +157 694 m 1 + 412 356 l 1 + 141 0 l 1 + 34 0 l 1 + 302 363 l 1 + 53 694 l 1 + 157 694 l 1 +507 694 m 1 + 507 0 l 1 + 424 0 l 1 + 424 694 l 1 + 507 694 l 1 +774 694 m 1 + 878 694 l 1 + 629 363 l 1 + 848 66 l 1 + 897 66 l 1 + 897 -164 l 1 + 829 -164 l 1 + 829 0 l 1 + 790 0 l 1 + 519 356 l 1 + 774 694 l 1 +EndSplineSet +EndChar + +StartChar: uni0497 +Encoding: 1175 1175 525 +Width: 686 +VWidth: 1023 +Flags: W +HStem: 0 21G<21 130.333 303 383> 462 20G<34 138.093 303 383 547.907 652> +VStem: 303 80<0 482> 597 68<-146 0> +LayerCount: 4 +Fore +SplineSet +122 482 m 5 + 295 267 l 5 + 117 0 l 5 + 21 0 l 5 + 204 275 l 5 + 34 482 l 5 + 122 482 l 5 +383 482 m 5 + 383 0 l 5 + 303 0 l 5 + 303 482 l 5 + 383 482 l 5 +564 482 m 5 + 652 482 l 5 + 482 275 l 5 + 625 60 l 5 + 665 60 l 5 + 665 -146 l 5 + 597 -146 l 5 + 597 0 l 5 + 569 0 l 5 + 391 267 l 5 + 564 482 l 5 +EndSplineSet +EndChar + +StartChar: uni0498 +Encoding: 1176 1176 526 +Width: 632 +VWidth: 1023 +Flags: W +HStem: -247 52<228.451 367.058> -8 78<214.819 281 353 433.26> 333 64<173 280> 340 60<173 369.615> 624 76<183.427 405.244> +VStem: 452 88<465.08 583.285> 500 82<127.804 269.972> +LayerCount: 4 +Fore +SplineSet +300 700 m 0xdc + 485 700 540 632 540 527 c 0xdc + 540 470 476 404 435 388 c 1 + 514 373 582 301 582 210 c 0 + 582 152 563 89 519 49 c 0 + 477 11 445 -5 353 -8 c 1 + 338 -66 l 1 + 387 -82 425 -99 425 -156 c 0 + 425 -208 379 -247 322 -247 c 0 + 310 -247 297 -246 283 -243 c 0 + 274 -241 254 -236 223 -227 c 2 + 206 -222 l 1 + 221 -171 l 1 + 235 -175 l 2 + 282 -189 311 -195 323 -195 c 0 + 347 -194 362 -187 368 -172 c 0 + 378 -151 360 -134 348 -128 c 0 + 341 -125 332 -122 322 -119 c 2 + 256 -99 l 1 + 281 -8 l 1 + 217 -3 168 14 108 37 c 1 + 137 118 l 1 + 218 88 283 70 331 70 c 0 + 427 71 500 109 500 202 c 0 + 500 296 402 340 301 340 c 0xda + 294 340 287 339 280 339 c 2 + 173 333 l 1 + 173 397 l 1xea + 261 400 l 2 + 362 403 452 444 452 523 c 0 + 452 595 388 624 321 624 c 0 + 261 624 224 614 165 597 c 1 + 138 672 l 1 + 200 691 238 700 300 700 c 0xdc +EndSplineSet +EndChar + +StartChar: uni0499 +Encoding: 1177 1177 527 +Width: 409 +VWidth: 1023 +Flags: W +HStem: -247 52<106.451 245.058> -7 74<231 289.643> 231 56<99 249.387> 421 64<88.4025 257.497> +VStem: 278 74<314.439 401.768> 309 76<86.3512 199.074> +LayerCount: 4 +Fore +SplineSet +216 -66 m 1xf4 + 265 -82 303 -99 303 -156 c 0 + 303 -208 257 -247 200 -247 c 0 + 188 -247 175 -246 161 -243 c 0 + 152 -241 132 -236 101 -227 c 2 + 84 -222 l 1 + 99 -171 l 1 + 113 -175 l 2 + 160 -189 189 -195 201 -195 c 0 + 225 -194 240 -187 246 -172 c 0 + 256 -151 238 -134 226 -128 c 0 + 219 -125 210 -122 200 -119 c 2 + 134 -99 l 1 + 159 -5 l 1 + 121 0 90 11 53 25 c 1 + 73 100 l 1 + 130 79 175 67 209 67 c 0 + 276 68 309 87 309 140 c 0xf4 + 309 206 258 231 188 231 c 0 + 183 231 179 231 174 231 c 2 + 99 227 l 1 + 99 285 l 1 + 160 287 l 2 + 231 289 278 310 278 365 c 0 + 278 391 243 421 202 421 c 0 + 160 421 134 415 93 403 c 1 + 74 465 l 1 + 117 478 145 485 188 485 c 0 + 318 485 352 423 352 368 c 0xf8 + 352 328 311 281 282 270 c 1 + 338 260 385 210 385 146 c 0 + 385 105 372 61 341 33 c 0 + 312 8 291 -4 231 -7 c 1 + 216 -66 l 1xf4 +EndSplineSet +EndChar + +StartChar: uni049A +Encoding: 1178 1178 528 +Width: 673 +VWidth: 1023 +Flags: W +HStem: 0 21G<128 211> 674 20G<128 211 498.604 620> +VStem: 128 83<0 694> 571 68<-164 0> +LayerCount: 4 +Fore +SplineSet +128 694 m 5 + 211 694 l 5 + 211 0 l 5 + 128 0 l 5 + 128 694 l 5 +516 694 m 5 + 620 694 l 5 + 327 363 l 5 + 582 66 l 5 + 639 66 l 5 + 639 -164 l 5 + 571 -164 l 5 + 571 0 l 5 + 532 0 l 5 + 222 356 l 5 + 516 694 l 5 +EndSplineSet +EndChar + +StartChar: uni049B +Encoding: 1179 1179 529 +Width: 473 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 140> 462 20G<60 140 341.186 449> +VStem: 60 80<0 482> 394 68<-146 0> +LayerCount: 4 +Fore +SplineSet +60 482 m 1 + 140 482 l 1 + 140 0 l 1 + 60 0 l 1 + 60 482 l 1 +361 482 m 1 + 449 482 l 1 + 239 275 l 1 + 413 60 l 1 + 462 60 l 1 + 462 -146 l 1 + 394 -146 l 1 + 394 0 l 1 + 366 0 l 1 + 148 267 l 1 + 361 482 l 1 +EndSplineSet +EndChar + +StartChar: uni04A0 +Encoding: 1184 1184 530 +Width: 738 +VWidth: 1023 +Flags: W +HStem: 0 21G<182 265 568.584 693> 621 73<10 182> +VStem: 182 83<0 621> +LayerCount: 4 +Fore +SplineSet +570 694 m 1 + 674 694 l 1 + 381 363 l 1 + 693 0 l 1 + 586 0 l 1 + 276 356 l 1 + 570 694 l 1 +182 621 m 1 + 10 621 l 1 + 10 694 l 1 + 265 694 l 1 + 265 0 l 1 + 182 0 l 1 + 182 621 l 1 +EndSplineSet +EndChar + +StartChar: uni04A1 +Encoding: 1185 1185 531 +Width: 519 +VWidth: 1023 +Flags: W +HStem: 0 21G<116 196 405.67 518> 415 67<13 116> +VStem: 116 80<0 415> +LayerCount: 4 +Fore +SplineSet +417 482 m 1 + 505 482 l 1 + 295 275 l 1 + 518 0 l 1 + 422 0 l 1 + 204 267 l 1 + 417 482 l 1 +13 482 m 1 + 196 482 l 1 + 196 0 l 1 + 116 0 l 1 + 116 415 l 1 + 13 415 l 1 + 13 482 l 1 +EndSplineSet +EndChar + +StartChar: uni04A2 +Encoding: 1186 1186 532 +Width: 740 +VWidth: 1023 +Flags: W +HStem: 0 21G<90 177> 311 75<177 562> +VStem: 90 87<0 311 386 692> 562 88<66 311 386 692> 650 68<-164 0> +LayerCount: 4 +Fore +SplineSet +562 692 m 1xf0 + 650 692 l 1 + 650 66 l 1xf0 + 718 66 l 1 + 718 -164 l 1 + 650 -164 l 1 + 650 0 l 1xe8 + 562 0 l 1 + 562 311 l 1 + 177 311 l 1 + 177 0 l 1 + 90 0 l 1 + 90 692 l 1 + 177 692 l 1 + 177 386 l 1 + 562 386 l 1 + 562 692 l 1xf0 +EndSplineSet +EndChar + +StartChar: uni04A3 +Encoding: 1187 1187 533 +Width: 544 +VWidth: 1023 +Flags: W +HStem: 0 21G<60 142> 226 64<142 402> 460 20G<60 142 402 484> +VStem: 60 82<0 226 290 480> 402 82<60 226 290 480> 465 68<-146 0> +LayerCount: 4 +Fore +SplineSet +402 226 m 1xf8 + 142 226 l 1 + 142 0 l 1 + 60 0 l 1 + 60 480 l 1 + 142 480 l 1 + 142 290 l 1 + 402 290 l 1 + 402 480 l 1 + 484 480 l 1 + 484 60 l 1xf8 + 533 60 l 1 + 533 -146 l 1 + 465 -146 l 1 + 465 0 l 1xf4 + 402 0 l 1 + 402 226 l 1xf8 +EndSplineSet +EndChar + +StartChar: uni04AA +Encoding: 1194 1194 534 +Width: 692 +VWidth: 1023 +Flags: W +HStem: -247 52<365.451 504.058> 623 74<359.967 605.521> +VStem: 109 94<227.388 462.718> +LayerCount: 4 +Fore +SplineSet +475 -66 m 1 + 524 -82 562 -99 562 -156 c 0 + 562 -208 516 -247 459 -247 c 0 + 447 -247 434 -246 420 -243 c 0 + 411 -241 391 -236 360 -227 c 2 + 343 -222 l 1 + 358 -171 l 1 + 372 -175 l 2 + 419 -189 448 -195 460 -195 c 0 + 484 -194 499 -187 505 -172 c 0 + 515 -151 497 -134 485 -128 c 0 + 478 -125 469 -122 459 -119 c 2 + 393 -99 l 1 + 417 -8 l 1 + 325 0 252 38 203 89 c 0 + 141 155 109 240 109 345 c 0 + 109 452 150 541 205 598 c 0 + 257 652 346 697 446 697 c 0 + 536 697 587 686 653 661 c 1 + 630 593 l 1 + 568 614 539 623 461 623 c 0 + 383 623 314 586 275 543 c 0 + 227 491 203 426 203 346 c 0 + 203 228 257 144 335 100 c 0 + 377 76 425 65 479 65 c 0 + 533 65 587 76 641 98 c 1 + 662 32 l 1 + 610 8 552 -5 489 -9 c 1 + 475 -66 l 1 +EndSplineSet +EndChar + +StartChar: uni04AB +Encoding: 1195 1195 535 +Width: 467 +VWidth: 1023 +Flags: W +HStem: -247.275 52.2754<198.451 337.138> 17 55<345.535 404.418> 423 68<209.505 406.913> +VStem: 57 78<138.114 348.479> +LayerCount: 4 +Fore +SplineSet +308 -66 m 1 + 357.449 -81.7344 395.451 -98.9512 395.451 -156.208 c 0 + 395.451 -207.747 349.086 -247.275 292.094 -247.275 c 0 + 279.874 -247.275 266.832 -245.829 253 -243 c 0 + 244 -241 224 -236 193 -227 c 2 + 176 -222 l 1 + 191 -171 l 1 + 205 -175 l 2 + 252 -189 281 -195 293 -195 c 0 + 317 -194 332 -187 338 -172 c 0 + 347.736 -150.58 329.772 -133.886 318 -128 c 0 + 311 -125 302 -122 292 -119 c 2 + 226 -99 l 1 + 250.519 -8.27866 l 1 + 123.841 4.83509 57 92.2657 57 233 c 0 + 57 310 77 371 116 418 c 0 + 157 467 218 491 302 491 c 0 + 341 491 383 481 427 462 c 1 + 407 404 l 1 + 370 417 335 423 306 423 c 0 + 191 423 135 360 135 247 c 0 + 135 129 185 70 292 57 c 0 + 299 56 306 56 314 56 c 0 + 341 56 371 61 402 72 c 1 + 421 17 l 1 + 386.831 3.62952 354.317 -4.77513 322.639 -8.21396 c 1 + 308 -66 l 1 +EndSplineSet +EndChar + +StartChar: uni04AE +Encoding: 1198 1198 536 +Width: 568 +VWidth: 1023 +Flags: W +HStem: 0 21<239 322> 674 20<10 120.334 452.456 558> +VStem: 239 83<0 329> +LayerCount: 4 +Fore +Refer: 42 89 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni04AF +Encoding: 1199 1199 537 +Width: 507 +VWidth: 1023 +Flags: W +HStem: 462 20<22 110.384 397.616 481> +LayerCount: 4 +Fore +Refer: 26 121 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni04B0 +Encoding: 1200 1200 538 +Width: 609 +VWidth: 1023 +Flags: W +HStem: 0 21G<273 356> 174 67<164 273 356 454> 674 20G<44 154.334 486.456 592> +VStem: 273 83<0 174 241 329> +LayerCount: 4 +Fore +SplineSet +356 0 m 1 + 273 0 l 1 + 273 174 l 1 + 164 174 l 1 + 164 241 l 1 + 273 241 l 1 + 273 329 l 1 + 44 694 l 1 + 142 694 l 1 + 319 407 l 1 + 499 694 l 1 + 592 694 l 1 + 356 329 l 1 + 356 241 l 1 + 454 241 l 1 + 454 174 l 1 + 356 174 l 1 + 356 0 l 1 +EndSplineSet +EndChar + +StartChar: uni04B1 +Encoding: 1201 1201 539 +Width: 507 +VWidth: 1023 +Flags: W +HStem: -136 67<70 171 276 360> 462 20G<22 110.384 397.616 481> +LayerCount: 4 +Fore +SplineSet +405 482 m 1 + 481 482 l 1 + 276 -69 l 1 + 360 -69 l 1 + 360 -136 l 1 + 251 -136 l 1 + 205 -259 l 1 + 120 -259 l 1 + 171 -136 l 1 + 70 -136 l 1 + 70 -69 l 1 + 198 -69 l 1 + 219 -19 l 1 + 22 482 l 1 + 103 482 l 1 + 254 73 l 1 + 405 482 l 1 +EndSplineSet +EndChar + +StartChar: uni04B2 +Encoding: 1202 1202 540 +Width: 660 +VWidth: 1023 +Flags: W +HStem: 0 21G<49 164.356> 674 20G<78 192.487 512.897 621> +VStem: 580 68<-164 0> +LayerCount: 4 +Fore +SplineSet +526 694 m 5 + 621 694 l 5 + 402 364 l 5 + 603 66 l 5 + 648 66 l 5 + 648 -164 l 5 + 580 -164 l 5 + 580 0 l 5 + 541 0 l 5 + 346 292 l 5 + 151 0 l 5 + 49 0 l 5 + 299 362 l 5 + 78 694 l 5 + 179 694 l 5 + 355 433 l 5 + 526 694 l 5 +EndSplineSet +EndChar + +StartChar: uni04B3 +Encoding: 1203 1203 541 +Width: 511 +VWidth: 1023 +Flags: W +HStem: 0 21G<38 136.591> 462 20G<32 139.241 378.283 478> +VStem: 400 68<-146 0> +LayerCount: 4 +Fore +SplineSet +392 482 m 1 + 478 482 l 1 + 300 236 l 1 + 425 60 l 1 + 468 60 l 1 + 468 -146 l 1 + 400 -146 l 1 + 400 0 l 1 + 375 0 l 1 + 246 181 l 1 + 123 0 l 1 + 38 0 l 1 + 207 237 l 1 + 32 482 l 1 + 125 482 l 1 + 261 291 l 1 + 392 482 l 1 +EndSplineSet +EndChar + +StartChar: uni04BA +Encoding: 1210 1210 542 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 444 79<312.794 508.325> 671 21<100 188> +VStem: 100 88<0 352.124 400 692> 573 87<0 382.949> +LayerCount: 4 +Fore +Refer: 417 1063 N -1 -0 0 -1 740 692 2 +EndChar + +StartChar: uni04BB +Encoding: 1211 1211 543 +Width: 520 +VWidth: 1023 +Flags: W +HStem: -1.92001 20<82.41 159.83 392.58 470> 225.69 69.581<212.814 356.497> 459 21<82.41 159.83> +VStem: 82.41 77.42<-1.92001 195.441 249.7 480> 392.58 77.42<-1.92001 186.775> +LayerCount: 4 +Fore +Refer: 449 1095 N -1 -0 0 -1 520 480 2 +EndChar + +StartChar: uni04D8 +Encoding: 1240 1240 544 +Width: 784 +VWidth: 1023 +Flags: W +HStem: -8 74<296.965 489.576> 308 67<158.814 625.257> 626 74<241.459 489.631> +VStem: 625.257 95.7427<220.484 308 375 473.477> +LayerCount: 4 +Fore +SplineSet +392 626 m 0 + 338 626 260 614 206 592 c 1 + 185 658 l 1 + 246 686 315 700 392 700 c 0 + 533 700 631 630 680 532 c 0 + 707 478 721 416 721 346 c 0 + 721 200 660 91 565 36 c 0 + 515 7 458 -8 392 -8 c 0 + 250 -8 153 62 103 160 c 0 + 76 213 63 276 63 346 c 0 + 63 355.836 63.2723 365.505 63.8096 375 c 1 + 625.935 375 l 1 + 618.765 471.571 575.917 549.026 514 590 c 0 + 478 614 437 626 392 626 c 0 +158.814 308 m 1 + 167.85 214.988 209.959 141.733 270 102 c 0 + 306 78 347 66 392 66 c 0 + 495 66 562 128 597 202 c 0 + 612.18 233.877 621.599 269.21 625.257 308 c 1 + 158.814 308 l 1 +EndSplineSet +EndChar + +StartChar: uni04DA +Encoding: 1242 1242 545 +Width: 784 +VWidth: 1023 +Flags: W +HStem: -8 74<296.965 489.576> 308 67<158.814 625.257> 626 74<241.459 489.631> 760 90<237 328 456 547> +VStem: 237 91<760 850> 456 91<760 850> 625.257 95.7427<220.484 308 375 473.477> +LayerCount: 4 +Fore +Refer: 544 1240 N 1 0 0 1 0 0 3 +Refer: 128 168 N 1 0 0 1 99 157 2 +EndChar + +StartChar: uni01F5 +Encoding: 501 501 546 +Width: 542 +VWidth: 1023 +Flags: W +HStem: -261 73 0 73 408 73 549 207 +VStem: 161 223 406 80<-123 23 74 407> +LayerCount: 4 +Fore +Refer: 148 180 S 1 0 0 1 41 0 2 +Refer: 30 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acaron +Encoding: 462 462 547 +Width: 491 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73<197 355> 408 73 549.1 182 +VStem: 128.3 262 345 82<91 224 284 384> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 0 0 2 +Refer: 0 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ocaron +Encoding: 466 466 548 +Width: 569 +VWidth: 0 +Flags: W +HStem: -10 65<204.564 352.779> 426 64<203.067 351.238> 549.1 182 +VStem: 46 83<137.066 343.078> 152.3 262 427 83<137.24 343.792> +LayerCount: 4 +Fore +Refer: 6 111 N 1 0 0 1 0 0 2 +Refer: 223 711 S 1 0 0 1 24 0 2 +EndChar + +StartChar: gcaron +Encoding: 487 487 549 +Width: 542 +VWidth: 1023 +Flags: W +HStem: -261 73 0 73 408 73 549.1 182 +VStem: 160.3 262 406 80<-123 23 74 407> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 32 0 2 +Refer: 30 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hcaron +Encoding: 543 543 550 +Width: 520 +VWidth: 1023 +Flags: W +HStem: 0 73 408 73 719.1 182 +VStem: -25.7 262 60 83<0 400 452 670> 390 82<0 395> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 -154 170 2 +Refer: 3 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: icaron +Encoding: 464 464 551 +Width: 255 +VWidth: 1023 +Flags: W +HStem: 0 21<88 168> 462 20<88 168> 549.1 182 +VStem: -1.70001 262 88 80<0 482> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 -130 0 2 +Refer: 140 305 N 1 0 0 1 0 0 2 +EndChar + +StartChar: jcaron +Encoding: 496 496 552 +Width: 255 +VWidth: 1023 +Flags: W +HStem: 462 20<86 166.073> 549.1 182 +VStem: 4.29999 262 87.1071 80.8929<-154.237 482> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 -124 0 2 +Refer: 323 567 N 1 0 0 1 0 0 2 +EndChar + +StartChar: kcaron +Encoding: 489 489 553 +Width: 503 +VWidth: 1023 +Flags: W +HStem: 0 73 217 73 408 73 651 20 719.1 182 +VStem: -16.7 262 68 80<0 738> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 -145 170 2 +Refer: 22 107 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ucaron +Encoding: 468 468 554 +Width: 520 +VWidth: 1023 +Flags: W +HStem: 0 73 408 73 549.1 182 +VStem: 66 81<88 480> 128.3 262 391 82<83 480> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 0 0 2 +Refer: 14 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gacute +Encoding: 500 500 555 +Width: 719 +VWidth: 1023 +Flags: W +HStem: -9.0752 73.0752<301.774 518.145> 298 68<371.047 568.047> 627.014 72.4102<291.524 515.887> 740 207 +VStem: 50 82.9893<235.173 462.435> 266.374 223 568.047 78<103.09 298> +LayerCount: 4 +Fore +Refer: 148 180 N 1 0 0 1 146.374 191 2 +Refer: 28 71 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Acaron +Encoding: 461 461 556 +Width: 628 +VWidth: 1023 +Flags: W +HStem: 0 21<20 103.931 517.069 608> 202 72<192 428> 674 20<259.882 368.118> 761.1 182 +VStem: 189.3 262 +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 61.0002 212 2 +Refer: 32 65 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ocaron +Encoding: 465 465 557 +Width: 758 +VWidth: 1023 +Flags: W +HStem: -8 74<283.936 475.1> 626 74<282.638 476.646> 761.1 182 +VStem: 50 94<222.236 467.906> 248.3 262 614 94<221.325 469.476> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 120 212 2 +Refer: 31 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Icaron +Encoding: 463 463 558 +Width: 243 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163> 674 20<80 163> 761.1 182 +VStem: -1.69981 262 80 83<0 694> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 -130 212 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ucaron +Encoding: 467 467 559 +Width: 689 +VWidth: 1023 +Flags: W +HStem: -10 72<243.804 444.161> 674 20<81 164 525 608> 761.1 182 +VStem: 81 83<137.119 694> 214.3 262 525 83<140.498 694> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 86.0002 212 2 +Refer: 51 85 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gcaron +Encoding: 486 486 560 +Width: 719 +VWidth: 1023 +Flags: W +HStem: -9.0752 73.0752<301.774 518.145> 298 68<371.047 568.047> 627.014 72.4102<291.524 515.887> 761.1 182 +VStem: 50 82.9893<235.173 462.435> 258.3 262 568.047 78<103.09 298> +LayerCount: 4 +Fore +Refer: 223 711 S 1 0 0 1 130 212 2 +Refer: 28 71 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Kcaron +Encoding: 488 488 561 +Width: 631 +VWidth: 1023 +Flags: W +HStem: 0 21<80 163 466.584 591> 674 20<80 163 450.604 572> 761.1 182 +VStem: 80 83<0 694> 178.3 262 +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 50.0002 212 2 +Refer: 43 75 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Hcaron +Encoding: 542 542 562 +Width: 720 +VWidth: 1023 +Flags: W +HStem: 0 21<80 167 552 640> 311 75<167 552> 761.1 182 +VStem: 80 87<0 311 386 692> 226.3 262 552 88<0 311 386 692> +LayerCount: 4 +Fore +Refer: 223 711 N 1 0 0 1 98.0002 212 2 +Refer: 29 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: zcircumflex +Encoding: 7825 7825 563 +Width: 526 +VWidth: 1023 +Flags: W +HStem: 0 73<177 453> 408 73<73 336> 570 182 +VStem: 119 263 +LayerCount: 4 +Fore +Refer: 219 710 S 1 0 0 1 -97 0 2 +Refer: 25 122 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Zcircumflex +Encoding: 7824 7824 564 +Width: 578 +VWidth: 1023 +Flags: W +HStem: 0 73<120 568> 621 73<24 436> +LayerCount: 4 +Fore +Refer: 38 90 S 1 0 0 1 0 0 2 +EndChar +EndChars +EndSplineFont diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..65c339c --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,10 @@ +noinst_DATA = \ + Cantarell-Regular.sfd \ + Cantarell-Bold.sfd + +EXTRA_DIST = $(noinst_DATA) + +MAINTAINERCLEANFILES = \ + Makefile.in + +-include $(top_srcdir)/git.mk diff --git a/src/Makefile.in b/src/Makefile.in new file mode 100644 index 0000000..4b10ff8 --- /dev/null +++ b/src/Makefile.in @@ -0,0 +1,345 @@ +# Makefile.in generated by automake 1.11.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = src +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CONFIGDIR = @CONFIGDIR@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +FONTDIR = @FONTDIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +am__leading_dot = @am__leading_dot@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_DATA = \ + Cantarell-Regular.sfd \ + Cantarell-Bold.sfd + +EXTRA_DIST = $(noinst_DATA) +MAINTAINERCLEANFILES = \ + Makefile.in + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am + + +-include $(top_srcdir)/git.mk + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: -- 2.7.4