[Libreoffice-commits] .: 3 commits - comphelper/source extras/source sax/source scaddins/source sccomp/source scripting/source

Olivier Hallot ohallot at kemper.freedesktop.org
Thu Jan 5 16:07:18 PST 2012


 comphelper/source/misc/storagehelper.cxx           |    2 
 extras/source/truetype/symbol/OpenSymbol.sfd       |85261 +--------------------
 extras/source/truetype/symbol/opens___.ttf         |binary
 sax/source/expatwrap/sax_expat.cxx                 |    2 
 sax/source/expatwrap/saxwriter.cxx                 |    2 
 sax/source/expatwrap/xml2utf.cxx                   |    4 
 sax/source/fastparser/fastparser.cxx               |    6 
 sax/source/tools/converter.cxx                     |    2 
 sax/source/tools/fastserializer.cxx                |    6 
 scaddins/source/analysis/analysis.cxx              |    2 
 scaddins/source/analysis/analysishelper.cxx        |    6 
 scaddins/source/datefunc/datefunc.cxx              |    2 
 sccomp/source/solver/solver.cxx                    |    2 
 scripting/source/basprov/basmethnode.cxx           |    2 
 scripting/source/basprov/basprov.cxx               |    6 
 scripting/source/dlgprov/dlgprov.cxx               |    4 
 scripting/source/protocolhandler/scripthandler.cxx |    2 
 scripting/source/provider/MasterScriptProvider.cxx |    8 
 scripting/source/stringresource/stringresource.cxx |   10 
 scripting/source/vbaevents/eventhelper.cxx         |    4 
 20 files changed, 6775 insertions(+), 78558 deletions(-)

New commits:
commit fffd541c3e626bee162ab4b473b6bd6cd180244e
Author: Olivier Hallot <olivier.hallot at alta.org.br>
Date:   Thu Jan 5 14:15:36 2012 -0200

    Fix for fdo43460 Part XXIX getLength() to isEmpty()
    
    Part XXIX
    Modules
    sax, scaddins, sccomp, scripting

diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx
index bd65a52..7e57583 100644
--- a/sax/source/expatwrap/sax_expat.cxx
+++ b/sax/source/expatwrap/sax_expat.cxx
@@ -472,7 +472,7 @@ void SaxExpatParser::parseStream(   const InputSource& structSource)
     }
 
     entity.converter.setInputStream( entity.structSource.aInputStream );
-    if( entity.structSource.sEncoding.getLength() )
+    if( !entity.structSource.sEncoding.isEmpty() )
     {
         entity.converter.setEncoding(
             OUStringToOString( entity.structSource.sEncoding , RTL_TEXTENCODING_ASCII_US ) );
diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx
index f0869b0..3969eb3 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -1252,7 +1252,7 @@ void SAXWriter::characters(const OUString& aChars)  throw(SAXException, RuntimeE
     }
 
     sal_Bool bThrowException(sal_False);
-    if( aChars.getLength() )
+    if( !aChars.isEmpty() )
     {
         if( m_bIsCDATA )
             bThrowException = !mp_SaxWriterHelper->writeString( aChars, sal_False, sal_False );
diff --git a/sax/source/expatwrap/xml2utf.cxx b/sax/source/expatwrap/xml2utf.cxx
index b7aa1ca..edebc8a 100644
--- a/sax/source/expatwrap/xml2utf.cxx
+++ b/sax/source/expatwrap/xml2utf.cxx
@@ -93,7 +93,7 @@ sal_Int32 XMLFile2UTFConverter::readAndConvert( Sequence<sal_Int8> &seq , sal_In
                   // read more !
                   continue;
                 }
-                if( scanForEncoding( seq ) || m_sEncoding.getLength() ) {
+                if( scanForEncoding( seq ) || !m_sEncoding.isEmpty() ) {
                     // initialize decoding
                     initializeDecoding();
                 }
@@ -340,7 +340,7 @@ sal_Bool XMLFile2UTFConverter::scanForEncoding( Sequence< sal_Int8 > &seq )
 void XMLFile2UTFConverter::initializeDecoding()
 {
 
-    if( m_sEncoding.getLength() )
+    if( !m_sEncoding.isEmpty() )
     {
         rtl_TextEncoding encoding = rtl_getTextEncodingFromMimeCharset( m_sEncoding.getStr() );
         if( encoding != RTL_TEXTENCODING_UTF8 )
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx
index df7dcfc..3480628 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -446,7 +446,7 @@ void FastSaxParser::parseStream( const InputSource& maStructSource) throw (SAXEx
         throw SAXException( OUString( RTL_CONSTASCII_USTRINGPARAM( "No input source" ) ), Reference< XInterface >(), Any() );
 
     entity.maConverter.setInputStream( entity.maStructSource.aInputStream );
-    if( entity.maStructSource.sEncoding.getLength() )
+    if( !entity.maStructSource.sEncoding.isEmpty() )
         entity.maConverter.setEncoding( OUStringToOString( entity.maStructSource.sEncoding, RTL_TEXTENCODING_ASCII_US ) );
 
     // create parser with proper encoding
@@ -776,7 +776,7 @@ void FastSaxParser::callbackStartElement( const XML_Char* pwName, const XML_Char
         // #158414# second: fill attribute list with other attributes
         for( ::std::vector< AttributeData >::const_iterator aIt = aAttribs.begin(), aEnd = aAttribs.end(); aIt != aEnd; ++aIt )
         {
-            if( aIt->maPrefix.getLength() > 0 )
+            if( !aIt->maPrefix.isEmpty() )
             {
                 sal_Int32 nAttributeToken = GetTokenWithPrefix( aIt->maPrefix, aIt->maName );
                 if( nAttributeToken != FastToken::DONTKNOW )
@@ -798,7 +798,7 @@ void FastSaxParser::callbackStartElement( const XML_Char* pwName, const XML_Char
         splitName( pwName, pPrefix, nPrefixLen, pName, nNameLen );
         if( nPrefixLen > 0 )
             nElementToken = GetTokenWithPrefix( pPrefix, nPrefixLen, pName, nNameLen );
-        else if( rEntity.maContextStack.top()->maNamespace.getLength() > 0 )
+        else if( !rEntity.maContextStack.top()->maNamespace.isEmpty() )
             nElementToken = GetTokenWithNamespaceURL( rEntity.maContextStack.top()->maNamespace, pName, nNameLen );
         else
             nElementToken = GetToken( pName );
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index f2dea8a..698dea8 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -1038,7 +1038,7 @@ bool Converter::convertDuration(util::Duration& rDuration,
     sal_Int32 nPos(0);
 
     bool bIsNegativeDuration(false);
-    if (string.getLength() && (sal_Unicode('-') == string[0]))
+    if (!string.isEmpty() && (sal_Unicode('-') == string[0]))
     {
         bIsNegativeDuration = true;
         ++nPos;
diff --git a/sax/source/tools/fastserializer.cxx b/sax/source/tools/fastserializer.cxx
index ebd0467..67db04b 100644
--- a/sax/source/tools/fastserializer.cxx
+++ b/sax/source/tools/fastserializer.cxx
@@ -157,7 +157,7 @@ namespace sax_fastparser {
 
         writeBytes(toUnoSequence(aOpeningBracket));
 
-        if (Namespace.getLength())
+        if (!Namespace.isEmpty())
         {
             write(Namespace);
             writeBytes(toUnoSequence(aColon));
@@ -191,7 +191,7 @@ namespace sax_fastparser {
 
         writeBytes(toUnoSequence(aOpeningBracketAndSlash));
 
-        if (Namespace.getLength())
+        if (!Namespace.isEmpty())
         {
             write(Namespace);
             writeBytes(toUnoSequence(aColon));
@@ -227,7 +227,7 @@ namespace sax_fastparser {
 
         writeBytes(toUnoSequence(aOpeningBracket));
 
-        if (Namespace.getLength())
+        if (!Namespace.isEmpty())
         {
             write(Namespace);
             writeBytes(toUnoSequence(aColon));
diff --git a/scaddins/source/analysis/analysis.cxx b/scaddins/source/analysis/analysis.cxx
index 4994c36..357706e 100644
--- a/scaddins/source/analysis/analysis.cxx
+++ b/scaddins/source/analysis/analysis.cxx
@@ -1227,7 +1227,7 @@ STRING SAL_CALL AnalysisAddIn::getComplex( double fR, double fI, const ANY& rSuf
         case uno::TypeClass_STRING:
             {
             const STRING*   pSuff = ( const STRING* ) rSuff.getValue();
-            bi = pSuff->compareToAscii( "i" ) == 0 || pSuff->getLength() == 0;
+            bi = pSuff->compareToAscii( "i" ) == 0 || pSuff->isEmpty();
             if( !bi && pSuff->compareToAscii( "j" ) != 0 )
                 THROW_IAE;
             }
diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx
index b9d505c..c2e17a8 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -1987,7 +1987,7 @@ void ComplexList::Append( const SEQSEQ( STRING )& r, ComplListAppendHandl eAH )
         {
             const STRING&   rStr = rList[ n2 ];
 
-            if( rStr.getLength() )
+            if( !rStr.isEmpty() )
                 Append( new Complex( rStr ) );
             else if( bEmpty0 )
                 Append( new Complex( 0.0 ) );
@@ -2014,7 +2014,7 @@ void ComplexList::Append( const SEQ( ANY )& aMultPars, ComplListAppendHandl eAH
                 {
                 const STRING*       pStr = ( const STRING* ) r.getValue();
 
-                if( pStr->getLength() )
+                if( !pStr->isEmpty() )
                     Append( new Complex( *( STRING* ) r.getValue() ) );
                 else if( bEmpty0 )
                     Append( new Complex( 0.0 ) );
@@ -2781,7 +2781,7 @@ sal_Bool ScaAnyConverter::getDouble(
         case uno::TypeClass_STRING:
         {
             const OUString* pString = static_cast< const OUString* >( rAny.getValue() );
-            if( pString->getLength() )
+            if( !pString->isEmpty() )
                 rfResult = convertToDouble( *pString );
             else
                 bContainsVal = sal_False;
diff --git a/scaddins/source/datefunc/datefunc.cxx b/scaddins/source/datefunc/datefunc.cxx
index e3d11bd..4ae9543 100644
--- a/scaddins/source/datefunc/datefunc.cxx
+++ b/scaddins/source/datefunc/datefunc.cxx
@@ -517,7 +517,7 @@ OUString SAL_CALL ScaDateAddIn::getProgrammaticCategoryName(
         }
     }
 
-    if( !aRet.getLength() )
+    if( aRet.isEmpty() )
         aRet = STR_FROM_ANSI( "Add-In" );
     return aRet;
 }
diff --git a/sccomp/source/solver/solver.cxx b/sccomp/source/solver/solver.cxx
index a02b297..a529f3a 100644
--- a/sccomp/source/solver/solver.cxx
+++ b/sccomp/source/solver/solver.cxx
@@ -395,7 +395,7 @@ void SAL_CALL SolverComponent::solve() throw(uno::RuntimeException)
 
     xModel->unlockControllers();
 
-    if ( maStatus.getLength() )
+    if ( !maStatus.isEmpty() )
         return;
 
     //
diff --git a/scripting/source/basprov/basmethnode.cxx b/scripting/source/basprov/basmethnode.cxx
index 750210d..b07720c 100644
--- a/scripting/source/basprov/basmethnode.cxx
+++ b/scripting/source/basprov/basmethnode.cxx
@@ -226,7 +226,7 @@ namespace basprov
                 if ( xModel.is() )
                 {
                     sDocURL = xModel->getURL();
-                    if ( sDocURL.getLength() == 0 )
+                    if ( sDocURL.isEmpty() )
                     {
                         Sequence < PropertyValue > aProps = xModel->getArgs();
                         sal_Int32 nProps = aProps.getLength();
diff --git a/scripting/source/basprov/basprov.cxx b/scripting/source/basprov/basprov.cxx
index 4d1ff81..c2c0653 100644
--- a/scripting/source/basprov/basprov.cxx
+++ b/scripting/source/basprov/basprov.cxx
@@ -183,7 +183,7 @@ namespace basprov
                 }
             }
 
-            if ( aFileURL.getLength() )
+            if ( !aFileURL.isEmpty() )
             {
                 osl::DirectoryItem aFileItem;
                 osl::FileStatus aFileStatus( osl_FileStatus_Mask_FileURL );
@@ -385,7 +385,7 @@ namespace basprov
             sProjectName = pBasicMgr->GetName();
 
         ::rtl::OUString aLibrary;
-        if ( sProjectName.getLength() && aDescription.match( sProjectName ) )
+        if ( !sProjectName.isEmpty() && aDescription.match( sProjectName ) )
         {
             OSL_TRACE("LibraryName %s is part of the url %s",
                 rtl::OUStringToOString( sProjectName, RTL_TEXTENCODING_UTF8 ).getStr(),
@@ -402,7 +402,7 @@ namespace basprov
         if ( nIndex != -1 )
             aMethod = aDescription.getToken( 0, (sal_Unicode)'.', nIndex );
 
-        if ( aLibrary.getLength() != 0 && aModule.getLength() != 0 && aMethod.getLength() != 0 && aLocation.getLength() != 0 )
+        if ( !aLibrary.isEmpty() && !aModule.isEmpty() && !aMethod.isEmpty() && !aLocation.isEmpty() )
         {
 
             if ( pBasicMgr )
diff --git a/scripting/source/dlgprov/dlgprov.cxx b/scripting/source/dlgprov/dlgprov.cxx
index b498fa8..d828e04 100644
--- a/scripting/source/dlgprov/dlgprov.cxx
+++ b/scripting/source/dlgprov/dlgprov.cxx
@@ -406,7 +406,7 @@ static ::rtl::OUString aResourceResolverPropName(RTL_CONSTASCII_USTRINGPARAM("Re
                         continue;
 
                     ::rtl::OUString sDocURL = xModel->getURL();
-                    if ( sDocURL.getLength() == 0 )
+                    if ( sDocURL.isEmpty() )
                     {
                         ::comphelper::NamedValueCollection aModelArgs( xModel->getArgs() );
                         sDocURL = aModelArgs.getOrDefault( "Title", sDocURL );
@@ -738,7 +738,7 @@ static ::rtl::OUString aResourceResolverPropName(RTL_CONSTASCII_USTRINGPARAM("Re
                 xCtrlMod = createDialogModelForBasic();
             else
             {
-                OSL_ENSURE( URL.getLength(), "DialogProviderImpl::getDialog: no URL!" );
+                OSL_ENSURE( !URL.isEmpty(), "DialogProviderImpl::getDialog: no URL!" );
                 xCtrlMod = createDialogModel( URL );
             }
         }
diff --git a/scripting/source/protocolhandler/scripthandler.cxx b/scripting/source/protocolhandler/scripthandler.cxx
index c1d2b2c..73f4e56 100644
--- a/scripting/source/protocolhandler/scripthandler.cxx
+++ b/scripting/source/protocolhandler/scripthandler.cxx
@@ -198,7 +198,7 @@ void SAL_CALL ScriptProtocolHandler::dispatchWithNotification(
                    // this is not an argument to be passed to script, so
                    // ignore.
                    if ( lArgs[ index ].Name.compareToAscii("Referer") != 0  ||
-                        lArgs[ index ].Name.getLength() == 0 )
+                        lArgs[ index ].Name.isEmpty() )
                    {
                        inArgs.realloc( ++argCount );
                        inArgs[ argCount - 1 ] = lArgs[ index ].Value;
diff --git a/scripting/source/provider/MasterScriptProvider.cxx b/scripting/source/provider/MasterScriptProvider.cxx
index c5fe4c8..81d6478 100644
--- a/scripting/source/provider/MasterScriptProvider.cxx
+++ b/scripting/source/provider/MasterScriptProvider.cxx
@@ -302,7 +302,7 @@ throw ( provider::ScriptFrameworkErrorException,
 
     if ( sfUri->hasParameter( langKey ) == sal_False ||
          sfUri->hasParameter( locKey ) == sal_False ||
-         ( sfUri->getName().getLength() == 0  ) )
+         ( sfUri->getName().isEmpty()  ) )
     {
         ::rtl::OUString errorMsg = OUSTR( "Incorrect format for Script URI: " );
         errorMsg = errorMsg.concat( scriptURI );
@@ -551,7 +551,7 @@ MasterScriptProvider::insertByName( const ::rtl::OUString& aName, const Any& aEl
             throw lang::IllegalArgumentException( OUSTR("Couldn't convert to XPackage"),
                                                       Reference < XInterface > (), 2 );
         }
-        if ( !aName.getLength() )
+        if ( aName.isEmpty() )
         {
             throw lang::IllegalArgumentException( OUSTR("Name not set!!"),
                                                       Reference < XInterface > (), 1 );
@@ -625,7 +625,7 @@ MasterScriptProvider::removeByName( const ::rtl::OUString& Name ) throw ( contai
    }
    else
    {
-        if ( !Name.getLength() )
+        if ( Name.isEmpty() )
         {
             throw lang::IllegalArgumentException( OUSTR("Name not set!!"),
                                                       Reference < XInterface > (), 1 );
@@ -730,7 +730,7 @@ MasterScriptProvider::hasByName( const ::rtl::OUString& aName ) throw (RuntimeEx
    }
    else
    {
-        if ( !aName.getLength() )
+        if ( aName.isEmpty() )
         {
             throw lang::IllegalArgumentException( OUSTR("Name not set!!"),
                                                       Reference < XInterface > (), 1 );
diff --git a/scripting/source/stringresource/stringresource.cxx b/scripting/source/stringresource/stringresource.cxx
index f7a0673..c15a6bb 100644
--- a/scripting/source/stringresource/stringresource.cxx
+++ b/scripting/source/stringresource/stringresource.cxx
@@ -855,7 +855,7 @@ void StringResourcePersistenceImpl::implInitializeCommonParameters
         ::rtl::OUString errorMsg(RTL_CONSTASCII_USTRINGPARAM("XInitialization::initialize: Expected NameBase string"));
         throw IllegalArgumentException( errorMsg, Reference< XInterface >(), 3 );
     }
-    if( m_aNameBase.getLength() == 0 )
+    if( m_aNameBase.isEmpty() )
         m_aNameBase = aNameBaseDefaultStr;
 
     bool bCommentOk = (aArguments[4] >>= m_aComment);
@@ -1854,14 +1854,14 @@ bool StringResourcePersistenceImpl::implLoadLocale( LocaleItem* )
     aRetStr += aLocale.Language;
 
     ::rtl::OUString aCountry  = aLocale.Country;
-    if( aCountry.getLength() )
+    if( !aCountry.isEmpty() )
     {
         aRetStr += aUnder;
         aRetStr += aCountry;
     }
 
     ::rtl::OUString aVariant  = aLocale.Variant;
-    if( aVariant.getLength() )
+    if( !aVariant.isEmpty() )
     {
         aRetStr += aUnder;
         aRetStr += aVariant;
@@ -1873,7 +1873,7 @@ bool StringResourcePersistenceImpl::implLoadLocale( LocaleItem* )
     ( LocaleItem* pLocaleItem, const ::rtl::OUString& aNameBase )
 {
     ::rtl::OUString aFileName = aNameBase;
-    if( aFileName.getLength() == 0 )
+    if( aFileName.isEmpty() )
         aFileName = aNameBaseDefaultStr;
 
     aFileName += implGetNameScemeForLocaleItem( pLocaleItem );
@@ -2089,7 +2089,7 @@ bool StringResourcePersistenceImpl::implReadPropertiesFile
                 }
 
                 // Ignore lines with empty keys
-                if( 0 == aResourceID.getLength() )
+                if( aResourceID.isEmpty() )
                     continue;
 
                 // Scan value
diff --git a/scripting/source/vbaevents/eventhelper.cxx b/scripting/source/vbaevents/eventhelper.cxx
index d13bbe7..3b9cf40 100644
--- a/scripting/source/vbaevents/eventhelper.cxx
+++ b/scripting/source/vbaevents/eventhelper.cxx
@@ -396,8 +396,8 @@ eventMethodToDescriptor( const ::rtl::OUString& rEventMethod, ScriptEventDescrip
 
     // Only create an ScriptEventDescriptor for an event we can translate
     // or emulate
-    if ( sMethodName.getLength()
-         && sTypeName.getLength()
+    if ( !sMethodName.isEmpty()
+         && !sTypeName.isEmpty()
          && ( infos.find( sMethodName ) != infos.end() ) )
     {
         // just fill in CodeName, when the event fires the other
commit 15f5d766837329baa8deff31e9da33cef87f7a98
Author: Olivier Hallot <olivier.hallot at alta.org.br>
Date:   Sat Dec 24 00:02:12 2011 -0200

    Fix for bug fdo#44110, New Math symbols issues in Windows
    
    This patch fixes the rendering issues in Windows for the new Math symbols for game theory.
    The precsim and succsim symbols were truncated. They have been shifted upward.

diff --git a/extras/source/truetype/symbol/OpenSymbol.sfd b/extras/source/truetype/symbol/OpenSymbol.sfd
index 49b35f1..8863c3f 100644
--- a/extras/source/truetype/symbol/OpenSymbol.sfd
+++ b/extras/source/truetype/symbol/OpenSymbol.sfd
@@ -10,16 +10,18 @@ UnderlinePosition: -143
 UnderlineWidth: 20
 Ascent: 1638
 Descent: 410
+sfntRevision: 0x00663333
 LayerCount: 2
-Layer: 0 1 "Back"  1
-Layer: 1 1 "Fore"  0
-XUID: [1021 161 2043615882 15846768]
+Layer: 0 1 "Fundo"  1
+Layer: 1 1 "Frente"  0
+NeedsXUIDChange: 1
+XUID: [1021 367 2007819608 4928865]
 FSType: 8
-OS2Version: 0
+OS2Version: 4
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1144938807
-ModificationTime: 1321359108
+ModificationTime: 1324684843
 PfmFamily: 81
 TTFWeight: 400
 TTFWidth: 5
@@ -50,6 +52,7 @@ OS2SupYOff: 409
 OS2StrikeYSize: 102
 OS2StrikeYPos: 530
 OS2Vendor: 'PfEd'
+OS2CodePages: 00000001.00000000
 OS2UnicodeRanges: 800000af.1001ecea.00000000.00000000
 Lookup: 4 0 1 "'liga' Standard Ligatures lookup 0"  {"'liga' Standard Ligatures lookup 0 subtable"  } ['liga' ('DFLT' <'dflt' > ) ]
 MarkAttachClasses: 1
@@ -714,7 +717,7 @@ MUL
 SWAP
 ENDF
 EndTTInstrs
-ShortTable: cvt  39
+ShortTable: cvt  40
   0
   148
   145
@@ -754,11 +757,12 @@ ShortTable: cvt  39
   1343
   1449
   91
+  1297
 EndShort
 ShortTable: maxp 16
   1
   0
-  909
+  1003
   353
   41
   0
@@ -775,382 +779,52 @@ ShortTable: maxp 16
 EndShort
 LangName: 1033 "" "" "Regular" "OpenSymbol" "" "Version 102.2" 
 GaspTable: 1 65535 2
-Encoding: Custom
+Encoding: UnicodeBmp
 UnicodeInterp: none
 NameList: Adobe Glyph List
-DisplaySize: -24
+DisplaySize: -96
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 360 45 15
-BeginPrivate: 0
-EndPrivate
-BeginChars: 1001 1001
+WinInfo: 8814 13 5
+BeginChars: 65539 1003
 
-StartChar: Alpha
-Encoding: 909 913 0
-Width: 1572
+StartChar: .notdef
+Encoding: 65536 -1 0
+Width: 748
 Flags: W
-HStem: 1 31<31 104.324 353.571 463 979 1080.42 1443.74 1530> 447 66<460.172 977.603>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 29
- 0
- 0
-CALL
-PUSHB_1
- 10
-SHP[rp1]
-PUSHB_1
- 27
-MDRP[min,rnd,black]
-PUSHB_3
- 8
- 12
- 31
-SHP[rp2]
-SHP[rp2]
-SHP[rp2]
-PUSHB_1
- 20
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 35
-MDAP[rnd]
-PUSHB_2
- 36
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
-728.164 1091.24 m 1,0,-1
- 460.172 513 l 1,1,-1
- 977.603 513 l 1,2,-1
- 728.164 1091.24 l 1,0,-1
-768.182 1367 m 1,3,-1
- 816.749 1367 l 1,4,-1
- 1340.42 186.982 l 2,5,6
- 1379.89 96.9287 1379.89 96.9287 1419.53 63.4648 c 128,-1,7
- 1459.17 30 1459.17 30 1523 30 c 2,8,-1
- 1530 30 l 1,9,-1
- 1530 1 l 1,10,-1
- 979 1 l 1,11,-1
- 979 32.1299 l 1,12,13
- 1062.34 34.5713 1062.34 34.5713 1094.17 53.8779 c 128,-1,14
- 1126 73.1846 1126 73.1846 1126 123 c 0,15,16
- 1126 141.464 1126 141.464 1122.9 157.996 c 128,-1,17
- 1119.8 174.529 1119.8 174.529 1113.57 188.034 c 2,18,-1
- 1002.29 447 l 1,19,-1
- 435.717 447 l 1,20,-1
- 340.399 226.959 l 2,21,22
- 322.296 183.713 322.296 183.713 314.648 159.238 c 128,-1,23
- 307 134.763 307 134.763 307 119 c 0,24,25
- 307 74.1836 307 74.1836 341.802 53.0918 c 128,-1,26
- 376.604 32 376.604 32 448 32 c 2,27,-1
- 463 32 l 1,28,-1
- 463 1 l 1,29,-1
- 31 1 l 1,30,-1
- 31 30.125 l 1,31,32
- 95.5 32.4199 95.5 32.4199 137.299 69.1826 c 128,-1,33
- 179.098 105.945 179.098 105.945 226.535 208.895 c 2,34,-1
- 768.182 1367 l 1,3,-1
+68 0 m 1,0,-1
+ 68 1365 l 1,1,-1
+ 612 1365 l 1,2,-1
+ 612 0 l 1,3,-1
+ 68 0 l 1,0,-1
+136 68 m 1,4,-1
+ 544 68 l 1,5,-1
+ 544 1297 l 1,6,-1
+ 136 1297 l 1,7,-1
+ 136 68 l 1,4,-1
 EndSplineSet
-Validated: 16385
 EndChar
 
-StartChar: Beta
-Encoding: 910 914 1
-Width: 1383
-GlyphClass: 2
+StartChar: .null
+Encoding: 65537 -1 1
+Width: 0
 Flags: W
-HStem: 0 68<515.552 888.183> 0 31.0947<71 186.333> 672 55<502.05 836.331> 1284 58<510.312 849.558> 1310.75 31.2461<71 178.116>
-VStem: 274 213<89.4084 659.265 741.507 1264.57> 1023 214<869.733 1172.85> 1069 231<203.859 535.878>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 50
- 0
- 0
-CALL
-PUSHB_1
- 51
-MDRP[min,rnd,black]
-PUSHB_3
- 49
- 0
- 0
-CALL
-PUSHB_1
- 20
-MDRP[min,rnd,black]
-PUSHB_1
- 28
-MDAP[rnd]
-PUSHB_1
- 6
-MDRP[min,rnd,black]
-PUSHB_1
- 13
-MDAP[rnd]
-PUSHB_1
- 34
-MDRP[min,rnd,black]
-PUSHB_1
- 34
-SRP0
-PUSHB_1
- 32
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 55
-MDAP[rnd]
-PUSHB_1
- 54
-MDRP[rp0,rnd,white]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_1
- 2
-SHP[rp2]
-PUSHB_1
- 17
-SRP0
-PUSHB_2
- 24
- 1
-CALL
-PUSHB_1
- 46
-MDRP[min,rnd,black]
-PUSHB_1
- 10
-DUP
-MDRP[rp0,rnd,white]
-SRP1
-PUSHB_1
- 37
-MDRP[min,rnd,black]
-PUSHB_2
- 56
- 1
-CALL
-PUSHB_2
- 10
- 17
-SRP1
-SRP2
-PUSHB_1
- 42
-IP
-SVTCA[y-axis]
-PUSHB_2
- 28
- 20
-SRP1
-SRP2
-PUSHB_1
- 46
-IP
-PUSHB_1
- 6
-SRP1
-PUSHB_2
- 40
- 42
-IP
-IP
-PUSHB_1
- 13
-SRP2
-PUSHB_1
- 37
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
-Fore
-SplineSet
-509.595 1265.17 m 132,-1,1
- 487 1246.34 487 1246.34 487 1175 c 6,2,-1
- 487 816 l 6,3,4
- 487 755.113 487 755.113 499.369 741.057 c 132,-1,5
- 511.739 727 511.739 727 568 727 c 6,6,-1
- 601 727 l 6,7,8
- 824.514 727 824.514 727 923.757 793.162 c 132,-1,9
- 1023 859.324 1023 859.324 1023 1009 c 4,10,11
- 1023 1157.64 1023 1157.64 930.271 1220.82 c 132,-1,12
- 837.541 1284 837.541 1284 601 1284 c 4,13,0
- 532.189 1284 532.189 1284 509.595 1265.17 c 132,-1,1
-501.584 659.66 m 132,-1,15
- 487 647.319 487 647.319 487 597 c 6,16,-1
- 487 171 l 6,17,18
- 487 109.5 487 109.5 514.666 88.75 c 132,-1,19
- 542.333 68 542.333 68 656 68 c 6,20,-1
- 689 68 l 6,21,22
- 873.739 68 873.739 68 971.369 145.291 c 132,-1,23
- 1069 222.581 1069 222.581 1069 372 c 4,24,25
- 1069 525.634 1069 525.634 962.275 598.816 c 132,-1,26
- 855.55 672 855.55 672 631 672 c 6,27,-1
- 574 672 l 6,28,14
- 516.168 672 516.168 672 501.584 659.66 c 132,-1,15
-274 1123 m 6,29,30
- 274 1232.23 274 1232.23 233.885 1268.23 c 132,-1,31
- 193.771 1304.23 193.771 1304.23 71 1310.75 c 5,32,-1
- 71 1342 l 5,33,-1
- 728 1342 l 6,34,35
- 971.53 1342 971.53 1342 1104.27 1256.63 c 132,-1,36
- 1237 1171.27 1237 1171.27 1237 1019 c 4,37,38
- 1237 914.919 1237 914.919 1166.11 836.154 c 132,-1,39
- 1095.22 757.391 1095.22 757.391 965.573 718.792 c 6,40,41
- 945.888 712.932 l 5,42,-1
- 966.064 709.088 l 6,43,44
- 1132.58 677.371 1132.58 677.371 1216.29 595.137 c 132,-1,45
- 1300 512.902 1300 512.902 1300 382 c 4,46,47
- 1300 187.752 1300 187.752 1151.78 93.876 c 132,-1,48
- 1003.55 0 1003.55 0 695 0 c 6,49,-1
- 71 0 l 5,50,-1
- 71 31.0947 l 5,51,52
- 191.77 33.7656 191.77 33.7656 232.885 70.7695 c 132,-1,53
- 274 107.773 274 107.773 274 216 c 6,54,-1
- 274 1123 l 6,29,30
-EndSplineSet
-Validated: 16385
 EndChar
 
-StartChar: Gamma
-Encoding: 911 915 2
-Width: 1280
-GlyphClass: 2
-Flags: W
-HStem: 1 31.1289<58 178.569 586.866 706> 1273 70<519.576 1006.89> 1312 31<58 177.402>
-VStem: 267 222<76.2623 1248.97>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 14
- 0
- 0
-CALL
-PUSHB_1
- 15
-MDRP[min,rnd,black]
-PUSHB_1
- 12
-SHP[rp2]
-PUSHB_1
- 5
-MDAP[rnd]
-PUSHB_1
- 25
-MDRP[min,rnd,black]
-PUSHB_1
- 25
-SRP0
-PUSHB_1
- 23
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 26
-MDAP[rnd]
-PUSHB_1
- 18
-MDRP[rp0,rnd,white]
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_3
- 9
- 18
- 10
-CALL
-PUSHB_4
- 64
- 9
- 13
- 9
-CALL
-PUSHB_3
- 18
- 9
- 10
-CALL
-PUSHB_4
- 64
- 18
- 14
- 9
-CALL
-PUSHB_1
- 23
-SHP[rp2]
-PUSHB_2
- 27
- 1
-CALL
-SVTCA[y-axis]
-PUSHB_2
- 5
- 15
-SRP1
-SRP2
-PUSHB_1
- 0
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
-LayerCount: 2
-Fore
-SplineSet
-1213.33 998 m 5,0,-1
- 1181.59 998 l 5,1,2
- 1133.36 1139.71 1133.36 1139.71 1054.6 1206.35 c 132,-1,3
- 975.832 1273 975.832 1273 854 1273 c 6,4,-1
- 639 1273 l 6,5,6
- 548.271 1273 548.271 1273 518.635 1249.71 c 132,-1,7
- 489 1226.43 489 1226.43 489 1131 c 6,8,-1
- 489 223 l 6,9,10
- 489 113.703 489 113.703 536.103 73.2559 c 132,-1,11
- 583.205 32.8096 583.205 32.8096 706 32.0156 c 5,12,-1
- 706 1 l 5,13,-1
- 58 1 l 5,14,-1
- 58 32.1289 l 5,15,16
- 181.56 35.665 181.56 35.665 224.279 68.0918 c 132,-1,17
- 267 100.518 267 100.518 267 223 c 6,18,-1
- 267 1102 l 6,19,20
- 267 1226.05 267 1226.05 224.545 1269.03 c 132,-1,21
- 182.089 1312 182.089 1312 63 1312 c 6,22,-1
- 58 1312 l 5,23,-1
- 58 1343 l 5,24,-1
- 1169.59 1343 l 5,25,-1
- 1213.33 998 l 5,0,-1
-EndSplineSet
-Validated: 16385
-EndChar
-
-StartChar: nounicode-3-1-c
-Encoding: 0 12 3
+StartChar: uni000D
+Encoding: 13 13 2
 Width: 1024
 GlyphClass: 2
 Flags: W
 LayerCount: 2
 EndChar
 
-StartChar: nounicode-3-1-d
-Encoding: 1 13 4
+StartChar: uni000C
+Encoding: 12 12 3
 Width: 1024
 GlyphClass: 2
 Flags: W
@@ -1158,7 +832,7 @@ LayerCount: 2
 EndChar
 
 StartChar: space
-Encoding: 2 32 5
+Encoding: 32 32 4
 Width: 1024
 GlyphClass: 2
 Flags: W
@@ -1166,168 +840,44 @@ LayerCount: 2
 EndChar
 
 StartChar: exclam
-Encoding: 3 33 6
+Encoding: 33 33 5
 Width: 606
 GlyphClass: 2
 Flags: W
-HStem: -29 222<222.065 375.966>
-VStem: 188 222<6.09595 169.507 719.562 1343.65>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 21
-MDAP[rnd]
-PUSHB_1
- 14
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 28
-MDAP[rnd]
-PUSHB_1
- 25
-MDRP[rp0,rnd,white]
-PUSHB_1
- 4
-SHP[rp2]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_1
- 10
-SHP[rp2]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_2
- 29
- 1
-CALL
-PUSHB_2
- 17
- 25
-SRP1
-SRP2
-PUSHB_3
- 0
- 1
- 8
-IP
-IP
-IP
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 319 358 m 1,0,-1
  281 358 l 1,1,-1
- 221 803 l 2,2,3
+ 221 803 l 1,2,3
  186 1072 186 1072 186 1247 c 0,4,5
- 186 1302 186 1302 217 1345 c 0,6,7
+ 186 1302 186 1302 217 1345 c 1,6,7
  248 1386 248 1386 301 1386 c 0,8,9
  414 1386 414 1386 414 1237 c 0,10,11
- 414 1062 414 1062 379 797 c 2,12,-1
+ 414 1062 414 1062 379 797 c 1,12,-1
  319 358 l 1,0,-1
 299 193 m 128,-1,14
  342 193 342 193 376 160 c 0,15,16
  410 126 410 126 410 84 c 0,17,18
  410 38 410 38 377 4 c 0,19,20
  344 -29 344 -29 299 -29 c 0,21,22
- 255 -29 255 -29 221 5 c 0,23,24
+ 255 -29 255 -29 221 5 c 1,23,24
  188 40 188 40 188 84 c 0,25,26
  188 126 188 126 222 160 c 0,27,13
  256 193 256 193 299 193 c 128,-1,14
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: quotedbl
-Encoding: 4 34 7
+Encoding: 34 34 6
 Width: 727
 GlyphClass: 2
 Flags: W
-HStem: 946 520<143 263.305 475 592.399>
-VStem: 94 205<965.561 1466> 143 111<946 1008.27> 426 205<967.437 1466> 475 109<946 1006.38>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 9
-SHP[rp1]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_1
- 13
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 18
-MDAP[rnd]
-PUSHB_1
- 3
-MDRP[rp0,rnd,white]
-PUSHB_1
- 6
-MDRP[min,rnd,black]
-PUSHB_4
- 8
- 6
- 3
- 8
-CALL
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_1
- 6
-SRP0
-PUSHB_2
- 12
- 1
-CALL
-PUSHB_1
- 15
-MDRP[min,rnd,black]
-PUSHB_4
- 17
- 15
- 12
- 8
-CALL
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_1
- 9
-MDAP[rnd]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_2
- 19
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 143 946 m 1,0,-1
- 111 1085 l 2,1,2
+ 111 1085 l 1,1,2
  94 1170 94 1170 94 1227 c 2,3,-1
  94 1466 l 1,4,-1
  299 1466 l 1,5,-1
@@ -1335,7 +885,7 @@ SplineSet
  299 1158 299 1158 254 946 c 1,8,-1
  143 946 l 1,0,-1
 475 946 m 1,9,-1
- 442 1085 l 2,10,11
+ 442 1085 l 1,10,11
  426 1165 426 1165 426 1227 c 2,12,-1
  426 1466 l 1,13,-1
  631 1466 l 1,14,-1
@@ -1343,282 +893,13 @@ SplineSet
  631 1179 631 1179 584 946 c 1,17,-1
  475 946 l 1,9,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: numbersign
-Encoding: 5 35 8
+Encoding: 35 35 7
 Width: 1138
 GlyphClass: 2
 Flags: W
-HStem: 401 150<20 188 369 653 834 1112> 913 150<20 293 473 758 938 1112>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 2
-MDAP[rnd]
-PUSHB_4
- 1
- 22
- 25
- 26
-DEPTH
-SLOOP
-SHP[rp1]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_4
- 4
- 19
- 28
- 29
-DEPTH
-SLOOP
-SHP[rp2]
-PUSHB_3
- 2
- 3
- 10
-CALL
-PUSHB_4
- 64
- 2
- 27
- 9
-CALL
-PUSHB_3
- 0
- 23
- 24
-SHP[rp2]
-SHP[rp2]
-SHP[rp2]
-PUSHB_1
- 6
-MDAP[rnd]
-PUSHB_4
- 5
- 18
- 30
- 31
-DEPTH
-SLOOP
-SHP[rp1]
-PUSHB_1
- 7
-MDRP[min,rnd,black]
-PUSHB_4
- 8
- 11
- 12
- 15
-DEPTH
-SLOOP
-SHP[rp2]
-PUSHB_3
- 7
- 6
- 10
-CALL
-PUSHB_4
- 64
- 7
- 9
- 9
-CALL
-PUSHB_3
- 10
- 13
- 14
-SHP[rp2]
-SHP[rp2]
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 32
-MDAP[rnd]
-PUSHB_2
- 33
- 1
-CALL
-PUSHB_1
- 54
-SMD
-PUSHB_2
- 0
- 9
-SDPVTL[orthog]
-PUSHB_1
- 0
-MDAP[no-rnd]
-PUSHB_1
- 10
-MDAP[no-rnd]
-PUSHB_1
- 0
-SRP0
-PUSHB_2
- 27
- 1
-MIRP[rp0,min,black]
-PUSHB_1
- 10
-SRP0
-PUSHB_2
- 9
- 1
-MIRP[rp0,min,black]
-PUSHB_2
- 24
- 13
-SDPVTL[orthog]
-PUSHB_1
- 24
-MDAP[no-rnd]
-PUSHB_1
- 14
-MDAP[no-rnd]
-PUSHB_1
- 24
-SRP0
-PUSHB_2
- 23
- 2
-MIRP[rp0,min,black]
-PUSHB_1
- 14
-SRP0
-PUSHB_2
- 13
- 2
-MIRP[rp0,min,black]
-PUSHB_2
- 0
- 9
-SPVTL[orthog]
-PUSHB_2
- 1
- 0
-SRP0
-MDRP[grey]
-PUSHB_1
- 4
-MDRP[grey]
-PUSHB_1
- 5
-MDRP[grey]
-PUSHB_1
- 8
-MDRP[grey]
-PUSHB_2
- 11
- 27
-SRP0
-MDRP[grey]
-PUSHB_2
- 12
- 24
-SRP0
-MDRP[grey]
-PUSHB_2
- 15
- 23
-SRP0
-MDRP[grey]
-PUSHB_1
- 18
-MDRP[grey]
-PUSHB_1
- 19
-MDRP[grey]
-PUSHB_1
- 22
-MDRP[grey]
-PUSHB_2
- 25
- 24
-SRP0
-MDRP[grey]
-PUSHB_2
- 26
- 27
-SRP0
-MDRP[grey]
-PUSHB_1
- 28
-MDRP[grey]
-PUSHB_2
- 29
- 24
-SRP0
-MDRP[grey]
-PUSHB_1
- 30
-MDRP[grey]
-PUSHB_2
- 31
- 27
-SRP0
-MDRP[grey]
-SPVTCA[x-axis]
-NPUSHB
- 24
- 0
- 1
- 4
- 5
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 18
- 19
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-PUSHB_1
- 64
-SMD
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -1657,152 +938,18 @@ SplineSet
  444 913 l 1,31,-1
  369 551 l 1,28,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: percent
-Encoding: 6 37 9
+Encoding: 37 37 8
 Width: 1705
 GlyphClass: 2
 Flags: W
-HStem: -55 55<1212.11 1340.16> 621 53<1215.56 1339.18> 653 52<225.585 349.609> 1331 55<226.518 351.833>
-VStem: 0 160<816.903 1216.71> 418 157<809.037 1226.59> 987 160<112.343 507.716> 1405 158<101.638 510.025>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 47
- 0
- 0
-CALL
-PUSHB_1
- 35
-MDRP[min,rnd,black]
-PUSHB_1
- 25
-SHP[rp2]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 20
-MDRP[min,rnd,black]
-PUSHB_4
- 28
- 20
- 8
- 8
-CALL
-PUSHB_1
- 43
-MDRP[min,rnd,black]
-PUSHB_1
- 16
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_1
- 24
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 50
-MDAP[rnd]
-PUSHB_1
- 12
-MDRP[rp0,rnd,white]
-PUSHB_1
- 18
-MDRP[min,rnd,black]
-PUSHB_1
- 18
-SRP0
-PUSHB_2
- 22
- 1
-CALL
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-SRP0
-PUSHB_2
- 39
- 1
-CALL
-PUSHB_1
- 45
-MDRP[min,rnd,black]
-PUSHB_1
- 45
-SRP0
-PUSHB_2
- 48
- 1
-CALL
-PUSHB_1
- 32
-MDRP[min,rnd,black]
-PUSHB_2
- 51
- 1
-CALL
-PUSHB_2
- 22
- 18
-SRP1
-SRP2
-PUSHB_4
- 8
- 0
- 25
- 26
-DEPTH
-SLOOP
-IP
-PUSHB_2
- 48
- 45
-SRP1
-SRP2
-PUSHB_4
- 27
- 28
- 35
- 24
-DEPTH
-SLOOP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 43
- 47
-SRP1
-SRP2
-PUSHB_2
- 32
- 39
-IP
-IP
-PUSHB_2
- 16
- 20
-SRP1
-SRP2
-PUSHB_2
- 12
- 4
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 289 1386 m 0,0,1
- 429 1386 429 1386 508 1268 c 0,2,3
+ 429 1386 429 1386 508 1268 c 1,2,3
  575 1166 575 1166 575 1018 c 0,4,5
  575 872 575 872 508 770 c 0,6,7
  430 653 430 653 291 653 c 0,8,9
@@ -1823,7 +970,7 @@ SplineSet
 1278 674 m 0,28,29
  1415 674 1415 674 1493 555 c 0,30,31
  1563 449 1563 449 1563 307 c 128,-1,32
- 1563 165 1563 165 1495 61 c 0,33,34
+ 1563 165 1563 165 1495 61 c 1,33,34
  1415 -55 1415 -55 1278 -55 c 0,35,36
  1142 -55 1142 -55 1061 61 c 0,37,38
  987 168 987 168 987 307 c 0,39,40
@@ -1835,175 +982,21 @@ SplineSet
  1405 0 1405 0 1405 305 c 0,48,49
  1405 621 1405 621 1278 621 c 0,43,44
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: ampersand
-Encoding: 7 38 10
+Encoding: 38 38 9
 Width: 1593
 GlyphClass: 2
 Flags: W
-HStem: -31 154<1092.99 1310.72> -31 121<312.302 560.732> 836 36<971 1027.06 1307.89 1391> 1313 73<570.685 779.158>
-VStem: 0 207<197.464 441.736> 334 170<945.692 1230.92> 836 116<1004.88 1264.25> 1419 37<227.081 254.074>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 19
-MDAP[rnd]
-PUSHB_1
- 15
-SHP[rp1]
-PUSHB_1
- 63
-MDRP[min,rnd,black]
-PUSHB_1
- 10
-MDRP[min,rnd,black]
-PUSHB_1
- 42
-MDAP[rnd]
-PUSHB_1
- 2
-SHP[rp1]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_1
- 49
-MDAP[rnd]
-PUSHB_1
- 30
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 65
-MDAP[rnd]
-PUSHB_1
- 23
-MDRP[rp0,rnd,white]
-PUSHB_1
- 59
-MDRP[min,rnd,black]
-PUSHB_1
- 59
-SRP0
-PUSHB_2
- 27
- 1
-CALL
-PUSHB_1
- 53
-MDRP[min,rnd,black]
-PUSHB_1
- 53
-SRP0
-PUSHB_2
- 45
- 1
-CALL
-PUSHB_1
- 34
-MDRP[min,rnd,black]
-PUSHB_1
- 34
-SRP0
-PUSHB_2
- 12
- 1
-CALL
-PUSHB_1
- 13
-MDRP[min,rnd,black]
-PUSHB_2
- 66
- 1
-CALL
-PUSHB_2
- 53
- 27
-SRP1
-SRP2
-PUSHB_4
- 19
- 25
- 57
- 63
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 45
-SRP1
-PUSHB_4
- 17
- 30
- 36
- 55
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 34
-SRP2
-PUSHB_3
- 7
- 8
- 38
-IP
-IP
-IP
-PUSHB_1
- 12
-SRP1
-PUSHB_6
- 0
- 6
- 10
- 1
- 15
- 40
-DEPTH
-SLOOP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 0
- 19
-SRP1
-SRP2
-PUSHB_7
- 12
- 17
- 25
- 36
- 38
- 43
- 57
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 49
-SRP1
-PUSHB_4
- 27
- 34
- 45
- 53
-DEPTH
-SLOOP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 971 872 m 1,0,-1
  1391 872 l 1,1,-1
  1391 836 l 1,2,3
- 1313 827 1313 827 1262 799 c 0,4,5
- 1232 784 1232 784 1102 573 c 0,6,7
+ 1313 827 1313 827 1262 799 c 1,4,5
+ 1232 784 1232 784 1102 573 c 1,6,7
  948 328 948 328 934 309 c 1,8,9
  1093 123 1093 123 1233 123 c 0,10,11
  1377 123 1377 123 1419 270 c 1,12,-1
@@ -2017,7 +1010,7 @@ SplineSet
  334 938 334 938 334 1055 c 0,27,28
  334 1206 334 1206 431 1296 c 128,-1,29
  528 1386 528 1386 682 1386 c 0,30,31
- 799 1386 799 1386 874 1321 c 0,32,33
+ 799 1386 799 1386 874 1321 c 1,32,33
  952 1255 952 1255 952 1143 c 0,34,35
  952 944 952 944 623 782 c 1,36,37
  765 537 765 537 887 369 c 1,38,39
@@ -2026,7 +1019,7 @@ SplineSet
  971 872 l 1,0,-1
 588 848 m 1,43,44
  836 965 836 965 836 1147 c 0,45,46
- 836 1216 836 1216 792 1265 c 0,47,48
+ 836 1216 836 1216 792 1265 c 1,47,48
  747 1313 747 1313 680 1313 c 0,49,50
  603 1313 603 1313 553 1261 c 0,51,52
  504 1209 504 1209 504 1130 c 0,53,54
@@ -2038,49 +1031,13 @@ SplineSet
  346 90 346 90 463 90 c 0,63,64
  583 90 583 90 743 221 c 1,55,56
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: parenleft
-Encoding: 8 40 11
+Encoding: 40 40 10
 Width: 696
 GlyphClass: 2
 Flags: W
-VStem: 172 109<193.529 1078.56>
-TtInstrs:
-SVTCA[y-axis]
-SVTCA[x-axis]
-PUSHB_1
- 10
-MDAP[rnd]
-PUSHB_1
- 3
-MDRP[rp0,rnd,white]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_3
- 8
- 3
- 10
-CALL
-PUSHB_4
- 64
- 8
- 6
- 9
-CALL
-PUSHB_1
- 0
-SHP[rp2]
-PUSHB_2
- 11
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2092,49 +1049,13 @@ SplineSet
  281 1428 281 1428 281 641 c 0,8,9
  281 -154 281 -154 573 -434 c 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: parenright
-Encoding: 9 41 12
+Encoding: 41 41 11
 Width: 696
 GlyphClass: 2
 Flags: W
-VStem: 416 108<202.032 1084.59>
-TtInstrs:
-SVTCA[y-axis]
-SVTCA[x-axis]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_1
- 2
-MDRP[rp0,rnd,white]
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_3
- 2
- 9
- 10
-CALL
-PUSHB_4
- 64
- 2
- 4
- 9
-CALL
-PUSHB_1
- 0
-SHP[rp2]
-PUSHB_2
- 13
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2142,70 +1063,18 @@ SplineSet
  416 -152 416 -152 416 641 c 0,2,3
  416 1423 416 1423 123 1716 c 1,4,-1
  123 1767 l 1,5,6
- 342 1593 342 1593 442 1253 c 0,7,8
+ 342 1593 342 1593 442 1253 c 1,7,8
  524 985 524 985 524 641 c 0,9,10
  524 -157 524 -157 123 -483 c 1,11,-1
  123 -434 l 1,0,1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: asterisk
-Encoding: 10 42 13
+Encoding: 42 42 12
 Width: 796
 GlyphClass: 2
 Flags: W
-HStem: 866 625
-VStem: 319 148<1247.71 1491>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 20
-MDAP[rnd]
-PUSHB_1
- 16
-SHP[rp1]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 25
-MDAP[rnd]
-PUSHB_1
- 5
-MDRP[rp0,rnd,white]
-PUSHB_1
- 6
-MDRP[min,rnd,black]
-PUSHB_2
- 26
- 1
-CALL
-PUSHB_2
- 6
- 5
-SRP1
-SRP2
-PUSHB_3
- 3
- 8
- 18
-IP
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 5
- 20
-SRP1
-SRP2
-PUSHB_1
- 18
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2226,98 +1095,13 @@ SplineSet
  203 1032 203 1032 307 1141 c 1,23,24
  217 1157 217 1157 63 1196 c 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: plus
-Encoding: 11 43 14
+Encoding: 43 43 13
 Width: 1196
 GlyphClass: 2
 Flags: W
-HStem: 516 168<115 512 682 1081>
-VStem: 512 170<115 516 684 1083>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 2
-MDAP[rnd]
-PUSHB_1
- 9
-SHP[rp1]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_1
- 7
-SHP[rp2]
-PUSHB_3
- 2
- 3
- 10
-CALL
-PUSHB_4
- 64
- 2
- 0
- 9
-CALL
-PUSHB_3
- 3
- 2
- 10
-CALL
-PUSHB_4
- 64
- 3
- 5
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[rp0,rnd,white]
-PUSHB_1
- 4
-SHP[rp2]
-PUSHB_1
- 11
-MDRP[min,rnd,black]
-PUSHB_1
- 6
-SHP[rp2]
-PUSHB_3
- 11
- 0
- 10
-CALL
-PUSHB_4
- 64
- 11
- 9
- 9
-CALL
-PUSHB_3
- 0
- 11
- 10
-CALL
-PUSHB_4
- 64
- 0
- 2
- 9
-CALL
-PUSHB_2
- 13
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2335,74 +1119,19 @@ SplineSet
  682 115 l 1,11,-1
  512 115 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: comma
-Encoding: 12 44 15
+Encoding: 44 44 14
 Width: 512
 GlyphClass: 2
 Flags: W
-HStem: -342 543
-VStem: 111 254<2.09595 165.903> 326 82<-160.163 -8>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 14
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 20
-MDAP[rnd]
-PUSHB_1
- 10
-MDRP[rp0,rnd,white]
-PUSHB_1
- 0
-SHP[rp2]
-PUSHB_1
- 16
-MDRP[min,rnd,black]
-PUSHB_1
- 16
-SRP0
-PUSHB_1
- 18
-MDRP[rp0,rnd,white]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_1
- 5
-MDAP[rnd]
-PUSHB_1
- 18
-MDRP[min,rnd,black]
-PUSHB_2
- 21
- 1
-CALL
-PUSHB_2
- 5
- 10
-SRP1
-SRP2
-PUSHB_1
- 14
-IP
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 111 -342 m 1,0,-1
  111 -297 l 1,1,2
- 202 -265 202 -265 260 -203 c 0,3,4
+ 202 -265 202 -265 260 -203 c 1,3,4
  326 -130 326 -130 326 -41 c 1,5,-1
  317 -8 l 1,6,-1
  303 0 l 1,7,-1
@@ -2410,50 +1139,17 @@ SplineSet
  111 -29 111 -29 111 82 c 0,10,11
  111 132 111 132 150 167 c 0,12,13
  189 201 189 201 240 201 c 0,14,15
- 315 201 315 201 365 131 c 0,16,17
+ 315 201 315 201 365 131 c 1,16,17
  408 68 408 68 408 -10 c 0,18,19
  408 -243 408 -243 111 -342 c 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: hyphen
-Encoding: 13 45 16
+Encoding: 45 45 15
 Width: 681
 GlyphClass: 2
 Flags: W
-HStem: 502 180<66 618>
-VStem: 66 552<502 682>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_2
- 0
- 1
-CALL
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_2
- 5
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2463,48 +1159,13 @@ SplineSet
  618 502 l 1,3,-1
  66 502 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: period
-Encoding: 14 46 17
+Encoding: 46 46 16
 Width: 512
 GlyphClass: 2
 Flags: W
-HStem: -29 224<179.065 332.966>
-VStem: 145 222<6.09595 172.369>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 7
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 13
-MDAP[rnd]
-PUSHB_1
- 11
-MDRP[rp0,rnd,white]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_2
- 14
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2513,83 +1174,18 @@ SplineSet
  367 129 367 129 367 84 c 0,3,4
  367 38 367 38 334 4 c 0,5,6
  301 -29 301 -29 256 -29 c 0,7,8
- 212 -29 212 -29 178 5 c 0,9,10
+ 212 -29 212 -29 178 5 c 1,9,10
  145 40 145 40 145 84 c 0,11,12
  145 129 145 129 178 162 c 128,-1,0
  211 195 211 195 256 195 c 128,-1,1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: slash
-Encoding: 15 47 18
+Encoding: 47 47 17
 Width: 569
 GlyphClass: 2
 Flags: W
-VStem: 0 569
-TtInstrs:
-SVTCA[y-axis]
-SVTCA[x-axis]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[rp0,rnd,white]
-PUSHB_1
- 2
-MDRP[min,rnd,black]
-PUSHB_2
- 5
- 1
-CALL
-PUSHB_1
- 54
-SMD
-PUSHB_2
- 0
- 1
-SDPVTL[orthog]
-SFVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[no-rnd]
-SFVTPV
-PUSHB_1
- 1
-MDRP[grey]
-PUSHB_2
- 3
- 3
-MIRP[rp0,min,black]
-SFVTCA[y-axis]
-PUSHB_1
- 2
-MDRP[grey]
-SPVTCA[y-axis]
-PUSHB_4
- 0
- 1
- 2
- 3
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-SVTCA[x-axis]
-PUSHB_2
- 1
- 3
-MDAP[no-rnd]
-MDAP[no-rnd]
-PUSHB_1
- 64
-SMD
-SVTCA[x-axis]
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2599,166 +1195,57 @@ SplineSet
  145 -25 l 1,3,-1
  0 -25 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: colon
-Encoding: 16 58 19
+Encoding: 58 58 18
 Width: 569
 GlyphClass: 2
 Flags: W
-HStem: -29 224<210.065 364.935> 723 221<200.631 365.966>
-VStem: 176 223<6.09595 160.966 757.065 909.997>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 21
-MDAP[rnd]
-PUSHB_1
- 14
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 27
-MDAP[rnd]
-PUSHB_1
- 25
-MDRP[rp0,rnd,white]
-PUSHB_1
- 10
-SHP[rp2]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-SHP[rp2]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_2
- 28
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 289 944 m 128,-1,1
  334 944 334 944 367 911 c 0,2,3
  399 879 399 879 399 834 c 0,4,5
- 399 790 399 790 367 756 c 0,6,7
+ 399 790 399 790 367 756 c 1,6,7
  334 723 334 723 289 723 c 128,-1,8
  244 723 244 723 211 756 c 128,-1,9
  178 789 178 789 178 834 c 0,10,11
- 178 880 178 880 211 911 c 0,12,0
+ 178 880 178 880 211 911 c 1,12,0
  244 944 244 944 289 944 c 128,-1,1
 287 195 m 128,-1,14
  332 195 332 195 366 162 c 0,15,16
  399 129 399 129 399 84 c 0,17,18
  399 38 399 38 365 4 c 0,19,20
  332 -29 332 -29 287 -29 c 0,21,22
- 243 -29 243 -29 209 5 c 0,23,24
+ 243 -29 243 -29 209 5 c 1,23,24
  176 40 176 40 176 84 c 0,25,26
  176 129 176 129 209 162 c 128,-1,13
  242 195 242 195 287 195 c 128,-1,14
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: semicolon
-Encoding: 17 59 20
+Encoding: 59 59 19
 Width: 569
 GlyphClass: 2
 Flags: W
-HStem: 725 219<193.317 369.683>
-VStem: 170 223<748.493 920.367> 358 82<-162.016 -1.29346>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 35
-MDAP[rnd]
-PUSHB_1
- 12
-MDRP[rp0,rnd,white]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_4
- 20
- 4
- 12
- 8
-CALL
-PUSHB_1
- 33
-MDRP[min,rnd,black]
-PUSHB_3
- 20
- 33
- 10
-CALL
-PUSHB_4
- 64
- 20
- 15
- 9
-CALL
-PUSHB_1
- 25
-SHP[rp2]
-PUSHB_2
- 36
- 1
-CALL
-PUSHB_2
- 20
- 12
-SRP1
-SRP2
-PUSHB_4
- 8
- 0
- 23
- 29
-DEPTH
-SLOOP
-IP
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 283 944 m 0,0,1
- 326 944 326 944 359 911 c 0,2,3
+ 326 944 326 944 359 911 c 1,2,3
  393 880 393 880 393 836 c 0,4,5
  393 791 393 791 360 758 c 0,6,7
  328 725 328 725 283 725 c 0,8,9
  237 725 237 725 204 758 c 0,10,11
  170 791 170 791 170 836 c 128,-1,12
- 170 881 170 881 204 912 c 0,13,14
+ 170 881 170 881 204 912 c 1,13,14
  236 944 236 944 283 944 c 0,0,1
 141 -342 m 1,15,-1
  141 -297 l 1,16,17
- 233 -266 233 -266 293 -203 c 0,18,19
+ 233 -266 233 -266 293 -203 c 1,18,19
  358 -132 358 -132 358 -41 c 0,20,21
  358 -10 358 -10 336 0 c 1,22,-1
  250 -29 l 1,23,24
@@ -2769,11 +1256,10 @@ SplineSet
  440 73 440 73 440 -10 c 0,33,34
  440 -243 440 -243 141 -342 c 1,15,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: less
-Encoding: 18 60 21
+Encoding: 60 60 20
 Width: 1196
 GlyphClass: 2
 Flags: W
@@ -2789,47 +1275,19 @@ SplineSet
  1083 102 l 1,6,-1
  113 518 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: equal
-Encoding: 19 61 22
+Encoding: 61 61 21
 Width: 1628
 GlyphClass: 2
 Flags: W
-HStem: 293 127<221 1405> 791 129<221 1405>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_2
- 9
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 221 293 m 1,0,-1
- 221 420 l 5,1,-1
- 1405 420 l 5,2,-1
+ 221 420 l 1,1,-1
+ 1405 420 l 1,2,-1
  1405 293 l 1,3,-1
  221 293 l 1,0,-1
 221 791 m 1,4,-1
@@ -2838,11 +1296,10 @@ SplineSet
  1405 791 l 1,7,-1
  221 791 l 1,4,-1
 EndSplineSet
-Validated: 16385
 EndChar
 
 StartChar: greater
-Encoding: 20 62 23
+Encoding: 62 62 22
 Width: 1196
 GlyphClass: 2
 Flags: W
@@ -2858,62 +1315,13 @@ SplineSet
  1083 686 l 1,6,-1
  1083 518 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: bracketleft
-Encoding: 21 91 24
+Encoding: 91 91 23
 Width: 577
 GlyphClass: 2
 Flags: W
-HStem: -403 71<248 504> 1552 70<248 504>
-VStem: 150 98<-332 1552>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[rp0,rnd,white]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_3
- 5
- 0
- 10
-CALL
-PUSHB_4
- 64
- 5
- 7
- 9
-CALL
-PUSHB_1
- 2
-SHP[rp2]
-PUSHB_2
- 9
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -2922,202 +1330,58 @@ SplineSet
  504 1622 l 1,2,-1
  504 1552 l 1,3,-1
  248 1552 l 1,4,-1
- 248 -332 l 5,5,-1
- 504 -332 l 5,6,-1
+ 248 -332 l 1,5,-1
+ 504 -332 l 1,6,-1
  504 -403 l 1,7,-1
  150 -403 l 1,0,-1
 EndSplineSet
-Validated: 16385
 EndChar
 
 StartChar: bracketright
-Encoding: 22 93 25
+Encoding: 93 93 24
 Width: 577
 GlyphClass: 2
 Flags: W
-HStem: -403 73<74 330> 1553 69<74 330>
-VStem: 330 98<-330 1553>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 1
-MDAP[rnd]
-PUSHB_1
- 2
-MDRP[min,rnd,black]
-PUSHB_1
- 5
-MDAP[rnd]
-PUSHB_1
- 6
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 3
-MDRP[rp0,rnd,white]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_3
- 3
- 0
- 10
-CALL
-PUSHB_4
- 64
- 3
- 1
- 9
-CALL
-PUSHB_1
- 5
-SHP[rp2]
-PUSHB_2
- 9
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 428 -403 m 1,0,-1
  74 -403 l 1,1,-1
- 74 -330 l 5,2,-1
- 330 -330 l 5,3,-1
+ 74 -330 l 1,2,-1
+ 330 -330 l 1,3,-1
  330 1553 l 1,4,-1
  74 1553 l 1,5,-1
  74 1622 l 1,6,-1
  428 1622 l 1,7,-1
  428 -403 l 1,0,-1
 EndSplineSet
-Validated: 16385
 EndChar
 
 StartChar: braceleft
-Encoding: 23 123 26
+Encoding: 123 123 25
 Width: 782
 GlyphClass: 2
 Flags: W
-HStem: -453 33<407.5 496> 588 33<92 129> 1626 33<450 496>
-VStem: 215 80<-318.941 515.198 693.233 1526.46>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 1
-MDAP[rnd]
-PUSHB_1
- 30
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_1
- 18
-MDAP[rnd]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 33
-MDAP[rnd]
-PUSHB_1
- 5
-MDRP[rp0,rnd,white]
-PUSHB_1
- 12
-SHP[rp2]
-PUSHB_1
- 28
-MDRP[min,rnd,black]
-PUSHB_1
- 22
-SHP[rp2]
-PUSHB_3
- 28
- 5
- 10
-CALL
-PUSHB_4
- 64
- 28
- 0
- 9
-CALL
-PUSHB_1
- 17
-SHP[rp2]
-PUSHB_2
- 34
- 1
-CALL
-PUSHB_2
- 28
- 5
-SRP1
-SRP2
-PUSHB_2
- 24
- 26
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 8
- 30
-SRP1
-SRP2
-PUSHB_2
- 5
- 27
-IP
-IP
-PUSHB_1
- 9
-SRP1
-PUSHB_1
- 25
-IP
-PUSHB_1
- 18
-SRP2
-PUSHB_2
- 13
- 24
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 496 -453 m 1,0,-1
  485 -453 l 2,1,2
- 351 -453 351 -453 281 -362 c 0,3,4
+ 351 -453 351 -453 281 -362 c 1,3,4
  215 -281 215 -281 215 -145 c 2,5,-1
  217 459 l 2,6,7
  217 587 217 587 92 588 c 1,8,-1
  92 621 l 1,9,-1
- 129 623 l 2,10,11
+ 129 623 l 1,10,11
  217 638 217 638 217 752 c 2,12,-1
  215 1356 l 2,13,14
- 215 1494 215 1494 288 1576 c 0,15,16
+ 215 1494 215 1494 288 1576 c 1,15,16
  360 1659 360 1659 496 1659 c 1,17,-1
  496 1626 l 1,18,-1
  450 1623 l 1,19,-1
- 413 1613 l 2,20,21
+ 413 1613 l 1,20,21
  298 1569 298 1569 295 1384 c 2,22,-1
- 287 809 l 2,23,24
+ 287 809 l 1,23,24
  284 667 284 667 156 604 c 1,25,26
  284 543 284 543 287 397 c 2,27,-1
  295 -176 l 2,28,29
@@ -3125,110 +1389,19 @@ SplineSet
  494 -420 494 -420 496 -420 c 1,32,-1
  496 -453 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: braceright
-Encoding: 24 125 27
+Encoding: 125 125 26
 Width: 782
 GlyphClass: 2
 Flags: W
-HStem: -453 33<92 138> 586 35<414.041 496> 1626 33<92 179.938>
-VStem: 281 67<53.7568 516.38 688.675 1159.68> 293 80<-332.038 271.332 937.238 1527.5>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 33
-MDAP[rnd]
-PUSHB_1
- 30
-MDRP[min,rnd,black]
-PUSHB_1
- 18
-MDAP[rnd]
-PUSHB_1
- 19
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 41
-MDAP[rnd]
-PUSHB_1
- 4
-MDRP[rp0,rnd,white]
-PUSHB_1
- 14
-SHP[rp2]
-PUSHB_1
- 39
-MDRP[min,rnd,black]
-PUSHB_1
- 24
-SHP[rp2]
-PUSHB_1
- 35
-MDRP[min,rnd,black]
-PUSHB_1
- 28
-SHP[rp2]
-PUSHB_3
- 4
- 35
- 10
-CALL
-PUSHB_4
- 64
- 4
- 0
- 9
-CALL
-PUSHB_1
- 18
-SHP[rp2]
-PUSHB_2
- 42
- 1
-CALL
-SVTCA[y-axis]
-PUSHB_2
- 33
- 1
-SRP1
-SRP2
-PUSHB_2
- 8
- 39
-IP
-IP
-PUSHB_1
- 30
-SRP1
-PUSHB_1
- 10
-IP
-PUSHB_1
- 18
-SRP2
-PUSHB_2
- 12
- 24
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 92 -453 m 1,0,-1
  92 -420 l 1,1,-1
- 138 -417 l 2,2,3
+ 138 -417 l 1,2,3
  293 -391 293 -391 293 -176 c 0,4,5
  293 -80 293 -80 287 112 c 0,6,7
  281 302 281 302 281 399 c 0,8,9
@@ -3241,109 +1414,24 @@ SplineSet
  102 1659 l 2,20,21
  234 1659 234 1659 303 1574 c 0,22,23
  373 1489 373 1489 373 1354 c 0,24,25
- 373 1245 373 1245 360 1053 c 0,26,27
+ 373 1245 373 1245 360 1053 c 1,26,27
  348 852 348 852 348 752 c 0,28,29
  348 621 348 621 480 621 c 2,30,-1
  496 621 l 1,31,-1
  496 588 l 1,32,-1
- 452 586 l 2,33,34
+ 452 586 l 1,33,34
  348 572 348 572 348 457 c 0,35,36
- 348 356 348 356 360 156 c 0,37,38
+ 348 356 348 356 360 156 c 1,37,38
  373 -38 373 -38 373 -145 c 0,39,40
  373 -453 373 -453 92 -453 c 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: asciitilde
-Encoding: 25 126 28
+Encoding: 126 126 27
 Width: 1628
 GlyphClass: 2
 Flags: W
-HStem: 504 102<1010.88 1279.77> 743 103<346.246 637.547>
-VStem: 221 62<526 650.688> 1343 62<699.454 823>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 11
-MDAP[rnd]
-PUSHB_1
- 6
-MDRP[min,rnd,black]
-PUSHB_3
- 6
- 11
- 10
-CALL
-PUSHB_4
- 64
- 6
- 8
- 9
-CALL
-PUSHB_1
- 15
-MDAP[rnd]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_3
- 15
- 3
- 10
-CALL
-PUSHB_4
- 64
- 15
- 1
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 19
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[rp0,rnd,white]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-SRP0
-PUSHB_2
- 8
- 1
-CALL
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_2
- 20
- 1
-CALL
-PUSHB_2
- 8
- 0
-SRP1
-SRP2
-PUSHB_2
- 3
- 11
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 15
- 6
-SRP1
-SRP2
-PUSHB_1
- 13
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -3355,155 +1443,23 @@ SplineSet
  1320 606 1320 606 1343 823 c 1,8,-1
  1405 823 l 1,9,10
  1387 504 1387 504 1141 504 c 0,11,12
- 1014 504 1014 504 795 624 c 0,13,14
+ 1014 504 1014 504 795 624 c 1,13,14
  575 743 575 743 449 743 c 0,15,16
  370 743 370 743 324 672 c 0,17,18
  283 609 283 609 283 526 c 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: cent
-Encoding: 26 162 29
+Encoding: 162 162 28
 Width: 876
 GlyphClass: 2
 Flags: W
-HStem: -14 168<508 627.925> 700 322<555 721> 940 72<352.493 426>
-VStem: 55 166<336.16 726.16> 426 82<-244 -8.8064 166 940 1018 1243>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 31
-MDAP[rnd]
-PUSHB_1
- 24
-MDRP[min,rnd,black]
-PUSHB_3
- 31
- 24
- 10
-CALL
-PUSHB_4
- 64
- 31
- 33
- 9
-CALL
-PUSHB_1
- 19
-MDAP[rnd]
-PUSHB_1
- 12
-MDRP[min,rnd,black]
-PUSHB_1
- 42
-SHP[rp2]
-PUSHB_3
- 12
- 19
- 10
-CALL
-PUSHB_4
- 64
- 12
- 43
- 9
-CALL
-PUSHB_1
- 12
-SRP0
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_1
- 23
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 44
-MDAP[rnd]
-PUSHB_1
- 38
-MDRP[rp0,rnd,white]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-SRP0
-PUSHB_2
- 33
- 1
-CALL
-PUSHB_2
- 0
- 42
-SHP[rp2]
-SHP[rp2]
-PUSHB_1
- 32
-MDRP[min,rnd,black]
-PUSHB_2
- 9
- 23
-SHP[rp2]
-SHP[rp2]
-PUSHB_3
- 32
- 33
- 10
-CALL
-PUSHB_4
- 64
- 32
- 16
- 9
-CALL
-PUSHB_2
- 45
- 1
-CALL
-SVTCA[y-axis]
-PUSHB_2
- 24
- 31
-SRP1
-SRP2
-PUSHB_1
- 34
-IP
-PUSHB_1
- 19
-SRP1
-PUSHB_5
- 4
- 8
- 26
- 27
- 38
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 0
-SRP2
-PUSHB_1
- 16
-IP
-PUSHB_1
- 12
-SRP1
-PUSHB_1
- 10
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 426 940 m 1,0,1
- 320 916 320 916 264 793 c 0,2,3
+ 320 916 320 916 264 793 c 1,2,3
  221 690 221 690 221 567 c 0,4,5
  221 436 221 436 266 334 c 0,6,7
  320 210 320 210 426 166 c 1,8,-1
@@ -3525,131 +1481,20 @@ SplineSet
  508 -244 l 1,32,-1
  426 -244 l 1,33,-1
  426 -14 l 1,34,35
- 241 3 241 3 141 156 c 0,36,37
+ 241 3 241 3 141 156 c 1,36,37
  55 292 55 292 55 487 c 0,38,39
- 55 675 55 675 147 821 c 0,40,41
+ 55 675 55 675 147 821 c 1,40,41
  250 980 250 980 426 1012 c 1,42,-1
  426 1243 l 1,43,-1
  508 1243 l 1,9,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: currency
-Encoding: 27 164 30
+Encoding: 164 164 29
 Width: 1024
 GlyphClass: 2
 Flags: W
-HStem: 238 79<346.822 672.88> 1040 80<346.01 677.739>
-VStem: 70 80<512.247 843.708> 874 80<515.685 844.512>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_1
- 34
-MDRP[min,rnd,black]
-PUSHB_1
- 28
-MDAP[rnd]
-PUSHB_1
- 26
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 40
-MDAP[rnd]
-PUSHB_1
- 19
-MDRP[rp0,rnd,white]
-PUSHB_1
- 31
-MDRP[min,rnd,black]
-PUSHB_1
- 31
-SRP0
-PUSHB_2
- 38
- 1
-CALL
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_2
- 41
- 1
-CALL
-PUSHB_2
- 31
- 19
-SRP1
-SRP2
-PUSHB_2
- 15
- 23
-IP
-IP
-PUSHB_1
- 38
-SRP1
-PUSHB_8
- 0
- 7
- 10
- 14
- 17
- 21
- 24
- 3
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 5
-SRP2
-PUSHB_2
- 1
- 9
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 34
- 12
-SRP1
-SRP2
-PUSHB_2
- 8
- 16
-IP
-IP
-PUSHB_1
- 28
-SRP1
-PUSHB_8
- 3
- 7
- 0
- 14
- 17
- 21
- 24
- 10
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 26
-SRP2
-PUSHB_2
- 22
- 2
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -3684,129 +1529,13 @@ SplineSet
  874 828 874 828 767 934 c 128,-1,39
  660 1040 660 1040 512 1040 c 0,28,29
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: yen
-Encoding: 28 165 31
+Encoding: 165 165 30
 Width: 1024
 GlyphClass: 2
 Flags: W
-HStem: 0 41<254 307 650.96 768> 352 74<2 426 598 1024> 604 74<2 379 637 1024> 1319 37<2 67.3984 354 444 678 756.955 956.066 1024>
-VStem: 426 172<76.1382 352 426 569>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 11
- 0
- 0
-CALL
-PUSHB_1
- 12
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-SHP[rp2]
-PUSHB_1
- 22
-MDAP[rnd]
-PUSHB_1
- 2
-SHP[rp1]
-PUSHB_1
- 23
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-SHP[rp2]
-PUSHB_1
- 27
-MDAP[rnd]
-PUSHB_1
- 51
-SHP[rp1]
-PUSHB_1
- 28
-MDRP[min,rnd,black]
-PUSHB_2
- 39
- 49
-SHP[rp2]
-SHP[rp2]
-PUSHB_1
- 32
-MDAP[rnd]
-PUSHB_3
- 35
- 43
- 46
-SHP[rp1]
-SHP[rp1]
-SHP[rp1]
-PUSHB_1
- 33
-MDRP[min,rnd,black]
-PUSHB_1
- 44
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 54
-MDAP[rnd]
-PUSHB_1
- 21
-MDRP[rp0,rnd,white]
-PUSHB_1
- 24
-SHP[rp2]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-SHP[rp2]
-PUSHB_3
- 3
- 21
- 10
-CALL
-PUSHB_4
- 64
- 3
- 10
- 9
-CALL
-PUSHB_3
- 21
- 3
- 10
-CALL
-PUSHB_4
- 64
- 21
- 11
- 9
-CALL
-PUSHB_2
- 55
- 1
-CALL
-PUSHB_2
- 3
- 21
-SRP1
-SRP2
-PUSHB_3
- 34
- 35
- 39
-IP
-IP
-IP
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -3821,7 +1550,7 @@ SplineSet
  768 0 l 1,10,-1
  254 0 l 1,11,-1
  254 41 l 1,12,-1
- 307 44 l 2,13,14
+ 307 44 l 1,13,14
  359 50 359 50 388 75 c 0,15,16
  430 111 430 111 430 201 c 0,17,18
  430 210 430 210 428 278 c 0,19,20
@@ -3854,177 +1583,27 @@ SplineSet
  598 590 l 1,53,-1
  598 426 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: section
-Encoding: 29 167 32
+Encoding: 167 167 31
 Width: 1138
 GlyphClass: 2
 Flags: W
-HStem: -430 151<431.351 728.554> 1343 148<418.661 691.188>
-VStem: 80 164<563.133 778.265> 141 183<-162.325 -67.8848> 176 176<1078.48 1283.32> 772 186<1143.38 1253.12> 795 182<-216.813 1.07947> 874 170<317.354 532.07>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_1
- 45
-MDRP[min,rnd,black]
-PUSHB_1
- 21
-MDAP[rnd]
-PUSHB_1
- 26
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 60
-MDAP[rnd]
-PUSHB_1
- 36
-MDRP[rp0,rnd,white]
-PUSHB_1
- 52
-MDRP[min,rnd,black]
-PUSHB_4
- 30
- 52
- 36
- 8
-CALL
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_1
- 17
-SRP0
-PUSHB_1
- 47
-MDRP[rp0,rnd,white]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 47
-MDRP[min,rnd,black]
-PUSHB_1
- 52
-SRP0
-PUSHB_2
- 41
- 1
-CALL
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-SRP0
-PUSHB_1
- 24
-MDRP[rp0,rnd,white]
-PUSHB_1
- 23
-MDRP[min,rnd,black]
-PUSHB_1
- 23
-MDAP[rnd]
-PUSHB_1
- 24
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-SRP0
-PUSHB_1
- 12
-MDRP[rp0,rnd,white]
-PUSHB_1
- 58
-MDRP[min,rnd,black]
-PUSHB_1
- 58
-MDAP[rnd]
-PUSHB_1
- 12
-MDRP[min,rnd,black]
-PUSHB_2
- 61
- 1
-CALL
-PUSHB_2
- 47
- 0
-SRP1
-SRP2
-PUSHB_2
- 32
- 38
-IP
-IP
-PUSHB_2
- 23
- 17
-SRP1
-SRP2
-PUSHB_7
- 15
- 4
- 26
- 39
- 45
- 48
- 54
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 24
-SRP1
-PUSHB_2
- 14
- 10
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 21
- 45
-SRP1
-SRP2
-PUSHB_8
- 8
- 0
- 23
- 24
- 30
- 47
- 48
- 54
-DEPTH
-SLOOP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 141 -70 m 1,0,1
- 164 -246 164 -246 285 -340 c 0,2,3
+ 164 -246 164 -246 285 -340 c 1,2,3
  399 -430 399 -430 580 -430 c 0,4,5
  740 -430 740 -430 852 -348 c 0,6,7
  977 -256 977 -256 977 -102 c 0,8,9
  977 55 977 55 817 178 c 1,10,11
  1044 268 1044 268 1044 465 c 0,12,13
- 1044 618 1044 618 864 756 c 2,14,-1
- 532 965 l 2,15,16
+ 1044 618 1044 618 864 756 c 1,14,-1
+ 532 965 l 1,15,16
  352 1080 352 1080 352 1184 c 0,17,18
- 352 1256 352 1256 420 1303 c 0,19,20
+ 352 1256 352 1256 420 1303 c 1,19,20
  481 1343 481 1343 557 1343 c 0,21,22
  739 1343 739 1343 772 1124 c 1,23,-1
  958 1145 l 1,24,25
@@ -4034,8 +1613,8 @@ SplineSet
  176 1045 176 1045 305 928 c 1,32,33
  208 900 208 900 143 821 c 0,34,35
  80 743 80 743 80 643 c 0,36,37
- 80 480 80 480 264 338 c 2,38,-1
- 610 121 l 2,39,40
+ 80 480 80 480 264 338 c 1,38,-1
+ 610 121 l 1,39,40
  795 -1 795 -1 795 -104 c 0,41,42
  795 -188 795 -188 727 -236 c 0,43,44
  666 -279 666 -279 580 -279 c 0,45,46
@@ -4049,71 +1628,13 @@ SplineSet
  874 529 874 529 874 430 c 0,58,59
  874 314 874 314 727 244 c 1,48,49
 EndSplineSet
-Validated: 9
 EndChar
 
 StartChar: dieresis
-Encoding: 30 168 33
+Encoding: 168 168 32
 Width: 542
 GlyphClass: 2
 Flags: W
-HStem: 1278 199<53.9087 192.09 347.909 499.688>
-VStem: 25 196<1307.91 1445.03> 319 197<1309.94 1461.56>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_1
- 28
-SHP[rp1]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_1
- 20
-SHP[rp2]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 32
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[rp0,rnd,white]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-SRP0
-PUSHB_2
- 16
- 1
-CALL
-PUSHB_1
- 24
-MDRP[min,rnd,black]
-PUSHB_2
- 33
- 1
-CALL
-SVTCA[y-axis]
-PUSHB_2
- 4
- 12
-SRP1
-SRP2
-PUSHB_2
- 16
- 24
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -4124,23 +1645,22 @@ SplineSet
  221 1417 221 1417 221 1376 c 0,8,9
  221 1333 221 1333 193 1306 c 0,10,11
  164 1278 164 1278 121 1278 c 0,12,13
- 81 1278 81 1278 52 1307 c 0,14,15
+ 81 1278 81 1278 52 1307 c 1,14,15
  25 1336 25 1336 25 1376 c 0,0,1
 319 1378 m 0,16,17
  319 1416 319 1416 348 1448 c 0,18,19
  377 1479 377 1479 416 1479 c 0,20,21
- 458 1479 458 1479 486 1449 c 0,22,23
+ 458 1479 458 1479 486 1449 c 1,22,23
  516 1419 516 1419 516 1378 c 0,24,25
- 516 1334 516 1334 487 1308 c 0,26,27
+ 516 1334 516 1334 487 1308 c 1,26,27
  459 1280 459 1280 416 1280 c 0,28,29
- 376 1280 376 1280 347 1309 c 0,30,31
+ 376 1280 376 1280 347 1309 c 1,30,31
  319 1339 319 1339 319 1378 c 0,16,17
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: guillemotleft
-Encoding: 31 171 34
+Encoding: 171 171 33
 Width: 1138
 GlyphClass: 2
 Flags: W
@@ -4162,53 +1682,13 @@ SplineSet
  991 72 l 1,11,-1
  727 528 l 1,6,-1
 EndSplineSet
-Validated: 9
 EndChar
 
 StartChar: logicalnot
-Encoding: 32 172 35
+Encoding: 172 172 34
 Width: 1329
 GlyphClass: 2
 Flags: W
-HStem: 727 74<117 1028>
-VStem: 1028 94<272 727>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_3
- 4
- 5
- 10
-CALL
-PUSHB_4
- 64
- 4
- 2
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 6
-MDAP[rnd]
-PUSHB_1
- 2
-MDRP[rp0,rnd,white]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_2
- 7
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -4220,38 +1700,13 @@ SplineSet
  117 801 l 1,5,-1
  1120 801 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
-StartChar: softhyphen
-Encoding: 33 173 36
+StartChar: uni00AD
+Encoding: 173 173 35
 Width: 1628
 GlyphClass: 2
 Flags: W
-HStem: 543 98<221 1405>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_2
- 5
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -4261,80 +1716,13 @@ SplineSet
  1405 543 l 1,3,-1
  221 543 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: degree
-Encoding: 34 176 37
+Encoding: 176 176 36
 Width: 872
 GlyphClass: 2
 Flags: W
-HStem: 297 49<312.727 541.49> 840 49<314.55 538.22>
-VStem: 131 49<477.995 706.05> 674 49<478.504 704.464>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 1
-MDAP[rnd]
-PUSHB_1
- 12
-MDRP[min,rnd,black]
-PUSHB_1
- 20
-MDAP[rnd]
-PUSHB_1
- 7
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 28
-MDAP[rnd]
-PUSHB_1
- 4
-MDRP[rp0,rnd,white]
-PUSHB_1
- 24
-MDRP[min,rnd,black]
-PUSHB_1
- 24
-SRP0
-PUSHB_2
- 16
- 1
-CALL
-PUSHB_1
- 10
-MDRP[min,rnd,black]
-PUSHB_2
- 29
- 1
-CALL
-PUSHB_2
- 16
- 24
-SRP1
-SRP2
-PUSHB_3
- 1
- 0
- 7
-IP
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 20
- 12
-SRP1
-SRP2
-PUSHB_2
- 4
- 10
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -4348,121 +1736,22 @@ SplineSet
  723 463 723 463 640 380 c 128,-1,0
  557 297 557 297 426 297 c 128,-1,1
 426 346 m 0,12,13
- 535 346 535 346 604 415 c 0,14,15
+ 535 346 535 346 604 415 c 1,14,15
  674 482 674 482 674 592 c 0,16,17
  674 701 674 701 604 770 c 0,18,19
  534 840 534 840 426 840 c 0,20,21
  319 840 319 840 249 770 c 0,22,23
  180 701 180 701 180 592 c 0,24,25
- 180 482 180 482 249 415 c 0,26,27
+ 180 482 180 482 249 415 c 1,26,27
  318 346 318 346 426 346 c 0,12,13
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: plusminus
-Encoding: 35 177 38
+Encoding: 177 177 37
 Width: 1628
 GlyphClass: 2
 Flags: W
-HStem: 0 98<221 1407> 692 99<221 766 864 1407>
-VStem: 766 98<297 692 791 1184>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 0
- 0
- 0
-CALL
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 6
-MDAP[rnd]
-PUSHB_1
- 13
-SHP[rp1]
-PUSHB_1
- 7
-MDRP[min,rnd,black]
-PUSHB_1
- 11
-SHP[rp2]
-PUSHB_3
- 6
- 7
- 10
-CALL
-PUSHB_4
- 64
- 6
- 4
- 9
-CALL
-PUSHB_3
- 7
- 6
- 10
-CALL
-PUSHB_4
- 64
- 7
- 9
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 16
-MDAP[rnd]
-PUSHB_1
- 4
-MDRP[rp0,rnd,white]
-PUSHB_1
- 8
-SHP[rp2]
-PUSHB_1
- 15
-MDRP[min,rnd,black]
-PUSHB_1
- 10
-SHP[rp2]
-PUSHB_3
- 15
- 4
- 10
-CALL
-PUSHB_4
- 64
- 15
- 13
- 9
-CALL
-PUSHB_1
- 2
-SHP[rp2]
-PUSHB_3
- 4
- 15
- 10
-CALL
-PUSHB_4
- 64
- 4
- 6
- 9
-CALL
-PUSHB_1
- 0
-SHP[rp2]
-PUSHB_2
- 17
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -4485,86 +1774,21 @@ SplineSet
  864 297 l 1,15,-1
  766 297 l 1,4,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: paragraph
-Encoding: 36 182 39
+Encoding: 182 182 38
 Width: 1099
 GlyphClass: 2
 Flags: W
-HStem: 1292 174<569 793 963 1108>
-VStem: 0 569<848.844 1247.62> 406 163<-408 639> 793 170<-408 1292>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 16
-MDAP[rnd]
-PUSHB_1
- 11
-SHP[rp1]
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_3
- 16
- 9
- 10
-CALL
-PUSHB_4
- 64
- 16
- 14
- 9
-CALL
-PUSHB_1
- 0
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 18
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[rp0,rnd,white]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-PUSHB_1
- 17
-SRP0
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_1
- 5
-MDAP[rnd]
-PUSHB_1
- 17
-SRP0
-PUSHB_2
- 14
- 1
-CALL
-PUSHB_1
- 13
-MDRP[min,rnd,black]
-PUSHB_2
- 19
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 406 -408 m 1,0,-1
  406 639 l 1,1,2
- 226 646 226 646 113 758 c 0,3,4
+ 226 646 226 646 113 758 c 1,3,4
  0 866 0 866 0 1044 c 0,5,6
- 0 1252 0 1252 135 1364 c 0,7,8
+ 0 1252 0 1252 135 1364 c 1,7,8
  262 1466 262 1466 473 1466 c 2,9,-1
  1108 1466 l 1,10,-1
  1108 1292 l 1,11,-1
@@ -4576,11 +1800,10 @@ SplineSet
  569 -408 l 1,17,-1
  406 -408 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: guillemotright
-Encoding: 37 187 40
+Encoding: 187 187 39
 Width: 1138
 GlyphClass: 2
 Flags: W
@@ -4602,189 +1825,54 @@ SplineSet
  139 983 l 1,11,-1
  403 528 l 1,6,-1
 EndSplineSet
-Validated: 9
 EndChar
 
 StartChar: questiondown
-Encoding: 38 191 41
+Encoding: 191 191 40
 Width: 909
 GlyphClass: 2
 Flags: W
-HStem: -12 59<393.361 626.208> 1184 221<364.631 540.369>
-VStem: 88 182<153.771 483.463> 342 221<1206.63 1382.37> 440 39<947.219 1057> 694 129<131.352 290.071>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 42
-MDAP[rnd]
-PUSHB_1
- 22
-MDRP[min,rnd,black]
-PUSHB_3
- 22
- 42
- 10
-CALL
-PUSHB_4
- 0
- 22
- 34
- 9
-CALL
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 51
-MDAP[rnd]
-PUSHB_1
- 46
-MDRP[rp0,rnd,white]
-PUSHB_1
- 18
-MDRP[min,rnd,black]
-PUSHB_1
- 18
-SRP0
-PUSHB_2
- 11
- 1
-CALL
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_4
- 14
- 4
- 11
- 8
-CALL
-PUSHB_1
- 13
-MDRP[min,rnd,black]
-PUSHB_1
- 13
-MDAP[rnd]
-PUSHB_1
- 14
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-SRP0
-PUSHB_2
- 26
- 1
-CALL
-PUSHB_1
- 38
-MDRP[min,rnd,black]
-PUSHB_2
- 52
- 1
-CALL
-PUSHB_2
- 11
- 18
-SRP1
-SRP2
-PUSHB_1
- 49
-IP
-PUSHB_1
- 4
-SRP1
-PUSHB_3
- 16
- 22
- 42
-IP
-IP
-IP
-PUSHB_2
- 26
- 14
-SRP1
-SRP2
-PUSHB_2
- 1
- 30
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 8
- 22
-SRP1
-SRP2
-PUSHB_2
- 13
- 46
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 453 1405 m 128,-1,1
  498 1405 498 1405 530 1372 c 0,2,3
  563 1339 563 1339 563 1294 c 0,4,5
- 563 1248 563 1248 530 1217 c 0,6,7
+ 563 1248 563 1248 530 1217 c 1,6,7
  498 1184 498 1184 453 1184 c 128,-1,8
- 408 1184 408 1184 375 1217 c 0,9,10
+ 408 1184 408 1184 375 1217 c 1,9,10
  342 1248 342 1248 342 1294 c 0,11,12
  342 1339 342 1339 375 1372 c 128,-1,0
  408 1405 408 1405 453 1405 c 128,-1,1
 440 1057 m 1,13,-1
  479 1057 l 1,14,15
- 476 932 476 932 373 693 c 0,16,17
+ 476 932 476 932 373 693 c 1,16,17
  270 459 270 459 270 324 c 0,18,19
  270 209 270 209 330 131 c 0,20,21
  394 47 394 47 508 47 c 0,22,23
  578 47 578 47 631 78 c 0,24,25
  694 114 694 114 694 178 c 0,26,27
- 694 210 694 210 664 263 c 0,28,29
+ 694 210 694 210 664 263 c 1,28,29
  633 315 633 315 633 348 c 0,30,31
- 633 380 633 380 656 406 c 0,32,33
+ 633 380 633 380 656 406 c 1,32,33
  680 430 680 430 713 430 c 0,34,35
  766 430 766 430 797 379 c 0,36,37
  823 335 823 335 823 279 c 0,38,39
- 823 142 823 142 707 59 c 0,40,41
+ 823 142 823 142 707 59 c 1,40,41
  601 -12 601 -12 461 -12 c 0,42,43
  313 -12 313 -12 205 72 c 0,44,45
  88 162 88 162 88 305 c 0,46,47
- 88 431 88 431 176 559 c 2,48,-1
- 342 780 l 2,49,50
+ 88 431 88 431 176 559 c 1,48,-1
+ 342 780 l 1,49,50
  434 919 434 919 440 1057 c 1,13,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: multiply
-Encoding: 39 215 42
+Encoding: 215 215 41
 Width: 1628
 GlyphClass: 2
 Flags: W
-HStem: 0 21G<272.429 312.923 1316.92 1356.43>
-TtInstrs:
-SVTCA[y-axis]
-SVTCA[x-axis]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_2
- 13
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -4802,60 +1890,13 @@ SplineSet
  293 0 l 1,11,-1
  221 70 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: divide
-Encoding: 40 247 43
+Encoding: 247 247 42
 Width: 1628
 GlyphClass: 2
 Flags: W
-HStem: 98 197<715 913> 543 98<221 1407> 887 198<715 913>
-VStem: 715 198<98 295 887 1085>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[rp0,rnd,white]
-PUSHB_1
- 8
-SHP[rp2]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_1
- 10
-SHP[rp2]
-PUSHB_2
- 13
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -4875,184 +1916,18 @@ SplineSet
  913 887 l 1,11,-1
  715 887 l 1,8,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: OE
-Encoding: 41 338 44
+Encoding: 338 338 43
 Width: 2058
 GlyphClass: 2
 Flags: W
-HStem: -23 86<521.69 825.383> 0 88<1137.58 1738.58> 725 94<1132.28 1605.69> 1386 82<513.192 824.33> 1386 66<725.69 810.078 1165.57 1618.08>
-VStem: 27 245<429.088 1024.45> 905 223<138.695 720.375 819.25 1310.8> 1679 37<512 592.669 967.395 1036> 1784 47<1126 1203.37>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 44
- 0
- 0
-CALL
-PUSHB_1
- 36
-MDRP[min,rnd,black]
-PUSHB_1
- 48
-MDRP[rp0,rnd,white]
-PUSHB_1
- 67
-MDRP[min,rnd,black]
-PUSHB_1
- 31
-MDAP[rnd]
-PUSHB_1
- 18
-MDRP[min,rnd,black]
-PUSHB_3
- 31
- 18
- 10
-CALL
-PUSHB_4
- 64
- 31
- 26
- 9
-CALL
-PUSHB_3
- 18
- 31
- 10
-CALL
-PUSHB_4
- 64
- 18
- 23
- 9
-CALL
-PUSHB_1
- 59
-MDAP[rnd]
-PUSHB_1
- 11
-SHP[rp1]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_3
- 59
- 4
- 10
-CALL
-PUSHB_4
- 64
- 59
- 7
- 9
-CALL
-PUSHB_1
- 59
-SRP0
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 71
-MDAP[rnd]
-PUSHB_1
- 52
-MDRP[rp0,rnd,white]
-PUSHB_1
- 63
-MDRP[min,rnd,black]
-PUSHB_1
- 63
-SRP0
-PUSHB_2
- 56
- 1
-CALL
-PUSHB_1
- 34
-MDRP[min,rnd,black]
-PUSHB_1
- 15
-SHP[rp2]
-PUSHB_1
- 34
-SRP0
-PUSHB_2
- 26
- 1
-CALL
-PUSHB_1
- 23
-SHP[rp2]
-PUSHB_1
- 25
-MDRP[min,rnd,black]
-PUSHB_1
- 25
-SRP0
-PUSHB_2
- 7
- 1
-CALL
-PUSHB_1
- 6
-MDRP[min,rnd,black]
-PUSHB_2
- 72
- 1
-CALL
-PUSHB_2
- 56
- 63
-SRP1
-SRP2
-PUSHB_4
- 2
- 46
- 0
- 48
-DEPTH
-SLOOP
-IP
-PUSHB_2
- 26
- 34
-SRP1
-SRP2
-PUSHB_1
- 11
-IP
-SVTCA[y-axis]
-PUSHB_2
- 31
- 36
-SRP1
-SRP2
-PUSHB_3
- 41
- 42
- 52
-IP
-IP
-IP
-PUSHB_1
- 18
-SRP1
-PUSHB_1
- 63
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 725 1468 m 0,0,1
- 747 1468 747 1468 779 1460 c 0,2,3
+ 747 1468 747 1468 779 1460 c 1,2,3
  817 1452 817 1452 834 1452 c 2,4,-1
  1804 1452 l 1,5,-1
  1831 1126 l 1,6,-1
@@ -5081,183 +1956,29 @@ SplineSet
  1958 387 l 1,42,-1
  1855 0 l 1,43,-1
  852 0 l 2,44,45
- 820 0 820 0 749 -11 c 0,46,47
+ 820 0 820 0 749 -11 c 1,46,47
  680 -23 680 -23 645 -23 c 0,48,49
- 352 -23 352 -23 180 211 c 0,50,51
+ 352 -23 352 -23 180 211 c 1,50,51
  27 422 27 422 27 725 c 0,52,53
  27 1059 27 1059 207 1260 c 0,54,55
  394 1468 394 1468 725 1468 c 0,0,1
 905 262 m 2,56,-1
  905 1161 l 2,57,58
  905 1386 905 1386 662 1386 c 0,59,60
- 466 1386 466 1386 356 1161 c 0,61,62
+ 466 1386 466 1386 356 1161 c 1,61,62
  272 986 272 986 272 764 c 0,63,64
  272 496 272 496 350 313 c 0,65,66
  457 63 457 63 688 63 c 0,67,68
  777 63 777 63 842 119 c 0,69,70
  905 174 905 174 905 262 c 2,56,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: oe
-Encoding: 42 339 45
+Encoding: 339 339 44
 Width: 1748
 GlyphClass: 2
 Flags: W
-HStem: -14 86<376.25 547> -12 176<1111.65 1411.33> 604 72<969 1403> 924 104<1060.68 1328.94> 946 78<366.607 611.426>
-VStem: 25 198<273.113 727.776> 768 197<344.576 602.926> 1403 203<676 800.328>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 13
-SHP[rp1]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_3
- 3
- 8
- 10
-CALL
-PUSHB_4
- 64
- 3
- 5
- 9
-CALL
-PUSHB_1
- 8
-SRP0
-PUSHB_1
- 48
-MDRP[min,rnd,black]
-PUSHB_1
- 1
-MDAP[rnd]
-PUSHB_1
- 51
-MDRP[min,rnd,black]
-PUSHB_1
- 49
-MDAP[rnd]
-PUSHB_1
- 27
-MDRP[min,rnd,black]
-PUSHB_1
- 21
-SHP[rp2]
-PUSHB_1
- 27
-SRP0
-PUSHB_1
- 40
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 54
-MDAP[rnd]
-PUSHB_1
- 17
-MDRP[rp0,rnd,white]
-PUSHB_1
- 44
-MDRP[min,rnd,black]
-PUSHB_1
- 44
-SRP0
-PUSHB_2
- 36
- 1
-CALL
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 51
-SHP[rp2]
-PUSHB_1
- 1
-SRP0
-PUSHB_2
- 52
- 1
-CALL
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_2
- 55
- 1
-CALL
-PUSHB_2
- 36
- 44
-SRP1
-SRP2
-PUSHB_2
- 21
- 13
-IP
-IP
-PUSHB_1
- 1
-SRP1
-PUSHB_2
- 10
- 25
-IP
-IP
-PUSHB_1
- 52
-SRP2
-PUSHB_3
- 3
- 8
- 27
-IP
-IP
-IP
-PUSHB_1
- 0
-SRP1
-PUSHB_1
- 5
-IP
-SVTCA[y-axis]
-PUSHB_2
- 3
- 48
-SRP1
-SRP2
-PUSHB_1
- 32
-IP
-PUSHB_1
- 1
-SRP1
-PUSHB_4
- 10
- 17
- 36
- 44
-DEPTH
-SLOOP
-IP
-PUSHB_2
- 49
- 51
-SRP1
-SRP2
-PUSHB_1
- 25
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -5274,20 +1995,20 @@ SplineSet
  25 278 25 278 25 496 c 0,17,18
  25 711 25 711 152 862 c 0,19,20
  287 1024 287 1024 498 1024 c 0,21,22
- 621 1024 621 1024 715 971 c 0,23,24
+ 621 1024 621 1024 715 971 c 1,23,24
  794 923 794 923 877 815 c 1,25,26
  984 1028 984 1028 1219 1028 c 0,27,28
  1388 1028 1388 1028 1499 899 c 0,29,30
  1603 777 1603 777 1606 604 c 1,0,-1
 506 70 m 1,31,-1
- 547 73 l 2,32,33
- 657 91 657 91 717 225 c 0,34,35
+ 547 73 l 1,32,33
+ 657 91 657 91 717 225 c 1,34,35
  768 342 768 342 768 504 c 0,36,37
  768 669 768 669 707 791 c 0,38,39
  630 946 630 946 483 946 c 0,40,41
- 350 946 350 946 279 797 c 0,42,43
+ 350 946 350 946 279 797 c 1,42,43
  223 676 223 676 223 528 c 0,44,45
- 223 360 223 360 283 236 c 0,46,47
+ 223 360 223 360 283 236 c 1,46,47
  358 72 358 72 506 72 c 1,48,-1
  506 70 l 1,31,-1
 1192 924 m 0,49,50
@@ -5295,144 +2016,25 @@ SplineSet
  1403 676 l 1,52,53
  1397 924 1397 924 1192 924 c 0,49,50
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: Scaron
-Encoding: 43 352 46
+Encoding: 352 352 45
 Width: 1138
 GlyphClass: 2
 Flags: W
-HStem: -31 90<398.249 741.19> 1307 90<385.216 688.074>
-VStem: 129 145<970.62 1202.78> 141 39<-31 36.4531 346.109 434> 856 174<171.805 411.62> 903 37<918 1012.53 1329.01 1386>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 19
-MDAP[rnd]
-PUSHB_1
- 27
-SHP[rp1]
-PUSHB_1
- 32
-MDRP[min,rnd,black]
-PUSHB_1
- 23
-SHP[rp2]
-PUSHB_3
- 32
- 19
- 10
-CALL
-PUSHB_4
- 64
- 32
- 29
- 9
-CALL
-PUSHB_1
- 6
-MDAP[rnd]
-PUSHB_1
- 45
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 61
-MDAP[rnd]
-PUSHB_1
- 41
-MDRP[rp0,rnd,white]
-PUSHB_1
- 28
-SHP[rp2]
-PUSHB_1
- 10
-MDRP[min,rnd,black]
-PUSHB_1
- 27
-MDRP[min,rnd,black]
-PUSHB_1
- 30
-SHP[rp2]
-PUSHB_1
- 10
-SRP0
-PUSHB_2
- 36
- 1
-CALL
-PUSHB_1
- 15
-MDRP[min,rnd,black]
-PUSHB_4
- 2
- 15
- 36
- 8
-CALL
-PUSHB_1
- 53
-SHP[rp1]
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_2
- 62
- 1
-CALL
-PUSHB_2
- 2
- 41
-SRP1
-SRP2
-PUSHB_4
- 13
- 19
- 56
- 60
-DEPTH
-SLOOP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 6
- 32
-SRP1
-SRP2
-PUSHB_4
- 1
- 15
- 41
- 49
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 45
-SRP1
-PUSHB_3
- 0
- 47
- 53
-IP
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 940 1386 m 1,0,-1
  940 918 l 1,1,-1
  903 918 l 1,2,3
- 884 1087 884 1087 793 1190 c 0,4,5
+ 884 1087 884 1087 793 1190 c 1,4,5
  692 1307 692 1307 528 1307 c 0,6,7
- 432 1307 432 1307 356 1241 c 0,8,9
+ 432 1307 432 1307 356 1241 c 1,8,9
  274 1173 274 1173 274 1079 c 0,10,11
- 274 961 274 961 471 852 c 2,12,-1
- 834 655 l 2,13,14
+ 274 961 274 961 471 852 c 1,12,-1
+ 834 655 l 1,13,14
  1030 523 1030 523 1030 346 c 0,15,16
  1030 178 1030 178 899 70 c 0,17,18
  775 -31 775 -31 604 -31 c 0,19,20
@@ -5446,10 +2048,10 @@ SplineSet
  240 59 240 59 578 59 c 0,32,33
  684 59 684 59 766 119 c 0,34,35
  856 186 856 186 856 289 c 0,36,37
- 856 422 856 422 668 532 c 2,38,-1
- 317 725 l 2,39,40
+ 856 422 856 422 668 532 c 1,38,-1
+ 317 725 l 1,39,40
  129 854 129 854 129 1030 c 0,41,42
- 129 1188 129 1188 248 1292 c 0,43,44
+ 129 1188 129 1188 248 1292 c 1,43,44
  366 1397 366 1397 526 1397 c 0,45,46
  586 1397 586 1397 698 1348 c 0,47,48
  810 1298 810 1298 834 1298 c 0,49,50
@@ -5465,145 +2067,13 @@ SplineSet
  846 1812 l 1,60,-1
  657 1483 l 1,54,-1
 EndSplineSet
-Validated: 33
 EndChar
 
 StartChar: scaron
-Encoding: 44 353 47
+Encoding: 353 353 46
 Width: 796
 GlyphClass: 2
 Flags: W
-HStem: -29 66<292.044 523.589> 877 65<261.992 492.461>
-VStem: 100 117<658.742 825.246> 104 33<-14 18.5635 253.807 313> 578 147<103.686 278.948> 623 32<631 681.87>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 17
-MDAP[rnd]
-PUSHB_1
- 29
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_1
- 41
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-SHP[rp2]
-PUSHB_3
- 4
- 41
- 10
-CALL
-PUSHB_4
- 64
- 4
- 2
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 55
-MDAP[rnd]
-PUSHB_1
- 38
-MDRP[rp0,rnd,white]
-PUSHB_1
- 23
-SHP[rp2]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_1
- 22
-MDRP[min,rnd,black]
-PUSHB_1
- 25
-SHP[rp2]
-PUSHB_1
- 8
-SRP0
-PUSHB_2
- 33
- 1
-CALL
-PUSHB_1
- 13
-MDRP[min,rnd,black]
-PUSHB_4
- 2
- 13
- 33
- 8
-CALL
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_2
- 56
- 1
-CALL
-PUSHB_2
- 2
- 38
-SRP1
-SRP2
-PUSHB_6
- 11
- 17
- 47
- 48
- 50
- 52
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 1
-SRP1
-PUSHB_1
- 53
-IP
-PUSHB_1
- 13
-SRP2
-PUSHB_1
- 54
-IP
-SVTCA[y-axis]
-PUSHB_2
- 29
- 17
-SRP1
-SRP2
-PUSHB_3
- 20
- 22
- 23
-IP
-IP
-IP
-PUSHB_1
- 4
-SRP1
-PUSHB_3
- 12
- 24
- 38
-IP
-IP
-IP
-PUSHB_1
- 41
-SRP2
-PUSHB_1
- 45
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -5612,11 +2082,11 @@ SplineSet
  623 631 l 1,2,3
  562 877 562 877 373 877 c 0,4,5
  315 877 315 877 270 850 c 0,6,7
- 218 819 218 819 217 766 c 0,8,9
- 217 666 217 666 348 592 c 2,10,-1
- 594 467 l 2,11,12
+ 218 819 218 819 217 766 c 1,8,9
+ 217 666 217 666 348 592 c 1,10,-1
+ 594 467 l 1,11,12
  724 382 724 382 725 250 c 0,13,14
- 725 131 725 131 633 51 c 0,15,16
+ 725 131 725 131 633 51 c 1,15,16
  539 -29 539 -29 420 -29 c 0,17,18
  378 -29 378 -29 295 -2 c 128,-1,19
  212 25 212 25 170 25 c 0,20,21
@@ -5628,8 +2098,8 @@ SplineSet
  306 37 306 37 418 37 c 0,29,30
  481 37 481 37 529 73 c 0,31,32
  578 110 578 110 578 170 c 0,33,34
- 578 270 578 270 455 344 c 2,35,-1
- 223 467 l 2,36,37
+ 578 270 578 270 455 344 c 1,35,-1
+ 223 467 l 1,36,37
  100 551 100 551 100 678 c 0,38,39
  100 792 100 792 181 867 c 128,-1,40
  262 942 262 942 379 942 c 0,41,42
@@ -5647,184 +2117,22 @@ SplineSet
  680 1384 l 1,54,-1
  492 1055 l 1,48,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: Ydieresis
-Encoding: 45 376 48
+Encoding: 376 376 47
 Width: 1488
 GlyphClass: 2
 Flags: W
-HStem: 0 41<375 483.239 906.249 1022> 1423 35<-49 11.4688 480.094 584 1379.5 1442> 1606 231<354.159 520.903 831.972 998.747>
-VStem: 317 240<1640.16 1809.08> 584 227<98.4805 631> 801 239<1643.19 1805.99>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 59
- 0
- 0
-CALL
-PUSHB_1
- 60
-MDRP[min,rnd,black]
-PUSHB_1
- 54
-SHP[rp2]
-PUSHB_1
- 32
-MDAP[rnd]
-PUSHB_3
- 40
- 46
- 71
-SHP[rp1]
-SHP[rp1]
-SHP[rp1]
-PUSHB_1
- 31
-MDRP[min,rnd,black]
-PUSHB_3
- 41
- 43
- 45
-SHP[rp2]
-SHP[rp2]
-SHP[rp2]
-PUSHB_1
- 19
-MDAP[rnd]
-PUSHB_1
- 7
-SHP[rp1]
-PUSHB_1
- 27
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 74
-MDAP[rnd]
-PUSHB_1
- 11
-MDRP[rp0,rnd,white]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-SRP0
-PUSHB_2
- 64
- 1
-CALL
-PUSHB_1
- 52
-MDRP[min,rnd,black]
-PUSHB_3
- 52
- 64
- 10
-CALL
-PUSHB_4
- 64
- 52
- 54
- 9
-CALL
-PUSHB_3
- 64
- 52
- 10
-CALL
-PUSHB_4
- 64
- 64
- 60
- 9
-CALL
-PUSHB_4
- 23
- 52
- 64
- 8
-CALL
-PUSHB_1
- 15
-MDRP[min,rnd,black]
-PUSHB_2
- 75
- 1
-CALL
-PUSHB_2
- 4
- 11
-SRP1
-SRP2
-PUSHB_2
- 34
- 67
-IP
-IP
-PUSHB_1
- 64
-SRP1
-PUSHB_2
- 31
- 32
-IP
-IP
-PUSHB_1
- 23
-SRP2
-PUSHB_1
- 36
-IP
-PUSHB_2
- 15
- 52
-SRP1
-SRP2
-PUSHB_4
- 19
- 27
- 40
- 41
-DEPTH
-SLOOP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 32
- 60
-SRP1
-SRP2
-PUSHB_1
- 36
-IP
-PUSHB_2
- 27
- 19
-SRP1
-SRP2
-PUSHB_2
- 4
- 11
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 434 1839 m 1,0,1
- 485 1839 485 1839 520 1805 c 0,2,3
+ 485 1839 485 1839 520 1805 c 1,2,3
  557 1772 557 1772 557 1724 c 128,-1,4
- 557 1676 557 1676 522 1639 c 0,5,6
+ 557 1676 557 1676 522 1639 c 1,5,6
  487 1604 487 1604 438 1604 c 0,7,8
- 390 1604 390 1604 353 1639 c 0,9,10
+ 390 1604 390 1604 353 1639 c 1,9,10
  317 1675 317 1675 317 1724 c 0,11,12
  317 1769 317 1769 354 1803 c 128,-1,13
  391 1837 391 1837 436 1837 c 1,14,-1
@@ -5832,7 +2140,7 @@ SplineSet
 1040 1729 m 0,15,16
  1040 1677 1040 1677 1000 1641 c 0,17,18
  960 1606 960 1606 907 1606 c 0,19,20
- 862 1606 862 1606 831 1642 c 0,21,22
+ 862 1606 862 1606 831 1642 c 1,21,22
  801 1680 801 1680 801 1724 c 0,23,24
  801 1774 801 1774 844 1805 c 0,25,26
  887 1837 887 1837 938 1837 c 0,27,28
@@ -5848,132 +2156,32 @@ SplineSet
  1080 1452 1080 1452 1184 1452 c 0,43,44
  1313 1452 1313 1452 1442 1462 c 1,45,-1
  1442 1417 l 1,46,47
- 1327 1417 1327 1417 1192 1255 c 0,48,49
- 1096 1145 1096 1145 971 922 c 2,50,-1
+ 1327 1417 1327 1417 1192 1255 c 1,48,49
+ 1096 1145 1096 1145 971 922 c 1,50,-1
  811 631 l 1,51,-1
  811 190 l 2,52,53
  811 51 811 51 1022 41 c 1,54,-1
  1022 0 l 1,55,56
- 851 5 851 5 687 5 c 2,57,-1
+ 851 5 851 5 687 5 c 1,57,-1
  412 1 l 1,58,-1
  375 0 l 1,59,-1
  375 41 l 1,60,61
- 460 41 460 41 518 80 c 0,62,63
+ 460 41 460 41 518 80 c 1,62,63
  584 126 584 126 584 207 c 2,64,-1
  582 637 l 1,65,66
  543 688 543 688 412 934 c 0,67,68
- 291 1161 291 1161 209 1262 c 0,69,70
+ 291 1161 291 1161 209 1262 c 1,69,70
  80 1415 80 1415 -49 1415 c 1,71,-1
  -49 1456 l 1,72,73
  506 1456 506 1456 584 1458 c 1,31,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: Zcaron
-Encoding: 46 381 49
+Encoding: 381 381 48
 Width: 1251
 GlyphClass: 2
 Flags: W
-HStem: 0 82<287 993.618> 1276 80<291.401 897>
-VStem: 147 37<1018 1096.76> 1161 33<314.457 361.041>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 9
- 0
- 0
-CALL
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_1
- 18
-MDRP[min,rnd,black]
-PUSHB_3
- 12
- 18
- 10
-CALL
-PUSHB_4
- 64
- 12
- 16
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 26
-MDAP[rnd]
-PUSHB_1
- 17
-MDRP[rp0,rnd,white]
-PUSHB_1
- 16
-MDRP[min,rnd,black]
-PUSHB_1
- 16
-SRP0
-PUSHB_2
- 6
- 1
-CALL
-PUSHB_1
- 7
-MDRP[min,rnd,black]
-PUSHB_2
- 27
- 1
-CALL
-PUSHB_2
- 16
- 17
-SRP1
-SRP2
-PUSHB_1
- 18
-IP
-PUSHB_1
- 6
-SRP1
-PUSHB_5
- 1
- 8
- 11
- 21
- 25
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 7
-SRP2
-PUSHB_1
- 0
-IP
-SVTCA[y-axis]
-PUSHB_2
- 1
- 9
-SRP1
-SRP2
-PUSHB_1
- 10
-IP
-PUSHB_1
- 12
-SRP1
-PUSHB_2
- 6
- 7
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -5988,7 +2196,7 @@ SplineSet
  27 37 l 1,10,-1
  897 1276 l 1,11,-1
  477 1276 l 2,12,13
- 332 1276 332 1276 270 1220 c 0,14,15
+ 332 1276 332 1276 270 1220 c 1,14,15
  210 1164 210 1164 184 1018 c 1,16,-1
  147 1018 l 1,17,-1
  174 1356 l 1,18,-1
@@ -6002,117 +2210,13 @@ SplineSet
  924 1792 l 1,25,-1
  733 1483 l 1,19,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: zcaron
-Encoding: 47 382 50
+Encoding: 382 382 49
 Width: 909
 GlyphClass: 2
 Flags: W
-HStem: 0 68<262 746.547> 846 69<202.454 649>
-VStem: 102 39<662 758.837> 825 35<185.953 281>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_3
- 2
- 0
- 0
-CALL
-PUSHB_1
- 14
-MDRP[min,rnd,black]
-PUSHB_3
- 14
- 2
- 10
-CALL
-PUSHB_4
- 64
- 14
- 19
- 9
-CALL
-PUSHB_1
- 5
-MDAP[rnd]
-PUSHB_1
- 11
-MDRP[min,rnd,black]
-PUSHB_3
- 5
- 11
- 10
-CALL
-PUSHB_4
- 64
- 5
- 10
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 27
-MDAP[rnd]
-PUSHB_1
- 10
-MDRP[rp0,rnd,white]
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_1
- 9
-SRP0
-PUSHB_2
- 19
- 1
-CALL
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_2
- 28
- 1
-CALL
-PUSHB_2
- 19
- 9
-SRP1
-SRP2
-PUSHB_4
- 4
- 14
- 22
- 26
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 0
-SRP1
-PUSHB_1
- 1
-IP
-SVTCA[y-axis]
-PUSHB_2
- 14
- 2
-SRP1
-SRP2
-PUSHB_1
- 3
-IP
-PUSHB_2
- 11
- 5
-SRP1
-SRP2
-PUSHB_1
- 13
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6122,7 +2226,7 @@ SplineSet
  41 37 l 1,3,-1
  649 846 l 1,4,-1
  360 846 l 2,5,6
- 247 846 247 846 201 811 c 0,7,8
+ 247 846 247 846 201 811 c 1,7,8
  146 772 146 772 141 662 c 1,9,-1
  102 662 l 1,10,-1
  109 915 l 1,11,-1
@@ -6130,7 +2234,7 @@ SplineSet
  877 879 l 1,13,-1
  262 68 l 1,14,-1
  578 68 l 2,15,16
- 708 68 708 68 761 111 c 0,17,18
+ 708 68 708 68 761 111 c 1,17,18
  816 154 816 154 825 281 c 1,19,-1
  860 281 l 1,0,-1
 563 1055 m 1,20,-1
@@ -6142,87 +2246,13 @@ SplineSet
  752 1384 l 1,26,-1
  563 1055 l 1,20,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: florin
-Encoding: 48 402 51
+Encoding: 402 402 50
 Width: 1024
 GlyphClass: 2
 Flags: W
-HStem: -442 61<147 203.684> 829 68<354 484.225 702 868> 1374 47<825.543 907.531>
-VStem: 909 113<1258.31 1372.95>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 7
-MDAP[rnd]
-PUSHB_1
- 20
-MDRP[min,rnd,black]
-PUSHB_3
- 20
- 7
- 10
-CALL
-PUSHB_4
- 0
- 20
- 13
- 9
-CALL
-PUSHB_1
- 25
-MDAP[rnd]
-PUSHB_1
- 26
-MDRP[min,rnd,black]
-PUSHB_1
- 42
-MDAP[rnd]
-PUSHB_1
- 31
-MDRP[min,rnd,black]
-PUSHB_3
- 42
- 31
- 10
-CALL
-PUSHB_4
- 0
- 42
- 35
- 9
-CALL
-SVTCA[x-axis]
-PUSHB_1
- 46
-MDAP[rnd]
-PUSHB_1
- 40
-MDRP[rp0,rnd,white]
-PUSHB_1
- 33
-MDRP[min,rnd,black]
-PUSHB_3
- 40
- 33
- 10
-CALL
-PUSHB_4
- 0
- 40
- 37
- 9
-CALL
-PUSHB_2
- 47
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6230,23 +2260,23 @@ SplineSet
  885 897 l 1,1,-1
  868 829 l 1,2,-1
  688 829 l 1,3,4
- 597 347 597 347 514 96 c 0,5,6
+ 597 347 597 347 514 96 c 1,5,6
  340 -442 340 -442 125 -442 c 0,7,8
  0 -442 0 -442 0 -334 c 0,9,10
- 0 -300 0 -300 23 -271 c 0,11,12
+ 0 -300 0 -300 23 -271 c 1,11,12
  46 -244 46 -244 80 -244 c 0,13,14
  145 -244 145 -244 145 -294 c 0,15,16
  145 -297 145 -297 145 -301 c 1,17,-1
  121 -358 l 1,18,-1
  129 -375 l 1,19,-1
  147 -381 l 1,20,21
- 236 -381 236 -381 309 -117 c 2,22,-1
+ 236 -381 236 -381 309 -117 c 1,22,-1
  385 229 l 1,23,-1
  520 829 l 1,24,-1
  340 829 l 1,25,-1
  354 897 l 1,26,27
- 514 901 514 901 584 1036 c 2,28,-1
- 676 1286 l 2,29,30
+ 514 901 514 901 584 1036 c 1,28,-1
+ 676 1286 l 1,29,30
  738 1421 738 1421 881 1421 c 0,31,32
  1022 1421 1022 1421 1022 1307 c 0,33,34
  1022 1229 1022 1229 952 1229 c 0,35,36
@@ -6254,128 +2284,22 @@ SplineSet
  889 1297 889 1297 899 1316 c 128,-1,39
  909 1335 909 1335 909 1348 c 0,40,41
  909 1374 909 1374 874 1374 c 0,42,43
- 794 1374 794 1374 745 1171 c 0,44,45
+ 794 1374 794 1374 745 1171 c 1,44,45
  733 1114 733 1114 702 897 c 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: uni019B
-Encoding: 49 411 52
+Encoding: 411 411 51
 Width: 1146
 GlyphClass: 2
 Flags: W
-HStem: 0 21G<66.5 285 786 1055> 952 72<205 492 702 932> 1272 117<328 394.297>
-VStem: 61 164<16.4689 226.19>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 8
-MDAP[rnd]
-PUSHB_1
- 23
-SHP[rp1]
-PUSHB_1
- 9
-MDRP[min,rnd,black]
-PUSHB_1
- 20
-SHP[rp2]
-PUSHB_1
- 14
-MDAP[rnd]
-PUSHB_1
- 17
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 37
-MDAP[rnd]
-PUSHB_1
- 2
-MDRP[rp0,rnd,white]
-PUSHB_1
- 34
-MDRP[min,rnd,black]
-PUSHB_2
- 38
- 1
-CALL
-PUSHB_1
- 54
-SMD
-PUSHB_2
- 23
- 24
-SDPVTL[orthog]
-PUSHB_1
- 23
-MDAP[no-rnd]
-SFVTPV
-PUSHB_1
- 24
-MDRP[grey]
-PUSHB_2
- 30
- 4
-MIRP[rp0,min,black]
-PUSHB_1
- 29
-MDRP[grey]
-SVTCA[y-axis]
-PUSHB_3
- 24
- 29
- 30
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-SVTCA[x-axis]
-PUSHB_4
- 23
- 24
- 29
- 30
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-MDAP[no-rnd]
-PUSHB_1
- 64
-SMD
-SVTCA[x-axis]
-PUSHB_2
- 34
- 2
-SRP1
-SRP2
-PUSHB_5
- 0
- 8
- 9
- 14
- 16
-DEPTH
-SLOOP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 9
- 8
-SRP1
-SRP2
-PUSHB_1
- 6
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 72 0 m 1,0,1
  61 47 61 47 61 55 c 0,2,3
- 61 196 61 196 252 485 c 2,4,-1
+ 61 196 61 196 252 485 c 1,4,-1
  541 889 l 1,5,-1
  506 977 l 1,6,-1
  514 952 l 1,7,-1
@@ -6391,52 +2315,23 @@ SplineSet
  932 1024 l 1,21,-1
  932 952 l 1,22,-1
  702 952 l 1,23,-1
- 827 446 l 2,24,25
+ 827 446 l 1,24,25
  925 121 925 121 1055 0 c 1,26,-1
  834 0 l 1,27,28
- 738 116 738 116 662 389 c 2,29,-1
+ 738 116 738 116 662 389 c 1,29,-1
  559 815 l 1,30,31
  371 550 371 550 342 500 c 0,32,33
  225 299 225 299 225 147 c 0,34,35
  225 57 225 57 285 0 c 1,36,-1
  72 0 l 1,0,1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: circumflex
-Encoding: 50 710 53
+Encoding: 710 710 52
 Width: 681
 GlyphClass: 2
 Flags: W
-HStem: 1102 389
-VStem: 33 633
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 3
-MDAP[rnd]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 6
-MDAP[rnd]
-PUSHB_1
- 4
-MDRP[rp0,rnd,white]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_2
- 7
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6448,133 +2343,33 @@ SplineSet
  362 1491 l 1,5,-1
  666 1112 l 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: dotaccent
-Encoding: 51 729 54
+Encoding: 729 729 53
 Width: 542
 GlyphClass: 2
 Flags: W
-HStem: 1264 198<202.847 340.029>
-VStem: 174 197<1292.88 1432.06>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 12
-MDAP[rnd]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 15
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[rp0,rnd,white]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_2
- 16
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 174 1362 m 128,-1,1
  174 1404 174 1404 202 1433 c 0,2,3
  229 1462 229 1462 270 1462 c 0,4,5
- 310 1462 310 1462 341 1433 c 0,6,7
+ 310 1462 310 1462 341 1433 c 1,6,7
  371 1403 371 1403 371 1362 c 0,8,9
  371 1320 371 1320 342 1291 c 0,10,11
  314 1264 314 1264 270 1264 c 0,12,13
  229 1264 229 1264 202 1292 c 0,14,0
  174 1320 174 1320 174 1362 c 128,-1,1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: ring
-Encoding: 52 730 55
+Encoding: 730 730 54
 Width: 532
 GlyphClass: 2
 Flags: W
-HStem: 1126 78<183.934 384.968> 1503 82<180.956 386.175>
-VStem: 53 82<1249.56 1457.3> 434 78<1253 1452.88>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 11
-MDAP[rnd]
-PUSHB_1
- 19
-MDRP[min,rnd,black]
-PUSHB_1
- 27
-MDAP[rnd]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 30
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[rp0,rnd,white]
-PUSHB_1
- 15
-MDRP[min,rnd,black]
-PUSHB_1
- 15
-SRP0
-PUSHB_2
- 23
- 1
-CALL
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_2
- 31
- 1
-CALL
-PUSHB_2
- 23
- 15
-SRP1
-SRP2
-PUSHB_2
- 11
- 4
-IP
-IP
-SVTCA[y-axis]
-PUSHB_2
- 27
- 19
-SRP1
-SRP2
-PUSHB_2
- 8
- 0
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6588,83 +2383,22 @@ SplineSet
  187 1126 187 1126 120 1193 c 0,13,14
  53 1259 53 1259 53 1356 c 0,0,1
 135 1354 m 0,15,16
- 135 1292 135 1292 178 1247 c 0,17,18
+ 135 1292 135 1292 178 1247 c 1,17,18
  223 1204 223 1204 285 1204 c 0,19,20
- 346 1204 346 1204 391 1247 c 0,21,22
+ 346 1204 346 1204 391 1247 c 1,21,22
  434 1290 434 1290 434 1354 c 0,23,24
  434 1415 434 1415 390 1459 c 0,25,26
  347 1503 347 1503 285 1503 c 0,27,28
  221 1503 221 1503 178 1460 c 128,-1,29
  135 1417 135 1417 135 1354 c 0,15,16
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: tilde
-Encoding: 53 732 56
+Encoding: 732 732 55
 Width: 681
 GlyphClass: 2
 Flags: W
-HStem: 1212 123<447.006 585.092> 1354 121<92.6543 231.039>
-VStem: 23 30<1217 1270.35> 631 31<1417.07 1475>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 13
-MDAP[rnd]
-PUSHB_1
- 0
-SHP[rp1]
-PUSHB_1
- 5
-MDRP[min,rnd,black]
-PUSHB_1
- 15
-MDAP[rnd]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-PUSHB_1
- 7
-SHP[rp2]
-SVTCA[x-axis]
-PUSHB_1
- 17
-MDAP[rnd]
-PUSHB_1
- 1
-MDRP[rp0,rnd,white]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-PUSHB_1
- 0
-SRP0
-PUSHB_2
- 7
- 1
-CALL
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_2
- 18
- 1
-CALL
-PUSHB_2
- 7
- 0
-SRP1
-SRP2
-PUSHB_2
- 3
- 13
-IP
-IP
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6675,113 +2409,18 @@ SplineSet
  604 1335 604 1335 631 1475 c 1,7,-1
  662 1475 l 1,8,-1
  662 1462 l 2,9,10
- 662 1368 662 1368 616 1294 c 0,11,12
+ 662 1368 662 1368 616 1294 c 1,11,12
  563 1212 563 1212 471 1212 c 0,13,14
  410 1212 410 1212 147 1354 c 1,15,16
  80 1354 80 1354 53 1217 c 1,0,-1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: uni03F1
-Encoding: 54 1009 57
+Encoding: 65538 -1 56
 Width: 1132
 GlyphClass: 2
 Flags: W
-HStem: -420 158<683.078 809> -369 103<368.773 809> -14 65<414.953 622.296> 809 57<557.21 759.74>
-VStem: 154 67<-106.062 133.691> 836 178<343.288 747.723>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 3
-MDAP[rnd]
-PUSHB_1
- 25
-MDRP[min,rnd,black]
-PUSHB_1
- 25
-SRP0
-PUSHB_1
- 1
-MDRP[min,rnd,black]
-PUSHB_1
- 17
-MDAP[rnd]
-PUSHB_1
- 28
-MDRP[min,rnd,black]
-PUSHB_1
- 34
-MDAP[rnd]
-PUSHB_1
- 11
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 40
-MDAP[rnd]
-PUSHB_1
- 7
-MDRP[rp0,rnd,white]
-PUSHB_1
- 21
-MDRP[min,rnd,black]
-PUSHB_1
- 21
-SRP0
-PUSHB_2
- 32
- 1
-CALL
-PUSHB_1
- 13
-MDRP[min,rnd,black]
-PUSHB_2
- 41
- 1
-CALL
-PUSHB_2
- 32
- 21
-SRP1
-SRP2
-PUSHB_5
- 0
- 11
- 17
- 3
- 38
-DEPTH
-SLOOP
-IP
-PUSHB_1
- 13
-SRP1
-PUSHB_1
- 1
-IP
-SVTCA[y-axis]
-PUSHB_2
- 28
- 1
-SRP1
-SRP2
-PUSHB_1
- 7
-IP
-PUSHB_1
- 34
-SRP1
-PUSHB_3
- 13
- 21
- 19
-IP
-IP
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6793,51 +2432,29 @@ SplineSet
  154 347 154 347 264 571 c 0,9,10
  408 866 408 866 705 866 c 0,11,12
  1014 866 1014 866 1014 582 c 0,13,14
- 1014 340 1014 340 858 166 c 0,15,16
+ 1014 340 1014 340 858 166 c 1,15,16
  699 -14 699 -14 459 -14 c 0,17,18
  294 -14 294 -14 227 135 c 1,19,20
  221 92 221 92 221 59 c 0,21,22
- 221 -137 221 -137 348 -211 c 0,23,24
+ 221 -137 221 -137 348 -211 c 1,23,24
  437 -266 437 -266 635 -266 c 0,25,26
- 686 -266 686 -266 723 -264 c 2,27,-1
+ 686 -266 686 -266 723 -264 c 1,27,-1
  809 -262 l 1,0,-1
 508 51 m 0,28,29
  662 51 662 51 758 236 c 0,30,31
  836 388 836 388 836 557 c 0,32,33
  836 809 836 809 666 809 c 0,34,35
- 506 809 506 809 420 608 c 0,36,37
+ 506 809 506 809 420 608 c 1,36,37
  356 454 356 454 356 268 c 0,38,39
  356 51 356 51 508 51 c 0,28,29
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: endash
-Encoding: 55 8211 58
+Encoding: 8211 8211 57
 Width: 1138
 GlyphClass: 2
 Flags: W
-HStem: 459 147
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_2
- 5
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6847,35 +2464,13 @@ SplineSet
  -4 606 l 1,3,-1
  -4 459 l 1,0,-1
 EndSplineSet
-Validated: 9
 EndChar
 
 StartChar: emdash
-Encoding: 56 8212 59
+Encoding: 8212 8212 58
 Width: 2048
 GlyphClass: 2
 Flags: W
-HStem: 459 147
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 3
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 4
-MDAP[rnd]
-PUSHB_2
- 5
- 1
-CALL
-SVTCA[y-axis]
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6885,61 +2480,13 @@ SplineSet
  0 606 l 1,3,-1
  0 459 l 1,0,-1
 EndSplineSet
-Validated: 9
 EndChar
 
 StartChar: quoteleft
-Encoding: 57 8216 60
+Encoding: 8216 8216 59
 Width: 481
 GlyphClass: 2
 Flags: W
-HStem: 893 229<216.343 367.841>
-VStem: 82 96<1092.85 1289.09>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 6
-MDAP[rnd]
-PUSHB_1
- 0
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 22
-MDAP[rnd]
-PUSHB_1
- 10
-MDRP[rp0,rnd,white]
-PUSHB_1
- 18
-MDRP[min,rnd,black]
-PUSHB_3
- 18
- 10
- 10
-CALL
-PUSHB_4
- 0
- 18
- 4
- 9
-CALL
-PUSHB_2
- 23
- 1
-CALL
-SVTCA[y-axis]
-PUSHB_2
- 0
- 6
-SRP1
-SRP2
-PUSHB_1
- 20
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
@@ -6950,81 +2497,33 @@ SplineSet
  332 893 332 893 283 893 c 0,6,7
  190 893 190 893 136 965 c 0,8,9
  82 1036 82 1036 82 1130 c 0,10,11
- 82 1240 82 1240 166 1350 c 0,12,13
+ 82 1240 82 1240 166 1350 c 1,12,13
  258 1466 258 1466 365 1466 c 1,14,-1
  373 1450 l 1,15,-1
- 246 1329 l 2,16,17
+ 246 1329 l 1,16,17
  178 1251 178 1251 178 1174 c 0,18,19
  178 1122 178 1122 215 1092 c 1,20,21
  258 1122 258 1122 297 1122 c 0,0,1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: quoteright
-Encoding: 58 8217 61
+Encoding: 8217 8217 60
 Width: 481
 GlyphClass: 2
 Flags: W
-HStem: 1239 229<121.765 281.876>
-VStem: 305 107<1064.16 1258.83>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 23
-MDAP[rnd]
-PUSHB_1
- 4
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 27
-MDAP[rnd]
-PUSHB_1
- 19
-MDRP[rp0,rnd,white]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-PUSHB_3
- 19
- 8
- 10
-CALL
-PUSHB_4
- 0
- 19
- 0
- 9
-CALL
-PUSHB_2
- 28
- 1
-CALL
-SVTCA[y-axis]
-PUSHB_2
- 4
- 23
-SRP1
-SRP2
-PUSHB_1
- 21
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 94 1358 m 0,0,1
  94 1406 94 1406 133 1437 c 0,2,3
  171 1468 171 1468 219 1468 c 0,4,5
- 308 1468 308 1468 362 1386 c 0,6,7
+ 308 1468 308 1468 362 1386 c 1,6,7
  412 1315 412 1315 412 1223 c 0,8,9
- 412 1107 412 1107 321 999 c 0,10,11
+ 412 1107 412 1107 321 999 c 1,10,11
  230 893 230 893 115 893 c 1,12,-1
  100 905 l 1,13,14
- 121 942 121 942 178 977 c 0,15,16
+ 121 942 121 942 178 977 c 1,15,16
  246 1016 246 1016 264 1036 c 0,17,18
  305 1082 305 1082 305 1161 c 0,19,20
  305 1201 305 1201 283 1260 c 1,21,22
@@ -7032,61 +2531,24 @@ SplineSet
  169 1239 169 1239 131 1274 c 0,25,26
  94 1308 94 1308 94 1358 c 0,0,1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: quotesinglbase
-Encoding: 59 8218 62
+Encoding: 8218 8218 61
 Width: 481
 GlyphClass: 2
 Flags: W
-HStem: -39 232<106.972 180 182 266.749>
-VStem: 299 100<-195.192 -13.4941>
-TtInstrs:
-SVTCA[y-axis]
-PUSHB_1
- 0
-MDAP[rnd]
-PUSHB_1
- 8
-MDRP[min,rnd,black]
-SVTCA[x-axis]
-PUSHB_1
- 26
-MDAP[rnd]
-PUSHB_1
- 21
-MDRP[rp0,rnd,white]
-PUSHB_1
- 12
-MDRP[min,rnd,black]
-PUSHB_2
- 27
- 1
-CALL
-SVTCA[y-axis]
-PUSHB_2
- 8
- 0
-SRP1
-SRP2
-PUSHB_1
- 23
-IP
-IUP[y]
-IUP[x]
-EndTTInstrs
 LayerCount: 2
 Fore
 SplineSet
 180 -39 m 1,0,1
- 137 -39 137 -39 106 -2 c 0,2,3
+ 137 -39 137 -39 106 -2 c 1,2,3
  76 36 76 36 76 80 c 0,4,5
  76 127 76 127 113 160 c 0,6,7
  149 193 149 193 199 193 c 0,8,9
  288 193 288 193 344 122 c 0,10,11
  399 52 399 52 399 -43 c 0,12,13
- 399 -148 399 -148 309 -262 c 0,14,15
+ 399 -148 399 -148 309 -262 c 1,14,15
  215 -383 215 -383 113 -383 c 1,16,-1
  104 -367 l 1,17,18
  207 -278 207 -278 233 -248 c 0,19,20
@@ -7095,105 +2557,13 @@ SplineSet
  228 -37 228 -37 182 -37 c 1,25,-1
  180 -39 l 1,0,1
 EndSplineSet
-Validated: 1
 EndChar
 
 StartChar: quotedblleft
-Encoding: 60 8220 63
+Encoding: 8220 8220 62
 Width: 827
 GlyphClass: 2
 Flags: W

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list