From 940d8120811c2364959efce4108bfdbb6147079d Mon Sep 17 00:00:00 2001 From: Robert Alessi Date: Fri, 15 Dec 2023 12:11:00 +0100 Subject: added onum to italic and bolditalic and lnum+tnum to all files; archived fonttable --- README.md | 6 +- archive/fonttable.lua | 36 +++ archive/fonttable.tex | 33 +++ fonttable.lua | 36 --- fonttable.tex | 33 --- otf/OldStandard-Bold.otf | Bin 229788 -> 229788 bytes otf/OldStandard-BoldItalic.otf | Bin 278200 -> 279872 bytes otf/OldStandard-Italic.otf | Bin 237892 -> 239412 bytes otf/OldStandard-Regular.otf | Bin 228924 -> 228924 bytes src/OldStandard-Bold.sfd | 4 +- src/OldStandard-BoldItalic.sfd | 486 ++++++++++++++++++++++++++++++++++++++++- src/OldStandard-Italic.sfd | 365 ++++++++++++++++++++++++++++++- src/OldStandard-Regular.sfd | 4 +- 13 files changed, 924 insertions(+), 79 deletions(-) create mode 100644 archive/fonttable.lua create mode 100644 archive/fonttable.tex delete mode 100644 fonttable.lua delete mode 100644 fonttable.tex diff --git a/README.md b/README.md index 5dff414..3fd8870 100644 --- a/README.md +++ b/README.md @@ -59,9 +59,9 @@ Standard*, it includes new letters and some corrections: *Greek extended* Unicode block. 5. Open theta has been replaced with closed theta in slot 03B8 and rules ss05 and ss06 have been adjusted accordingly. -6. **Oldstyle numerals**: These have been designed by Antonis - Tsolomitis for regular and bold series and can be selected by - `RawFeature=onum`. +6. **Oldstyle numerals**: These have been designed by Antonis Tsolomitis for + regular and bold series and can be selected by `RawFeature=onum`. (Those + for italic and bolditalic have been designed by R. Alessi.) 7. **Math Font**: This is a major and long-awaited enhancement to Old Standard. The math font has been designed by Antonis Tsolomitis from an old French book published by Gauthier-Villars diff --git a/archive/fonttable.lua b/archive/fonttable.lua new file mode 100644 index 0000000..d50a314 --- /dev/null +++ b/archive/fonttable.lua @@ -0,0 +1,36 @@ +-- the following is adapted from https://tex.stackexchange.com/a/380780 +ft = {} +function ft.print_glyphs(maxCols,maxChars) + local id = font.current() + local fnt = font.getfont(id) + local col = 1 + local maxU4 = 15*(16^3+16^2+16+1) + a = {} + for k, v in pairs(fnt.characters) do + a [#a + 1] = k + end + table.sort(a) + for i, k in ipairs(a) do + if i >= maxChars then break end + if col == 1 then + if k > maxU4 then + tex.sprint(string.format("U+%06x", k)) + else + tex.sprint(string.format("U+%04x", k)) + end + tex.sprint("&") + end + if (i) then + tex.sprint(string.format([[\char%i]], k)) + else + tex.sprint("~") + end + if col == maxCols then + tex.sprint([[\\\cline{2-]] .. maxCols+1 .. "} ") + col = 1 + else + tex.sprint("&") + col = col + 1 + end + end +end diff --git a/archive/fonttable.tex b/archive/fonttable.tex new file mode 100644 index 0000000..5e90225 --- /dev/null +++ b/archive/fonttable.tex @@ -0,0 +1,33 @@ +% arara: lualatex +% arara: lualatex +% arara: lualatex +\documentclass[12pt]{article} +\usepackage{fontspec} + +\usepackage{array} +\usepackage{longtable} +\usepackage{latexcolors} + +\usepackage{luacode} +\luadirect{require("fonttable.lua")} + +\setmainfont{Old Standard} + +\title{\textsc{Old Standard}} +\author{Font Table} +\date{} + +\begin{document} +\maketitle + +\color{cinnamon} + +\begin{longtable}{>{\color{gray}\ttfamily\footnotesize}r| + *{10}{>{\color{black}}p{1.5em}|}} +\cline{2-11} +\endhead + +\luadirect{ft.print_glyphs(10,65463)} \\ \cline{2-11} +\end{longtable} + +\end{document} \ No newline at end of file diff --git a/fonttable.lua b/fonttable.lua deleted file mode 100644 index d50a314..0000000 --- a/fonttable.lua +++ /dev/null @@ -1,36 +0,0 @@ --- the following is adapted from https://tex.stackexchange.com/a/380780 -ft = {} -function ft.print_glyphs(maxCols,maxChars) - local id = font.current() - local fnt = font.getfont(id) - local col = 1 - local maxU4 = 15*(16^3+16^2+16+1) - a = {} - for k, v in pairs(fnt.characters) do - a [#a + 1] = k - end - table.sort(a) - for i, k in ipairs(a) do - if i >= maxChars then break end - if col == 1 then - if k > maxU4 then - tex.sprint(string.format("U+%06x", k)) - else - tex.sprint(string.format("U+%04x", k)) - end - tex.sprint("&") - end - if (i) then - tex.sprint(string.format([[\char%i]], k)) - else - tex.sprint("~") - end - if col == maxCols then - tex.sprint([[\\\cline{2-]] .. maxCols+1 .. "} ") - col = 1 - else - tex.sprint("&") - col = col + 1 - end - end -end diff --git a/fonttable.tex b/fonttable.tex deleted file mode 100644 index 5e90225..0000000 --- a/fonttable.tex +++ /dev/null @@ -1,33 +0,0 @@ -% arara: lualatex -% arara: lualatex -% arara: lualatex -\documentclass[12pt]{article} -\usepackage{fontspec} - -\usepackage{array} -\usepackage{longtable} -\usepackage{latexcolors} - -\usepackage{luacode} -\luadirect{require("fonttable.lua")} - -\setmainfont{Old Standard} - -\title{\textsc{Old Standard}} -\author{Font Table} -\date{} - -\begin{document} -\maketitle - -\color{cinnamon} - -\begin{longtable}{>{\color{gray}\ttfamily\footnotesize}r| - *{10}{>{\color{black}}p{1.5em}|}} -\cline{2-11} -\endhead - -\luadirect{ft.print_glyphs(10,65463)} \\ \cline{2-11} -\end{longtable} - -\end{document} \ No newline at end of file diff --git a/otf/OldStandard-Bold.otf b/otf/OldStandard-Bold.otf index b918240..dd56c8d 100644 Binary files a/otf/OldStandard-Bold.otf and b/otf/OldStandard-Bold.otf differ diff --git a/otf/OldStandard-BoldItalic.otf b/otf/OldStandard-BoldItalic.otf index 58dddf7..7855cf7 100644 Binary files a/otf/OldStandard-BoldItalic.otf and b/otf/OldStandard-BoldItalic.otf differ diff --git a/otf/OldStandard-Italic.otf b/otf/OldStandard-Italic.otf index 6a5e066..af8a4da 100644 Binary files a/otf/OldStandard-Italic.otf and b/otf/OldStandard-Italic.otf differ diff --git a/otf/OldStandard-Regular.otf b/otf/OldStandard-Regular.otf index 794cc5a..26dcf75 100644 Binary files a/otf/OldStandard-Regular.otf and b/otf/OldStandard-Regular.otf differ diff --git a/src/OldStandard-Bold.sfd b/src/OldStandard-Bold.sfd index f16c62e..d520ee5 100644 --- a/src/OldStandard-Bold.sfd +++ b/src/OldStandard-Bold.sfd @@ -22,7 +22,7 @@ OS2Version: 4 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 1 CreationTime: 1300650174 -ModificationTime: 1702368928 +ModificationTime: 1702637476 PfmFamily: 17 TTFWeight: 700 TTFWidth: 5 @@ -109,6 +109,8 @@ Lookup: 1 0 0 "Single Substitution lookup 45" { "Single Substitution lookup 45 s Lookup: 1 0 0 "Single Substitution lookup 46" { "Single Substitution lookup 46 subtable" } [] Lookup: 1 0 0 "'onum' Oldstyle Figures lookup 49" { "'onum' Oldstyle Figures lookup 49-1" ("oldstyle") } ['onum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] Lookup: 1 0 0 "'pnum' Proportional Numbers lookup 7" { "'pnum' Proportional Numbers lookup 7 subtable" } ['pnum' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'latn' <'AZE ' 'CRT ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > ) ] +Lookup: 1 0 0 "'tnum' Tabular Numbers lookup 51" { } ['tnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] +Lookup: 1 0 0 "'lnum' Lining Figures lookup 52" { } ['lnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] Lookup: 263 0 0 "Required Feature lookup 0" { "Required Feature lookup 0 subtable" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 263 0 0 "Required Feature lookup 1" { "Required Feature lookup 1 subtable" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 260 0 0 "'mark' Mark Positioning lookup 2" { "'mark' Mark Positioning lookup 2 anchor 0" "'mark' Mark Positioning lookup 2 anchor 1" "'mark' Mark Positioning lookup 2 anchor 2" "'mark' Mark Positioning lookup 2 anchor 3" "'mark' Mark Positioning lookup 2 anchor 4" "'mark' Mark Positioning lookup 2 anchor 5" "'mark' Mark Positioning lookup 2 anchor 6" } ['mark' ('cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'TRK ' 'dflt' > ) ] diff --git a/src/OldStandard-BoldItalic.sfd b/src/OldStandard-BoldItalic.sfd index 8cb119f..9645c60 100644 --- a/src/OldStandard-BoldItalic.sfd +++ b/src/OldStandard-BoldItalic.sfd @@ -22,7 +22,7 @@ OS2Version: 4 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 1 CreationTime: 1300612368 -ModificationTime: 1702368965 +ModificationTime: 1702637401 PfmFamily: 17 TTFWeight: 700 TTFWidth: 5 @@ -107,6 +107,9 @@ Lookup: 1 0 0 "Substitution simple lookup 43" { "Substitution simple lookup 43 s Lookup: 1 0 0 "Substitution simple lookup 44" { "Substitution simple lookup 44 subtable" } [] Lookup: 1 0 0 "Substitution simple lookup 45" { "Substitution simple lookup 45 subtable" } [] Lookup: 1 0 0 "'pnum' Proportional Numbers lookup 7" { "'pnum' Proportional Numbers lookup 7 subtable" } ['pnum' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'latn' <'AZE ' 'CRT ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > ) ] +Lookup: 1 0 0 "'onum' Oldstyle Figures lookup 49" { "'onum' Oldstyle Figures lookup 49-1" ("oldstyle") } ['onum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] +Lookup: 1 0 0 "'tnum' Tabular Numbers lookup 50" { } ['tnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] +Lookup: 1 0 0 "'lnum' Lining Figures lookup 51" { } ['lnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] Lookup: 263 0 0 "Required Feature lookup 0" { "Required Feature lookup 0 subtable" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 263 0 0 "Required Feature lookup 1" { "Required Feature lookup 1 subtable" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 260 0 0 "'mark' Positionnement de signe lookup 2" { "'mark' Positionnement de signe lookup 2 anchor 0" "'mark' Positionnement de signe lookup 2 anchor 1" "'mark' Positionnement de signe lookup 2 anchor 2" "'mark' Positionnement de signe lookup 2 anchor 3" "'mark' Positionnement de signe lookup 2 anchor 4" "'mark' Positionnement de signe lookup 2 anchor 5" "'mark' Positionnement de signe lookup 2 anchor 6" } ['mark' ('cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'TRK ' 'dflt' > ) ] @@ -975,7 +978,7 @@ NameList: AGL For New Fonts DisplaySize: -48 AntiAlias: 1 FitToEm: 0 -WinInfo: 1104 16 10 +WinInfo: 1696 16 10 BeginPrivate: 7 BlueValues 31 [-18 0 444 456 684 702 712 730] OtherBlues 31 [-294 -282 -248 -238 -168 -156] @@ -986,7 +989,7 @@ StemSnapH 13 [24 28 32 36] ForceBold 4 true EndPrivate AnchorClass2: "Anchor-0" "'mark' Positionnement de signe lookup 2 anchor 0" "Anchor-1" "'mark' Positionnement de signe lookup 2 anchor 1" "Anchor-2" "'mark' Positionnement de signe lookup 2 anchor 2" "Anchor-3" "'mark' Positionnement de signe lookup 2 anchor 3" "Anchor-4" "'mark' Positionnement de signe lookup 2 anchor 4" "Anchor-5" "'mark' Positionnement de signe lookup 2 anchor 5" "Anchor-6" "'mark' Positionnement de signe lookup 2 anchor 6" "Anchor-7" "'mkmk' Signe sur signe lookup 3 anchor 0" "Anchor-8" "'mkmk' Signe sur signe lookup 3 anchor 1" "Anchor-9" "'mkmk' Signe sur signe lookup 3 anchor 2" -BeginChars: 1841 1833 +BeginChars: 1851 1843 StartChar: .notdef Encoding: 1573 -1 0 @@ -1719,6 +1722,7 @@ SplineSet 590 229 453 -16 235 -16 c 0 EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" zero.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" zero.prop Substitution2: "'sups' Exposant lookup 19 subtable" zerosuperior Substitution2: "'subs' Indice lookup 18 subtable" zeroinferior @@ -1767,6 +1771,7 @@ SplineSet 48 -30 l 1 EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" one.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" one.prop Substitution2: "'sups' Exposant lookup 19 subtable" onesuperior Substitution2: "'subs' Indice lookup 18 subtable" oneinferior @@ -1828,6 +1833,7 @@ SplineSet 127 20 115 -8 82 -8 c 0x7c EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" two.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" two.prop Substitution2: "'sups' Exposant lookup 19 subtable" twosuperior Substitution2: "'subs' Indice lookup 18 subtable" twoinferior @@ -1885,6 +1891,7 @@ SplineSet 365 8 295 -16 222 -16 c 0xdf80 EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" three.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" three.prop Substitution2: "'sups' Exposant lookup 19 subtable" threesuperior Substitution2: "'subs' Indice lookup 18 subtable" threeinferior @@ -1930,6 +1937,8 @@ SplineSet 393 64 l 6 389.396411909 51.7667667438 391.171572875 47 397 47 c 6xf0 EndSplineSet +Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" four.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" four.prop Substitution2: "'sups' Exposant lookup 19 subtable" foursuperior Substitution2: "'subs' Indice lookup 18 subtable" fourinferior @@ -1991,6 +2000,7 @@ SplineSet 193 -16 155 -7 126 10 c 0 EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" five.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" five.prop Substitution2: "'sups' Exposant lookup 19 subtable" fivesuperior Substitution2: "'subs' Indice lookup 18 subtable" fiveinferior @@ -2038,6 +2048,7 @@ SplineSet 427 36 357 -16 258 -16 c 0 EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" six.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" six.prop Substitution2: "'sups' Exposant lookup 19 subtable" sixsuperior Substitution2: "'subs' Indice lookup 18 subtable" sixinferior @@ -2095,6 +2106,7 @@ SplineSet 303 20 269 -17 221 -17 c 0xf6 EndSplineSet Validated: 5 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" seven.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" seven.prop Substitution2: "'sups' Exposant lookup 19 subtable" sevensuperior Substitution2: "'subs' Indice lookup 18 subtable" seveninferior @@ -2140,6 +2152,7 @@ SplineSet 249 327 222 319 190 291 c 0 EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" eight.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" eight.prop Substitution2: "'sups' Exposant lookup 19 subtable" eightsuperior Substitution2: "'subs' Indice lookup 18 subtable" eightinferior @@ -2186,6 +2199,7 @@ SplineSet 182 -16 148 -2 126 17 c 0 EndSplineSet Validated: 1 +Substitution2: "'onum' Oldstyle Figures lookup 49-1" nine.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" nine.prop Substitution2: "'sups' Exposant lookup 19 subtable" ninesuperior Substitution2: "'subs' Indice lookup 18 subtable" nineinferior @@ -74463,6 +74477,7 @@ SplineSet 158 485 l 1 83 615 l 2 EndSplineSet +Validated: 1 EndChar StartChar: uni1FEB @@ -112185,6 +112200,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron upsilon EndChar @@ -112241,6 +112257,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron uni1F50 EndChar @@ -112297,6 +112314,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron uni1F51 EndChar @@ -112351,6 +112369,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron uni1F7A EndChar @@ -112404,6 +112423,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 LCarets2: 1 0 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron uni1F7B EndChar @@ -112467,6 +112487,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron uni1FE6 EndChar @@ -112542,6 +112563,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron uni1F56 EndChar @@ -112618,6 +112640,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron uni1F57 EndChar @@ -112643,6 +112666,7 @@ SplineSet 160 524 l 1 164 507 m 1025 EndSplineSet +Validated: 1 EndChar StartChar: dieresistonos.alt @@ -112677,6 +112701,7 @@ SplineSet 300 562 271 533 237 533 c 0 203 533 174 562 174 596 c 0 EndSplineSet +Validated: 1 EndChar StartChar: Alphatonos.alt @@ -112749,6 +112774,7 @@ SplineSet 527 313 l 1 578 493 l 1 EndSplineSet +Validated: 1 EndChar StartChar: Epsilontonos.alt @@ -112836,6 +112862,7 @@ SplineSet 230 0 l 1 211 0 l 1 EndSplineSet +Validated: 1 EndChar StartChar: Etatonos.alt @@ -112933,6 +112960,7 @@ SplineSet 230 0 l 1 211 0 l 1 EndSplineSet +Validated: 1 EndChar StartChar: Iotatonos.alt @@ -112992,6 +113020,7 @@ SplineSet 230 0 l 1 211 0 l 1 EndSplineSet +Validated: 1 EndChar StartChar: Omicrontonos.alt @@ -113030,6 +113059,7 @@ SplineSet 800 730 878 601 878 458 c 0 878 192 670 -18 478 -18 c 0 EndSplineSet +Validated: 1 EndChar StartChar: Upsilontonos.alt @@ -113102,6 +113132,7 @@ SplineSet 330 379 l 1 315 383 l 1 EndSplineSet +Validated: 1 EndChar StartChar: Omegatonos.alt @@ -113185,6 +113216,7 @@ SplineSet 188 0 l 1 168 0 l 1 EndSplineSet +Validated: 1 EndChar StartChar: iotadieresistonos.alt @@ -113238,6 +113270,7 @@ SplineSet 314 175 l 2 283 114 222 -12 132 -12 c 0 EndSplineSet +Validated: 1 EndChar StartChar: alphatonos.alt @@ -113290,6 +113323,7 @@ SplineSet 358 329 350 390 303 390 c 0 270 390 225 342 195 268 c 0 EndSplineSet +Validated: 1 EndChar StartChar: epsilontonos.alt @@ -113342,6 +113376,7 @@ SplineSet 412 108 l 1 382 52 320 -12 225 -12 c 0 EndSplineSet +Validated: 1 EndChar StartChar: etatonos.alt @@ -113400,6 +113435,7 @@ SplineSet 54 239 l 1 39 243 l 1 EndSplineSet +Validated: 1 EndChar StartChar: iotatonos.alt @@ -113443,6 +113479,7 @@ SplineSet 314 175 l 2 283 114 222 -12 132 -12 c 0 EndSplineSet +Validated: 1 EndChar StartChar: upsilondieresistonos.alt @@ -113509,6 +113546,7 @@ SplineSet 54 239 l 1 39 243 l 1 EndSplineSet +Validated: 1 EndChar StartChar: omicrontonos.alt @@ -113547,6 +113585,7 @@ SplineSet 396 456 468 395 468 277 c 0 468 140 355 -12 197 -12 c 0 EndSplineSet +Validated: 1 EndChar StartChar: upsilontonos.alt @@ -113603,6 +113642,7 @@ SplineSet 54 239 l 1 39 243 l 1 EndSplineSet +Validated: 1 EndChar StartChar: omegatonos.alt @@ -113668,6 +113708,7 @@ SplineSet 335 32 315 18 292 7 c 0 267 -5 241 -12 211 -12 c 0 EndSplineSet +Validated: 1 EndChar StartChar: omicron_upsilontonos @@ -113720,6 +113761,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 LCarets2: 1 0 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron upsilontonos EndChar @@ -113775,6 +113817,7 @@ SplineSet 292 42 356 86 356 159 c 1 356 193 330 209 285 209 c 0 EndSplineSet +Validated: 1 LCarets2: 1 0 Ligature2: "'hlig' Historical ligatures for Greek-1" omicron upsilontonos.alt EndChar @@ -113803,6 +113846,7 @@ SplineSet 525 700 568 576 568 425 c 0 568 229 431 -16 213 -16 c 0 EndSplineSet +Validated: 1 Kerns2: 1824 -50 "Proportional Numbers Kerning-1" EndChar @@ -113846,6 +113890,7 @@ SplineSet 36 -30 l 1 16 -30 l 1 EndSplineSet +Validated: 1 EndChar StartChar: two.prop @@ -113901,6 +113946,7 @@ SplineSet 116 69 128 57 128 38 c 0 128 20 116 -8 83 -8 c 0x7c EndSplineSet +Validated: 1 EndChar StartChar: three.prop @@ -113952,6 +113998,7 @@ SplineSet 504 154 459 84 398 43 c 0 346 8 276 -16 203 -16 c 0xdf80 EndSplineSet +Validated: 1 EndChar StartChar: four.prop @@ -113992,6 +114039,7 @@ SplineSet 363 64 l 6 359.396484375 51.7666015625 361.171875 47 367 47 c 6xf0 EndSplineSet +Validated: 1 EndChar StartChar: five.prop @@ -114047,6 +114095,7 @@ SplineSet 386 18 308 -16 228 -16 c 0 186 -16 148 -7 119 10 c 0 EndSplineSet +Validated: 1 Kerns2: 1824 -60 "Proportional Numbers Kerning-1" EndChar @@ -114089,6 +114138,7 @@ SplineSet 505 193 469 116 420 64 c 0 390 36 320 -16 221 -16 c 0 EndSplineSet +Validated: 1 Kerns2: 1824 -50 "Proportional Numbers Kerning-1" EndChar @@ -114141,6 +114191,7 @@ SplineSet 258 153 255 115 255 73 c 0 253 20 219 -17 171 -17 c 0xf6 EndSplineSet +Validated: 5 Kerns2: 22 -50 "Proportional Numbers Kerning-1" 1824 -50 "Proportional Numbers Kerning-1" 1825 -40 "Proportional Numbers Kerning-1" 1826 -30 "Proportional Numbers Kerning-1" 1827 -100 "Proportional Numbers Kerning-1" 1831 -60 "Proportional Numbers Kerning-1" EndChar @@ -114181,6 +114232,7 @@ SplineSet 269 335 l 1 235 327 208 319 176 291 c 0 EndSplineSet +Validated: 1 Kerns2: 1824 -40 "Proportional Numbers Kerning-1" EndChar @@ -114222,6 +114274,434 @@ SplineSet 368 30 264 -16 182 -16 c 0 146 -16 112 -2 90 17 c 0 EndSplineSet +Validated: 1 +EndChar + +StartChar: zero.oldstyle +Encoding: 1841 -1 1833 +Width: 501 +Flags: W +HStem: -12.7998 49.5996<154.244 244.22> 510.4 49.5996<287.322 376.251> +VStem: 59.2002 84.7998<67.5516 237.002> 387.2 84.7998<310.198 479.612> +LayerCount: 2 +Fore +SplineSet +201.599609375 348.799804688 m 0 + 172 269.599609375 145.599609375 180.799804688 144 122.400390625 c 2 + 144 113.599609375 l 2 + 144 66.400390625 156 36.7998046875 188 36.7998046875 c 0 + 254.400390625 36.7998046875 294.400390625 105.599609375 329.599609375 198.400390625 c 0 + 359.200195312 277.599609375 385.599609375 368 387.200195312 424 c 2 + 387.200195312 432.799804688 l 2 + 387.200195312 480 375.200195312 510.400390625 343.200195312 510.400390625 c 0 + 280 510.400390625 236 441.599609375 201.599609375 348.799804688 c 0 +188 -12.7998046875 m 0 + 92.7998046875 -12.7998046875 59.2001953125 86.400390625 59.2001953125 207.200195312 c 0 + 59.2001953125 364 168.799804688 560 342.400390625 560 c 0 + 437.599609375 560 472 460.799804688 472 340 c 0 + 472 183.200195312 362.400390625 -12.7998046875 188 -12.7998046875 c 0 +EndSplineSet +Validated: 1 +EndChar + +StartChar: one.oldstyle +Encoding: 1842 -1 1834 +Width: 510 +Flags: W +HStem: -24 49.5996<51.2002 155.45 263.275 356> 389.6 38.4004<167.311 232.702> +LayerCount: 2 +Fore +SplineSet +38.400390625 -24 m 1 + 42.400390625 -8.7998046875 l 1 + 48.7998046875 16.7998046875 l 1 + 51.2001953125 25.599609375 l 1 + 60.7998046875 25.599609375 l 1 + 135.200195312 25.599609375 l 2 + 148.799804688 25.599609375 151.200195312 27.2001953125 153.599609375 37.599609375 c 2 + 272 415.200195312 l 1 + 244 404.799804688 213.599609375 397.599609375 184.799804688 389.599609375 c 2 + 171.200195312 385.599609375 l 1 + 167.200195312 396.799804688 l 1 + 160.799804688 412.799804688 l 1 + 156 424.799804688 l 1 + 169.599609375 428 l 2 + 231.200195312 444 318.400390625 470.400390625 360.799804688 541.599609375 c 2 + 364 547.200195312 l 1 + 371.200195312 547.200195312 l 1 + 396 547.200195312 l 1 + 410.400390625 547.200195312 l 1 + 406.400390625 532 l 1 + 264.799804688 31.2001953125 l 2 + 264 28.7998046875 263.200195312 27.2001953125 263.200195312 26.400390625 c 0 + 264.799804688 25.599609375 266.400390625 25.599609375 268.799804688 25.599609375 c 2 + 352.799804688 25.599609375 l 1 + 368 25.599609375 l 1 + 364.799804688 10.400390625 l 1 + 358.400390625 -15.2001953125 l 1 + 356 -24 l 1 + 346.400390625 -24 l 1 + 54.400390625 -24 l 1 + 38.400390625 -24 l 1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: two.oldstyle +Encoding: 1843 -1 1835 +Width: 480 +Flags: W +HStem: -13.5996 107.199<187.498 323.62> -6.40039 21G<53.1997 78.7998> 510.4 49.5996<238.714 361.161> +VStem: 24.7998 57.6006<14.4535 90.4661> 124 60<370.8 463.407> 380.8 100<360.621 488.338> +LayerCount: 2 +Fore +SplineSet +65.599609375 -6.400390625 m 0x7c + 40.7998046875 -6.400390625 24.7998046875 10.400390625 24.7998046875 31.2001953125 c 0 + 24.7998046875 99.2001953125 64.7998046875 161.599609375 146.400390625 200.799804688 c 1 + 256 261.599609375 l 2 + 314.400390625 294.400390625 379.200195312 360.799804688 380.799804688 424 c 2 + 380.799804688 428 l 2 + 380.799804688 468.799804688 364.799804688 510.400390625 303.200195312 510.400390625 c 0 + 261.599609375 510.400390625 212.799804688 477.599609375 192.799804688 448 c 0 + 187.200195312 439.200195312 184 431.200195312 184 425.599609375 c 0 + 184 420 185.599609375 412.799804688 186.400390625 412 c 0 + 187.200195312 412 188.799804688 412.799804688 193.599609375 414.400390625 c 1 + 193.599609375 415.200195312 l 1 + 194.400390625 415.200195312 l 1 + 203.200195312 419.200195312 211.200195312 421.599609375 220.799804688 421.599609375 c 0 + 252 421.599609375 266.400390625 398.400390625 266.400390625 376.799804688 c 2 + 266.400390625 375.200195312 l 2 + 265.599609375 344 237.599609375 316 199.200195312 316 c 0 + 163.200195312 316 124 346.400390625 124 395.200195312 c 0 + 124 424 132.799804688 449.599609375 147.200195312 472 c 0 + 182.400390625 526.400390625 251.200195312 560 311.200195312 560 c 0 + 413.599609375 560 480.799804688 499.200195312 480.799804688 412.799804688 c 0 + 480.799804688 302.400390625 346.400390625 247.200195312 282.400390625 218.400390625 c 2 + 191.200195312 178.400390625 l 2 + 177.599609375 172.799804688 166.400390625 167.200195312 157.599609375 161.599609375 c 0 + 139.200195312 151.200195312 127.200195312 140.799804688 120.799804688 134.400390625 c 1 + 140.799804688 131.200195312 156.799804688 125.599609375 174.400390625 117.599609375 c 0 + 204 105.599609375 237.599609375 93.599609375 272.799804688 93.599609375 c 0 + 308.799804688 93.599609375 344.799804688 108.799804688 358.400390625 140.799804688 c 2 + 375.200195312 177.599609375 l 1 + 378.400390625 184.799804688 l 1 + 387.200195312 184.799804688 l 1 + 402.400390625 184.799804688 l 1 + 416.799804688 184.799804688 l 1 + 414.400390625 170.400390625 l 2 + 400.799804688 100.799804688 357.599609375 -13.599609375 251.200195312 -13.599609375 c 0xbc + 196.799804688 -13.599609375 167.200195312 24 147.200195312 53.599609375 c 0 + 130.400390625 77.599609375 116 91.2001953125 102.400390625 91.2001953125 c 2 + 101.599609375 91.2001953125 l 2 + 85.599609375 91.2001953125 82.400390625 91.2001953125 82.400390625 68 c 0 + 82.400390625 65.599609375 83.2001953125 63.2001953125 83.2001953125 63.2001953125 c 1 + 84 62.400390625 l 2 + 92 55.2001953125 101.599609375 45.599609375 101.599609375 30.400390625 c 0 + 101.599609375 16 92 -6.400390625 65.599609375 -6.400390625 c 0x7c +EndSplineSet +Validated: 1 +EndChar + +StartChar: three.oldstyle +Encoding: 1844 -1 1836 +Width: 480 +Flags: W +HStem: -242.8 49.5996<111.144 241.801> 20.4004 74.3994<167.725 248.407> 50.7998 44<231.451 302.935> 139.6 88.8008<217.136 263.515> 280.4 49.5996<240.049 373.355> +VStem: 40.7998 57.6006<-179.342 -145.2> 148.8 68<226 257.829> 314.4 104<-98.1213 28.6671> 383.2 91.2002<141.77 264.367> +LayerCount: 2 +Fore +SplineSet +98.400390625 -145.200195312 m 4xbf + 98.400390625 -180.400390625 144 -193.200195312 181.599609375 -193.200195312 c 0 + 212.799804688 -193.200195312 243.200195312 -177.200195312 268 -144.400390625 c 0 + 298.400390625 -103.599609375 312.799804688 -38 314.400390625 -5.2001953125 c 2 + 314.400390625 2 l 2 + 314.400390625 16.400390625 312.799804688 32.400390625 303.200195312 41.2001953125 c 0 + 297.599609375 46 288 50.7998046875 270.400390625 50.7998046875 c 0xbf + 260 50.7998046875 256 49.2001953125 247.200195312 41.2001953125 c 0 + 237.599609375 32.400390625 222.400390625 20.400390625 202.400390625 20.400390625 c 0 + 180 20.400390625 161.599609375 32.400390625 161.599609375 53.2001953125 c 0 + 161.599609375 71.599609375 177.599609375 94.7998046875 208 94.7998046875 c 2xdf + 273.599609375 94.7998046875 l 1 + 289.599609375 94.7998046875 l 2 + 298.400390625 94.7998046875 307.200195312 97.2001953125 316 101.200195312 c 0 + 333.599609375 110 352 126.799804688 364 145.200195312 c 0 + 379.200195312 168.400390625 382.400390625 196.400390625 383.200195312 222 c 2 + 383.200195312 224.400390625 l 2 + 383.200195312 256.400390625 367.200195312 280.400390625 316.799804688 280.400390625 c 0 + 265.599609375 280.400390625 216.799804688 253.200195312 216.799804688 228.400390625 c 2 + 216.799804688 226 l 1 + 224 227.599609375 229.599609375 228.400390625 234.400390625 228.400390625 c 0 + 261.599609375 228.400390625 273.599609375 211.599609375 273.599609375 191.599609375 c 2 + 273.599609375 190 l 2 + 272.799804688 165.200195312 253.599609375 139.599609375 216 139.599609375 c 0 + 175.200195312 139.599609375 148.799804688 170 148.799804688 204.400390625 c 0 + 148.799804688 286 244.799804688 330 323.200195312 330 c 0 + 411.200195312 330 474.400390625 270.799804688 474.400390625 190.799804688 c 0xbe80 + 474.400390625 122 408.799804688 79.599609375 358.400390625 64.400390625 c 1 + 388.799804688 46 418.400390625 10.7998046875 418.400390625 -45.2001953125 c 0 + 418.400390625 -106.799804688 382.400390625 -162.799804688 333.599609375 -195.599609375 c 0 + 292 -223.599609375 236 -242.799804688 177.599609375 -242.799804688 c 0 + 120.799804688 -242.799804688 40.7998046875 -206 40.7998046875 -129.200195312 c 4 + 98.400390625 -145.200195312 l 4xbf +EndSplineSet +Validated: 1 +EndChar + +StartChar: four.oldstyle +Encoding: 1845 -1 1837 +Width: 490 +Flags: W +HStem: -242 21G<180 297.463> -75.5556 52.5556<138 232.985 360 471.908> +VStem: 369 44<131.491 155> 386 87<272.022 316> +LayerCount: 2 +Fore +SplineSet +180 -242 m 1xe0 + 233 -76 l 1 + 233 -75.6666666667 212.666666667 -75.5555555556 185.555555556 -75.5555555556 c 0 + 131.333333333 -75.5555555556 50 -76 50 -76 c 1 + 63 -30 l 1 + 96 -2 129 27 162 55 c 2 + 243 123 l 1 + 301 178 374 272 386 316 c 2 + 389 325 l 1 + 477 325 l 1 + 473 311 l 2xd0 + 461 257 405 206 362 169 c 2 + 362 169 213 41 138 -23 c 1 + 249 -23 l 1 + 271 46 l 1 + 306 67 349 123 369 155 c 1 + 413 155 l 1 + 360 -23 l 1 + 486 -23 l 1 + 472 -76 l 1 + 472 -76 345 -76 344 -78 c 1 + 291 -242 l 1 + 180 -242 l 1xe0 +EndSplineSet +EndChar + +StartChar: five.oldstyle +Encoding: 1846 -1 1838 +Width: 523 +Flags: W +HStem: -242.8 49.5996<109.338 250.003> -13.2002 21G<138 153.2> 92.4004 51.1992<224.562 321.162> 206.8 64<295.365 415.667> +VStem: 47.2002 59.2002<-183.786 -162.8> 334.4 103.199<-81.0663 79.7755> +LayerCount: 2 +Fore +SplineSet +106.400390625 -162.799804688 m 0 + 106.400390625 -170.799804688 112 -177.200195312 124.799804688 -183.599609375 c 0 + 138.400390625 -189.200195312 160 -193.200195312 184 -193.200195312 c 0 + 228.799804688 -193.200195312 268 -168.400390625 297.599609375 -114.799804688 c 0 + 318.400390625 -78 333.599609375 -17.2001953125 334.400390625 22.7998046875 c 2 + 334.400390625 26 l 2 + 334.400390625 66.7998046875 318.400390625 92.400390625 266.400390625 92.400390625 c 0 + 258.400390625 92.400390625 248.799804688 90.7998046875 239.200195312 86.7998046875 c 0 + 218.400390625 78.7998046875 194.400390625 59.599609375 180.799804688 20.400390625 c 0 + 176 5.2001953125 164 -13.2001953125 142.400390625 -13.2001953125 c 0 + 133.599609375 -13.2001953125 107.200195312 -10 107.200195312 18 c 0 + 107.200195312 42 122.400390625 58 135.200195312 71.599609375 c 0 + 145.599609375 82.7998046875 156.799804688 94.7998046875 161.599609375 110 c 2 + 205.599609375 234 l 2 + 214.400390625 258.799804688 217.599609375 273.200195312 217.599609375 286.799804688 c 0 + 217.599609375 291.599609375 216.799804688 297.200195312 215.200195312 302.799804688 c 2 + 212.799804688 310.799804688 l 1 + 220 314.799804688 l 1 + 241.599609375 327.599609375 l 1 + 251.200195312 334 l 1 + 259.200195312 326 l 2 + 276 306.799804688 312.799804688 270.799804688 348.799804688 270.799804688 c 0 + 393.599609375 270.799804688 426.400390625 285.200195312 456.799804688 325.200195312 c 2 + 464.799804688 336.400390625 l 1 + 475.200195312 326.799804688 l 1 + 487.200195312 315.599609375 l 1 + 493.599609375 309.200195312 l 1 + 488.799804688 302 l 2 + 464.799804688 266 422.400390625 206.799804688 332 206.799804688 c 0 + 300 206.799804688 275.200195312 218.799804688 258.400390625 230.799804688 c 1 + 224 129.200195312 l 1 + 243.200195312 138 264 143.599609375 280.799804688 143.599609375 c 0 + 378.400390625 143.599609375 437.599609375 90 437.599609375 2 c 0 + 437.599609375 -50.7998046875 413.599609375 -123.599609375 360 -174 c 0 + 314.400390625 -215.599609375 252 -242.799804688 188 -242.799804688 c 0 + 154.400390625 -242.799804688 124 -235.599609375 100.799804688 -222 c 0 + 67.2001953125 -203.599609375 47.2001953125 -171.599609375 47.2001953125 -134 c 0 + 106.400390625 -162.799804688 l 0 +EndSplineSet +Validated: 1 +EndChar + +StartChar: six.oldstyle +Encoding: 1847 -1 1839 +Width: 500 +Flags: W +HStem: -12.7998 49.5996<174.587 268.324> 300 52.7998<232.36 327.038> 510.4 49.5996<304.366 404.454> +VStem: 71.2002 91.2002<62.4009 209.439> 338.4 95.1992<128.431 290.601> 404.8 60<488 507.805> +LayerCount: 2 +Fore +SplineSet +184 211.200195312 m 0xf8 + 168.799804688 181.599609375 163.200195312 138.400390625 162.400390625 104.799804688 c 0 + 162.400390625 104 162.400390625 102.400390625 162.400390625 101.599609375 c 0 + 162.400390625 61.599609375 183.200195312 36.7998046875 214.400390625 36.7998046875 c 0 + 248.799804688 36.7998046875 279.200195312 60.7998046875 300.799804688 96 c 0 + 323.200195312 133.599609375 336.799804688 183.200195312 338.400390625 230.400390625 c 0 + 338.400390625 232 338.400390625 232.799804688 338.400390625 234.400390625 c 0 + 338.400390625 274.400390625 320.799804688 300 287.200195312 300 c 0 + 252.799804688 300 217.599609375 278.400390625 184 211.200195312 c 0xf8 +348.799804688 424 m 1024 +404.799804688 488 m 4xf4 + 404.799804688 489.599609375 404.799804688 490.400390625 404.799804688 492 c 0xf4 + 404.799804688 494.400390625 404 496.799804688 396.799804688 502.400390625 c 0 + 392 506.400390625 384 510.400390625 363.200195312 510.400390625 c 0 + 319.200195312 510.400390625 265.599609375 466.400390625 230.400390625 402.400390625 c 0 + 212.799804688 370.400390625 200.799804688 336.799804688 193.599609375 308 c 1 + 224.799804688 337.599609375 262.400390625 352.799804688 299.200195312 352.799804688 c 0 + 386.400390625 352.799804688 433.599609375 289.599609375 433.599609375 213.599609375 c 0xf8 + 433.599609375 154.400390625 404.799804688 92.7998046875 365.599609375 51.2001953125 c 0 + 341.599609375 28.7998046875 285.599609375 -12.7998046875 206.400390625 -12.7998046875 c 0 + 131.200195312 -12.7998046875 71.2001953125 46.400390625 71.2001953125 173.599609375 c 0 + 71.2001953125 245.599609375 97.599609375 348.799804688 152 432 c 1 + 217.599609375 523.200195312 300.799804688 560 366.400390625 560 c 0 + 394.400390625 560 419.200195312 548.799804688 434.400390625 533.599609375 c 0 + 458.400390625 513.599609375 464.799804688 487.200195312 464.799804688 464 c 4 + 404.799804688 488 l 4xf4 +EndSplineSet +Validated: 1 +EndChar + +StartChar: seven.oldstyle +Encoding: 1848 -1 1840 +Width: 501 +Flags: W +HStem: -243.6 21G<158 196> 176.4 57.5996<396.8 439.2> 239.6 84<216.408 324.8> +VStem: 113.6 130.4<-224.675 -110.385> 459.2 54.3994<234.296 288.472> +LayerCount: 2 +Fore +SplineSet +176.799804688 -243.599609375 m 0 + 139.200195312 -243.599609375 113.599609375 -219.599609375 113.599609375 -177.200195312 c 0 + 113.599609375 -108.400390625 206.400390625 -11.599609375 263.200195312 42 c 2 + 399.200195312 176.400390625 l 2 + 400 176.400390625 397.599609375 176.400390625 396.799804688 176.400390625 c 0 + 354.400390625 176.400390625 326.400390625 197.200195312 302.400390625 214.799804688 c 0 + 282.400390625 229.200195312 266.400390625 239.599609375 247.200195312 239.599609375 c 0 + 216.799804688 239.599609375 199.200195312 218.799804688 173.599609375 171.599609375 c 2 + 156.799804688 139.599609375 l 1 + 153.599609375 133.200195312 l 1 + 146.400390625 133.200195312 l 1 + 131.200195312 133.200195312 l 1 + 115.200195312 133.200195312 l 1 + 119.200195312 148.400390625 l 1 + 173.599609375 323.599609375 l 1 + 176.799804688 331.599609375 l 1 + 185.599609375 331.599609375 l 1 + 200.799804688 331.599609375 l 1 + 217.599609375 331.599609375 l 1 + 212.799804688 316.400390625 l 2 + 210.400390625 309.200195312 208.799804688 302.799804688 208.799804688 296.400390625 c 0 + 208.799804688 293.200195312 209.599609375 289.200195312 210.400390625 288.400390625 c 0 + 234.400390625 306.799804688 264 323.599609375 304 323.599609375 c 0 + 345.599609375 323.599609375 373.599609375 295.599609375 391.200195312 271.599609375 c 0 + 408.799804688 247.599609375 423.200195312 234 439.200195312 234 c 0 + 454.400390625 234 457.599609375 238.799804688 458.400390625 240.400390625 c 0 + 459.200195312 241.200195312 459.200195312 242 459.200195312 242.799804688 c 0 + 459.200195312 246 459.200195312 246 456 247.599609375 c 2 + 455.200195312 247.599609375 l 1 + 454.400390625 248.400390625 l 2 + 448 253.200195312 438.400390625 262 438.400390625 278.799804688 c 0 + 438.400390625 303.599609375 457.599609375 314.799804688 472 314.799804688 c 0 + 507.200195312 314.799804688 513.599609375 282.799804688 513.599609375 266.799804688 c 0 + 513.599609375 250.799804688 507.200195312 236.400390625 498.400390625 221.200195312 c 0 + 485.599609375 201.200195312 467.200195312 180.400390625 446.400390625 158 c 0 + 443.200195312 154 440 150.799804688 437.599609375 147.599609375 c 0 + 334.400390625 40.400390625 298.400390625 0.400390625 269.599609375 -59.599609375 c 0 + 246.400390625 -107.599609375 244 -138 244 -171.599609375 c 0 + 242.400390625 -214 215.200195312 -243.599609375 176.799804688 -243.599609375 c 0 +EndSplineSet +Validated: 5 +EndChar + +StartChar: eight.oldstyle +Encoding: 1849 -1 1841 +Width: 489 +Flags: W +HStem: -12.7998 49.5996<142.669 286.635> 510.4 49.5996<267.35 394.129> +VStem: 52.7998 59.2002<68.3141 210.328> 145.6 86.4004<352.77 471.152> 328.8 87.2002<75.6502 196.885> 422.4 67.1992<348.63 481.905> +LayerCount: 2 +Fore +SplineSet +327.200195312 510.400390625 m 0 + 295.200195312 510.400390625 233.599609375 489.599609375 232 408.799804688 c 0 + 232 407.200195312 232 405.599609375 232 404 c 0 + 232 376 239.200195312 365.599609375 255.200195312 351.200195312 c 2 + 320.799804688 291.200195312 l 1 + 383.200195312 303.200195312 422.400390625 356.799804688 422.400390625 405.599609375 c 0 + 422.400390625 473.599609375 393.599609375 510.400390625 327.200195312 510.400390625 c 0 +204 -12.7998046875 m 0 + 136.799804688 -12.7998046875 52.7998046875 33.599609375 52.7998046875 134.400390625 c 0 + 52.7998046875 195.200195312 89.599609375 242.400390625 128 264.799804688 c 0 + 147.200195312 276.799804688 165.599609375 284 189.599609375 289.599609375 c 1 + 165.599609375 313.599609375 145.599609375 349.599609375 145.599609375 392.799804688 c 0 + 145.599609375 438.400390625 164.799804688 476.799804688 193.599609375 506.400390625 c 0 + 234.400390625 546.400390625 293.599609375 560 332 560 c 0 + 422.400390625 560 489.599609375 513.599609375 489.599609375 428.799804688 c 0 + 489.599609375 384.799804688 470.400390625 335.200195312 432.799804688 307.200195312 c 0 + 412.799804688 292.799804688 384.799804688 279.200195312 360 272 c 1 + 397.599609375 238.400390625 416 204 416 158.400390625 c 0 + 416 104.799804688 396 64.7998046875 356 33.599609375 c 0 + 318.400390625 4.7998046875 264.799804688 -12.7998046875 204 -12.7998046875 c 0 +152 232.799804688 m 0 + 131.200195312 213.599609375 112 180 112 141.599609375 c 0 + 112 75.2001953125 142.400390625 36.7998046875 215.200195312 36.7998046875 c 0 + 276.799804688 36.7998046875 328.799804688 78.400390625 328.799804688 125.599609375 c 0 + 328.799804688 156 321.599609375 184.799804688 303.200195312 201.599609375 c 2 + 226.400390625 268 l 1 + 199.200195312 261.599609375 177.599609375 255.200195312 152 232.799804688 c 0 +EndSplineSet +Validated: 1 +EndChar + +StartChar: nine.oldstyle +Encoding: 1850 -1 1842 +Width: 513 +Flags: W +HStem: -242.8 49.5996<136.662 236.757> -35.5996 52.7998<209.485 306.381> 280.4 49.5996<267.766 364.493> +VStem: 101.6 96<28.961 188.769> 377.6 92.8008<107.76 254.764> +LayerCount: 2 +Fore +SplineSet +235.200195312 221.200195312 m 0 + 212 183.599609375 198.400390625 134 197.599609375 86.7998046875 c 0 + 197.599609375 86 197.599609375 85.2001953125 197.599609375 84.400390625 c 0 + 197.599609375 43.599609375 215.200195312 17.2001953125 250.400390625 17.2001953125 c 0 + 285.599609375 17.2001953125 322.400390625 38.7998046875 356 106 c 0 + 371.200195312 135.599609375 377.599609375 178.799804688 377.599609375 212.400390625 c 0 + 377.599609375 213.200195312 377.599609375 214 377.599609375 214.799804688 c 0 + 377.599609375 255.599609375 355.200195312 280.400390625 324 280.400390625 c 0 + 288 280.400390625 256 256.400390625 235.200195312 221.200195312 c 0 +132.799804688 -170.799804688 m 4 + 132.799804688 -172.400390625 132 -173.200195312 132 -174 c 0 + 132 -177.200195312 133.599609375 -178.799804688 140.799804688 -185.200195312 c 0 + 147.200195312 -189.200195312 156 -193.200195312 177.599609375 -193.200195312 c 0 + 222.400390625 -193.200195312 276 -149.200195312 311.200195312 -85.2001953125 c 0 + 328 -53.2001953125 340 -19.599609375 348 9.2001953125 c 1 + 315.200195312 -20.400390625 276.799804688 -35.599609375 238.400390625 -35.599609375 c 0 + 148.799804688 -35.599609375 101.599609375 27.599609375 101.599609375 103.599609375 c 0 + 101.599609375 162.799804688 130.400390625 224.400390625 169.599609375 266 c 0 + 193.599609375 288.400390625 249.599609375 330 331.200195312 330 c 0 + 409.599609375 330 470.400390625 270.799804688 470.400390625 143.599609375 c 0 + 470.400390625 71.599609375 443.200195312 -31.599609375 388.799804688 -114.799804688 c 1 + 323.200195312 -206 240 -242.799804688 174.400390625 -242.799804688 c 0 + 145.599609375 -242.799804688 118.400390625 -231.599609375 100.799804688 -216.400390625 c 0 + 76.7998046875 -196.400390625 70.400390625 -170 70.400390625 -146.799804688 c 4 + 132.799804688 -170.799804688 l 4 +EndSplineSet +Validated: 1 EndChar EndChars EndSplineFont diff --git a/src/OldStandard-Italic.sfd b/src/OldStandard-Italic.sfd index 0a5b980..23b9438 100644 --- a/src/OldStandard-Italic.sfd +++ b/src/OldStandard-Italic.sfd @@ -22,7 +22,7 @@ OS2Version: 4 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 1 CreationTime: 1300612368 -ModificationTime: 1702368997 +ModificationTime: 1702637294 PfmFamily: 17 TTFWeight: 400 TTFWidth: 5 @@ -107,6 +107,9 @@ Lookup: 1 0 0 "Single Substitution lookup 44" { "Single Substitution lookup 44 s Lookup: 1 0 0 "Single Substitution lookup 45" { "Single Substitution lookup 45 subtable" } [] Lookup: 1 0 0 "Single Substitution lookup 46" { "Single Substitution lookup 46 subtable" } [] Lookup: 1 0 0 "'pnum' Proportional Numbers lookup 7" { "'pnum' Proportional Numbers lookup 7 subtable" } ['pnum' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'latn' <'AZE ' 'CRT ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > ) ] +Lookup: 1 0 0 "'onum' Oldstyle Figures lookup 49" { "'onum' Oldstyle Figures lookup 49-1" ("oldstyle") } ['onum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] +Lookup: 1 0 0 "'tnum' Tabular Numbers lookup 50" { } ['tnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] +Lookup: 1 0 0 "'lnum' Lining Figures lookup 51" { } ['lnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] Lookup: 263 0 0 "Required Feature lookup 0" { "Required Feature lookup 0 subtable" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 263 0 0 "Required Feature lookup 1" { "Required Feature lookup 1 subtable" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 260 0 0 "'mark' Mark Positioning lookup 2" { "'mark' Mark Positioning lookup 2 anchor 0" "'mark' Mark Positioning lookup 2 anchor 1" "'mark' Mark Positioning lookup 2 anchor 2" "'mark' Mark Positioning lookup 2 anchor 3" "'mark' Mark Positioning lookup 2 anchor 4" "'mark' Mark Positioning lookup 2 anchor 5" "'mark' Mark Positioning lookup 2 anchor 6" } ['mark' ('cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'TRK ' 'dflt' > ) ] @@ -985,7 +988,7 @@ StdVW 4 [68] StemSnapH 13 [24 28 32 36] EndPrivate AnchorClass2: "Anchor-0" "'mark' Mark Positioning lookup 2 anchor 0" "Anchor-1" "'mark' Mark Positioning lookup 2 anchor 1" "Anchor-2" "'mark' Mark Positioning lookup 2 anchor 2" "Anchor-3" "'mark' Mark Positioning lookup 2 anchor 3" "Anchor-4" "'mark' Mark Positioning lookup 2 anchor 4" "Anchor-5" "'mark' Mark Positioning lookup 2 anchor 5" "Anchor-6" "'mark' Mark Positioning lookup 2 anchor 6" "Anchor-7" "'mkmk' Mark to Mark lookup 3 anchor 0" "Anchor-8" "'mkmk' Mark to Mark lookup 3 anchor 1" "Anchor-9" "'mkmk' Mark to Mark lookup 3 anchor 2" -BeginChars: 1841 1833 +BeginChars: 1851 1843 StartChar: .notdef Encoding: 1573 -1 0 @@ -1540,6 +1543,7 @@ SplineSet 312 668 258 566 218 446 c 0 183 341 152 224 152 143 c 0 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" zero.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" zero.prop Substitution2: "'sups' Superscript lookup 19 subtable" zerosuperior Substitution2: "'subs' Subscript lookup 18 subtable" zeroinferior @@ -1572,6 +1576,7 @@ SplineSet 392 0 l 1 54 0 l 1 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" one.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" one.prop Substitution2: "'sups' Superscript lookup 19 subtable" onesuperior Substitution2: "'subs' Subscript lookup 18 subtable" oneinferior @@ -1619,6 +1624,7 @@ SplineSet 98 9 91 -8 68 -8 c 0 45 -8 32 7 32 26 c 0x7f EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" two.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" two.prop Substitution2: "'sups' Superscript lookup 19 subtable" twosuperior Substitution2: "'subs' Subscript lookup 18 subtable" twoinferior @@ -1668,6 +1674,7 @@ SplineSet 305 668 233 631 233 583 c 0 233 567 238 562 244 562 c 0xdf40 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" three.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" three.prop Substitution2: "'sups' Superscript lookup 19 subtable" threesuperior Substitution2: "'subs' Subscript lookup 18 subtable" threeinferior @@ -1711,6 +1718,7 @@ SplineSet 294 208 l 1 64 208 l 1xf0 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" four.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" four.prop Substitution2: "'sups' Superscript lookup 19 subtable" foursuperior Substitution2: "'subs' Subscript lookup 18 subtable" fourinferior @@ -1759,6 +1767,7 @@ SplineSet 200 125 182 102 149 102 c 0 145 102 139 103 133 103 c 0 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" five.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" five.prop Substitution2: "'sups' Superscript lookup 19 subtable" fivesuperior Substitution2: "'subs' Subscript lookup 18 subtable" fiveinferior @@ -1801,6 +1810,7 @@ SplineSet 291 390 243 355 203 265 c 0 184 223 178 165 178 120 c 0 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" six.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" six.prop Substitution2: "'sups' Superscript lookup 19 subtable" sixsuperior Substitution2: "'subs' Subscript lookup 18 subtable" sixinferior @@ -1845,6 +1855,7 @@ SplineSet 272 12 246 -17 208 -17 c 0 169 -17 144 6 144 54 c 0xfa EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" seven.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" seven.prop Substitution2: "'sups' Superscript lookup 19 subtable" sevensuperior Substitution2: "'subs' Subscript lookup 18 subtable" seveninferior @@ -1888,6 +1899,7 @@ SplineSet 524 613 478 668 386 668 c 0 340 668 254 637 254 526 c 0 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" eight.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" eight.prop Substitution2: "'sups' Superscript lookup 19 subtable" eightsuperior Substitution2: "'subs' Subscript lookup 18 subtable" eightinferior @@ -1930,6 +1942,7 @@ SplineSet 325 668 284 631 258 583 c 0 230 531 214 464 214 400 c 0 EndSplineSet +Substitution2: "'onum' Oldstyle Figures lookup 49-1" nine.oldstyle Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" nine.prop Substitution2: "'sups' Superscript lookup 19 subtable" ninesuperior Substitution2: "'subs' Subscript lookup 18 subtable" nineinferior @@ -79491,5 +79504,353 @@ EndSplineSet Kerns2: 1824 -60 "Proportional Numbers Kerning-1" Substitution2: "'pnum' Proportional Numbers lookup 7 subtable" nine.prop EndChar + +StartChar: zero.oldstyle +Encoding: 1841 -1 1833 +Width: 527 +Flags: W +HStem: -16.7998 25.5996<147.142 227.126> 530.4 25.5996<277.534 356.206> +VStem: 57.5996 64<60.3732 247.392> 382.4 64<292.016 479.592> +LayerCount: 2 +Fore +SplineSet +57.599609375 200.799804688 m 0 + 57.599609375 360.799804688 164.799804688 556 321.599609375 556 c 0 + 411.200195312 556 446.400390625 464.799804688 446.400390625 338.400390625 c 0 + 446.400390625 178.400390625 339.200195312 -16.7998046875 182.400390625 -16.7998046875 c 0 + 92.7998046875 -16.7998046875 57.599609375 74.400390625 57.599609375 200.799804688 c 0 +121.599609375 110.400390625 m 0 + 121.599609375 56.7998046875 134.400390625 8.7998046875 180.799804688 8.7998046875 c 0 + 257.599609375 8.7998046875 297.599609375 90.400390625 329.599609375 186.400390625 c 0 + 357.599609375 270.400390625 382.400390625 365.599609375 382.400390625 428 c 0 + 382.400390625 481.599609375 369.599609375 530.400390625 323.200195312 530.400390625 c 0 + 249.599609375 530.400390625 206.400390625 448.799804688 174.400390625 352.799804688 c 0 + 146.400390625 268.799804688 121.599609375 175.200195312 121.599609375 110.400390625 c 0 +EndSplineSet +EndChar + +StartChar: one.oldstyle +Encoding: 1842 -1 1834 +Width: 496 +Flags: W +HStem: 0 25.5996<49.5996 149.748 224.004 313.6> 412.8 16<160.75 181.65> +VStem: 336.8 24.7998<530.437 547.2> +LayerCount: 2 +Fore +SplineSet +43.2001953125 0 m 1 + 49.599609375 25.599609375 l 1 + 124 25.599609375 l 2 + 140 25.599609375 148.799804688 31.2001953125 152.799804688 46.400390625 c 2 + 262.400390625 450.400390625 l 1 + 238.400390625 434.400390625 198.400390625 424.799804688 163.200195312 412.799804688 c 1 + 157.599609375 428.799804688 l 1 + 211.200195312 444.799804688 292 472 336.799804688 547.200195312 c 1 + 361.599609375 547.200195312 l 1 + 225.599609375 46.400390625 l 2 + 224.799804688 43.2001953125 224 40 224 37.599609375 c 0 + 224 28.7998046875 229.599609375 25.599609375 241.599609375 25.599609375 c 2 + 320 25.599609375 l 1 + 313.599609375 0 l 1 + 43.2001953125 0 l 1 +EndSplineSet +EndChar + +StartChar: two.oldstyle +Encoding: 1843 -1 1835 +Width: 486 +Flags: W +HStem: -13.5996 83.1992<183.49 307.64> -6.40039 21G<45.2002 63.6001> 91.2002 23.2002<92.7998 118.625> 328 77.5996<156.106 214.052> 534.4 25.5996<234.141 333.545> +VStem: 25.5996 33.6006<8.25596 88.092> 124.8 31.2002<376.4 464.512> 376 76.7998<358.512 494.174> +LayerCount: 2 +Fore +SplineSet +25.599609375 20.7998046875 m 0x7f + 25.599609375 87.2001953125 62.400390625 148.799804688 139.200195312 188 c 1 + 248 252 l 2 + 308 287.200195312 376 358.400390625 376 432 c 0 + 376 478.400390625 356.799804688 534.400390625 282.400390625 534.400390625 c 0 + 220.799804688 534.400390625 156 472 156 432 c 0 + 156 422.400390625 156.799804688 405.599609375 169.599609375 405.599609375 c 0 + 173.599609375 405.599609375 176.799804688 407.200195312 182.400390625 410.400390625 c 0 + 190.400390625 414.400390625 195.200195312 416 201.599609375 416 c 0 + 226.400390625 416 236.799804688 398.400390625 236.799804688 379.200195312 c 0 + 236.799804688 352 215.200195312 328 182.400390625 328 c 0 + 156 328 124.799804688 353.599609375 124.799804688 399.200195312 c 0 + 124.799804688 493.599609375 211.200195312 560 289.599609375 560 c 0 + 391.200195312 560 452.799804688 500.799804688 452.799804688 417.599609375 c 0 + 452.799804688 311.200195312 330.400390625 254.400390625 264.799804688 224 c 2 + 172.799804688 181.599609375 l 2 + 116.799804688 156 92.7998046875 128.799804688 92.7998046875 114.400390625 c 1 + 111.200195312 114.400390625 133.599609375 106.400390625 157.599609375 96 c 0 + 188.799804688 83.2001953125 224.799804688 69.599609375 263.200195312 69.599609375 c 0 + 302.400390625 69.599609375 340.799804688 86.400390625 356 124 c 2 + 371.200195312 160.799804688 l 1 + 386.400390625 160.799804688 l 1 + 372.799804688 90.400390625 332.799804688 -13.599609375 244 -13.599609375 c 0xbf + 195.200195312 -13.599609375 168 19.2001953125 146.400390625 48.7998046875 c 0 + 128.799804688 72 112.799804688 91.2001953125 91.2001953125 91.2001953125 c 0 + 70.400390625 91.2001953125 59.2001953125 84.7998046875 59.2001953125 56 c 0 + 59.2001953125 49.599609375 61.599609375 44 64.7998046875 41.599609375 c 0 + 72.7998046875 34.400390625 78.400390625 28 78.400390625 18.400390625 c 0 + 78.400390625 7.2001953125 72.7998046875 -6.400390625 54.400390625 -6.400390625 c 0 + 36 -6.400390625 25.599609375 5.599609375 25.599609375 20.7998046875 c 0x7f +EndSplineSet +EndChar + +StartChar: three.oldstyle +Encoding: 1844 -1 1836 +Width: 486 +Flags: W +HStem: -245.8 25.5996<115.649 221.576> 29.4004 50.3994<161.294 229.986> 59.7998 20<228.136 292.212> 148.6 68<186.511 238.17> 301.4 25.5996<236.441 347.538> +VStem: 41.5996 33.6006<-189.361 -149> 148.8 37.6006<189.4 264.867> 313.6 76.8008<-118.342 21.3231> 377.6 68.8008<135.85 266.963> +LayerCount: 2 +Fore +SplineSet +75.2001953125 -149 m 4xbf + 75.2001953125 -204.200195312 134.400390625 -220.200195312 172.799804688 -220.200195312 c 0 + 208.799804688 -220.200195312 243.200195312 -201 268.799804688 -164.200195312 c 0 + 300.799804688 -117.799804688 313.599609375 -47.400390625 313.599609375 -10.599609375 c 0 + 313.599609375 15 313.599609375 59.7998046875 256 59.7998046875 c 0xbf + 243.200195312 59.7998046875 235.200195312 56.599609375 224.799804688 47 c 0 + 216 39 203.200195312 29.400390625 188 29.400390625 c 0 + 169.599609375 29.400390625 160 38.2001953125 160 50.2001953125 c 0 + 160 63 170.400390625 79.7998046875 192 79.7998046875 c 2xdf + 274.400390625 79.7998046875 l 2 + 306.400390625 79.7998046875 339.200195312 107 358.400390625 139.799804688 c 0 + 374.400390625 167 377.599609375 199 377.599609375 227 c 0 + 377.599609375 267.799804688 355.200195312 301.400390625 296.799804688 301.400390625 c 0 + 244 301.400390625 186.400390625 271.799804688 186.400390625 233.400390625 c 0 + 186.400390625 220.599609375 190.400390625 216.599609375 195.200195312 216.599609375 c 0 + 198.400390625 216.599609375 210.400390625 221.400390625 215.200195312 221.400390625 c 0 + 236 221.400390625 243.200195312 210.200195312 243.200195312 191 c 0 + 243.200195312 170.200195312 229.599609375 148.599609375 198.400390625 148.599609375 c 0 + 168.799804688 148.599609375 148.799804688 173.400390625 148.799804688 205.400390625 c 0 + 148.799804688 282.200195312 227.200195312 327 301.599609375 327 c 0 + 388 327 446.400390625 270.200195312 446.400390625 194.200195312 c 0xbe80 + 446.400390625 120.599609375 368 75.7998046875 318.400390625 67.7998046875 c 1 + 317.599609375 62.2001953125 l 1 + 347.200195312 51 390.400390625 16.599609375 390.400390625 -52.2001953125 c 0 + 390.400390625 -111.400390625 356.799804688 -166.599609375 314.400390625 -199.400390625 c 0 + 279.200195312 -226.599609375 226.400390625 -245.799804688 170.400390625 -245.799804688 c 0 + 115.200195312 -245.799804688 41.599609375 -209 41.599609375 -137 c 4 + 75.2001953125 -149 l 4xbf +EndSplineSet +EndChar + +StartChar: four.oldstyle +Encoding: 1845 -1 1837 +Width: 488 +Flags: W +HStem: -248 21G<200 282.696> -106.6 28.7998<92.7998 235.2 318.4 436.8> +VStem: 368.8 13.6006<140.903 155> 369.6 65.6006<234.04 282.2> +LayerCount: 2 +Fore +SplineSet +235.200195312 -106.599609375 m 21xe0 + 51.2001953125 -106.599609375 l 1 + 59.2001953125 -77.7998046875 l 1 + 232 77.400390625 l 1 + 289.599609375 134.200195312 357.599609375 232.599609375 369.599609375 282.200195312 c 1 + 435.200195312 282.200195312 l 1xd0 + 426.400390625 242.200195312 395.200195312 199 327.200195312 135 c 2 + 92.7998046875 -77.7998046875 l 1 + 242.400390625 -77.7998046875 l 1 + 277.599609375 43.7998046875 l 1 + 321.599609375 74.2001953125 353.599609375 118.200195312 368.799804688 155 c 1 + 382.400390625 155 l 1 + 318.400390625 -77.7998046875 l 1 + 444.799804688 -77.7998046875 l 1 + 436.799804688 -106.599609375 l 1 + 311.200195312 -106.599609375 l 1 + 278 -248 l 25 + 200 -248 l 1 + 235.200195312 -106.599609375 l 21xe0 +EndSplineSet +EndChar + +StartChar: five.oldstyle +Encoding: 1846 -1 1838 +Width: 497 +Flags: W +HStem: -246.8 25.5996<114.017 225.778> -5.2002 21G<128.4 138> 100.4 27.1992<212.339 300.465> 218.8 48<270.61 391.681> +VStem: 49.5996 35.2002<-198.817 -168.4> 109.6 46.4004<-5.12727 56.5535> 331.2 75.2002<-100.39 73.1944> +LayerCount: 2 +Fore +SplineSet +84.7998046875 -168.400390625 m 0 + 84.7998046875 -199.599609375 121.599609375 -221.200195312 172.799804688 -221.200195312 c 0 + 223.200195312 -221.200195312 266.400390625 -191.599609375 296 -133.200195312 c 0 + 316.799804688 -92.400390625 331.200195312 -28.400390625 331.200195312 15.599609375 c 0 + 331.200195312 64.400390625 311.200195312 100.400390625 250.400390625 100.400390625 c 0 + 220.799804688 100.400390625 176 82 156 19.599609375 c 0 + 152 6 143.200195312 -5.2001953125 132.799804688 -5.2001953125 c 0 + 124 -5.2001953125 109.599609375 -3.599609375 109.599609375 14 c 0 + 109.599609375 32.400390625 120.799804688 46 133.599609375 59.599609375 c 0 + 144.799804688 71.599609375 156 85.2001953125 161.599609375 103.599609375 c 2 + 201.599609375 234 l 2 + 209.599609375 260.400390625 212.799804688 276.400390625 212.799804688 292.400390625 c 0 + 212.799804688 298.799804688 212 305.200195312 210.400390625 312.400390625 c 1 + 229.599609375 326 l 1 + 246.400390625 306.799804688 285.599609375 266.799804688 328 266.799804688 c 0 + 375.200195312 266.799804688 414.400390625 282.799804688 447.200195312 326 c 1 + 459.200195312 314 l 1 + 435.200195312 276.400390625 396.799804688 218.799804688 312.799804688 218.799804688 c 0 + 275.200195312 218.799804688 250.400390625 237.200195312 233.599609375 253.200195312 c 1 + 188.799804688 104.400390625 l 1 + 192 102 l 1 + 206.400390625 114.799804688 242.400390625 127.599609375 264 127.599609375 c 0 + 354.400390625 127.599609375 406.400390625 78 406.400390625 -6.7998046875 c 0 + 406.400390625 -58 383.200195312 -130 335.200195312 -179.599609375 c 0 + 296 -220.400390625 239.200195312 -246.799804688 177.599609375 -246.799804688 c 0 + 100.799804688 -246.799804688 49.599609375 -205.200195312 49.599609375 -142.799804688 c 0 + 84.7998046875 -168.400390625 l 0 +EndSplineSet +EndChar + +StartChar: six.oldstyle +Encoding: 1847 -1 1839 +Width: 480 +Flags: W +HStem: -12.7998 25.5996<171.836 251.875> 312 28.7998<226.725 312.093> 534.4 25.5996<298.361 391.088> +VStem: 72 70.4004<58.0458 214.348> 337.6 69.6006<115.857 288.252> 403.2 38.3994<500.8 525.62> +LayerCount: 2 +Fore +SplineSet +403.200195312 500.799804688 m 0xf4 + 403.200195312 522.400390625 375.200195312 534.400390625 343.200195312 534.400390625 c 0 + 291.200195312 534.400390625 236.799804688 481.599609375 203.200195312 411.200195312 c 0 + 180.799804688 364.799804688 168 318.400390625 162.400390625 277.599609375 c 1 + 168 273.599609375 l 1 + 196 317.599609375 241.599609375 340.799804688 284 340.799804688 c 0 + 364 340.799804688 407.200195312 282.400390625 407.200195312 208.799804688 c 0xf8 + 407.200195312 152 379.200195312 90.400390625 342.400390625 49.599609375 c 0 + 322.400390625 28 275.200195312 -12.7998046875 201.599609375 -12.7998046875 c 0 + 131.200195312 -12.7998046875 72 40.7998046875 72 169.599609375 c 0 + 72 241.599609375 98.400390625 348 151.200195312 432 c 0 + 209.599609375 524.799804688 284.799804688 560 344.799804688 560 c 0 + 372 560 396.799804688 549.599609375 412 536.799804688 c 0 + 432.799804688 519.200195312 441.599609375 497.599609375 441.599609375 476.799804688 c 0 + 403.200195312 500.799804688 l 0xf4 +142.400390625 96 m 0 + 142.400390625 48 168 12.7998046875 208 12.7998046875 c 0 + 248.799804688 12.7998046875 281.599609375 42.400390625 302.400390625 80.7998046875 c 0 + 324.799804688 122.400390625 337.599609375 176 337.599609375 227.200195312 c 0 + 337.599609375 273.599609375 317.599609375 312 273.599609375 312 c 0 + 232.799804688 312 194.400390625 284 162.400390625 212 c 0 + 147.200195312 178.400390625 142.400390625 132 142.400390625 96 c 0 +EndSplineSet +EndChar + +StartChar: seven.oldstyle +Encoding: 1848 -1 1840 +Width: 469 +Flags: W +HStem: -243.6 21G<150.8 181.6> 194 40<352.4 427.178> 259.6 25.6006<197.459 215.928> +VStem: 115.2 102.399<-234.15 -122.354> 175.2 15.2002<308.738 331.6> 443.2 30.3994<236.873 284.8> +LayerCount: 2 +Fore +SplineSet +115.200195312 -186.799804688 m 0xf4 + 115.200195312 -122.799804688 204.799804688 -22.7998046875 256 34 c 2 + 406.400390625 200.400390625 l 1 + 403.200195312 203.599609375 l 1 + 392.799804688 196.400390625 378.400390625 194 371.200195312 194 c 0 + 333.599609375 194 311.200195312 212.400390625 289.599609375 230.799804688 c 0 + 272 246 255.200195312 259.599609375 232.799804688 259.599609375 c 0 + 197.599609375 259.599609375 177.599609375 230.799804688 152.799804688 182 c 2 + 136 149.200195312 l 1 + 120.799804688 149.200195312 l 1 + 175.200195312 331.599609375 l 1 + 190.400390625 331.599609375 l 1xec + 188 323.599609375 187.200195312 315.599609375 187.200195312 308.400390625 c 0 + 187.200195312 295.599609375 191.200195312 285.200195312 200.799804688 285.200195312 c 1 + 223.200195312 305.200195312 248 323.599609375 283.200195312 323.599609375 c 0 + 313.599609375 323.599609375 336 300.400390625 353.599609375 276.400390625 c 0 + 371.200195312 252.400390625 388 234 411.200195312 234 c 0 + 436.799804688 234 443.200195312 246.799804688 443.200195312 254.799804688 c 0 + 443.200195312 262 440 266.799804688 433.599609375 270 c 0 + 428 274 422.400390625 278.799804688 422.400390625 290.799804688 c 0 + 422.400390625 308.400390625 435.200195312 314.799804688 444 314.799804688 c 0 + 468.799804688 314.799804688 473.599609375 293.200195312 473.599609375 276.400390625 c 0 + 473.599609375 245.200195312 445.599609375 212.400390625 409.599609375 170.799804688 c 0 + 307.200195312 51.599609375 269.599609375 7.599609375 241.599609375 -58.7998046875 c 0 + 220 -110.799804688 217.599609375 -145.200195312 217.599609375 -180.400390625 c 0 + 217.599609375 -220.400390625 196.799804688 -243.599609375 166.400390625 -243.599609375 c 0 + 135.200195312 -243.599609375 115.200195312 -225.200195312 115.200195312 -186.799804688 c 0xf4 +EndSplineSet +EndChar + +StartChar: eight.oldstyle +Encoding: 1849 -1 1841 +Width: 462 +Flags: W +HStem: -12.7998 25.5996<145.451 266.484> 534.4 25.5996<259.386 366.675> +VStem: 54.4004 35.1992<60.1537 195.106> 147.2 56<361.636 480.822> 331.2 57.5996<70.1072 189.321> 419.2 43.2002<355.456 494.737> +LayerCount: 2 +Fore +SplineSet +89.599609375 129.599609375 m 0 + 89.599609375 57.599609375 128 12.7998046875 208 12.7998046875 c 0 + 275.200195312 12.7998046875 331.200195312 57.599609375 331.200195312 113.599609375 c 0 + 331.200195312 145.599609375 324 178.400390625 300.799804688 198.400390625 c 2 + 216.799804688 268.799804688 l 1 + 188 262.400390625 160 256 132.799804688 229.599609375 c 0 + 110.400390625 208 89.599609375 172 89.599609375 129.599609375 c 0 +54.400390625 128.799804688 m 0 + 54.400390625 187.200195312 88 232.799804688 123.200195312 254.400390625 c 0 + 148.799804688 270.400390625 164 276.799804688 200.799804688 283.200195312 c 1 + 176 300.799804688 147.200195312 344 147.200195312 397.599609375 c 0 + 147.200195312 442.400390625 163.200195312 479.200195312 188 508 c 0 + 221.599609375 546.400390625 276 560 312 560 c 0 + 401.599609375 560 462.400390625 515.200195312 462.400390625 435.200195312 c 0 + 462.400390625 392.799804688 444 344 410.400390625 318.400390625 c 0 + 385.599609375 299.200195312 348 281.599609375 323.200195312 277.599609375 c 1 + 366.400390625 240.799804688 388.799804688 204.799804688 388.799804688 153.599609375 c 0 + 388.799804688 100.799804688 370.400390625 63.2001953125 336 32.7998046875 c 0 + 304.799804688 4.7998046875 257.599609375 -12.7998046875 198.400390625 -12.7998046875 c 0 + 134.400390625 -12.7998046875 54.400390625 32 54.400390625 128.799804688 c 0 +203.200195312 420.799804688 m 0 + 203.200195312 386.400390625 212.799804688 371.200195312 232 354.400390625 c 2 + 304.799804688 290.400390625 l 1 + 374.400390625 300.799804688 419.200195312 361.599609375 419.200195312 417.599609375 c 0 + 419.200195312 490.400390625 382.400390625 534.400390625 308.799804688 534.400390625 c 0 + 272 534.400390625 203.200195312 509.599609375 203.200195312 420.799804688 c 0 +EndSplineSet +EndChar + +StartChar: nine.oldstyle +Encoding: 1850 -1 1842 +Width: 478 +Flags: W +HStem: -246.8 25.5996<120.261 210.439> -182.8 20G<70.4004 102.4> -27.5996 28.7998<196.707 282.075> 300.4 25.5996<256.925 336.964> +VStem: 70.4004 38.3994<-213.175 -186.8> 101.6 69.6006<24.9478 197.344> 366.4 70.3994<98.8517 255.154> +LayerCount: 2 +Fore +SplineSet +108.799804688 -186.799804688 m 0xfa + 108.799804688 -208.400390625 133.599609375 -221.200195312 165.599609375 -221.200195312 c 0 + 217.599609375 -221.200195312 272 -168.400390625 305.599609375 -98 c 0 + 328 -51.599609375 340.799804688 -5.2001953125 346.400390625 35.599609375 c 1 + 340.799804688 39.599609375 l 1 + 312.799804688 -4.400390625 267.200195312 -27.599609375 224.799804688 -27.599609375 c 0 + 144.799804688 -27.599609375 101.599609375 30.7998046875 101.599609375 104.400390625 c 0xf6 + 101.599609375 161.200195312 129.599609375 222.799804688 166.400390625 263.599609375 c 0 + 186.400390625 285.200195312 233.599609375 326 307.200195312 326 c 0 + 377.599609375 326 436.799804688 272.400390625 436.799804688 143.599609375 c 0 + 436.799804688 71.599609375 410.400390625 -34.7998046875 357.599609375 -118.799804688 c 0 + 299.200195312 -211.599609375 224 -246.799804688 164 -246.799804688 c 0 + 136.799804688 -246.799804688 112 -236.400390625 96.7998046875 -223.599609375 c 0 + 76 -206 70.400390625 -183.599609375 70.400390625 -162.799804688 c 0 + 108.799804688 -186.799804688 l 0xfa +171.200195312 86 m 0 + 171.200195312 39.599609375 191.200195312 1.2001953125 235.200195312 1.2001953125 c 0 + 276 1.2001953125 314.400390625 29.2001953125 346.400390625 101.200195312 c 0 + 361.599609375 134.799804688 366.400390625 181.200195312 366.400390625 217.200195312 c 0 + 366.400390625 265.200195312 340.799804688 300.400390625 300.799804688 300.400390625 c 0 + 260 300.400390625 227.200195312 270.799804688 206.400390625 232.400390625 c 0 + 184 190.799804688 171.200195312 137.200195312 171.200195312 86 c 0 +EndSplineSet +EndChar EndChars EndSplineFont diff --git a/src/OldStandard-Regular.sfd b/src/OldStandard-Regular.sfd index 063bad8..12aee82 100644 --- a/src/OldStandard-Regular.sfd +++ b/src/OldStandard-Regular.sfd @@ -22,7 +22,7 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 1 CreationTime: 1300584531 -ModificationTime: 1702368874 +ModificationTime: 1702637208 PfmFamily: 17 TTFWeight: 400 TTFWidth: 5 @@ -105,6 +105,8 @@ Lookup: 1 0 0 "Medial/Final forms for Greek" { "Medial/Final Forms for Greek-1" Lookup: 1 0 0 "Superscripts to Denominators" { "Superscripts to Denominators-1" ("dnom") } [] Lookup: 1 0 0 "'onum' Oldstyle Figures lookup 48" { "'onum' Oldstyle Figures lookup 48-1" ("oldstyle") } ['onum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] Lookup: 1 0 0 "'pnum' Proportional Numbers lookup 7" { "'pnum' Proportional Numbers lookup 7 subtable" } ['pnum' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'latn' <'AZE ' 'CRT ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > ) ] +Lookup: 1 0 0 "'tnum' Tabular Numbers lookup 50" { } ['tnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] +Lookup: 1 0 0 "'lnum' Lining Figures lookup 51" { } ['lnum' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'hebr' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'PLK ' 'ROM ' 'TRK ' 'dflt' > 'math' <'dflt' > ) ] Lookup: 263 0 0 "'RQD ' Enclosed Cyrillic Letters" { "'RQD ' Enclosed Cyrillic Letters-1" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 263 0 0 "'RQD ' Greek Caps after Accents Positioning" { "'RQD ' Greek Caps after Accents Positioning-1" } [' RQD' ('DFLT' <'dflt' > 'cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'NLD ' 'ROM ' 'TRK ' 'dflt' > ) ] Lookup: 260 0 0 "'mark' Mark Positioning" { "'mark' Positioning for Top Accents" "'mark' Positioning for Dotaccent" "'mark' Positioning for Bottom Accents" "'mark' Positioning for Enclosing Figures" "'mark' Positioning for Greek Accents" "'mark' Lower Positioning for Greek Accents" "'mark' Positioning for Greek Capital Accents" } ['mark' ('cyrl' <'CSL ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'TRK ' 'dflt' > ) ] -- cgit v1.2.3